use std::borrow::Cow;
use crate::core::{FromXml, IntoXml};
use crate::iq::{IqGetPayload, IqResultPayload};
use crate::ns::HTTP_UPLOAD;
#[derive(FromXml, IntoXml, Debug, Clone, PartialEq)]
#[xml(namespace = HTTP_UPLOAD, name = "request")]
pub struct SlotRequest {
#[xml(attribute)]
pub filename: String,
#[xml(attribute)]
pub size: u64,
#[xml(attribute(name = "content-type"))]
pub content_type: Option<String>,
}
impl IqGetPayload for SlotRequest {}
fn normalize_header(v: &str) -> Cow<'_, str> {
let mut v = v.to_owned();
v.make_ascii_lowercase();
v.into()
}
#[derive(FromXml, IntoXml, Debug, Clone, PartialEq)]
#[xml(namespace = HTTP_UPLOAD, name = "header", attribute = "name", exhaustive, normalize_with = normalize_header)]
pub enum Header {
#[xml(value = "authorization")]
Authorization(#[xml(text)] String),
#[xml(value = "cookie")]
Cookie(#[xml(text)] String),
#[xml(value = "expires")]
Expires(#[xml(text)] String),
}
#[derive(FromXml, IntoXml, Debug, Clone, PartialEq)]
#[xml(namespace = HTTP_UPLOAD, name = "put")]
pub struct Put {
#[xml(attribute)]
pub url: String,
#[xml(children)]
pub headers: Vec<Header>,
}
#[derive(FromXml, IntoXml, Debug, Clone, PartialEq)]
#[xml(namespace = HTTP_UPLOAD, name = "get")]
pub struct Get {
#[xml(attribute)]
pub url: String,
}
#[derive(FromXml, IntoXml, Debug, Clone, PartialEq)]
#[xml(namespace = HTTP_UPLOAD, name = "slot")]
pub struct SlotResult {
#[xml(child)]
pub put: Put,
#[xml(child)]
pub get: Get,
}
impl IqResultPayload for SlotResult {}
#[cfg(test)]
mod tests {
use super::*;
use crate::Element;
#[test]
fn test_slot_request() {
let elem: Element = "<request xmlns='urn:xmpp:http:upload:0'
filename='très cool.jpg'
size='23456'
content-type='image/jpeg' />"
.parse()
.unwrap();
let slot = SlotRequest::try_from(elem).unwrap();
assert_eq!(slot.filename, String::from("très cool.jpg"));
assert_eq!(slot.size, 23456);
assert_eq!(slot.content_type, Some(String::from("image/jpeg")));
}
#[test]
fn test_slot_result() {
let elem: Element = "<slot xmlns='urn:xmpp:http:upload:0'>
<put url='https://upload.montague.tld/4a771ac1-f0b2-4a4a-9700-f2a26fa2bb67/tr%C3%A8s%20cool.jpg'>
<header name='Authorization'>Basic Base64String==</header>
<header name='Cookie'>foo=bar; user=romeo</header>
</put>
<get url='https://download.montague.tld/4a771ac1-f0b2-4a4a-9700-f2a26fa2bb67/tr%C3%A8s%20cool.jpg' />
</slot>"
.parse()
.unwrap();
let slot = SlotResult::try_from(elem).unwrap();
assert_eq!(slot.put.url, String::from("https://upload.montague.tld/4a771ac1-f0b2-4a4a-9700-f2a26fa2bb67/tr%C3%A8s%20cool.jpg"));
assert_eq!(
slot.put.headers[0],
Header::Authorization(String::from("Basic Base64String=="))
);
assert_eq!(
slot.put.headers[1],
Header::Cookie(String::from("foo=bar; user=romeo"))
);
assert_eq!(slot.get.url, String::from("https://download.montague.tld/4a771ac1-f0b2-4a4a-9700-f2a26fa2bb67/tr%C3%A8s%20cool.jpg"));
}
#[test]
fn test_result_no_header() {
let elem: Element = "<slot xmlns='urn:xmpp:http:upload:0'>
<put url='https://URL' />
<get url='https://URL' />
</slot>"
.parse()
.unwrap();
let slot = SlotResult::try_from(elem).unwrap();
assert_eq!(slot.put.url, String::from("https://URL"));
assert_eq!(slot.put.headers.len(), 0);
assert_eq!(slot.get.url, String::from("https://URL"));
}
#[test]
fn test_result_bad_header() {
let elem: Element = "<slot xmlns='urn:xmpp:http:upload:0'>
<put url='https://URL'>
<header name='EvilHeader'>EvilValue</header>
</put>
<get url='https://URL' />
</slot>"
.parse()
.unwrap();
SlotResult::try_from(elem).unwrap_err();
}
}