ruma-federation-api 0.14.0

Types for the endpoints in the Matrix server-server API.
Documentation
//! `GET /.well-known/matrix/server` ([spec])
//!
//! Get discovery information about the domain.
//!
//! [spec]: https://spec.matrix.org/v1.18/server-server-api/#getwell-knownmatrixserver

use ruma_common::{
    OwnedServerName,
    api::{auth_scheme::NoAuthentication, request, response},
    metadata,
};

metadata! {
    method: GET,
    rate_limited: false,
    authentication: NoAuthentication,
    path: "/.well-known/matrix/server",
}

/// Request type for the `discover_homeserver` endpoint.
#[request]
#[derive(Default)]
pub struct Request {}

/// Response type for the `discover_homeserver` endpoint.
#[response]
pub struct Response {
    /// The server name to delegate server-server communications to, with optional port.
    #[serde(rename = "m.server")]
    pub server: OwnedServerName,
}

impl Request {
    /// Creates an empty `Request`.
    pub fn new() -> Self {
        Self {}
    }
}

impl Response {
    /// Creates a new `Response` with the given homeserver.
    pub fn new(server: OwnedServerName) -> Self {
        Self { server }
    }
}