1//! `GET /_matrix/client/*/media/download/{serverName}/{mediaId}/{fileName}`
2//!
3//! Retrieve content from the media store, specifying a filename to return.
45pub mod v1 {
6//! `/v1/` ([spec])
7 //!
8 //! [spec]: https://spec.matrix.org/latest/client-server-api/#get_matrixclientv1mediadownloadservernamemediaidfilename
910use std::time::Duration;
1112use http::header::{CONTENT_DISPOSITION, CONTENT_TYPE};
13use ruma_common::{
14 api::{request, response, Metadata},
15 http_headers::ContentDisposition,
16 metadata, IdParseError, MxcUri, OwnedServerName,
17 };
1819const METADATA: Metadata = metadata! {
20 method: GET,
21 rate_limited: true,
22 authentication: AccessToken,
23 history: {
24 unstable => "/_matrix/client/unstable/org.matrix.msc3916/media/download/:server_name/:media_id/:filename",
251.11 => "/_matrix/client/v1/media/download/:server_name/:media_id/:filename",
26 }
27 };
2829/// Request type for the `get_media_content_as_filename` endpoint.
30#[request(error = crate::Error)]
31pub struct Request {
32/// The server name from the mxc:// URI (the authoritory component).
33#[ruma_api(path)]
34pub server_name: OwnedServerName,
3536/// The media ID from the mxc:// URI (the path component).
37#[ruma_api(path)]
38pub media_id: String,
3940/// The filename to return in the `Content-Disposition` header.
41#[ruma_api(path)]
42pub filename: String,
4344/// The maximum duration that the client is willing to wait to start receiving data, in the
45 /// case that the content has not yet been uploaded.
46 ///
47 /// The default value is 20 seconds.
48#[ruma_api(query)]
49 #[serde(
50 with = "ruma_common::serde::duration::ms",
51 default = "ruma_common::media::default_download_timeout",
52 skip_serializing_if = "ruma_common::media::is_default_download_timeout"
53)]
54pub timeout_ms: Duration,
55 }
5657/// Response type for the `get_media_content_as_filename` endpoint.
58#[response(error = crate::Error)]
59pub struct Response {
60/// The content that was previously uploaded.
61#[ruma_api(raw_body)]
62pub file: Vec<u8>,
6364/// The content type of the file that was previously uploaded.
65#[ruma_api(header = CONTENT_TYPE)]
66pub content_type: Option<String>,
6768/// The value of the `Content-Disposition` HTTP header, possibly containing the name of the
69 /// file that was previously uploaded.
70#[ruma_api(header = CONTENT_DISPOSITION)]
71pub content_disposition: Option<ContentDisposition>,
72 }
7374impl Request {
75/// Creates a new `Request` with the given media ID, server name and filename.
76pub fn new(media_id: String, server_name: OwnedServerName, filename: String) -> Self {
77Self {
78 media_id,
79 server_name,
80 filename,
81 timeout_ms: ruma_common::media::default_download_timeout(),
82 }
83 }
8485/// Creates a new `Request` with the given URI and filename.
86pub fn from_uri(uri: &MxcUri, filename: String) -> Result<Self, IdParseError> {
87let (server_name, media_id) = uri.parts()?;
8889Ok(Self::new(media_id.to_owned(), server_name.to_owned(), filename))
90 }
91 }
9293impl Response {
94/// Creates a new `Response` with the given file.
95pub fn new(
96 file: Vec<u8>,
97 content_type: String,
98 content_disposition: ContentDisposition,
99 ) -> Self {
100Self {
101 file,
102 content_type: Some(content_type),
103 content_disposition: Some(content_disposition),
104 }
105 }
106 }
107}