2017-04-29 21:14:34 +00:00
|
|
|
// 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/.
|
|
|
|
|
2017-07-20 19:03:15 +00:00
|
|
|
use try_from::TryFrom;
|
2017-05-06 19:07:03 +00:00
|
|
|
|
2017-04-19 23:43:33 +00:00
|
|
|
use minidom::Element;
|
|
|
|
|
|
|
|
use error::Error;
|
|
|
|
|
2017-04-20 22:16:12 +00:00
|
|
|
use ns;
|
2017-04-19 23:43:33 +00:00
|
|
|
|
2017-04-20 23:41:15 +00:00
|
|
|
#[derive(Debug, Clone)]
|
2017-07-29 03:00:25 +00:00
|
|
|
pub struct Request;
|
|
|
|
|
|
|
|
impl TryFrom<Element> for Request {
|
|
|
|
type Err = Error;
|
|
|
|
|
|
|
|
fn try_from(elem: Element) -> Result<Request, Error> {
|
|
|
|
if !elem.is("request", ns::RECEIPTS) {
|
|
|
|
return Err(Error::ParseError("This is not a request element."));
|
|
|
|
}
|
|
|
|
for _ in elem.children() {
|
|
|
|
return Err(Error::ParseError("Unknown child in request element."));
|
|
|
|
}
|
|
|
|
for _ in elem.attrs() {
|
|
|
|
return Err(Error::ParseError("Unknown attribute in request element."));
|
|
|
|
}
|
|
|
|
Ok(Request)
|
|
|
|
}
|
2017-04-19 23:43:33 +00:00
|
|
|
}
|
|
|
|
|
2017-07-29 03:00:25 +00:00
|
|
|
impl From<Request> for Element {
|
|
|
|
fn from(_: Request) -> Element {
|
|
|
|
Element::builder("request")
|
|
|
|
.ns(ns::RECEIPTS)
|
|
|
|
.build()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct Received {
|
|
|
|
pub id: Option<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TryFrom<Element> for Received {
|
2017-07-20 19:03:15 +00:00
|
|
|
type Err = Error;
|
2017-05-06 19:07:03 +00:00
|
|
|
|
2017-07-29 03:00:25 +00:00
|
|
|
fn try_from(elem: Element) -> Result<Received, Error> {
|
|
|
|
if !elem.is("received", ns::RECEIPTS) {
|
|
|
|
return Err(Error::ParseError("This is not a received element."));
|
|
|
|
}
|
2017-05-06 19:07:03 +00:00
|
|
|
for _ in elem.children() {
|
2017-07-29 03:00:25 +00:00
|
|
|
return Err(Error::ParseError("Unknown child in received element."));
|
2017-05-06 19:07:03 +00:00
|
|
|
}
|
2017-07-29 03:00:25 +00:00
|
|
|
for (attr, _) in elem.attrs() {
|
|
|
|
if attr != "id" {
|
|
|
|
return Err(Error::ParseError("Unknown attribute in received element."));
|
2017-05-24 21:43:21 +00:00
|
|
|
}
|
2017-05-06 19:07:03 +00:00
|
|
|
}
|
2017-07-29 03:00:25 +00:00
|
|
|
Ok(Received {
|
|
|
|
id: get_attr!(elem, "id", optional),
|
|
|
|
})
|
2017-04-19 23:43:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-29 03:00:25 +00:00
|
|
|
impl From<Received> for Element {
|
|
|
|
fn from(received: Received) -> Element {
|
|
|
|
Element::builder("received")
|
|
|
|
.ns(ns::RECEIPTS)
|
|
|
|
.attr("id", received.id)
|
|
|
|
.build()
|
2017-04-23 02:21:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-19 23:43:33 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2017-05-06 19:07:03 +00:00
|
|
|
use super::*;
|
2017-04-19 23:43:33 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_simple() {
|
|
|
|
let elem: Element = "<request xmlns='urn:xmpp:receipts'/>".parse().unwrap();
|
2017-07-29 03:00:25 +00:00
|
|
|
Request::try_from(elem).unwrap();
|
2017-04-19 23:43:33 +00:00
|
|
|
|
|
|
|
let elem: Element = "<received xmlns='urn:xmpp:receipts'/>".parse().unwrap();
|
2017-07-29 03:00:25 +00:00
|
|
|
Received::try_from(elem).unwrap();
|
2017-04-19 23:43:33 +00:00
|
|
|
|
|
|
|
let elem: Element = "<received xmlns='urn:xmpp:receipts' id='coucou'/>".parse().unwrap();
|
2017-07-29 03:00:25 +00:00
|
|
|
Received::try_from(elem).unwrap();
|
2017-04-19 23:43:33 +00:00
|
|
|
}
|
2017-04-23 02:21:21 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_serialise() {
|
2017-07-29 03:00:25 +00:00
|
|
|
let receipt = Request;
|
2017-05-23 22:31:33 +00:00
|
|
|
let elem: Element = receipt.into();
|
2017-04-23 02:21:21 +00:00
|
|
|
assert!(elem.is("request", ns::RECEIPTS));
|
2017-07-29 03:00:25 +00:00
|
|
|
assert_eq!(elem.attrs().count(), 0);
|
2017-04-23 02:21:21 +00:00
|
|
|
|
2017-07-29 03:00:25 +00:00
|
|
|
let receipt = Received {
|
|
|
|
id: Some(String::from("coucou")),
|
|
|
|
};
|
2017-05-23 22:31:33 +00:00
|
|
|
let elem: Element = receipt.into();
|
2017-04-23 02:21:21 +00:00
|
|
|
assert!(elem.is("received", ns::RECEIPTS));
|
|
|
|
assert_eq!(elem.attr("id"), Some("coucou"));
|
|
|
|
}
|
2017-04-19 23:43:33 +00:00
|
|
|
}
|