xmpp-rs/parsers/src/muc/muc.rs

197 lines
5.7 KiB
Rust
Raw Normal View History

// Copyright (c) 2017 Maxime “pep” Buquet <pep@bouah.net>
// Copyright (c) 2017 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
2017-06-26 22:07:12 +00:00
//
// 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 xso::{FromXml, IntoXml};
use crate::date::DateTime;
use crate::ns;
2018-12-18 14:32:05 +00:00
use crate::presence::PresencePayload;
/// Represents the query for messages before our join.
#[derive(FromXml, IntoXml, PartialEq, Debug, Clone, Default)]
#[xml(namespace = ns::MUC, name = "history")]
pub struct History {
/// How many characters of history to send, in XML characters.
#[xml(attribute(default))]
pub maxchars: Option<u32>,
2018-08-08 18:22:37 +00:00
/// How many messages to send.
#[xml(attribute(default))]
pub maxstanzas: Option<u32>,
2018-08-08 18:22:37 +00:00
/// Only send messages received in these last seconds.
#[xml(attribute(default))]
pub seconds: Option<u32>,
2018-08-08 18:22:37 +00:00
/// Only send messages after this date.
#[xml(attribute(default))]
pub since: Option<DateTime>,
}
2018-11-01 16:25:24 +00:00
impl History {
2018-11-02 15:28:40 +00:00
/// Create a new empty history element.
2018-11-01 16:25:24 +00:00
pub fn new() -> Self {
2019-02-21 20:00:58 +00:00
History::default()
2018-11-01 16:25:24 +00:00
}
2018-11-02 15:28:40 +00:00
/// Set how many characters of history to send.
2018-11-01 16:25:24 +00:00
pub fn with_maxchars(mut self, maxchars: u32) -> Self {
self.maxchars = Some(maxchars);
self
}
2018-11-02 15:28:40 +00:00
/// Set how many messages to send.
2018-11-01 16:25:24 +00:00
pub fn with_maxstanzas(mut self, maxstanzas: u32) -> Self {
self.maxstanzas = Some(maxstanzas);
self
}
2018-11-02 15:28:40 +00:00
/// Only send messages received in these last seconds.
2018-11-01 16:25:24 +00:00
pub fn with_seconds(mut self, seconds: u32) -> Self {
self.seconds = Some(seconds);
self
}
2018-11-02 15:28:40 +00:00
/// Only send messages received since this date.
2018-11-01 16:25:24 +00:00
pub fn with_since(mut self, since: DateTime) -> Self {
self.since = Some(since);
self
}
}
generate_element!(
2018-08-08 18:22:37 +00:00
/// Represents a room join request.
#[derive(Default)]
Muc, "x", MUC, children: [
2018-08-08 18:22:37 +00:00
/// Password to use when the room is protected by a password.
password: Option<String> = ("password", MUC) => String,
2018-08-08 18:22:37 +00:00
/// Controls how much and how old we want to receive history on join.
history: Option<History> = ("history", MUC) => History
]
);
2017-06-26 22:07:12 +00:00
impl PresencePayload for Muc {}
2018-11-01 16:25:24 +00:00
impl Muc {
2018-11-02 15:28:40 +00:00
/// Create a new MUC join element.
2018-11-01 16:25:24 +00:00
pub fn new() -> Self {
2019-02-21 20:00:58 +00:00
Muc::default()
2018-11-01 16:25:24 +00:00
}
2018-11-02 15:28:40 +00:00
/// Join a room with this password.
2018-11-01 16:25:24 +00:00
pub fn with_password(mut self, password: String) -> Self {
self.password = Some(password);
self
}
2018-11-02 15:28:40 +00:00
/// Join a room with only that much history.
2018-11-01 16:25:24 +00:00
pub fn with_history(mut self, history: History) -> Self {
self.history = Some(history);
self
}
}
2017-06-26 22:07:12 +00:00
#[cfg(test)]
mod tests {
use super::*;
use crate::Element;
use std::str::FromStr;
use xso::error::{Error, FromElementError};
2017-06-26 22:07:12 +00:00
#[test]
fn test_muc_simple() {
2018-12-18 14:32:05 +00:00
let elem: Element = "<x xmlns='http://jabber.org/protocol/muc'/>"
.parse()
.unwrap();
2017-06-26 22:07:12 +00:00
Muc::try_from(elem).unwrap();
}
#[test]
fn test_muc_invalid_child() {
2018-12-18 14:32:05 +00:00
let elem: Element = "<x xmlns='http://jabber.org/protocol/muc'><coucou/></x>"
.parse()
.unwrap();
2017-06-26 22:07:12 +00:00
let error = Muc::try_from(elem).unwrap_err();
let message = match error {
FromElementError::Invalid(Error::Other(string)) => string,
2017-06-26 22:07:12 +00:00
_ => panic!(),
};
assert_eq!(message, "Unknown child in x element.");
}
#[test]
fn test_muc_serialise() {
2018-12-18 14:32:05 +00:00
let elem: Element = "<x xmlns='http://jabber.org/protocol/muc'/>"
.parse()
.unwrap();
2017-06-26 22:07:12 +00:00
let muc = Muc {
password: None,
history: None,
2017-06-26 22:07:12 +00:00
};
let elem2 = muc.into();
assert_eq!(elem, elem2);
}
#[cfg(not(feature = "disable-validation"))]
2017-06-26 22:07:12 +00:00
#[test]
fn test_muc_invalid_attribute() {
2018-12-18 14:32:05 +00:00
let elem: Element = "<x xmlns='http://jabber.org/protocol/muc' coucou=''/>"
.parse()
.unwrap();
2017-06-26 22:07:12 +00:00
let error = Muc::try_from(elem).unwrap_err();
let message = match error {
FromElementError::Invalid(Error::Other(string)) => string,
2017-06-26 22:07:12 +00:00
_ => panic!(),
};
assert_eq!(message, "Unknown attribute in x element.");
}
#[test]
fn test_muc_simple_password() {
let elem: Element =
"<x xmlns='http://jabber.org/protocol/muc'><password>coucou</password></x>"
.parse()
.unwrap();
2018-05-28 14:24:17 +00:00
let elem1 = elem.clone();
2017-06-26 22:07:12 +00:00
let muc = Muc::try_from(elem).unwrap();
assert_eq!(muc.password, Some("coucou".to_owned()));
2018-05-28 14:24:17 +00:00
let elem2 = Element::from(muc);
assert_eq!(elem1, elem2);
2017-06-26 22:07:12 +00:00
}
#[test]
fn history() {
let elem: Element = "<x xmlns='http://jabber.org/protocol/muc'>
<history maxstanzas='0'/>
</x>"
2018-12-18 14:32:05 +00:00
.parse()
.unwrap();
let muc = Muc::try_from(elem).unwrap();
2018-11-01 16:25:24 +00:00
let muc2 = Muc::new().with_history(History::new().with_maxstanzas(0));
assert_eq!(muc, muc2);
let history = muc.history.unwrap();
assert_eq!(history.maxstanzas, Some(0));
assert_eq!(history.maxchars, None);
assert_eq!(history.seconds, None);
assert_eq!(history.since, None);
let elem: Element = "<x xmlns='http://jabber.org/protocol/muc'>
<history since='1970-01-01T00:00:00Z'/>
</x>"
2018-12-18 14:32:05 +00:00
.parse()
.unwrap();
let muc = Muc::try_from(elem).unwrap();
2018-12-18 14:32:05 +00:00
assert_eq!(
muc.history.unwrap().since.unwrap(),
DateTime::from_str("1970-01-01T00:00:00+00:00").unwrap()
);
}
2017-06-26 22:07:12 +00:00
}