1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
use ruma_api_macros::ruma_api;
use serde::{Deserialize, Serialize};
#[derive(Clone, Copy, Debug, Deserialize, Serialize)]
pub enum Method {
#[serde(rename = "crop")]
Crop,
#[serde(rename = "scale")]
Scale,
}
ruma_api! {
metadata {
description: "Get a thumbnail of content from the media store.",
method: GET,
name: "get_content_thumbnail",
path: "/_matrix/media/r0/thumbnail/:server_name/:media_id",
rate_limited: false,
requires_authentication: false,
}
request {
#[ruma_api(path)]
pub media_id: String,
#[ruma_api(path)]
pub server_name: String,
#[ruma_api(query)]
pub height: Option<u64>,
#[ruma_api(query)]
pub method: Option<Method>,
#[ruma_api(query)]
pub width: Option<u64>,
}
response {
#[ruma_api(body)]
pub file: Vec<u8>,
}
}