Add a blocking command parser (XEP-0191).
This commit is contained in:
parent
f85b451fcf
commit
b7b3340c9f
3 changed files with 173 additions and 0 deletions
165
src/blocking.rs
Normal file
165
src/blocking.rs
Normal file
|
@ -0,0 +1,165 @@
|
||||||
|
// Copyright (c) 2017 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
|
||||||
|
//
|
||||||
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
use try_from::TryFrom;
|
||||||
|
|
||||||
|
use jid::Jid;
|
||||||
|
use minidom::Element;
|
||||||
|
|
||||||
|
use error::Error;
|
||||||
|
|
||||||
|
use ns;
|
||||||
|
|
||||||
|
generate_empty_element!(BlocklistRequest, "blocklist", ns::BLOCKING);
|
||||||
|
|
||||||
|
fn get_children_items(elem: Element) -> Result<Vec<Jid>, Error> {
|
||||||
|
let mut items = vec!();
|
||||||
|
for child in elem.children() {
|
||||||
|
check_self!(child, "item", ns::BLOCKING);
|
||||||
|
check_no_unknown_attributes!(child, "item", ["jid"]);
|
||||||
|
check_no_children!(child, "item");
|
||||||
|
items.push(get_attr!(child, "jid", required));
|
||||||
|
}
|
||||||
|
Ok(items)
|
||||||
|
}
|
||||||
|
|
||||||
|
macro_rules! generate_blocking_element {
|
||||||
|
($elem:ident, $name:tt) => (
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct $elem {
|
||||||
|
pub items: Vec<Jid>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl TryFrom<Element> for $elem {
|
||||||
|
type Err = Error;
|
||||||
|
|
||||||
|
fn try_from(elem: Element) -> Result<$elem, Error> {
|
||||||
|
check_self!(elem, $name, ns::BLOCKING);
|
||||||
|
check_no_attributes!(elem, $name);
|
||||||
|
Ok($elem {
|
||||||
|
items: get_children_items(elem)?,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl From<$elem> for Element {
|
||||||
|
fn from(elem: $elem) -> Element {
|
||||||
|
Element::builder($name)
|
||||||
|
.ns(ns::BLOCKING)
|
||||||
|
.append(elem.items.into_iter().map(|jid| {
|
||||||
|
Element::builder("item")
|
||||||
|
.ns(ns::BLOCKING)
|
||||||
|
.attr("jid", jid)
|
||||||
|
.build()
|
||||||
|
}).collect::<Vec<_>>())
|
||||||
|
.build()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
generate_blocking_element!(BlocklistResult, "blocklist");
|
||||||
|
generate_blocking_element!(Block, "block");
|
||||||
|
generate_blocking_element!(Unblock, "unblock");
|
||||||
|
|
||||||
|
generate_empty_element!(Blocked, "blocked", ns::BLOCKING_ERRORS);
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_simple() {
|
||||||
|
let elem: Element = "<blocklist xmlns='urn:xmpp:blocking'/>".parse().unwrap();
|
||||||
|
let request_elem = elem.clone();
|
||||||
|
BlocklistRequest::try_from(request_elem).unwrap();
|
||||||
|
|
||||||
|
let result_elem = elem.clone();
|
||||||
|
let result = BlocklistResult::try_from(result_elem).unwrap();
|
||||||
|
assert_eq!(result.items, vec!());
|
||||||
|
|
||||||
|
let elem: Element = "<block xmlns='urn:xmpp:blocking'/>".parse().unwrap();
|
||||||
|
let block = Block::try_from(elem).unwrap();
|
||||||
|
assert_eq!(block.items, vec!());
|
||||||
|
|
||||||
|
let elem: Element = "<unblock xmlns='urn:xmpp:blocking'/>".parse().unwrap();
|
||||||
|
let unblock = Unblock::try_from(elem).unwrap();
|
||||||
|
assert_eq!(unblock.items, vec!());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_items() {
|
||||||
|
let elem: Element = "<blocklist xmlns='urn:xmpp:blocking'><item jid='coucou@coucou'/><item jid='domain'/></blocklist>".parse().unwrap();
|
||||||
|
let two_items = vec!(
|
||||||
|
Jid {
|
||||||
|
node: Some(String::from("coucou")),
|
||||||
|
domain: String::from("coucou"),
|
||||||
|
resource: None,
|
||||||
|
},
|
||||||
|
Jid {
|
||||||
|
node: None,
|
||||||
|
domain: String::from("domain"),
|
||||||
|
resource: None,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
let request_elem = elem.clone();
|
||||||
|
let error = BlocklistRequest::try_from(request_elem).unwrap_err();
|
||||||
|
let message = match error {
|
||||||
|
Error::ParseError(string) => string,
|
||||||
|
_ => panic!(),
|
||||||
|
};
|
||||||
|
assert_eq!(message, "Unknown child in blocklist element.");
|
||||||
|
|
||||||
|
let result_elem = elem.clone();
|
||||||
|
let result = BlocklistResult::try_from(result_elem).unwrap();
|
||||||
|
assert_eq!(result.items, two_items);
|
||||||
|
|
||||||
|
let elem: Element = "<block xmlns='urn:xmpp:blocking'><item jid='coucou@coucou'/><item jid='domain'/></block>".parse().unwrap();
|
||||||
|
let block = Block::try_from(elem).unwrap();
|
||||||
|
assert_eq!(block.items, two_items);
|
||||||
|
|
||||||
|
let elem: Element = "<unblock xmlns='urn:xmpp:blocking'><item jid='coucou@coucou'/><item jid='domain'/></unblock>".parse().unwrap();
|
||||||
|
let unblock = Unblock::try_from(elem).unwrap();
|
||||||
|
assert_eq!(unblock.items, two_items);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_invalid() {
|
||||||
|
let elem: Element = "<blocklist xmlns='urn:xmpp:blocking' coucou=''/>".parse().unwrap();
|
||||||
|
let request_elem = elem.clone();
|
||||||
|
let error = BlocklistRequest::try_from(request_elem).unwrap_err();
|
||||||
|
let message = match error {
|
||||||
|
Error::ParseError(string) => string,
|
||||||
|
_ => panic!(),
|
||||||
|
};
|
||||||
|
assert_eq!(message, "Unknown attribute in blocklist element.");
|
||||||
|
|
||||||
|
let result_elem = elem.clone();
|
||||||
|
let error = BlocklistResult::try_from(result_elem).unwrap_err();
|
||||||
|
let message = match error {
|
||||||
|
Error::ParseError(string) => string,
|
||||||
|
_ => panic!(),
|
||||||
|
};
|
||||||
|
assert_eq!(message, "Unknown attribute in blocklist element.");
|
||||||
|
|
||||||
|
let elem: Element = "<block xmlns='urn:xmpp:blocking' coucou=''/>".parse().unwrap();
|
||||||
|
let error = Block::try_from(elem).unwrap_err();
|
||||||
|
let message = match error {
|
||||||
|
Error::ParseError(string) => string,
|
||||||
|
_ => panic!(),
|
||||||
|
};
|
||||||
|
assert_eq!(message, "Unknown attribute in block element.");
|
||||||
|
|
||||||
|
let elem: Element = "<unblock xmlns='urn:xmpp:blocking' coucou=''/>".parse().unwrap();
|
||||||
|
let error = Unblock::try_from(elem).unwrap_err();
|
||||||
|
let message = match error {
|
||||||
|
Error::ParseError(string) => string,
|
||||||
|
_ => panic!(),
|
||||||
|
};
|
||||||
|
assert_eq!(message, "Unknown attribute in unblock element.");
|
||||||
|
}
|
||||||
|
}
|
|
@ -301,6 +301,9 @@ pub mod jingle;
|
||||||
/// XEP-0184: Message Delivery Receipts
|
/// XEP-0184: Message Delivery Receipts
|
||||||
pub mod receipts;
|
pub mod receipts;
|
||||||
|
|
||||||
|
/// XEP-0191: Blocking Command
|
||||||
|
pub mod blocking;
|
||||||
|
|
||||||
/// XEP-0199: XMPP Ping
|
/// XEP-0199: XMPP Ping
|
||||||
pub mod ping;
|
pub mod ping;
|
||||||
|
|
||||||
|
|
|
@ -62,6 +62,11 @@ pub const JINGLE: &str = "urn:xmpp:jingle:1";
|
||||||
/// XEP-0184: Message Delivery Receipts
|
/// XEP-0184: Message Delivery Receipts
|
||||||
pub const RECEIPTS: &str = "urn:xmpp:receipts";
|
pub const RECEIPTS: &str = "urn:xmpp:receipts";
|
||||||
|
|
||||||
|
/// XEP-0191: Blocking Command
|
||||||
|
pub const BLOCKING: &str = "urn:xmpp:blocking";
|
||||||
|
/// XEP-0191: Blocking Command
|
||||||
|
pub const BLOCKING_ERRORS: &str = "urn:xmpp:blocking:errors";
|
||||||
|
|
||||||
/// XEP-0199: XMPP Ping
|
/// XEP-0199: XMPP Ping
|
||||||
pub const PING: &str = "urn:xmpp:ping";
|
pub const PING: &str = "urn:xmpp:ping";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue