logo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
//! `PUT /_matrix/client/*/pushrules/{scope}/{kind}/{ruleId}`

pub mod v3 {
    //! `/v3/` ([spec])
    //!
    //! [spec]: https://spec.matrix.org/v1.2/client-server-api/#put_matrixclientv3pushrulesscopekindruleid

    use ruma_common::{
        api::ruma_api,
        push::{Action, PushCondition},
    };

    use crate::push::RuleKind;

    ruma_api! {
        metadata: {
            description: "This endpoint allows the creation, modification and deletion of pushers for this user ID.",
            method: PUT,
            name: "set_pushrule",
            r0_path: "/_matrix/client/r0/pushrules/:scope/:kind/:rule_id",
            stable_path: "/_matrix/client/v3/pushrules/:scope/:kind/:rule_id",
            rate_limited: true,
            authentication: AccessToken,
            added: 1.0,
        }

        request: {
            /// The scope to set the rule in. 'global' to specify global rules.
            #[ruma_api(path)]
            pub scope: &'a str,

            /// The kind of rule
            #[ruma_api(path)]
            pub kind: RuleKind,

            /// The identifier for the rule.
            #[ruma_api(path)]
            pub rule_id: &'a str,

            /// Use 'before' with a rule_id as its value to make the new rule the next-most important
            /// rule with respect to the given user defined rule.
            #[ruma_api(query)]
            pub before: Option<&'a str>,

            /// This makes the new rule the next-less important rule relative to the given user defined
            /// rule.
            #[ruma_api(query)]
            pub after: Option<&'a str>,

            /// The actions to perform when this rule is matched.
            pub actions: &'a [Action],

            /// The conditions that must hold true for an event in order for a rule to be applied to an
            /// event.
            ///
            /// A rule with no conditions always matches. Only applicable to underride and override
            /// rules, empty Vec otherwise.
            #[serde(default, skip_serializing_if = "<[_]>::is_empty")]
            pub conditions: &'a [PushCondition],

            /// The glob-style pattern to match against.
            ///
            /// Only applicable to content rules.
            #[serde(skip_serializing_if = "Option::is_none")]
            pub pattern: Option<&'a str>,
        }

        #[derive(Default)]
        response: {}

        error: crate::Error
    }

    impl<'a> Request<'a> {
        /// Creates a new `Request` with the given scope, rule kind, rule ID and actions.
        pub fn new(
            scope: &'a str,
            kind: RuleKind,
            rule_id: &'a str,
            actions: &'a [Action],
        ) -> Self {
            Self {
                scope,
                kind,
                rule_id,
                before: None,
                after: None,
                actions,
                conditions: &[],
                pattern: None,
            }
        }
    }

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