From 20df3b7d6f3213bc3f5a90cc36363865b1b9e966 Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Fri, 28 Mar 2025 21:25:36 +0000 Subject: feat(filamento): `From` impls for disco types --- filamento/src/disco.rs | 124 ++++++++++++++++++++++++++++++++++++++++++- stanza/src/xep_0030/items.rs | 10 ++-- 2 files changed, 128 insertions(+), 6 deletions(-) diff --git a/filamento/src/disco.rs b/filamento/src/disco.rs index 233dd5f..86e339e 100644 --- a/filamento/src/disco.rs +++ b/filamento/src/disco.rs @@ -1,4 +1,5 @@ -use stanza::xep_0030::info; +use jid::JID; +use stanza::xep_0030::{info, items}; pub use feature::Feature; pub use identity::Identity; @@ -9,7 +10,104 @@ pub struct Info { identities: Vec, } +impl From for Info { + fn from(value: info::Query) -> Self { + let features = value + .features + .into_iter() + .map(|feature| feature.into()) + .collect(); + let identities = value + .identities + .into_iter() + .map(|identity| identity.into()) + .collect(); + + Self { + node: value.node, + features, + identities, + } + } +} + +impl From for info::Query { + fn from(value: Info) -> Self { + let features = value + .features + .into_iter() + .map(|feature| feature.into()) + .collect(); + let identities = value + .identities + .into_iter() + .map(|identity| identity.into()) + .collect(); + + Self { + node: value.node, + features, + identities, + } + } +} + +pub struct Items { + node: Option, + items: Vec, +} + +impl From for Items { + fn from(value: items::Query) -> Self { + let items = value.items.into_iter().map(|item| item.into()).collect(); + + Self { + node: value.node, + items, + } + } +} + +impl From for items::Query { + fn from(value: Items) -> Self { + let items = value.items.into_iter().map(|item| item.into()).collect(); + + Self { + node: value.node, + items, + } + } +} + +pub struct Item { + jid: JID, + name: Option, + node: Option, +} + +impl From for Item { + fn from(value: items::Item) -> Self { + Self { + jid: value.jid, + name: value.name, + node: value.node, + } + } +} + +impl From for items::Item { + fn from(value: Item) -> Self { + Self { + jid: value.jid, + name: value.name, + node: value.node, + } + } +} + mod feature { + use stanza::xep_0030::info; + // https://xmpp.org/registrar/disco-features.html pub enum Feature { DNSSRV, @@ -74,6 +172,20 @@ mod feature { Unknown(String), } + impl From for Feature { + fn from(value: info::Feature) -> Self { + value.var.as_str().into() + } + } + + impl From for info::Feature { + fn from(value: Feature) -> Self { + Self { + var: value.to_string(), + } + } + } + impl From<&str> for Feature { fn from(value: &str) -> Self { match value { @@ -940,6 +1052,16 @@ mod identity { } } + impl From for info::Identity { + fn from(value: Identity) -> Self { + Self { + category: value.category.to_string(), + name: value.name, + r#type: value.category.r#type(), + } + } + } + // TODO: separate crate for disco registry /// categories taken from [XMPP Disco Categories](https://xmpp.org/registrar/disco-categories.html) diff --git a/stanza/src/xep_0030/items.rs b/stanza/src/xep_0030/items.rs index 78fe332..7af2bbf 100644 --- a/stanza/src/xep_0030/items.rs +++ b/stanza/src/xep_0030/items.rs @@ -8,8 +8,8 @@ pub const XMLNS: &str = "http://jabber.org/protocol/disco#items"; #[derive(Debug, Clone)] pub struct Query { - node: Option, - items: Vec, + pub node: Option, + pub items: Vec, } impl FromElement for Query { @@ -35,9 +35,9 @@ impl IntoElement for Query { #[derive(Debug, Clone)] pub struct Item { - jid: JID, - name: Option, - node: Option, + pub jid: JID, + pub name: Option, + pub node: Option, } impl FromElement for Item { -- cgit