aboutsummaryrefslogtreecommitdiffstats
path: root/stanza/src/xep_0004.rs
blob: f929517192f43ef56ee77fbd271d2e9021b3dd88 (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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
use std::str::FromStr;

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

pub const XMLNS: &str = "jabber:x:data";

#[derive(Debug, Clone)]
pub struct X {
    pub r#type: XType,
    pub instructions: Vec<Instructions>,
    pub title: Option<Title>,
    pub fields: Vec<Field>,
    pub reported: Option<Reported>,
    pub items: Vec<Item>,
}

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

        let r#type = element.attribute("type")?;

        let instructions = element.pop_children()?;
        let title = element.pop_child_opt()?;
        let fields = element.pop_children()?;
        let reported = element.pop_child_opt()?;
        let items = element.pop_children()?;

        Ok(Self {
            r#type,
            instructions,
            title,
            fields,
            reported,
            items,
        })
    }
}

impl IntoElement for X {
    fn builder(&self) -> peanuts::element::ElementBuilder {
        Element::builder("x", Some(XMLNS))
            .push_attribute("type", self.r#type.clone())
            .push_children(self.instructions.clone())
            .push_child_opt(self.title.clone())
            .push_children(self.fields.clone())
            .push_child_opt(self.reported.clone())
            .push_children(self.items.clone())
    }
}

#[derive(Debug, Clone)]
pub enum XType {
    Cancel,
    Form,
    Result,
    Submit,
}

impl FromStr for XType {
    type Err = DeserializeError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match s {
            "cancel" => Ok(Self::Cancel),
            "form" => Ok(Self::Form),
            "result" => Ok(Self::Result),
            "submit" => Ok(Self::Submit),
            s => Err(DeserializeError::FromStr(s.to_string())),
        }
    }
}

impl ToString for XType {
    fn to_string(&self) -> String {
        match self {
            XType::Cancel => "cancel",
            XType::Form => "form",
            XType::Result => "result",
            XType::Submit => "submit",
        }
        .to_owned()
    }
}

#[derive(Debug, Clone)]
pub struct Instructions(pub String);

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

        Ok(Self(element.pop_value_opt()?.unwrap_or_default()))
    }
}

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

#[derive(Debug, Clone)]
pub struct Title(pub String);

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

        Ok(Self(element.pop_value_opt()?.unwrap_or_default()))
    }
}

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

#[derive(Debug, Clone)]
pub struct Field {
    pub label: Option<String>,
    pub r#type: Option<FieldType>,
    pub var: Option<String>,
    pub desc: Option<Desc>,
    pub required: bool,
    pub values: Vec<Value>,
    pub options: Vec<XOption>,
}

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

        let label = element.attribute_opt("label")?;
        let r#type = element.attribute_opt("type")?;
        let var = element.attribute_opt("var")?;

        let desc = element.pop_child_opt()?;
        let required;
        if let Some(_) = element.pop_child_opt::<Required>()? {
            required = true;
        } else {
            required = false;
        }
        let values = element.pop_children()?;
        let options = element.pop_children()?;

        Ok(Self {
            label,
            r#type,
            var,
            desc,
            required,
            values,
            options,
        })
    }
}

impl IntoElement for Field {
    fn builder(&self) -> peanuts::element::ElementBuilder {
        let mut builder = Element::builder("field", Some(XMLNS))
            .push_attribute_opt("label", self.label.clone())
            .push_attribute_opt("type", self.r#type.clone())
            .push_attribute_opt("var", self.var.clone())
            .push_child_opt(self.desc.clone());

        if self.required {
            builder = builder.push_child(Required)
        }

        builder
            .push_children(self.values.clone())
            .push_children(self.options.clone())
    }
}

#[derive(Debug, Clone)]
pub enum FieldType {
    Boolean,
    Fixed,
    Hidden,
    JIDMulti,
    JIDSingle,
    ListMulti,
    ListSingle,
    TextMulti,
    TextPrivate,
    TextSingle,
}

impl FromStr for FieldType {
    type Err = DeserializeError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match s {
            "boolean" => Ok(Self::Boolean),
            "fixed" => Ok(Self::Fixed),
            "hidden" => Ok(Self::Hidden),
            "jid-multi" => Ok(Self::JIDMulti),
            "jid-single" => Ok(Self::JIDSingle),
            "list-multi" => Ok(Self::ListMulti),
            "list-single" => Ok(Self::ListSingle),
            "text-multi" => Ok(Self::TextMulti),
            "text-private" => Ok(Self::TextPrivate),
            "text-single" => Ok(Self::TextSingle),
            s => Err(DeserializeError::FromStr(s.to_string())),
        }
    }
}

impl ToString for FieldType {
    fn to_string(&self) -> String {
        match self {
            FieldType::Boolean => "boolean",
            FieldType::Fixed => "fixed",
            FieldType::Hidden => "hidden",
            FieldType::JIDMulti => "jid-multi",
            FieldType::JIDSingle => "jid-single",
            FieldType::ListMulti => "list-multi",
            FieldType::ListSingle => "list-single",
            FieldType::TextMulti => "text-multi",
            FieldType::TextPrivate => "text-private",
            FieldType::TextSingle => "text-single",
        }
        .to_owned()
    }
}

#[derive(Debug, Clone)]
pub struct Desc(pub String);

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

        Ok(Self(element.pop_value_opt()?.unwrap_or_default()))
    }
}

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

#[derive(Debug, Clone)]
pub struct Required;

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

        Ok(Self)
    }
}

impl IntoElement for Required {
    fn builder(&self) -> peanuts::element::ElementBuilder {
        Element::builder("required", Some(XMLNS))
    }
}

#[derive(Debug, Clone)]
pub struct XOption {
    pub label: Option<String>,
    pub value: Value,
}

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

        let label = element.attribute_opt("label")?;

        let value = element.pop_child_one()?;

        Ok(Self { label, value })
    }
}

impl IntoElement for XOption {
    fn builder(&self) -> peanuts::element::ElementBuilder {
        Element::builder("option", Some(XMLNS))
            .push_attribute_opt("label", self.label.clone())
            .push_child(self.value.clone())
    }
}

#[derive(Debug, Clone)]
pub struct Value(pub String);

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

        Ok(Self(element.pop_value_opt()?.unwrap_or_default()))
    }
}

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

#[derive(Debug, Clone)]
pub struct Reported {
    /// fields SHOULD NOT contain value children
    fields: Vec<Field>,
}

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

        let fields = element.pop_children()?;

        Ok(Self { fields })
    }
}

impl IntoElement for Reported {
    fn builder(&self) -> peanuts::element::ElementBuilder {
        Element::builder("reported", Some(XMLNS)).push_children(self.fields.clone())
    }
}

#[derive(Debug, Clone)]
pub struct Item {
    fields: Vec<Field>,
}

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

        let fields = element.pop_children()?;

        Ok(Self { fields })
    }
}

impl IntoElement for Item {
    fn builder(&self) -> peanuts::element::ElementBuilder {
        Element::builder("item", Some(XMLNS)).push_children(self.fields.clone())
    }
}