mirror of
https://gitlab.com/xmpp-rs/xmpp-rs.git
synced 2024-07-12 22:21:53 +00:00
listen for Presence and return MucPresence
This commit is contained in:
parent
e953a03dda
commit
ac732f1b92
1 changed files with 45 additions and 4 deletions
|
@ -1,12 +1,27 @@
|
||||||
use std::collections::BTreeMap;
|
use std::collections::BTreeMap;
|
||||||
|
use std::convert::TryFrom;
|
||||||
|
|
||||||
use jid::Jid;
|
use jid::Jid;
|
||||||
use error::Error;
|
use error::Error;
|
||||||
use plugin::PluginProxy;
|
use plugin::PluginProxy;
|
||||||
|
|
||||||
pub use xmpp_parsers::muc::Muc;
|
use event::{Event, Propagation, Priority};
|
||||||
|
|
||||||
|
pub use xmpp_parsers::muc::{Muc, MucUser};
|
||||||
|
pub use xmpp_parsers::muc::user::{Status, Affiliation, Role};
|
||||||
pub use xmpp_parsers::presence::{Presence, Type, Show};
|
pub use xmpp_parsers::presence::{Presence, Type, Show};
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct MucPresence {
|
||||||
|
pub room: Jid,
|
||||||
|
pub nick: Option<String>,
|
||||||
|
pub to: Jid,
|
||||||
|
pub type_: Type,
|
||||||
|
pub x: MucUser,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Event for MucPresence {}
|
||||||
|
|
||||||
pub struct MucPlugin {
|
pub struct MucPlugin {
|
||||||
proxy: PluginProxy,
|
proxy: PluginProxy,
|
||||||
}
|
}
|
||||||
|
@ -19,6 +34,7 @@ impl MucPlugin {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn join_room(&self, room: Jid) -> Result<(), Error> {
|
pub fn join_room(&self, room: Jid) -> Result<(), Error> {
|
||||||
|
let x = Muc { password: None };
|
||||||
let presence = Presence {
|
let presence = Presence {
|
||||||
from: None,
|
from: None,
|
||||||
to: Some(room),
|
to: Some(room),
|
||||||
|
@ -27,7 +43,7 @@ impl MucPlugin {
|
||||||
show: Show::None,
|
show: Show::None,
|
||||||
priority: 0i8,
|
priority: 0i8,
|
||||||
statuses: BTreeMap::new(),
|
statuses: BTreeMap::new(),
|
||||||
payloads: vec![Muc.into()],
|
payloads: vec![x.into()],
|
||||||
};
|
};
|
||||||
self.proxy.send(presence.into());
|
self.proxy.send(presence.into());
|
||||||
|
|
||||||
|
@ -35,6 +51,7 @@ impl MucPlugin {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn leave_room(&self, room: Jid) -> Result<(), Error> {
|
pub fn leave_room(&self, room: Jid) -> Result<(), Error> {
|
||||||
|
let x = Muc { password: None };
|
||||||
let presence = Presence {
|
let presence = Presence {
|
||||||
from: None,
|
from: None,
|
||||||
to: Some(room),
|
to: Some(room),
|
||||||
|
@ -43,11 +60,35 @@ impl MucPlugin {
|
||||||
show: Show::None,
|
show: Show::None,
|
||||||
priority: 0i8,
|
priority: 0i8,
|
||||||
statuses: BTreeMap::new(),
|
statuses: BTreeMap::new(),
|
||||||
payloads: vec![Muc.into()],
|
payloads: vec![x.into()],
|
||||||
};
|
};
|
||||||
self.proxy.send(presence.into());
|
self.proxy.send(presence.into());
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn handle_presence(&self, presence: &Presence) -> Propagation {
|
||||||
|
let from = presence.from.clone().unwrap();
|
||||||
|
let room = from.clone().into_bare_jid();
|
||||||
|
let nick = from.resource;
|
||||||
|
let to = presence.to.clone().unwrap();
|
||||||
|
let type_ = presence.type_.clone();
|
||||||
|
|
||||||
|
for payload in presence.clone().payloads {
|
||||||
|
if let Ok(x) = MucUser::try_from(payload) {
|
||||||
|
self.proxy.dispatch(MucPresence {
|
||||||
|
room: room.clone(),
|
||||||
|
nick: nick.clone(),
|
||||||
|
to: to.clone(),
|
||||||
|
type_: type_.clone(),
|
||||||
|
x
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Propagation::Stop
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl_plugin!(MucPlugin, proxy, []);
|
impl_plugin!(MucPlugin, proxy, [
|
||||||
|
(Presence, Priority::Default) => handle_presence,
|
||||||
|
]);
|
||||||
|
|
Loading…
Reference in a new issue