2017-04-19 20:52:14 +00:00
|
|
|
use std::str::FromStr;
|
|
|
|
|
|
|
|
use minidom::Element;
|
|
|
|
|
|
|
|
use error::Error;
|
|
|
|
|
2017-04-20 22:16:12 +00:00
|
|
|
use ns;
|
2017-04-19 20:52:14 +00:00
|
|
|
|
2017-04-20 23:41:15 +00:00
|
|
|
#[derive(Debug, Clone)]
|
2017-04-19 20:52:14 +00:00
|
|
|
pub enum Stanza {
|
|
|
|
Iq,
|
|
|
|
Message,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Stanza {
|
|
|
|
fn default() -> Stanza {
|
|
|
|
Stanza::Iq
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FromStr for Stanza {
|
|
|
|
type Err = Error;
|
|
|
|
|
|
|
|
fn from_str(s: &str) -> Result<Stanza, Error> {
|
|
|
|
if s == "iq" {
|
|
|
|
Ok(Stanza::Iq)
|
|
|
|
} else if s == "message" {
|
|
|
|
Ok(Stanza::Message)
|
|
|
|
} else {
|
|
|
|
Err(Error::ParseError("Unknown 'stanza' attribute."))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-20 23:41:15 +00:00
|
|
|
#[derive(Debug, Clone)]
|
2017-04-19 20:52:14 +00:00
|
|
|
pub enum IBB {
|
|
|
|
Open { block_size: u16, sid: String, stanza: Stanza },
|
|
|
|
Data(u16, String, Vec<u8>),
|
|
|
|
Close(String),
|
|
|
|
}
|
|
|
|
|
|
|
|
fn optional_attr<T: FromStr>(root: &Element, attr: &str) -> Option<T> {
|
|
|
|
root.attr(attr)
|
|
|
|
.and_then(|value| value.parse().ok())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn required_attr<T: FromStr>(root: &Element, attr: &str, err: Error) -> Result<T, Error> {
|
|
|
|
optional_attr(root, attr).ok_or(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn parse_ibb(root: &Element) -> Result<IBB, Error> {
|
2017-04-20 22:16:12 +00:00
|
|
|
if root.is("open", ns::IBB) {
|
2017-04-19 20:52:14 +00:00
|
|
|
let block_size = required_attr(root, "block-size", Error::ParseError("Required attribute 'block-size' missing in open element."))?;
|
|
|
|
let sid = required_attr(root, "sid", Error::ParseError("Required attribute 'sid' missing in open element."))?;
|
|
|
|
let stanza = root.attr("stanza")
|
|
|
|
.and_then(|value| value.parse().ok())
|
2017-04-21 00:28:58 +00:00
|
|
|
.unwrap_or_default();
|
2017-04-19 20:52:14 +00:00
|
|
|
for _ in root.children() {
|
|
|
|
return Err(Error::ParseError("Unknown child in open element."));
|
|
|
|
}
|
|
|
|
Ok(IBB::Open {
|
|
|
|
block_size: block_size,
|
|
|
|
sid: sid,
|
|
|
|
stanza: stanza
|
|
|
|
})
|
|
|
|
} else {
|
2017-04-19 22:41:54 +00:00
|
|
|
Err(Error::ParseError("This is not an ibb element."))
|
2017-04-19 20:52:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use minidom::Element;
|
|
|
|
use error::Error;
|
|
|
|
use ibb;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_simple() {
|
|
|
|
let elem: Element = "<open xmlns='http://jabber.org/protocol/ibb' block-size='128' sid='coucou'/>".parse().unwrap();
|
|
|
|
ibb::parse_ibb(&elem).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_invalid() {
|
|
|
|
let elem: Element = "<open xmlns='http://jabber.org/protocol/ibb'/>".parse().unwrap();
|
|
|
|
let error = ibb::parse_ibb(&elem).unwrap_err();
|
|
|
|
let message = match error {
|
|
|
|
Error::ParseError(string) => string,
|
|
|
|
_ => panic!(),
|
|
|
|
};
|
|
|
|
assert_eq!(message, "Required attribute 'block-size' missing in open element.");
|
|
|
|
|
|
|
|
// TODO: maybe make a better error message here.
|
|
|
|
let elem: Element = "<open xmlns='http://jabber.org/protocol/ibb' block-size='-5'/>".parse().unwrap();
|
|
|
|
let error = ibb::parse_ibb(&elem).unwrap_err();
|
|
|
|
let message = match error {
|
|
|
|
Error::ParseError(string) => string,
|
|
|
|
_ => panic!(),
|
|
|
|
};
|
|
|
|
assert_eq!(message, "Required attribute 'block-size' missing in open element.");
|
|
|
|
|
|
|
|
let elem: Element = "<open xmlns='http://jabber.org/protocol/ibb' block-size='128'/>".parse().unwrap();
|
|
|
|
let error = ibb::parse_ibb(&elem).unwrap_err();
|
|
|
|
let message = match error {
|
|
|
|
Error::ParseError(string) => string,
|
|
|
|
_ => panic!(),
|
|
|
|
};
|
|
|
|
assert_eq!(message, "Required attribute 'sid' missing in open element.");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[ignore]
|
|
|
|
fn test_invalid_stanza() {
|
|
|
|
let elem: Element = "<open xmlns='http://jabber.org/protocol/ibb' block-size='128' sid='coucou' stanza='fdsq'/>".parse().unwrap();
|
|
|
|
let error = ibb::parse_ibb(&elem).unwrap_err();
|
|
|
|
let message = match error {
|
|
|
|
Error::ParseError(string) => string,
|
|
|
|
_ => panic!(),
|
|
|
|
};
|
|
|
|
assert_eq!(message, "Wrong value for 'stanza' attribute in open.");
|
|
|
|
}
|
|
|
|
}
|