xmpp-parsers/mam: Split into mam_prefs following XEP-0411
This commit is contained in:
parent
d8498437c3
commit
20e4bc455a
4 changed files with 191 additions and 155 deletions
|
|
@ -415,7 +415,7 @@
|
||||||
<xmpp:SupportedXep>
|
<xmpp:SupportedXep>
|
||||||
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0313.html"/>
|
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0313.html"/>
|
||||||
<xmpp:status>complete</xmpp:status>
|
<xmpp:status>complete</xmpp:status>
|
||||||
<xmpp:version>0.6.3</xmpp:version>
|
<xmpp:version>0.7.5</xmpp:version>
|
||||||
<xmpp:since>0.1.0</xmpp:since>
|
<xmpp:since>0.1.0</xmpp:since>
|
||||||
</xmpp:SupportedXep>
|
</xmpp:SupportedXep>
|
||||||
</implements>
|
</implements>
|
||||||
|
|
@ -531,6 +531,14 @@
|
||||||
<xmpp:since>0.16.0</xmpp:since>
|
<xmpp:since>0.16.0</xmpp:since>
|
||||||
</xmpp:SupportedXep>
|
</xmpp:SupportedXep>
|
||||||
</implements>
|
</implements>
|
||||||
|
<implements>
|
||||||
|
<xmpp:SupportedXep>
|
||||||
|
<xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0441.html"/>
|
||||||
|
<xmpp:status>complete</xmpp:status>
|
||||||
|
<xmpp:version>0.2.0</xmpp:version>
|
||||||
|
<xmpp:since>0.1.0</xmpp:since>
|
||||||
|
</xmpp:SupportedXep>
|
||||||
|
</implements>
|
||||||
|
|
||||||
<release>
|
<release>
|
||||||
<Version>
|
<Version>
|
||||||
|
|
|
||||||
|
|
@ -224,3 +224,6 @@ pub mod bookmarks2;
|
||||||
|
|
||||||
/// XEP-0421: Anonymous unique occupant identifiers for MUCs
|
/// XEP-0421: Anonymous unique occupant identifiers for MUCs
|
||||||
pub mod occupant_id;
|
pub mod occupant_id;
|
||||||
|
|
||||||
|
/// XEP-0441: Message Archive Management Preferences
|
||||||
|
pub mod mam_prefs;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (c) 2017 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
|
// Copyright (c) 2017-2021 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
|
||||||
//
|
//
|
||||||
// This Source Code Form is subject to the terms of the Mozilla Public
|
// 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
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
|
@ -8,13 +8,8 @@ use crate::data_forms::DataForm;
|
||||||
use crate::forwarding::Forwarded;
|
use crate::forwarding::Forwarded;
|
||||||
use crate::iq::{IqGetPayload, IqResultPayload, IqSetPayload};
|
use crate::iq::{IqGetPayload, IqResultPayload, IqSetPayload};
|
||||||
use crate::message::MessagePayload;
|
use crate::message::MessagePayload;
|
||||||
use crate::ns;
|
|
||||||
use crate::pubsub::NodeName;
|
use crate::pubsub::NodeName;
|
||||||
use crate::rsm::{SetQuery, SetResult};
|
use crate::rsm::{SetQuery, SetResult};
|
||||||
use crate::util::error::Error;
|
|
||||||
use jid::Jid;
|
|
||||||
use minidom::{Element, Node};
|
|
||||||
use std::convert::TryFrom;
|
|
||||||
|
|
||||||
generate_id!(
|
generate_id!(
|
||||||
/// An identifier matching a result message to the query requesting it.
|
/// An identifier matching a result message to the query requesting it.
|
||||||
|
|
@ -92,105 +87,12 @@ generate_element!(
|
||||||
|
|
||||||
impl IqResultPayload for Fin {}
|
impl IqResultPayload for Fin {}
|
||||||
|
|
||||||
generate_attribute!(
|
|
||||||
/// Notes the default archiving preference for the user.
|
|
||||||
DefaultPrefs, "default", {
|
|
||||||
/// The default is to always log messages in the archive.
|
|
||||||
Always => "always",
|
|
||||||
|
|
||||||
/// The default is to never log messages in the archive.
|
|
||||||
Never => "never",
|
|
||||||
|
|
||||||
/// The default is to log messages in the archive only for contacts
|
|
||||||
/// present in the user’s [roster](../roster/index.html).
|
|
||||||
Roster => "roster",
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
/// Controls the archiving preferences of the user.
|
|
||||||
#[derive(Debug, Clone)]
|
|
||||||
pub struct Prefs {
|
|
||||||
/// The default preference for JIDs in neither
|
|
||||||
/// [always](#structfield.always) or [never](#structfield.never) lists.
|
|
||||||
pub default_: DefaultPrefs,
|
|
||||||
|
|
||||||
/// The set of JIDs for which to always store messages in the archive.
|
|
||||||
pub always: Vec<Jid>,
|
|
||||||
|
|
||||||
/// The set of JIDs for which to never store messages in the archive.
|
|
||||||
pub never: Vec<Jid>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl IqGetPayload for Prefs {}
|
|
||||||
impl IqSetPayload for Prefs {}
|
|
||||||
impl IqResultPayload for Prefs {}
|
|
||||||
|
|
||||||
impl TryFrom<Element> for Prefs {
|
|
||||||
type Error = Error;
|
|
||||||
|
|
||||||
fn try_from(elem: Element) -> Result<Prefs, Error> {
|
|
||||||
check_self!(elem, "prefs", MAM);
|
|
||||||
check_no_unknown_attributes!(elem, "prefs", ["default"]);
|
|
||||||
let mut always = vec![];
|
|
||||||
let mut never = vec![];
|
|
||||||
for child in elem.children() {
|
|
||||||
if child.is("always", ns::MAM) {
|
|
||||||
for jid_elem in child.children() {
|
|
||||||
if !jid_elem.is("jid", ns::MAM) {
|
|
||||||
return Err(Error::ParseError("Invalid jid element in always."));
|
|
||||||
}
|
|
||||||
always.push(jid_elem.text().parse()?);
|
|
||||||
}
|
|
||||||
} else if child.is("never", ns::MAM) {
|
|
||||||
for jid_elem in child.children() {
|
|
||||||
if !jid_elem.is("jid", ns::MAM) {
|
|
||||||
return Err(Error::ParseError("Invalid jid element in never."));
|
|
||||||
}
|
|
||||||
never.push(jid_elem.text().parse()?);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
return Err(Error::ParseError("Unknown child in prefs element."));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
let default_ = get_attr!(elem, "default", Required);
|
|
||||||
Ok(Prefs {
|
|
||||||
default_,
|
|
||||||
always,
|
|
||||||
never,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn serialise_jid_list(name: &str, jids: Vec<Jid>) -> ::std::option::IntoIter<Node> {
|
|
||||||
if jids.is_empty() {
|
|
||||||
None.into_iter()
|
|
||||||
} else {
|
|
||||||
Some(
|
|
||||||
Element::builder(name, ns::MAM)
|
|
||||||
.append_all(
|
|
||||||
jids.into_iter()
|
|
||||||
.map(|jid| Element::builder("jid", ns::MAM).append(String::from(jid))),
|
|
||||||
)
|
|
||||||
.into(),
|
|
||||||
)
|
|
||||||
.into_iter()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From<Prefs> for Element {
|
|
||||||
fn from(prefs: Prefs) -> Element {
|
|
||||||
Element::builder("prefs", ns::MAM)
|
|
||||||
.attr("default", prefs.default_)
|
|
||||||
.append_all(serialise_jid_list("always", prefs.always))
|
|
||||||
.append_all(serialise_jid_list("never", prefs.never))
|
|
||||||
.build()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
use jid::BareJid;
|
use crate::util::error::Error;
|
||||||
|
use minidom::Element;
|
||||||
|
use std::convert::TryFrom;
|
||||||
|
|
||||||
#[cfg(target_pointer_width = "32")]
|
#[cfg(target_pointer_width = "32")]
|
||||||
#[test]
|
#[test]
|
||||||
|
|
@ -200,8 +102,6 @@ mod tests {
|
||||||
assert_size!(Result_, 236);
|
assert_size!(Result_, 236);
|
||||||
assert_size!(Complete, 1);
|
assert_size!(Complete, 1);
|
||||||
assert_size!(Fin, 44);
|
assert_size!(Fin, 44);
|
||||||
assert_size!(DefaultPrefs, 1);
|
|
||||||
assert_size!(Prefs, 28);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(target_pointer_width = "64")]
|
#[cfg(target_pointer_width = "64")]
|
||||||
|
|
@ -212,8 +112,6 @@ mod tests {
|
||||||
assert_size!(Result_, 456);
|
assert_size!(Result_, 456);
|
||||||
assert_size!(Complete, 1);
|
assert_size!(Complete, 1);
|
||||||
assert_size!(Fin, 88);
|
assert_size!(Fin, 88);
|
||||||
assert_size!(DefaultPrefs, 1);
|
|
||||||
assert_size!(Prefs, 56);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
@ -307,54 +205,6 @@ mod tests {
|
||||||
Query::try_from(elem).unwrap();
|
Query::try_from(elem).unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_prefs_get() {
|
|
||||||
let elem: Element = "<prefs xmlns='urn:xmpp:mam:2' default='always'/>"
|
|
||||||
.parse()
|
|
||||||
.unwrap();
|
|
||||||
let prefs = Prefs::try_from(elem).unwrap();
|
|
||||||
assert!(prefs.always.is_empty());
|
|
||||||
assert!(prefs.never.is_empty());
|
|
||||||
|
|
||||||
let elem: Element = r#"
|
|
||||||
<prefs xmlns='urn:xmpp:mam:2' default='roster'>
|
|
||||||
<always/>
|
|
||||||
<never/>
|
|
||||||
</prefs>
|
|
||||||
"#
|
|
||||||
.parse()
|
|
||||||
.unwrap();
|
|
||||||
let prefs = Prefs::try_from(elem).unwrap();
|
|
||||||
assert!(prefs.always.is_empty());
|
|
||||||
assert!(prefs.never.is_empty());
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_prefs_result() {
|
|
||||||
let elem: Element = r#"
|
|
||||||
<prefs xmlns='urn:xmpp:mam:2' default='roster'>
|
|
||||||
<always>
|
|
||||||
<jid>romeo@montague.lit</jid>
|
|
||||||
</always>
|
|
||||||
<never>
|
|
||||||
<jid>montague@montague.lit</jid>
|
|
||||||
</never>
|
|
||||||
</prefs>
|
|
||||||
"#
|
|
||||||
.parse()
|
|
||||||
.unwrap();
|
|
||||||
let prefs = Prefs::try_from(elem).unwrap();
|
|
||||||
assert_eq!(prefs.always, [BareJid::new("romeo", "montague.lit")]);
|
|
||||||
assert_eq!(prefs.never, [BareJid::new("montague", "montague.lit")]);
|
|
||||||
|
|
||||||
let elem2 = Element::from(prefs.clone());
|
|
||||||
println!("{:?}", elem2);
|
|
||||||
let prefs2 = Prefs::try_from(elem2).unwrap();
|
|
||||||
assert_eq!(prefs.default_, prefs2.default_);
|
|
||||||
assert_eq!(prefs.always, prefs2.always);
|
|
||||||
assert_eq!(prefs.never, prefs2.never);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_invalid_child() {
|
fn test_invalid_child() {
|
||||||
let elem: Element = "<query xmlns='urn:xmpp:mam:2'><coucou/></query>"
|
let elem: Element = "<query xmlns='urn:xmpp:mam:2'><coucou/></query>"
|
||||||
|
|
|
||||||
175
xmpp-parsers/src/mam_prefs.rs
Normal file
175
xmpp-parsers/src/mam_prefs.rs
Normal file
|
|
@ -0,0 +1,175 @@
|
||||||
|
// Copyright (c) 2021 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 crate::iq::{IqGetPayload, IqResultPayload, IqSetPayload};
|
||||||
|
use crate::ns;
|
||||||
|
use crate::util::error::Error;
|
||||||
|
use jid::Jid;
|
||||||
|
use minidom::{Element, Node};
|
||||||
|
use std::convert::TryFrom;
|
||||||
|
|
||||||
|
generate_attribute!(
|
||||||
|
/// Notes the default archiving preference for the user.
|
||||||
|
DefaultPrefs, "default", {
|
||||||
|
/// The default is to always log messages in the archive.
|
||||||
|
Always => "always",
|
||||||
|
|
||||||
|
/// The default is to never log messages in the archive.
|
||||||
|
Never => "never",
|
||||||
|
|
||||||
|
/// The default is to log messages in the archive only for contacts
|
||||||
|
/// present in the user’s [roster](../roster/index.html).
|
||||||
|
Roster => "roster",
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
/// Controls the archiving preferences of the user.
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct Prefs {
|
||||||
|
/// The default preference for JIDs in neither
|
||||||
|
/// [always](#structfield.always) or [never](#structfield.never) lists.
|
||||||
|
pub default_: DefaultPrefs,
|
||||||
|
|
||||||
|
/// The set of JIDs for which to always store messages in the archive.
|
||||||
|
pub always: Vec<Jid>,
|
||||||
|
|
||||||
|
/// The set of JIDs for which to never store messages in the archive.
|
||||||
|
pub never: Vec<Jid>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl IqGetPayload for Prefs {}
|
||||||
|
impl IqSetPayload for Prefs {}
|
||||||
|
impl IqResultPayload for Prefs {}
|
||||||
|
|
||||||
|
impl TryFrom<Element> for Prefs {
|
||||||
|
type Error = Error;
|
||||||
|
|
||||||
|
fn try_from(elem: Element) -> Result<Prefs, Error> {
|
||||||
|
check_self!(elem, "prefs", MAM);
|
||||||
|
check_no_unknown_attributes!(elem, "prefs", ["default"]);
|
||||||
|
let mut always = vec![];
|
||||||
|
let mut never = vec![];
|
||||||
|
for child in elem.children() {
|
||||||
|
if child.is("always", ns::MAM) {
|
||||||
|
for jid_elem in child.children() {
|
||||||
|
if !jid_elem.is("jid", ns::MAM) {
|
||||||
|
return Err(Error::ParseError("Invalid jid element in always."));
|
||||||
|
}
|
||||||
|
always.push(jid_elem.text().parse()?);
|
||||||
|
}
|
||||||
|
} else if child.is("never", ns::MAM) {
|
||||||
|
for jid_elem in child.children() {
|
||||||
|
if !jid_elem.is("jid", ns::MAM) {
|
||||||
|
return Err(Error::ParseError("Invalid jid element in never."));
|
||||||
|
}
|
||||||
|
never.push(jid_elem.text().parse()?);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return Err(Error::ParseError("Unknown child in prefs element."));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
let default_ = get_attr!(elem, "default", Required);
|
||||||
|
Ok(Prefs {
|
||||||
|
default_,
|
||||||
|
always,
|
||||||
|
never,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn serialise_jid_list(name: &str, jids: Vec<Jid>) -> ::std::option::IntoIter<Node> {
|
||||||
|
if jids.is_empty() {
|
||||||
|
None.into_iter()
|
||||||
|
} else {
|
||||||
|
Some(
|
||||||
|
Element::builder(name, ns::MAM)
|
||||||
|
.append_all(
|
||||||
|
jids.into_iter()
|
||||||
|
.map(|jid| Element::builder("jid", ns::MAM).append(String::from(jid))),
|
||||||
|
)
|
||||||
|
.into(),
|
||||||
|
)
|
||||||
|
.into_iter()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl From<Prefs> for Element {
|
||||||
|
fn from(prefs: Prefs) -> Element {
|
||||||
|
Element::builder("prefs", ns::MAM)
|
||||||
|
.attr("default", prefs.default_)
|
||||||
|
.append_all(serialise_jid_list("always", prefs.always))
|
||||||
|
.append_all(serialise_jid_list("never", prefs.never))
|
||||||
|
.build()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use super::*;
|
||||||
|
use jid::BareJid;
|
||||||
|
|
||||||
|
#[cfg(target_pointer_width = "32")]
|
||||||
|
#[test]
|
||||||
|
fn test_size() {
|
||||||
|
assert_size!(DefaultPrefs, 1);
|
||||||
|
assert_size!(Prefs, 28);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(target_pointer_width = "64")]
|
||||||
|
#[test]
|
||||||
|
fn test_size() {
|
||||||
|
assert_size!(DefaultPrefs, 1);
|
||||||
|
assert_size!(Prefs, 56);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_prefs_get() {
|
||||||
|
let elem: Element = "<prefs xmlns='urn:xmpp:mam:2' default='always'/>"
|
||||||
|
.parse()
|
||||||
|
.unwrap();
|
||||||
|
let prefs = Prefs::try_from(elem).unwrap();
|
||||||
|
assert!(prefs.always.is_empty());
|
||||||
|
assert!(prefs.never.is_empty());
|
||||||
|
|
||||||
|
let elem: Element = r#"
|
||||||
|
<prefs xmlns='urn:xmpp:mam:2' default='roster'>
|
||||||
|
<always/>
|
||||||
|
<never/>
|
||||||
|
</prefs>
|
||||||
|
"#
|
||||||
|
.parse()
|
||||||
|
.unwrap();
|
||||||
|
let prefs = Prefs::try_from(elem).unwrap();
|
||||||
|
assert!(prefs.always.is_empty());
|
||||||
|
assert!(prefs.never.is_empty());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_prefs_result() {
|
||||||
|
let elem: Element = r#"
|
||||||
|
<prefs xmlns='urn:xmpp:mam:2' default='roster'>
|
||||||
|
<always>
|
||||||
|
<jid>romeo@montague.lit</jid>
|
||||||
|
</always>
|
||||||
|
<never>
|
||||||
|
<jid>montague@montague.lit</jid>
|
||||||
|
</never>
|
||||||
|
</prefs>
|
||||||
|
"#
|
||||||
|
.parse()
|
||||||
|
.unwrap();
|
||||||
|
let prefs = Prefs::try_from(elem).unwrap();
|
||||||
|
assert_eq!(prefs.always, [BareJid::new("romeo", "montague.lit")]);
|
||||||
|
assert_eq!(prefs.never, [BareJid::new("montague", "montague.lit")]);
|
||||||
|
|
||||||
|
let elem2 = Element::from(prefs.clone());
|
||||||
|
println!("{:?}", elem2);
|
||||||
|
let prefs2 = Prefs::try_from(elem2).unwrap();
|
||||||
|
assert_eq!(prefs.default_, prefs2.default_);
|
||||||
|
assert_eq!(prefs.always, prefs2.always);
|
||||||
|
assert_eq!(prefs.never, prefs2.never);
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue