2019-10-15 22:02:14 +02:00
|
|
|
use xmpp_parsers::{Element, Jid};
|
2017-07-13 01:47:05 +02:00
|
|
|
|
2018-08-02 19:58:19 +02:00
|
|
|
/// High-level event on the Stream implemented by Client and Component
|
2017-07-13 01:47:05 +02:00
|
|
|
#[derive(Debug)]
|
|
|
|
|
pub enum Event {
|
2018-08-02 19:58:19 +02:00
|
|
|
/// Stream is connected and initialized
|
2019-10-15 22:02:14 +02:00
|
|
|
Online(Jid),
|
2018-08-02 19:58:19 +02:00
|
|
|
/// Stream end
|
2017-07-13 01:47:05 +02:00
|
|
|
Disconnected,
|
2018-08-02 19:58:19 +02:00
|
|
|
/// Received stanza/nonza
|
2017-07-17 20:53:00 +02:00
|
|
|
Stanza(Element),
|
2017-07-13 01:47:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Event {
|
2018-08-02 19:58:19 +02:00
|
|
|
/// `Online` event?
|
2017-07-13 01:47:05 +02:00
|
|
|
pub fn is_online(&self) -> bool {
|
2017-07-21 00:19:08 +02:00
|
|
|
match *self {
|
2019-10-15 22:02:14 +02:00
|
|
|
Event::Online(_) => true,
|
2017-07-13 01:47:05 +02:00
|
|
|
_ => false,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-15 22:02:14 +02:00
|
|
|
/// Get the server-assigned JID for the `Online` event
|
|
|
|
|
pub fn get_jid(&self) -> Option<&Jid> {
|
|
|
|
|
match *self {
|
|
|
|
|
Event::Online(ref jid) => Some(jid),
|
|
|
|
|
_ => None,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-02 19:58:19 +02:00
|
|
|
/// `Stanza` event?
|
2017-07-13 01:47:05 +02:00
|
|
|
pub fn is_stanza(&self, name: &str) -> bool {
|
2017-07-21 00:19:08 +02:00
|
|
|
match *self {
|
|
|
|
|
Event::Stanza(ref stanza) => stanza.name() == name,
|
2017-07-13 01:47:05 +02:00
|
|
|
_ => false,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-02 19:58:19 +02:00
|
|
|
/// If this is a `Stanza` event, get its data
|
2017-07-17 20:53:00 +02:00
|
|
|
pub fn as_stanza(&self) -> Option<&Element> {
|
2017-07-21 00:19:08 +02:00
|
|
|
match *self {
|
|
|
|
|
Event::Stanza(ref stanza) => Some(stanza),
|
2017-07-13 01:47:05 +02:00
|
|
|
_ => None,
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-20 01:07:07 +02:00
|
|
|
|
2018-08-02 19:58:19 +02:00
|
|
|
/// If this is a `Stanza` event, unwrap into its data
|
2017-07-20 01:07:07 +02:00
|
|
|
pub fn into_stanza(self) -> Option<Element> {
|
|
|
|
|
match self {
|
|
|
|
|
Event::Stanza(stanza) => Some(stanza),
|
|
|
|
|
_ => None,
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-13 01:47:05 +02:00
|
|
|
}
|