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
//![POST /_matrix/identity/v2/sign-ed25519](https://matrix.org/docs/spec/identity_service/r0.3.0#post-matrix-identity-v2-sign-ed25519)

use ruma_api::ruma_api;
use ruma_identifiers::{ServerSignatures, UserId};

ruma_api! {
    metadata: {
        description: "Sign invitation details.",
        method: POST,
        name: "sign_invitation_ed25519",
        path: "/_matrix/identity/v2/sign-ed25519",
        authentication: AccessToken,
        rate_limited: false,
    }

    request: {
        /// The Matrix user ID of the user accepting the invitation.
        pub mxid: UserId,

        /// The token from the call to store-invite.
        pub token: &'a str,

        /// The private key, encoded as unpadded base64.
        pub private_key: &'a str,
    }

    response: {
        /// The Matrix user ID of the user accepting the invitation.
        pub mxid: UserId,

        /// The Matrix user ID of the user who sent the invitation.
        pub sender: UserId,

        /// The signature of the mxid, sender and token.
        pub signatures: ServerSignatures,

        /// The token for the invitation.
        pub token: String,
    }
}

impl<'a> Request<'a> {
    /// Creates a `Request` with the given Matrix user ID, token and private_key.
    pub fn new(mxid: UserId, token: &'a str, private_key: &'a str) -> Self {
        Self { mxid, token, private_key }
    }
}

impl Response {
    /// Creates a `Response` with the given Matrix user ID, sender user ID, signatures and token.
    pub fn new(mxid: UserId, sender: UserId, signatures: ServerSignatures, token: String) -> Self {
        Self { mxid, sender, signatures, token }
    }
}