pub mod v1 {
use std::time::Duration;
use http::header::{CONTENT_DISPOSITION, CONTENT_TYPE};
use ruma_common::{
IdParseError, MxcUri, OwnedServerName,
api::{auth_scheme::AccessToken, request, response},
http_headers::ContentDisposition,
metadata,
};
metadata! {
method: GET,
rate_limited: true,
authentication: AccessToken,
history: {
unstable("org.matrix.msc3916") => "/_matrix/client/unstable/org.matrix.msc3916/media/download/{server_name}/{media_id}/{filename}",
1.11 | stable("org.matrix.msc3916.stable") => "/_matrix/client/v1/media/download/{server_name}/{media_id}/{filename}",
}
}
#[request(error = crate::Error)]
pub struct Request {
#[ruma_api(path)]
pub server_name: OwnedServerName,
#[ruma_api(path)]
pub media_id: String,
#[ruma_api(path)]
pub filename: String,
#[ruma_api(query)]
#[serde(
with = "ruma_common::serde::duration::ms",
default = "ruma_common::media::default_download_timeout",
skip_serializing_if = "ruma_common::media::is_default_download_timeout"
)]
pub timeout_ms: Duration,
}
#[response(error = crate::Error)]
pub struct Response {
#[ruma_api(raw_body)]
pub file: Vec<u8>,
#[ruma_api(header = CONTENT_TYPE)]
pub content_type: Option<String>,
#[ruma_api(header = CONTENT_DISPOSITION)]
pub content_disposition: Option<ContentDisposition>,
}
impl Request {
pub fn new(media_id: String, server_name: OwnedServerName, filename: String) -> Self {
Self {
media_id,
server_name,
filename,
timeout_ms: ruma_common::media::default_download_timeout(),
}
}
pub fn from_uri(uri: &MxcUri, filename: String) -> Result<Self, IdParseError> {
let (server_name, media_id) = uri.parts()?;
Ok(Self::new(media_id.to_owned(), server_name.to_owned(), filename))
}
}
impl Response {
pub fn new(
file: Vec<u8>,
content_type: String,
content_disposition: ContentDisposition,
) -> Self {
Self {
file,
content_type: Some(content_type),
content_disposition: Some(content_disposition),
}
}
}
}