ruma_client_api/discovery/
discover_homeserver.rsuse ruma_common::api::ruma_api;
use serde::{Deserialize, Serialize};
ruma_api! {
metadata: {
description: "Get discovery information about the domain.",
method: GET,
name: "client_well_known",
stable_path: "/.well-known/matrix/client",
rate_limited: false,
authentication: None,
added: 1.0,
}
#[derive(Default)]
request: {}
response: {
#[serde(rename = "m.homeserver")]
pub homeserver: HomeserverInfo,
#[serde(rename = "m.identity_server", skip_serializing_if = "Option::is_none")]
pub identity_server: Option<IdentityServerInfo>,
#[cfg(feature = "unstable-msc3488")]
#[serde(
rename = "org.matrix.msc3488.tile_server",
alias = "m.tile_server",
skip_serializing_if = "Option::is_none",
)]
pub tile_server: Option<TileServerInfo>,
#[cfg(feature = "unstable-msc2965")]
#[serde(
rename = "org.matrix.msc2965.authentication",
alias = "m.authentication",
skip_serializing_if = "Option::is_none"
)]
pub authentication: Option<AuthenticationServerInfo>,
}
error: crate::Error
}
impl Request {
pub fn new() -> Self {
Self {}
}
}
impl Response {
pub fn new(homeserver: HomeserverInfo) -> Self {
Self {
homeserver,
identity_server: None,
#[cfg(feature = "unstable-msc3488")]
tile_server: None,
#[cfg(feature = "unstable-msc2965")]
authentication: None,
}
}
}
#[derive(Clone, Debug, Deserialize, Hash, Serialize)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
pub struct HomeserverInfo {
pub base_url: String,
}
impl HomeserverInfo {
pub fn new(base_url: String) -> Self {
Self { base_url }
}
}
#[derive(Clone, Debug, Deserialize, Hash, Serialize)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
pub struct IdentityServerInfo {
pub base_url: String,
}
impl IdentityServerInfo {
pub fn new(base_url: String) -> Self {
Self { base_url }
}
}
#[cfg(feature = "unstable-msc3488")]
#[derive(Clone, Debug, Deserialize, Hash, Serialize)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
pub struct TileServerInfo {
pub map_style_url: String,
}
#[cfg(feature = "unstable-msc3488")]
impl TileServerInfo {
pub fn new(map_style_url: String) -> Self {
Self { map_style_url }
}
}
#[cfg(feature = "unstable-msc2965")]
#[derive(Clone, Debug, Deserialize, Hash, Serialize)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
pub struct AuthenticationServerInfo {
pub issuer: String,
#[serde(skip_serializing_if = "Option::is_none")]
pub account: Option<String>,
}
#[cfg(feature = "unstable-msc2965")]
impl AuthenticationServerInfo {
pub fn new(issuer: String, account: Option<String>) -> Self {
Self { issuer, account }
}
}