2017-04-21 00:06:30 +00:00
|
|
|
//! A crate parsing common XMPP elements into Rust structures.
|
|
|
|
//!
|
2019-07-17 20:26:41 +00:00
|
|
|
//! Each module implements the `TryFrom<Element>` trait, which takes a
|
2017-07-29 04:24:20 +00:00
|
|
|
//! minidom [`Element`] and returns a `Result` whose value is `Ok` if the
|
2017-07-20 22:46:44 +00:00
|
|
|
//! element parsed correctly, `Err(error::Error)` otherwise.
|
2017-04-21 00:06:30 +00:00
|
|
|
//!
|
2017-07-20 22:46:44 +00:00
|
|
|
//! The returned structure can be manipuled as any Rust structure, with each
|
|
|
|
//! field being public. You can also create the same structure manually, with
|
|
|
|
//! some having `new()` and `with_*()` helper methods to create them.
|
|
|
|
//!
|
|
|
|
//! Once you are happy with your structure, you can serialise it back to an
|
|
|
|
//! [`Element`], using either `From` or `Into<Element>`, which give you what
|
|
|
|
//! you want to be sending on the wire.
|
|
|
|
//!
|
|
|
|
//! [`Element`]: ../minidom/element/struct.Element.html
|
2017-04-21 00:06:30 +00:00
|
|
|
|
2019-06-10 21:17:09 +00:00
|
|
|
// Copyright (c) 2017-2019 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
|
|
|
|
// Copyright (c) 2017-2019 Maxime “pep” Buquet <pep@bouah.net>
|
2017-04-29 21:14:34 +00:00
|
|
|
//
|
|
|
|
// 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/.
|
|
|
|
|
2018-08-08 16:48:05 +00:00
|
|
|
#![deny(missing_docs)]
|
|
|
|
|
2018-05-28 15:32:10 +00:00
|
|
|
pub use minidom::Element;
|
2019-07-17 20:26:41 +00:00
|
|
|
pub use jid::{BareJid, FullJid, Jid, JidParseError};
|
2019-01-16 14:22:51 +00:00
|
|
|
pub use crate::util::error::Error;
|
2018-05-28 15:32:10 +00:00
|
|
|
|
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;
|
2018-05-28 15:32:27 +00:00
|
|
|
|
2017-10-31 21:17:24 +00:00
|
|
|
#[macro_use]
|
2019-01-13 11:39:51 +00:00
|
|
|
mod util;
|
2017-08-18 23:04:18 +00:00
|
|
|
|
2018-12-18 14:32:05 +00:00
|
|
|
/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
|
|
|
|
pub mod bind;
|
|
|
|
/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
|
|
|
|
pub mod iq;
|
2017-04-23 14:13:03 +00:00
|
|
|
/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
|
|
|
|
pub mod message;
|
2017-04-21 00:06:30 +00:00
|
|
|
/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
|
2017-04-23 16:30:23 +00:00
|
|
|
pub mod presence;
|
2017-04-23 19:38:13 +00:00
|
|
|
/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
|
2018-12-18 14:32:05 +00:00
|
|
|
pub mod sasl;
|
2017-05-01 00:24:45 +00:00
|
|
|
/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
|
|
|
|
pub mod stanza_error;
|
2018-02-20 16:01:12 +00:00
|
|
|
/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
|
2018-03-01 09:08:30 +00:00
|
|
|
pub mod stream;
|
2017-04-23 18:28:25 +00:00
|
|
|
|
2017-05-28 15:30:43 +00:00
|
|
|
/// RFC 6121: Extensible Messaging and Presence Protocol (XMPP): Instant Messaging and Presence
|
|
|
|
pub mod roster;
|
|
|
|
|
2018-02-20 15:20:45 +00:00
|
|
|
/// RFC 7395: An Extensible Messaging and Presence Protocol (XMPP) Subprotocol for WebSocket
|
|
|
|
pub mod websocket;
|
|
|
|
|
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;
|
|
|
|
|
2017-05-30 21:02:56 +00:00
|
|
|
/// XEP-0045: Multi-User Chat
|
|
|
|
pub mod muc;
|
|
|
|
|
2017-04-21 00:06:30 +00:00
|
|
|
/// XEP-0047: In-Band Bytestreams
|
2017-04-19 20:52:14 +00:00
|
|
|
pub mod ibb;
|
2017-04-21 00:06:30 +00:00
|
|
|
|
2018-05-29 13:04:16 +00:00
|
|
|
/// XEP-0048: Bookmarks
|
|
|
|
pub mod bookmarks;
|
|
|
|
|
2017-04-29 03:37:18 +00:00
|
|
|
/// XEP-0059: Result Set Management
|
|
|
|
pub mod rsm;
|
|
|
|
|
2017-06-11 13:48:31 +00:00
|
|
|
/// XEP-0060: Publish-Subscribe
|
|
|
|
pub mod pubsub;
|
|
|
|
|
2019-08-25 17:01:51 +00:00
|
|
|
/// XEP-0071: XHTML-IM
|
|
|
|
pub mod xhtml;
|
|
|
|
|
2017-06-25 20:03:48 +00:00
|
|
|
/// XEP-0077: In-Band Registration
|
|
|
|
pub mod ibr;
|
|
|
|
|
2017-10-31 19:41:45 +00:00
|
|
|
/// XEP-0082: XMPP Date and Time Profiles
|
|
|
|
pub mod date;
|
|
|
|
|
2019-01-25 01:57:37 +00:00
|
|
|
/// XEP-0084: User Avatar
|
|
|
|
pub mod avatar;
|
|
|
|
|
2017-04-21 00:06:30 +00:00
|
|
|
/// XEP-0085: Chat State Notifications
|
|
|
|
pub mod chatstates;
|
|
|
|
|
2017-07-29 10:45:45 +00:00
|
|
|
/// XEP-0092: Software Version
|
|
|
|
pub mod version;
|
|
|
|
|
2017-11-24 05:20:36 +00:00
|
|
|
/// XEP-0107: User Mood
|
|
|
|
pub mod mood;
|
|
|
|
|
2018-03-01 09:57:01 +00:00
|
|
|
/// XEP-0114: Jabber Component Protocol
|
|
|
|
pub mod component;
|
|
|
|
|
2017-05-25 01:34:03 +00:00
|
|
|
/// XEP-0115: Entity Capabilities
|
|
|
|
pub mod caps;
|
|
|
|
|
2019-01-26 20:05:48 +00:00
|
|
|
/// XEP-0157: Contact Addresses for XMPP Services
|
|
|
|
pub mod server_info;
|
|
|
|
|
2017-04-21 00:06:30 +00:00
|
|
|
/// XEP-0166: Jingle
|
|
|
|
pub mod jingle;
|
|
|
|
|
2019-02-27 17:13:06 +00:00
|
|
|
/// XEP-0167: Jingle RTP Sessions
|
|
|
|
pub mod jingle_rtp;
|
|
|
|
|
2018-05-14 15:43:03 +00:00
|
|
|
/// XEP-0172: User Nickname
|
|
|
|
pub mod nick;
|
|
|
|
|
2019-02-27 17:13:18 +00:00
|
|
|
/// XEP-0176: Jingle ICE-UDP Transport Method
|
|
|
|
pub mod jingle_ice_udp;
|
|
|
|
|
2017-04-21 00:06:30 +00:00
|
|
|
/// 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-10-31 15:48:11 +00:00
|
|
|
/// XEP-0191: Blocking Command
|
|
|
|
pub mod blocking;
|
|
|
|
|
2018-05-18 17:04:02 +00:00
|
|
|
/// XEP-0198: Stream Management
|
|
|
|
pub mod sm;
|
|
|
|
|
2017-04-21 00:06:30 +00:00
|
|
|
/// XEP-0199: XMPP Ping
|
|
|
|
pub mod ping;
|
|
|
|
|
2019-04-22 09:58:13 +00:00
|
|
|
/// XEP-0202: Entity Time
|
|
|
|
pub mod time;
|
|
|
|
|
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;
|
|
|
|
|
2019-07-31 11:51:18 +00:00
|
|
|
/// XEP-0231: Bits of Binary
|
|
|
|
pub mod bob;
|
|
|
|
|
2017-04-22 16:39:21 +00:00
|
|
|
/// XEP-0234: Jingle File Transfer
|
|
|
|
pub mod jingle_ft;
|
|
|
|
|
2017-05-06 11:49:30 +00:00
|
|
|
/// XEP-0260: Jingle SOCKS5 Bytestreams Transport Method
|
|
|
|
pub mod jingle_s5b;
|
|
|
|
|
2017-04-22 18:15:48 +00:00
|
|
|
/// XEP-0261: Jingle In-Band Bytestreams Transport Method
|
|
|
|
pub mod jingle_ibb;
|
|
|
|
|
2019-07-17 19:55:16 +00:00
|
|
|
/// XEP-0280: Message Carbons
|
|
|
|
pub mod carbons;
|
|
|
|
|
2017-04-29 02:50:49 +00:00
|
|
|
/// XEP-0297: Stanza Forwarding
|
|
|
|
pub mod forwarding;
|
|
|
|
|
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-29 05:07:00 +00:00
|
|
|
/// XEP-0313: Message Archive Management
|
|
|
|
pub mod mam;
|
|
|
|
|
2017-05-21 19:22:48 +00:00
|
|
|
/// XEP-0319: Last User Interaction in Presence
|
|
|
|
pub mod idle;
|
|
|
|
|
2019-02-28 12:32:52 +00:00
|
|
|
/// XEP-0320: Use of DTLS-SRTP in Jingle Sessions
|
|
|
|
pub mod jingle_dtls_srtp;
|
|
|
|
|
2017-07-15 10:38:44 +00:00
|
|
|
/// XEP-0353: Jingle Message Initiation
|
|
|
|
pub mod jingle_message;
|
|
|
|
|
2017-04-29 02:23:50 +00:00
|
|
|
/// XEP-0359: Unique and Stable Stanza IDs
|
|
|
|
pub mod stanza_id;
|
|
|
|
|
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;
|