ruma_client_api/account/
request_openid_token.rs
1pub mod v3 {
6 use std::time::Duration;
11
12 use ruma_common::{
13 api::{request, response, Metadata},
14 authentication::TokenType,
15 metadata, OwnedServerName, OwnedUserId,
16 };
17
18 const METADATA: Metadata = metadata! {
19 method: POST,
20 rate_limited: true,
21 authentication: AccessToken,
22 history: {
23 1.0 => "/_matrix/client/r0/user/:user_id/openid/request_token",
24 1.1 => "/_matrix/client/v3/user/:user_id/openid/request_token",
25 }
26 };
27
28 #[request(error = crate::Error)]
30 pub struct Request {
31 #[ruma_api(path)]
33 pub user_id: OwnedUserId,
34 }
35
36 #[response(error = crate::Error)]
38 pub struct Response {
39 pub access_token: String,
41
42 pub token_type: TokenType,
44
45 pub matrix_server_name: OwnedServerName,
47
48 #[serde(with = "ruma_common::serde::duration::secs")]
50 pub expires_in: Duration,
51 }
52
53 impl Request {
54 pub fn new(user_id: OwnedUserId) -> Self {
56 Self { user_id }
57 }
58 }
59
60 impl Response {
61 pub fn new(
64 access_token: String,
65 token_type: TokenType,
66 matrix_server_name: OwnedServerName,
67 expires_in: Duration,
68 ) -> Self {
69 Self { access_token, token_type, matrix_server_name, expires_in }
70 }
71 }
72}