ruma_client_api/filter/
get_filter.rs
1pub mod v3 {
6 use ruma_common::{
11 api::{request, response, Metadata},
12 metadata, OwnedUserId,
13 };
14
15 use crate::filter::FilterDefinition;
16
17 const METADATA: Metadata = metadata! {
18 method: GET,
19 rate_limited: false,
20 authentication: AccessToken,
21 history: {
22 1.0 => "/_matrix/client/r0/user/:user_id/filter/:filter_id",
23 1.1 => "/_matrix/client/v3/user/:user_id/filter/:filter_id",
24 }
25 };
26
27 #[request(error = crate::Error)]
29 pub struct Request {
30 #[ruma_api(path)]
32 pub user_id: OwnedUserId,
33
34 #[ruma_api(path)]
36 pub filter_id: String,
37 }
38
39 #[response(error = crate::Error)]
41 pub struct Response {
42 #[ruma_api(body)]
44 pub filter: FilterDefinition,
45 }
46
47 impl Request {
48 pub fn new(user_id: OwnedUserId, filter_id: String) -> Self {
50 Self { user_id, filter_id }
51 }
52 }
53
54 impl Response {
55 pub fn new(filter: FilterDefinition) -> Self {
57 Self { filter }
58 }
59 }
60
61 #[cfg(all(test, any(feature = "client", feature = "server")))]
62 mod tests {
63 #[cfg(feature = "client")]
64 #[test]
65 fn deserialize_response() {
66 use ruma_common::api::IncomingResponse;
67
68 let res = super::Response::try_from_http_response(
69 http::Response::builder().body(b"{}" as &[u8]).unwrap(),
70 )
71 .unwrap();
72 assert!(res.filter.is_empty());
73 }
74
75 #[cfg(feature = "server")]
76 #[test]
77 fn serialize_response() {
78 use ruma_common::api::OutgoingResponse;
79
80 use crate::filter::FilterDefinition;
81
82 let res = super::Response::new(FilterDefinition::default())
83 .try_into_http_response::<Vec<u8>>()
84 .unwrap();
85 assert_eq!(res.body(), b"{}");
86 }
87 }
88}