aboutsummaryrefslogtreecommitdiffstats
path: root/stanza/src/roster.rs
blob: b49fcc363ac46732d3c068405881256e1e1067af (plain) (blame)
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
use std::str::FromStr;

use jid::JID;
use peanuts::{
    element::{FromElement, IntoElement},
    DeserializeError, Element,
};

pub const XMLNS: &str = "jabber:iq:roster";

pub struct Query {
    ver: Option<String>,
    items: Vec<Item>,
}

impl FromElement for Query {
    fn from_element(mut element: Element) -> peanuts::element::DeserializeResult<Self> {
        element.check_name("query")?;
        element.check_namespace(XMLNS)?;

        let ver = element.attribute_opt("ver")?;
        let items = element.pop_children()?;

        Ok(Self { ver, items })
    }
}

impl IntoElement for Query {
    fn builder(&self) -> peanuts::element::ElementBuilder {
        Element::builder("query", Some(XMLNS))
            .push_attribute_opt("ver", self.ver.clone())
            .push_children(self.items.clone())
    }
}

#[derive(Clone)]
pub struct Item {
    approved: Option<bool>,
    ask: bool,
    jid: JID,
    name: Option<String>,
    subscription: Subscription,
    groups: Vec<Group>,
}

impl FromElement for Item {
    fn from_element(mut element: Element) -> peanuts::element::DeserializeResult<Self> {
        element.check_name("item")?;
        element.check_namespace(XMLNS)?;

        let approved = element.attribute_opt("approved")?;
        let ask = if let Some(result) = element.attribute_opt("ask")?.map(|v| {
            if v == "subscribe" {
                Ok(true)
            } else {
                Err(DeserializeError::FromStr(v))
            }
        }) {
            result?
        } else {
            false
        };
        let jid = element.attribute("jid")?;
        let name = element.attribute_opt("name")?;
        let subscription = element.attribute_opt("subscription")?.unwrap_or_default();
        let groups = element.pop_children()?;

        Ok(Self {
            approved,
            ask,
            jid,
            name,
            subscription,
            groups,
        })
    }
}

impl IntoElement for Item {
    fn builder(&self) -> peanuts::element::ElementBuilder {
        Element::builder("item", Some(XMLNS))
            .push_attribute_opt("approved", self.approved)
            .push_attribute_opt(
                "ask",
                if self.ask {
                    Some("subscribe".to_string())
                } else {
                    None
                },
            )
            .push_attribute("jid", self.jid.clone())
            .push_attribute_opt("name", self.name.clone())
            .push_attribute("subscription", self.subscription)
            .push_children(self.groups.clone())
    }
}

#[derive(Default, Clone, Copy)]
pub enum Subscription {
    Both,
    From,
    #[default]
    None,
    Remove,
    To,
}

impl FromStr for Subscription {
    type Err = DeserializeError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match s {
            "both" => Ok(Self::Both),
            "from" => Ok(Self::From),
            "none" => Ok(Self::None),
            "remove" => Ok(Self::Remove),
            "to" => Ok(Self::To),
            s => Err(DeserializeError::FromStr(s.to_string())),
        }
    }
}

impl ToString for Subscription {
    fn to_string(&self) -> String {
        match self {
            Subscription::Both => "both".to_string(),
            Subscription::From => "from".to_string(),
            Subscription::None => "none".to_string(),
            Subscription::Remove => "remove".to_string(),
            Subscription::To => "to".to_string(),
        }
    }
}

#[derive(Clone)]
pub struct Group(Option<String>);

impl FromElement for Group {
    fn from_element(mut element: peanuts::Element) -> peanuts::element::DeserializeResult<Self> {
        element.check_name("group")?;
        element.check_namespace(XMLNS)?;

        let group = element.pop_value_opt()?;

        Ok(Self(group))
    }
}

impl IntoElement for Group {
    fn builder(&self) -> peanuts::element::ElementBuilder {
        Element::builder("group", Some(XMLNS)).push_text_opt(self.0.clone())
    }
}