1//! Types to deserialize `m.room.join_rules` events.
23use std::ops::Deref;
45use ruma_common::serde::{from_raw_json_value, PartialEqAsRefStr, StringEnum};
6use serde::Deserialize;
78use super::Event;
910/// A helper type for an [`Event`] of type `m.room.join_rules`.
11///
12/// This is a type that deserializes each field lazily, when requested.
13#[derive(Debug, Clone)]
14pub struct RoomJoinRulesEvent<E: Event>(E);
1516impl<E: Event> RoomJoinRulesEvent<E> {
17/// Construct a new `RoomJoinRulesEvent` around the given event.
18pub fn new(event: E) -> Self {
19Self(event)
20 }
2122/// The join rule of the room.
23pub fn join_rule(&self) -> Result<JoinRule, String> {
24#[derive(Deserialize)]
25struct RoomJoinRulesContentJoinRule {
26 join_rule: JoinRule,
27 }
2829let content: RoomJoinRulesContentJoinRule =
30 from_raw_json_value(self.content()).map_err(|err: serde_json::Error| {
31format!("missing or invalid `join_rule` field in `m.room.join_rules` event: {err}")
32 })?;
33Ok(content.join_rule)
34 }
35}
3637impl<E: Event> Deref for RoomJoinRulesEvent<E> {
38type Target = E;
3940fn deref(&self) -> &Self::Target {
41&self.0
42}
43}
4445#[derive(Clone, StringEnum, PartialEqAsRefStr)]
46#[ruma_enum(rename_all = "snake_case")]
47#[non_exhaustive]
48pub enum JoinRule {
49/// `public`
50Public,
5152/// `invite`
53Invite,
5455/// `knock`
56Knock,
5758/// `restricted`
59Restricted,
6061/// `KnockRestricted`
62KnockRestricted,
6364#[doc(hidden)]
65_Custom(PrivOwnedStr),
66}
6768impl Eq for JoinRule {}
6970// Wrapper around `Box<str>` that cannot be used in a meaningful way outside of
71// this crate. Used for string enums because their `_Custom` variant can't be
72// truly private (only `#[doc(hidden)]`).
73#[derive(Debug, Clone)]
74pub struct PrivOwnedStr(Box<str>);