ruma_client_api/backup/
get_backup_keys_for_room.rs
1pub mod v3 {
6 use std::collections::BTreeMap;
11
12 use ruma_common::{
13 api::{request, response, Metadata},
14 metadata,
15 serde::Raw,
16 OwnedRoomId,
17 };
18
19 use crate::backup::KeyBackupData;
20
21 const METADATA: Metadata = metadata! {
22 method: GET,
23 rate_limited: true,
24 authentication: AccessToken,
25 history: {
26 unstable => "/_matrix/client/unstable/room_keys/keys/:room_id",
27 1.0 => "/_matrix/client/r0/room_keys/keys/:room_id",
28 1.1 => "/_matrix/client/v3/room_keys/keys/:room_id",
29 }
30 };
31
32 #[request(error = crate::Error)]
34 pub struct Request {
35 #[ruma_api(query)]
37 pub version: String,
38
39 #[ruma_api(path)]
41 pub room_id: OwnedRoomId,
42 }
43
44 #[response(error = crate::Error)]
46 pub struct Response {
47 pub sessions: BTreeMap<String, Raw<KeyBackupData>>,
49 }
50
51 impl Request {
52 pub fn new(version: String, room_id: OwnedRoomId) -> Self {
54 Self { version, room_id }
55 }
56 }
57
58 impl Response {
59 pub fn new(sessions: BTreeMap<String, Raw<KeyBackupData>>) -> Self {
61 Self { sessions }
62 }
63 }
64}