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
use crate::pubsub::InvalidOption;
use std::str::FromStr;

/// Access model options according to [XEP-0060 table 6](https://xmpp.org/extensions/xep-0060.html#table-6).
pub enum AccessModel {
    /// Any entity may subscribe to the node.
    Open,
    /// Any entity with a subscription of type "from" or "both" may subscribe to the node and retrieve items from the node
    Presence,
    /// Any entity in the specified roster group(s) may subscribe to the node and retrieve items from the node
    Roster,
    /// Node owner must approve subscription requests.
    Authorize,
    /// Only whitelisted entities may subscribes.
    Whitelist,
}

impl ToString for AccessModel {
    fn to_string(&self) -> String {
        match self {
            AccessModel::Open => "open",
            AccessModel::Presence => "presence",
            AccessModel::Roster => "roster",
            AccessModel::Authorize => "authorize",
            AccessModel::Whitelist => "whitelist",
        }
        .to_string()
    }
}

impl FromStr for AccessModel {
    type Err = InvalidOption;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match s {
            "open" => Ok(AccessModel::Open),
            "presence" => Ok(AccessModel::Presence),
            "roster" => Ok(AccessModel::Roster),
            "authorize" => Ok(AccessModel::Authorize),
            "whitelist" => Ok(AccessModel::Whitelist),
            _ => Err(InvalidOption),
        }
    }
}