1//! `GET /.well-known/matrix/client` ([spec])
2//!
3//! [spec]: https://spec.matrix.org/latest/client-server-api/#getwell-knownmatrixclient
4//!
5//! Get discovery information about the domain.
67use ruma_common::{
8 api::{request, response, Metadata},
9 metadata,
10};
11use serde::{Deserialize, Serialize};
1213const METADATA: Metadata = metadata! {
14 method: GET,
15 rate_limited: false,
16 authentication: None,
17 history: {
181.0 => "/.well-known/matrix/client",
19 }
20};
2122/// Request type for the `client_well_known` endpoint.
23#[request(error = crate::Error)]
24#[derive(Default)]
25pub struct Request {}
2627/// Response type for the `client_well_known` endpoint.
28#[response(error = crate::Error)]
29pub struct Response {
30/// Information about the homeserver to connect to.
31#[serde(rename = "m.homeserver")]
32pub homeserver: HomeserverInfo,
3334/// Information about the identity server to connect to.
35#[serde(rename = "m.identity_server", skip_serializing_if = "Option::is_none")]
36pub identity_server: Option<IdentityServerInfo>,
3738/// Information about the tile server to use to display location data.
39#[cfg(feature = "unstable-msc3488")]
40 #[serde(
41 rename = "org.matrix.msc3488.tile_server",
42 alias = "m.tile_server",
43 skip_serializing_if = "Option::is_none"
44)]
45pub tile_server: Option<TileServerInfo>,
4647/// Information about the authentication server to connect to when using OpenID Connect.
48#[cfg(feature = "unstable-msc2965")]
49 #[serde(
50 rename = "org.matrix.msc2965.authentication",
51 alias = "m.authentication",
52 skip_serializing_if = "Option::is_none"
53)]
54pub authentication: Option<AuthenticationServerInfo>,
55}
5657impl Request {
58/// Creates an empty `Request`.
59pub fn new() -> Self {
60Self {}
61 }
62}
6364impl Response {
65/// Creates a new `Response` with the given `HomeserverInfo`.
66pub fn new(homeserver: HomeserverInfo) -> Self {
67Self {
68 homeserver,
69 identity_server: None,
70#[cfg(feature = "unstable-msc3488")]
71tile_server: None,
72#[cfg(feature = "unstable-msc2965")]
73authentication: None,
74 }
75 }
76}
7778/// Information about a discovered homeserver.
79#[derive(Clone, Debug, Deserialize, Hash, Serialize)]
80#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
81pub struct HomeserverInfo {
82/// The base URL for the homeserver for client-server connections.
83pub base_url: String,
84}
8586impl HomeserverInfo {
87/// Creates a new `HomeserverInfo` with the given `base_url`.
88pub fn new(base_url: String) -> Self {
89Self { base_url }
90 }
91}
9293/// Information about a discovered identity server.
94#[derive(Clone, Debug, Deserialize, Hash, Serialize)]
95#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
96pub struct IdentityServerInfo {
97/// The base URL for the identity server for client-server connections.
98pub base_url: String,
99}
100101impl IdentityServerInfo {
102/// Creates an `IdentityServerInfo` with the given `base_url`.
103pub fn new(base_url: String) -> Self {
104Self { base_url }
105 }
106}
107108/// Information about a discovered map tile server.
109#[cfg(feature = "unstable-msc3488")]
110#[derive(Clone, Debug, Deserialize, Hash, Serialize)]
111#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
112pub struct TileServerInfo {
113/// The URL of a map tile server's `style.json` file.
114 ///
115 /// See the [Mapbox Style Specification](https://docs.mapbox.com/mapbox-gl-js/style-spec/) for more details.
116pub map_style_url: String,
117}
118119#[cfg(feature = "unstable-msc3488")]
120impl TileServerInfo {
121/// Creates a `TileServerInfo` with the given map style URL.
122pub fn new(map_style_url: String) -> Self {
123Self { map_style_url }
124 }
125}
126127/// Information about a discovered authentication server.
128#[cfg(feature = "unstable-msc2965")]
129#[derive(Clone, Debug, Deserialize, Hash, Serialize)]
130#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
131pub struct AuthenticationServerInfo {
132/// The OIDC Provider that is trusted by the homeserver.
133pub issuer: String,
134135/// The URL where the user is able to access the account management
136 /// capabilities of the OIDC Provider.
137#[serde(skip_serializing_if = "Option::is_none")]
138pub account: Option<String>,
139}
140141#[cfg(feature = "unstable-msc2965")]
142impl AuthenticationServerInfo {
143/// Creates an `AuthenticationServerInfo` with the given `issuer` and an optional `account`.
144pub fn new(issuer: String, account: Option<String>) -> Self {
145Self { issuer, account }
146 }
147}