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:30:52 +00:00
|
|
|
|
2017-05-06 19:46:11 +00:00
|
|
|
use hashes::Hash;
|
2017-04-22 16:39:21 +00:00
|
|
|
|
2017-05-04 00:20:22 +00:00
|
|
|
use minidom::{Element, IntoElements, ElementEmitter};
|
2017-06-16 19:37:48 +00:00
|
|
|
use chrono::{DateTime, FixedOffset};
|
2017-04-22 16:39:21 +00:00
|
|
|
|
|
|
|
use error::Error;
|
|
|
|
use ns;
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq)]
|
|
|
|
pub struct Range {
|
|
|
|
pub offset: u64,
|
|
|
|
pub length: Option<u64>,
|
|
|
|
pub hashes: Vec<Hash>,
|
|
|
|
}
|
|
|
|
|
2017-04-24 18:52:41 +00:00
|
|
|
impl IntoElements for Range {
|
|
|
|
fn into_elements(self, emitter: &mut ElementEmitter) {
|
|
|
|
let mut elem = Element::builder("range")
|
|
|
|
.ns(ns::JINGLE_FT)
|
2017-05-27 22:18:15 +00:00
|
|
|
.attr("offset", self.offset)
|
|
|
|
.attr("length", self.length)
|
2017-04-24 18:52:41 +00:00
|
|
|
.build();
|
|
|
|
for hash in self.hashes {
|
2017-05-23 22:31:33 +00:00
|
|
|
elem.append_child(hash.into());
|
2017-04-24 18:52:41 +00:00
|
|
|
}
|
|
|
|
emitter.append_child(elem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-22 16:39:21 +00:00
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct File {
|
2017-06-16 19:37:48 +00:00
|
|
|
pub date: Option<DateTime<FixedOffset>>,
|
2017-04-22 16:39:21 +00:00
|
|
|
pub media_type: Option<String>,
|
|
|
|
pub name: Option<String>,
|
2017-04-28 22:42:27 +00:00
|
|
|
pub desc: Option<String>,
|
2017-04-24 18:52:41 +00:00
|
|
|
pub size: Option<u64>,
|
2017-04-22 16:39:21 +00:00
|
|
|
pub range: Option<Range>,
|
|
|
|
pub hashes: Vec<Hash>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct Description {
|
|
|
|
pub file: File,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
2017-04-28 22:43:24 +00:00
|
|
|
pub enum Creator {
|
|
|
|
Initiator,
|
|
|
|
Responder,
|
2017-04-22 16:39:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct Checksum {
|
|
|
|
pub name: String,
|
|
|
|
pub creator: Creator,
|
|
|
|
pub file: File,
|
|
|
|
}
|
|
|
|
|
2017-04-28 22:43:47 +00:00
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct Received {
|
|
|
|
pub name: String,
|
|
|
|
pub creator: Creator,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl IntoElements for Received {
|
|
|
|
fn into_elements(self, emitter: &mut ElementEmitter) {
|
|
|
|
let elem = Element::builder("received")
|
|
|
|
.ns(ns::JINGLE_FT)
|
|
|
|
.attr("name", self.name)
|
|
|
|
.attr("creator", match self.creator {
|
|
|
|
Creator::Initiator => "initiator",
|
|
|
|
Creator::Responder => "responder",
|
|
|
|
})
|
|
|
|
.build();
|
|
|
|
emitter.append_child(elem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-23 22:31:33 +00:00
|
|
|
impl TryFrom<Element> for Description {
|
2017-07-20 19:03:15 +00:00
|
|
|
type Err = Error;
|
2017-04-22 16:39:21 +00:00
|
|
|
|
2017-05-23 22:31:33 +00:00
|
|
|
fn try_from(elem: Element) -> Result<Description, Error> {
|
2017-05-06 19:30:52 +00:00
|
|
|
if !elem.is("description", ns::JINGLE_FT) {
|
|
|
|
return Err(Error::ParseError("This is not a JingleFT description element."));
|
2017-04-22 16:39:21 +00:00
|
|
|
}
|
2017-07-20 22:08:23 +00:00
|
|
|
if elem.children().count() != 1 {
|
2017-05-06 19:30:52 +00:00
|
|
|
return Err(Error::ParseError("JingleFT description element must have exactly one child."));
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut date = None;
|
|
|
|
let mut media_type = None;
|
|
|
|
let mut name = None;
|
|
|
|
let mut desc = None;
|
|
|
|
let mut size = None;
|
|
|
|
let mut range = None;
|
|
|
|
let mut hashes = vec!();
|
|
|
|
for description_payload in elem.children() {
|
|
|
|
if !description_payload.is("file", ns::JINGLE_FT) {
|
|
|
|
return Err(Error::ParseError("Unknown element in JingleFT description."));
|
|
|
|
}
|
|
|
|
for file_payload in description_payload.children() {
|
|
|
|
if file_payload.is("date", ns::JINGLE_FT) {
|
|
|
|
if date.is_some() {
|
|
|
|
return Err(Error::ParseError("File must not have more than one date."));
|
|
|
|
}
|
2017-06-16 19:37:48 +00:00
|
|
|
date = Some(file_payload.text().parse()?);
|
2017-05-06 19:30:52 +00:00
|
|
|
} else if file_payload.is("media-type", ns::JINGLE_FT) {
|
|
|
|
if media_type.is_some() {
|
|
|
|
return Err(Error::ParseError("File must not have more than one media-type."));
|
|
|
|
}
|
|
|
|
media_type = Some(file_payload.text());
|
|
|
|
} else if file_payload.is("name", ns::JINGLE_FT) {
|
|
|
|
if name.is_some() {
|
|
|
|
return Err(Error::ParseError("File must not have more than one name."));
|
|
|
|
}
|
|
|
|
name = Some(file_payload.text());
|
|
|
|
} else if file_payload.is("desc", ns::JINGLE_FT) {
|
|
|
|
if desc.is_some() {
|
|
|
|
return Err(Error::ParseError("File must not have more than one desc."));
|
2017-04-22 16:39:21 +00:00
|
|
|
}
|
2017-05-06 19:30:52 +00:00
|
|
|
desc = Some(file_payload.text());
|
|
|
|
} else if file_payload.is("size", ns::JINGLE_FT) {
|
|
|
|
if size.is_some() {
|
|
|
|
return Err(Error::ParseError("File must not have more than one size."));
|
|
|
|
}
|
|
|
|
size = Some(file_payload.text().parse()?);
|
|
|
|
} else if file_payload.is("range", ns::JINGLE_FT) {
|
|
|
|
if range.is_some() {
|
|
|
|
return Err(Error::ParseError("File must not have more than one range."));
|
|
|
|
}
|
2017-05-21 20:02:06 +00:00
|
|
|
let offset = get_attr!(file_payload, "offset", default);
|
|
|
|
let length = get_attr!(file_payload, "length", optional);
|
2017-05-06 19:30:52 +00:00
|
|
|
let mut range_hashes = vec!();
|
|
|
|
for hash_element in file_payload.children() {
|
|
|
|
if !hash_element.is("hash", ns::HASHES) {
|
|
|
|
return Err(Error::ParseError("Unknown element in JingleFT range."));
|
|
|
|
}
|
2017-05-23 22:31:33 +00:00
|
|
|
range_hashes.push(Hash::try_from(hash_element.clone())?);
|
2017-05-06 19:30:52 +00:00
|
|
|
}
|
|
|
|
range = Some(Range {
|
|
|
|
offset: offset,
|
|
|
|
length: length,
|
|
|
|
hashes: range_hashes,
|
|
|
|
});
|
|
|
|
} else if file_payload.is("hash", ns::HASHES) {
|
2017-05-23 22:31:33 +00:00
|
|
|
hashes.push(Hash::try_from(file_payload.clone())?);
|
2017-05-06 19:30:52 +00:00
|
|
|
} else {
|
|
|
|
return Err(Error::ParseError("Unknown element in JingleFT file."));
|
2017-04-22 16:39:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-06 19:30:52 +00:00
|
|
|
Ok(Description {
|
|
|
|
file: File {
|
|
|
|
date: date,
|
|
|
|
media_type: media_type,
|
|
|
|
name: name,
|
|
|
|
desc: desc,
|
|
|
|
size: size,
|
|
|
|
range: range,
|
|
|
|
hashes: hashes,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2017-04-22 16:39:21 +00:00
|
|
|
}
|
|
|
|
|
2017-07-20 19:36:13 +00:00
|
|
|
impl From<File> for Element {
|
|
|
|
fn from(file: File) -> Element {
|
2017-05-06 19:30:52 +00:00
|
|
|
let mut root = Element::builder("file")
|
|
|
|
.ns(ns::JINGLE_FT)
|
|
|
|
.build();
|
2017-07-20 19:36:13 +00:00
|
|
|
if let Some(date) = file.date {
|
2017-05-06 19:30:52 +00:00
|
|
|
root.append_child(Element::builder("date")
|
|
|
|
.ns(ns::JINGLE_FT)
|
2017-06-16 19:37:48 +00:00
|
|
|
.append(date.to_rfc3339())
|
2017-05-06 19:30:52 +00:00
|
|
|
.build());
|
|
|
|
}
|
2017-07-20 19:36:13 +00:00
|
|
|
if let Some(media_type) = file.media_type {
|
2017-05-06 19:30:52 +00:00
|
|
|
root.append_child(Element::builder("media-type")
|
|
|
|
.ns(ns::JINGLE_FT)
|
2017-05-23 22:31:33 +00:00
|
|
|
.append(media_type)
|
2017-05-06 19:30:52 +00:00
|
|
|
.build());
|
|
|
|
}
|
2017-07-20 19:36:13 +00:00
|
|
|
if let Some(name) = file.name {
|
2017-05-06 19:30:52 +00:00
|
|
|
root.append_child(Element::builder("name")
|
|
|
|
.ns(ns::JINGLE_FT)
|
2017-05-23 22:31:33 +00:00
|
|
|
.append(name)
|
2017-05-06 19:30:52 +00:00
|
|
|
.build());
|
|
|
|
}
|
2017-07-20 19:36:13 +00:00
|
|
|
if let Some(desc) = file.desc {
|
2017-05-06 19:30:52 +00:00
|
|
|
root.append_child(Element::builder("desc")
|
|
|
|
.ns(ns::JINGLE_FT)
|
2017-05-23 22:31:33 +00:00
|
|
|
.append(desc)
|
2017-05-06 19:30:52 +00:00
|
|
|
.build());
|
|
|
|
}
|
2017-07-20 19:36:13 +00:00
|
|
|
if let Some(size) = file.size {
|
2017-05-06 19:30:52 +00:00
|
|
|
root.append_child(Element::builder("size")
|
|
|
|
.ns(ns::JINGLE_FT)
|
|
|
|
.append(format!("{}", size))
|
|
|
|
.build());
|
|
|
|
}
|
2017-07-20 19:36:13 +00:00
|
|
|
if let Some(range) = file.range {
|
2017-05-06 19:30:52 +00:00
|
|
|
root.append_child(Element::builder("range")
|
|
|
|
.ns(ns::JINGLE_FT)
|
2017-05-23 22:31:33 +00:00
|
|
|
.append(range)
|
2017-05-06 19:30:52 +00:00
|
|
|
.build());
|
|
|
|
}
|
2017-07-20 19:36:13 +00:00
|
|
|
for hash in file.hashes {
|
2017-05-23 22:31:33 +00:00
|
|
|
root.append_child(hash.into());
|
2017-05-06 19:30:52 +00:00
|
|
|
}
|
|
|
|
root
|
2017-04-24 18:25:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-20 19:36:13 +00:00
|
|
|
impl From<Description> for Element {
|
|
|
|
fn from(description: Description) -> Element {
|
|
|
|
let file: Element = description.file.into();
|
2017-05-06 19:30:52 +00:00
|
|
|
Element::builder("description")
|
|
|
|
.ns(ns::JINGLE_FT)
|
|
|
|
.append(file)
|
|
|
|
.build()
|
|
|
|
}
|
2017-04-24 18:25:00 +00:00
|
|
|
}
|
|
|
|
|
2017-04-22 16:39:21 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2017-05-06 19:30:52 +00:00
|
|
|
use super::*;
|
2017-05-18 22:09:29 +00:00
|
|
|
use hashes::Algo;
|
2017-05-24 23:30:29 +00:00
|
|
|
use base64;
|
2017-04-22 16:39:21 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_description() {
|
|
|
|
let elem: Element = r#"
|
|
|
|
<description xmlns='urn:xmpp:jingle:apps:file-transfer:5'>
|
|
|
|
<file>
|
|
|
|
<media-type>text/plain</media-type>
|
|
|
|
<name>test.txt</name>
|
2017-06-16 19:37:48 +00:00
|
|
|
<date>2015-07-26T21:46:00+01:00</date>
|
2017-04-22 16:39:21 +00:00
|
|
|
<size>6144</size>
|
|
|
|
<hash xmlns='urn:xmpp:hashes:2'
|
|
|
|
algo='sha-1'>w0mcJylzCn+AfvuGdqkty2+KP48=</hash>
|
|
|
|
</file>
|
|
|
|
</description>
|
|
|
|
"#.parse().unwrap();
|
|
|
|
|
2017-05-23 22:31:33 +00:00
|
|
|
let desc = Description::try_from(elem).unwrap();
|
2017-04-22 16:39:21 +00:00
|
|
|
assert_eq!(desc.file.media_type, Some(String::from("text/plain")));
|
|
|
|
assert_eq!(desc.file.name, Some(String::from("test.txt")));
|
2017-04-28 22:42:27 +00:00
|
|
|
assert_eq!(desc.file.desc, None);
|
2017-06-16 19:37:48 +00:00
|
|
|
assert_eq!(desc.file.date, Some(DateTime::parse_from_rfc3339("2015-07-26T21:46:00+01:00").unwrap()));
|
2017-04-24 18:52:41 +00:00
|
|
|
assert_eq!(desc.file.size, Some(6144u64));
|
2017-04-22 16:39:21 +00:00
|
|
|
assert_eq!(desc.file.range, None);
|
2017-05-18 22:09:29 +00:00
|
|
|
assert_eq!(desc.file.hashes[0].algo, Algo::Sha_1);
|
2017-05-24 23:30:29 +00:00
|
|
|
assert_eq!(desc.file.hashes[0].hash, base64::decode("w0mcJylzCn+AfvuGdqkty2+KP48=").unwrap());
|
2017-04-22 16:39:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_request() {
|
|
|
|
let elem: Element = r#"
|
|
|
|
<description xmlns='urn:xmpp:jingle:apps:file-transfer:5'>
|
|
|
|
<file>
|
|
|
|
<hash xmlns='urn:xmpp:hashes:2'
|
|
|
|
algo='sha-1'>w0mcJylzCn+AfvuGdqkty2+KP48=</hash>
|
|
|
|
</file>
|
|
|
|
</description>
|
|
|
|
"#.parse().unwrap();
|
|
|
|
|
2017-05-23 22:31:33 +00:00
|
|
|
let desc = Description::try_from(elem).unwrap();
|
2017-04-22 16:39:21 +00:00
|
|
|
assert_eq!(desc.file.media_type, None);
|
|
|
|
assert_eq!(desc.file.name, None);
|
2017-04-28 22:42:27 +00:00
|
|
|
assert_eq!(desc.file.desc, None);
|
2017-04-22 16:39:21 +00:00
|
|
|
assert_eq!(desc.file.date, None);
|
|
|
|
assert_eq!(desc.file.size, None);
|
|
|
|
assert_eq!(desc.file.range, None);
|
2017-05-18 22:09:29 +00:00
|
|
|
assert_eq!(desc.file.hashes[0].algo, Algo::Sha_1);
|
2017-05-24 23:30:29 +00:00
|
|
|
assert_eq!(desc.file.hashes[0].hash, base64::decode("w0mcJylzCn+AfvuGdqkty2+KP48=").unwrap());
|
2017-04-22 16:39:21 +00:00
|
|
|
}
|
|
|
|
}
|