1//! Types for the [`m.room.guest_access`] event.
2//!
3//! [`m.room.guest_access`]: https://spec.matrix.org/latest/client-server-api/#mroomguest_access
45use ruma_common::serde::StringEnum;
6use ruma_macros::EventContent;
7use serde::{Deserialize, Serialize};
89use crate::{EmptyStateKey, PrivOwnedStr};
1011/// The content of an `m.room.guest_access` event.
12///
13/// Controls whether guest users are allowed to join rooms.
14///
15/// This event controls whether guest users are allowed to join rooms. If this event is absent,
16/// servers should act as if it is present and has the value `GuestAccess::Forbidden`.
17#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
18#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
19#[ruma_event(type = "m.room.guest_access", kind = State, state_key_type = EmptyStateKey)]
20pub struct RoomGuestAccessEventContent {
21/// A policy for guest user access to a room.
22pub guest_access: GuestAccess,
23}
2425impl RoomGuestAccessEventContent {
26/// Creates a new `RoomGuestAccessEventContent` with the given policy.
27pub fn new(guest_access: GuestAccess) -> Self {
28Self { guest_access }
29 }
30}
3132impl RoomGuestAccessEvent {
33/// Obtain the guest access policy, regardless of whether this event is redacted.
34pub fn guest_access(&self) -> &GuestAccess {
35match self {
36Self::Original(ev) => &ev.content.guest_access,
37Self::Redacted(_) => &GuestAccess::Forbidden,
38 }
39 }
40}
4142impl SyncRoomGuestAccessEvent {
43/// Obtain the guest access policy, regardless of whether this event is redacted.
44pub fn guest_access(&self) -> &GuestAccess {
45match self {
46Self::Original(ev) => &ev.content.guest_access,
47Self::Redacted(_) => &GuestAccess::Forbidden,
48 }
49 }
50}
5152/// A policy for guest user access to a room.
53#[doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/src/doc/string_enum.md"))]
54#[derive(Clone, PartialEq, Eq, StringEnum)]
55#[ruma_enum(rename_all = "snake_case")]
56#[non_exhaustive]
57pub enum GuestAccess {
58/// Guests are allowed to join the room.
59CanJoin,
6061/// Guests are not allowed to join the room.
62Forbidden,
6364#[doc(hidden)]
65_Custom(PrivOwnedStr),
66}