2017-04-21 00:06:30 +00:00
|
|
|
//! A crate parsing common XMPP elements into Rust structures.
|
|
|
|
//!
|
|
|
|
//! The main entrypoint is `parse_message_payload`, it takes a minidom
|
|
|
|
//! `Element` reference and optionally returns `Some(MessagePayload)` if the
|
|
|
|
//! parsing succeeded.
|
|
|
|
//!
|
|
|
|
//! Parsed structs can then be manipulated internally, and serialised back
|
|
|
|
//! before being sent over the wire.
|
|
|
|
|
2017-04-18 19:44:36 +00:00
|
|
|
extern crate minidom;
|
2017-04-21 01:46:41 +00:00
|
|
|
extern crate base64;
|
2017-04-21 00:06:30 +00:00
|
|
|
use minidom::Element;
|
2017-04-18 19:44:36 +00:00
|
|
|
|
2017-04-21 00:06:30 +00:00
|
|
|
/// Error type returned by every parser on failure.
|
2017-04-18 19:44:36 +00:00
|
|
|
pub mod error;
|
2017-04-21 00:06:30 +00:00
|
|
|
/// XML namespace definitions used through XMPP.
|
2017-04-18 19:44:36 +00:00
|
|
|
pub mod ns;
|
|
|
|
|
2017-04-21 00:06:30 +00:00
|
|
|
/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
|
2017-04-19 22:21:23 +00:00
|
|
|
pub mod body;
|
2017-04-21 00:06:30 +00:00
|
|
|
|
|
|
|
/// XEP-0004: Data Forms
|
2017-04-18 19:44:36 +00:00
|
|
|
pub mod data_forms;
|
2017-04-21 00:06:30 +00:00
|
|
|
|
|
|
|
/// XEP-0030: Service Discovery
|
|
|
|
pub mod disco;
|
|
|
|
|
|
|
|
/// XEP-0047: In-Band Bytestreams
|
2017-04-19 20:52:14 +00:00
|
|
|
pub mod ibb;
|
2017-04-21 00:06:30 +00:00
|
|
|
|
|
|
|
/// XEP-0085: Chat State Notifications
|
|
|
|
pub mod chatstates;
|
|
|
|
|
|
|
|
/// XEP-0166: Jingle
|
|
|
|
pub mod jingle;
|
|
|
|
|
|
|
|
/// XEP-0184: Message Delivery Receipts
|
2017-04-19 23:43:33 +00:00
|
|
|
pub mod receipts;
|
2017-04-19 22:21:53 +00:00
|
|
|
|
2017-04-21 00:06:30 +00:00
|
|
|
/// XEP-0199: XMPP Ping
|
|
|
|
pub mod ping;
|
|
|
|
|
2017-04-21 02:57:34 +00:00
|
|
|
/// XEP-0203: Delayed Delivery
|
|
|
|
pub mod delay;
|
|
|
|
|
2017-04-21 00:06:30 +00:00
|
|
|
/// XEP-0221: Data Forms Media Element
|
|
|
|
pub mod media_element;
|
|
|
|
|
2017-04-21 00:53:47 +00:00
|
|
|
/// XEP-0224: Attention
|
|
|
|
pub mod attention;
|
|
|
|
|
2017-04-22 16:39:21 +00:00
|
|
|
/// XEP-0234: Jingle File Transfer
|
|
|
|
pub mod jingle_ft;
|
|
|
|
|
2017-04-22 18:15:48 +00:00
|
|
|
/// XEP-0261: Jingle In-Band Bytestreams Transport Method
|
|
|
|
pub mod jingle_ibb;
|
|
|
|
|
2017-04-21 03:21:16 +00:00
|
|
|
/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
|
|
|
|
pub mod hashes;
|
|
|
|
|
2017-04-21 01:07:44 +00:00
|
|
|
/// XEP-0308: Last Message Correction
|
|
|
|
pub mod message_correct;
|
|
|
|
|
2017-04-21 02:45:05 +00:00
|
|
|
/// XEP-0380: Explicit Message Encryption
|
|
|
|
pub mod eme;
|
|
|
|
|
2017-04-21 00:06:30 +00:00
|
|
|
/// XEP-0390: Entity Capabilities 2.0
|
|
|
|
pub mod ecaps2;
|
2017-04-19 22:21:53 +00:00
|
|
|
|
2017-04-21 00:06:30 +00:00
|
|
|
/// Lists every known payload of a `<message/>`.
|
2017-04-19 23:14:47 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum MessagePayload {
|
|
|
|
Body(body::Body),
|
|
|
|
ChatState(chatstates::ChatState),
|
2017-04-19 23:43:33 +00:00
|
|
|
Receipt(receipts::Receipt),
|
2017-04-21 02:57:34 +00:00
|
|
|
Delay(delay::Delay),
|
2017-04-21 00:56:18 +00:00
|
|
|
Attention(attention::Attention),
|
2017-04-21 01:07:44 +00:00
|
|
|
MessageCorrect(message_correct::MessageCorrect),
|
2017-04-21 02:45:05 +00:00
|
|
|
ExplicitMessageEncryption(eme::ExplicitMessageEncryption),
|
2017-04-19 23:14:47 +00:00
|
|
|
}
|
2017-04-19 22:21:53 +00:00
|
|
|
|
2017-04-21 00:56:18 +00:00
|
|
|
/// Parse one of the payloads of a `<message/>` element, and return `Some` of a
|
|
|
|
/// `MessagePayload` if parsing it succeeded, `None` otherwise.
|
2017-04-19 23:14:47 +00:00
|
|
|
pub fn parse_message_payload(elem: &Element) -> Option<MessagePayload> {
|
2017-04-19 22:21:53 +00:00
|
|
|
if let Ok(body) = body::parse_body(elem) {
|
2017-04-19 23:14:47 +00:00
|
|
|
Some(MessagePayload::Body(body))
|
2017-04-19 22:21:53 +00:00
|
|
|
} else if let Ok(chatstate) = chatstates::parse_chatstate(elem) {
|
2017-04-19 23:14:47 +00:00
|
|
|
Some(MessagePayload::ChatState(chatstate))
|
2017-04-19 23:43:33 +00:00
|
|
|
} else if let Ok(receipt) = receipts::parse_receipt(elem) {
|
|
|
|
Some(MessagePayload::Receipt(receipt))
|
2017-04-21 02:57:34 +00:00
|
|
|
} else if let Ok(delay) = delay::parse_delay(elem) {
|
|
|
|
Some(MessagePayload::Delay(delay))
|
2017-04-21 00:56:18 +00:00
|
|
|
} else if let Ok(attention) = attention::parse_attention(elem) {
|
|
|
|
Some(MessagePayload::Attention(attention))
|
2017-04-21 01:07:44 +00:00
|
|
|
} else if let Ok(replace) = message_correct::parse_message_correct(elem) {
|
|
|
|
Some(MessagePayload::MessageCorrect(replace))
|
2017-04-21 02:45:05 +00:00
|
|
|
} else if let Ok(eme) = eme::parse_explicit_message_encryption(elem) {
|
|
|
|
Some(MessagePayload::ExplicitMessageEncryption(eme))
|
2017-04-19 22:21:53 +00:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|