ruma-client-api 0.23.1

Types for the endpoints in the Matrix client-server API.
Documentation
//! `POST /_matrix/client/*/rooms/{roomId}/invite`
//!
//! Invite a user to a room.

pub mod v3 {
    //! `/v3/` ([spec (MXID)][spec-mxid], [spec (3PID)][spec-3pid])
    //!
    //! This endpoint has two forms: one to invite a user
    //! [by their Matrix identifier][spec-mxid], and one to invite a user
    //! [by their third party identifier][spec-3pid].
    //!
    //! [spec-mxid]: https://spec.matrix.org/v1.18/client-server-api/#post_matrixclientv3roomsroomidinvite
    //! [spec-3pid]: https://spec.matrix.org/v1.18/client-server-api/#thirdparty_post_matrixclientv3roomsroomidinvite

    use ruma_common::{
        OwnedRoomId, OwnedUserId,
        api::{auth_scheme::AccessToken, request, response},
        metadata,
    };
    use serde::{Deserialize, Serialize};

    use crate::membership::Invite3pid;

    metadata! {
        method: POST,
        rate_limited: true,
        authentication: AccessToken,
        history: {
            1.0 => "/_matrix/client/r0/rooms/{room_id}/invite",
            1.1 => "/_matrix/client/v3/rooms/{room_id}/invite",
        }
    }

    /// Request type for the `invite_user` endpoint.
    #[request]
    pub struct Request {
        /// The room where the user should be invited.
        #[ruma_api(path)]
        pub room_id: OwnedRoomId,

        /// The user to invite.
        #[ruma_api(body)]
        pub recipient: InvitationRecipient,
    }

    /// Response type for the `invite_user` endpoint.
    #[response]
    #[derive(Default)]
    pub struct Response {}

    impl Request {
        /// Creates a new `Request` with the given room ID and invitation recipient.
        pub fn new(room_id: OwnedRoomId, recipient: InvitationRecipient) -> Self {
            Self { room_id, recipient }
        }
    }

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

    /// Distinguishes between invititations by Matrix or third party identifiers.
    #[derive(Clone, Debug, Deserialize, Serialize)]
    #[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
    #[serde(untagged)]
    pub enum InvitationRecipient {
        /// Used to invite user by their Matrix identifier.
        UserId(InviteUserId),

        /// Used to invite user by a third party identifier.
        ThirdPartyId(Invite3pid),
    }

    impl From<InviteUserId> for InvitationRecipient {
        fn from(value: InviteUserId) -> Self {
            Self::UserId(value)
        }
    }

    impl From<Invite3pid> for InvitationRecipient {
        fn from(value: Invite3pid) -> Self {
            Self::ThirdPartyId(value)
        }
    }

    /// Data to invite a user by Matrix identifier.
    #[derive(Clone, Debug, Deserialize, Serialize)]
    #[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
    pub struct InviteUserId {
        /// The Matrix identifier of the user to invite.
        pub user_id: OwnedUserId,

        /// The reason for inviting the user.
        #[serde(skip_serializing_if = "Option::is_none")]
        pub reason: Option<String>,
    }

    impl InviteUserId {
        /// Constructs a new `InviteUserId` with the given Matrix identifier.
        pub fn new(user_id: OwnedUserId) -> Self {
            Self { user_id, reason: None }
        }
    }

    #[cfg(test)]
    mod tests {
        use assert_matches2::assert_let;
        use ruma_common::thirdparty::Medium;
        use serde_json::{from_value as from_json_value, json};

        use super::{InvitationRecipient, InviteUserId};

        #[test]
        fn deserialize_invite_by_user_id() {
            let incoming =
                from_json_value::<InvitationRecipient>(json!({ "user_id": "@carl:example.org" }))
                    .unwrap();

            assert_let!(
                InvitationRecipient::UserId(InviteUserId { user_id, reason: None }) = incoming
            );
            assert_eq!(user_id, "@carl:example.org");
        }

        #[test]
        fn deserialize_invite_by_3pid() {
            let incoming = from_json_value::<InvitationRecipient>(json!({
                "id_server": "example.org",
                "id_access_token": "abcdefghijklmnop",
                "medium": "email",
                "address": "carl@example.org"
            }))
            .unwrap();

            assert_let!(InvitationRecipient::ThirdPartyId(third_party_id) = incoming);

            assert_eq!(third_party_id.id_server, "example.org");
            assert_eq!(third_party_id.id_access_token, "abcdefghijklmnop");
            assert_eq!(third_party_id.medium, Medium::Email);
            assert_eq!(third_party_id.address, "carl@example.org");
        }
    }
}