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
//! [GET /_matrix/identity/v2/pubkey/{keyId}](https://matrix.org/docs/spec/identity_service/r0.3.0#get-matrix-identity-v2-pubkey-keyid)

use ruma_api::ruma_api;
use ruma_identifiers::ServerSigningKeyId;

ruma_api! {
    metadata: {
        description: "Get the public key for the given key ID.",
        method: GET,
        name: "get_public_key",
        path: "/_matrix/identity/v2/pubkey/:key_id",
        rate_limited: false,
        authentication: None,
    }

    request: {
        /// The ID of the key.
        #[ruma_api(path)]
        pub key_id: ServerSigningKeyId,
    }

    response: {
        /// Unpadded Base64 encoded public key.
        pub public_key: String,
    }
}

impl Request {
    /// Create a `Request` with the given key_id.
    pub fn new(key_id: ServerSigningKeyId) -> Self {
        Self { key_id }
    }
}

impl Response {
    /// Create a `Response` with the given base64-encoded (unpadded) public key.
    pub fn new(public_key: String) -> Self {
        Self { public_key }
    }
}