logo
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
53
54
55
56
57
58
59
60
61
62
//! `GET /_matrix/client/*/keys/changes`

pub mod v3 {
    //! `/v3/` ([spec])
    //!
    //! [spec]: https://spec.matrix.org/v1.2/client-server-api/#get_matrixclientv3keyschanges

    use ruma_common::{api::ruma_api, OwnedUserId};

    ruma_api! {
        metadata: {
            description: "Gets a list of users who have updated their device identity keys since a previous sync token.",
            method: GET,
            name: "get_key_changes",
            r0_path: "/_matrix/client/r0/keys/changes",
            stable_path: "/_matrix/client/v3/keys/changes",
            rate_limited: false,
            authentication: AccessToken,
            added: 1.0,
        }

        request: {
            /// The desired start point of the list.
            ///
            /// Should be the next_batch field from a response to an earlier call to /sync.
            #[ruma_api(query)]
            pub from: &'a str,

            /// The desired end point of the list.
            ///
            /// Should be the next_batch field from a recent call to /sync - typically the most recent
            /// such call.
            #[ruma_api(query)]
            pub to: &'a str,
        }

        response: {
            /// The Matrix User IDs of all users who updated their device identity keys.
            pub changed: Vec<OwnedUserId>,

            /// The Matrix User IDs of all users who may have left all the end-to-end
            /// encrypted rooms they previously shared with the user.
            pub left: Vec<OwnedUserId>,
        }

        error: crate::Error
    }

    impl<'a> Request<'a> {
        /// Creates a new `Request` with the given start and end points.
        pub fn new(from: &'a str, to: &'a str) -> Self {
            Self { from, to }
        }
    }

    impl Response {
        /// Creates a new `Response` with the given changed and left user ID lists.
        pub fn new(changed: Vec<OwnedUserId>, left: Vec<OwnedUserId>) -> Self {
            Self { changed, left }
        }
    }
}