1use ruma_common::serde::StringEnum;
2use serde::{Deserialize, Serialize};
34use crate::PrivOwnedStr;
56/// The payload for a server notice message.
7#[derive(Clone, Debug, Deserialize, Serialize)]
8#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
9pub struct ServerNoticeMessageEventContent {
10/// A human-readable description of the notice.
11pub body: String,
1213/// The type of notice being represented.
14pub server_notice_type: ServerNoticeType,
1516/// A URI giving a contact method for the server administrator.
17 ///
18 /// Required if the notice type is `m.server_notice.usage_limit_reached`.
19#[serde(skip_serializing_if = "Option::is_none")]
20pub admin_contact: Option<String>,
2122/// The kind of usage limit the server has exceeded.
23 ///
24 /// Required if the notice type is `m.server_notice.usage_limit_reached`.
25#[serde(skip_serializing_if = "Option::is_none")]
26pub limit_type: Option<LimitType>,
27}
2829impl ServerNoticeMessageEventContent {
30/// Creates a new `ServerNoticeMessageEventContent` with the given body and notice type.
31pub fn new(body: String, server_notice_type: ServerNoticeType) -> Self {
32Self { body, server_notice_type, admin_contact: None, limit_type: None }
33 }
34}
3536/// Types of server notices.
37#[doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/src/doc/string_enum.md"))]
38#[derive(Clone, PartialEq, Eq, StringEnum)]
39#[non_exhaustive]
40pub enum ServerNoticeType {
41/// The server has exceeded some limit which requires the server administrator to intervene.
42#[ruma_enum(rename = "m.server_notice.usage_limit_reached")]
43UsageLimitReached,
4445#[doc(hidden)]
46_Custom(PrivOwnedStr),
47}
4849/// Types of usage limits.
50#[doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/src/doc/string_enum.md"))]
51#[derive(Clone, PartialEq, Eq, StringEnum)]
52#[ruma_enum(rename_all = "snake_case")]
53#[non_exhaustive]
54pub enum LimitType {
55/// The server's number of active users in the last 30 days has exceeded the maximum.
56 ///
57 /// New connections are being refused by the server. What defines "active" is left as an
58 /// implementation detail, however servers are encouraged to treat syncing users as "active".
59MonthlyActiveUser,
6061#[doc(hidden)]
62_Custom(PrivOwnedStr),
63}