ruma_client_api/backup/
get_latest_backup_info.rs
1pub mod v3 {
6 use js_int::UInt;
11 use ruma_common::{
12 api::{request, response, Metadata},
13 metadata,
14 serde::Raw,
15 };
16 use serde::{ser, Deserialize, Deserializer, Serialize};
17 use serde_json::value::to_raw_value as to_raw_json_value;
18
19 use crate::backup::{
20 get_backup_info::v3::{AlgorithmWithData, RefResponseBodyRepr, ResponseBodyRepr},
21 BackupAlgorithm,
22 };
23
24 const METADATA: Metadata = metadata! {
25 method: GET,
26 rate_limited: true,
27 authentication: AccessToken,
28 history: {
29 unstable => "/_matrix/client/unstable/room_keys/version",
30 1.0 => "/_matrix/client/r0/room_keys/version",
31 1.1 => "/_matrix/client/v3/room_keys/version",
32 }
33 };
34
35 #[request(error = crate::Error)]
37 #[derive(Default)]
38 pub struct Request {}
39
40 #[response(error = crate::Error)]
42 #[ruma_api(manual_body_serde)]
43 pub struct Response {
44 pub algorithm: Raw<BackupAlgorithm>,
46
47 pub count: UInt,
49
50 pub etag: String,
55
56 pub version: String,
58 }
59
60 impl Request {
61 pub fn new() -> Self {
63 Self {}
64 }
65 }
66
67 impl Response {
68 pub fn new(
70 algorithm: Raw<BackupAlgorithm>,
71 count: UInt,
72 etag: String,
73 version: String,
74 ) -> Self {
75 Self { algorithm, count, etag, version }
76 }
77 }
78
79 impl<'de> Deserialize<'de> for ResponseBody {
80 fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
81 where
82 D: Deserializer<'de>,
83 {
84 let ResponseBodyRepr { algorithm, auth_data, count, etag, version } =
85 ResponseBodyRepr::deserialize(deserializer)?;
86
87 let algorithm = Raw::from_json(
88 to_raw_json_value(&AlgorithmWithData { algorithm, auth_data }).unwrap(),
89 );
90
91 Ok(Self { algorithm, count, etag, version })
92 }
93 }
94
95 impl Serialize for ResponseBody {
96 fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
97 where
98 S: serde::Serializer,
99 {
100 let ResponseBody { algorithm, count, etag, version } = self;
101 let AlgorithmWithData { algorithm, auth_data } =
102 algorithm.deserialize_as().map_err(ser::Error::custom)?;
103
104 let repr = RefResponseBodyRepr {
105 algorithm: &algorithm,
106 auth_data: &auth_data,
107 count: *count,
108 etag,
109 version,
110 };
111
112 repr.serialize(serializer)
113 }
114 }
115}