1//! Modules and types for events in the `m.policy.rule` namespace.
23use ruma_common::serde::StringEnum;
4use serde::{Deserialize, Serialize};
56use crate::PrivOwnedStr;
78pub mod room;
9pub mod server;
10pub mod user;
1112/// The payload for policy rule events.
13#[derive(Clone, Debug, Deserialize, Serialize)]
14#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
15pub struct PolicyRuleEventContent {
16/// The entity affected by this rule.
17 ///
18 /// Glob characters `*` and `?` can be used to match zero or more characters or exactly one
19 /// character respectively.
20pub entity: String,
2122/// The suggested action to take.
23pub recommendation: Recommendation,
2425/// The human-readable description for the recommendation.
26pub reason: String,
27}
2829impl PolicyRuleEventContent {
30/// Creates a new `PolicyRuleEventContent` with the given entity, recommendation and reason.
31pub fn new(entity: String, recommendation: Recommendation, reason: String) -> Self {
32Self { entity, recommendation, reason }
33 }
34}
3536/// The possibly redacted form of [`PolicyRuleEventContent`].
37///
38/// This type is used when it's not obvious whether the content is redacted or not.
39#[derive(Clone, Debug, Deserialize, Serialize)]
40#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
41pub struct PossiblyRedactedPolicyRuleEventContent {
42/// The entity affected by this rule.
43 ///
44 /// Glob characters `*` and `?` can be used to match zero or more characters or exactly one
45 /// character respectively.
46#[serde(skip_serializing_if = "Option::is_none")]
47pub entity: Option<String>,
4849/// The suggested action to take.
50#[serde(skip_serializing_if = "Option::is_none")]
51pub recommendation: Option<Recommendation>,
5253/// The human-readable description for the recommendation.
54#[serde(skip_serializing_if = "Option::is_none")]
55pub reason: Option<String>,
56}
5758/// The possible actions that can be taken.
59#[doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/src/doc/string_enum.md"))]
60#[derive(Clone, PartialEq, Eq, StringEnum)]
61#[non_exhaustive]
62pub enum Recommendation {
63/// Entities affected by the rule should be banned from participation where possible.
64#[ruma_enum(rename = "m.ban")]
65Ban,
6667#[doc(hidden)]
68_Custom(PrivOwnedStr),
69}