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
|
use std::str;
use quick_xml::{
events::{BytesStart, Event},
name::QName,
};
use super::Element;
use crate::{JabberError, Result, JID};
const XMLNS_STREAM: &str = "http://etherx.jabber.org/streams";
const VERSION: &str = "1.0";
enum XMLNS {
Client,
Server,
}
impl From<XMLNS> for &str {
fn from(xmlns: XMLNS) -> Self {
match xmlns {
XMLNS::Client => return "jabber:client",
XMLNS::Server => return "jabber:server",
}
}
}
impl TryInto<XMLNS> for &str {
type Error = JabberError;
fn try_into(self) -> Result<XMLNS> {
match self {
"jabber:client" => Ok(XMLNS::Client),
"jabber:server" => Ok(XMLNS::Server),
_ => Err(JabberError::UnknownNamespace),
}
}
}
pub struct Stream {
from: Option<JID>,
id: Option<String>,
to: Option<JID>,
version: Option<String>,
lang: Option<String>,
ns: XMLNS,
}
impl Stream {
pub fn new_client(from: &JID, to: &JID, id: Option<String>, lang: Option<String>) -> Self {
Self {
from: Some(from.clone()),
id,
to: Some(to.clone()),
version: Some(VERSION.to_owned()),
lang,
ns: XMLNS::Client,
}
}
fn event(&self) -> Event<'static> {
let mut start = BytesStart::new("stream:stream");
if let Some(from) = &self.from {
start.push_attribute(("from", from.to_string().as_str()));
}
if let Some(id) = &self.id {
start.push_attribute(("id", id.as_str()));
}
if let Some(to) = &self.to {
start.push_attribute(("to", to.to_string().as_str()));
}
if let Some(version) = &self.version {
start.push_attribute(("version", version.to_string().as_str()));
}
if let Some(lang) = &self.lang {
start.push_attribute(("xml:lang", lang.as_str()));
}
match &self.ns {
XMLNS::Client => start.push_attribute(("xmlns", XMLNS::Client.into())),
XMLNS::Server => start.push_attribute(("xmlns", XMLNS::Server.into())),
}
start.push_attribute(("xmlns:stream", XMLNS_STREAM));
Event::Start(start)
}
}
impl<'e> Into<Element<'e>> for Stream {
fn into(self) -> Element<'e> {
Element {
event: self.event(),
children: None,
}
}
}
impl<'e> TryFrom<Element<'e>> for Stream {
type Error = JabberError;
fn try_from(value: Element<'e>) -> Result<Stream> {
let (mut from, mut id, mut to, mut version, mut lang, mut ns) =
(None, None, None, None, None, XMLNS::Client);
if let Event::Start(e) = value.event.as_ref() {
for attribute in e.attributes() {
let attribute = attribute?;
match attribute.key {
QName(b"from") => {
from = Some(str::from_utf8(&attribute.value)?.to_string().try_into()?);
}
QName(b"id") => {
id = Some(str::from_utf8(&attribute.value)?.to_owned());
}
QName(b"to") => {
to = Some(str::from_utf8(&attribute.value)?.to_string().try_into()?);
}
QName(b"version") => {
version = Some(str::from_utf8(&attribute.value)?.to_owned());
}
QName(b"lang") => {
lang = Some(str::from_utf8(&attribute.value)?.to_owned());
}
QName(b"xmlns") => {
ns = str::from_utf8(&attribute.value)?.try_into()?;
}
_ => {
println!("unknown attribute: {:?}", attribute)
}
}
}
Ok(Stream {
from,
id,
to,
version,
lang,
ns,
})
} else {
Err(JabberError::ParseError)
}
}
}
#[derive(PartialEq, Debug)]
pub enum StreamFeature {
StartTls,
Sasl(Vec<String>),
Bind,
Unknown,
}
impl<'e> TryFrom<Element<'e>> for Vec<StreamFeature> {
type Error = JabberError;
fn try_from(features_element: Element) -> Result<Self> {
let mut features = Vec::new();
if let Some(children) = features_element.children {
for feature_element in children {
match feature_element.event {
Event::Start(e) => match e.name() {
QName(b"starttls") => features.push(StreamFeature::StartTls),
QName(b"mechanisms") => {
let mut mechanisms = Vec::new();
if let Some(children) = feature_element.children {
for mechanism_element in children {
if let Some(children) = mechanism_element.children {
for mechanism_text in children {
match mechanism_text.event {
Event::Text(e) => mechanisms
.push(str::from_utf8(e.as_ref())?.to_owned()),
_ => {}
}
}
}
}
}
features.push(StreamFeature::Sasl(mechanisms))
}
_ => {}
},
_ => features.push(StreamFeature::Unknown),
}
}
}
Ok(features)
}
}
|