xmpp_parsers/
lib.rs

1//! A crate parsing common XMPP elements into Rust structures.
2//!
3//! Each module implements the `TryFrom<Element>` trait, which takes a
4//! minidom [`Element`] and returns a `Result` whose value is `Ok` if the
5//! element parsed correctly, `Err(error::Error)` otherwise.
6//!
7//! The returned structure can be manipulated as any Rust structure, with each
8//! field being public.  You can also create the same structure manually, with
9//! some having `new()` and `with_*()` helper methods to create them.
10//!
11//! Once you are happy with your structure, you can serialise it back to an
12//! [`Element`], using either `From` or `Into<Element>`, which give you what
13//! you want to be sending on the wire.
14//!
15//! [`Element`]: ../minidom/element/struct.Element.html
16
17// Copyright (c) 2017-2019 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
18// Copyright (c) 2017-2019 Maxime “pep” Buquet <pep@bouah.net>
19//
20// This Source Code Form is subject to the terms of the Mozilla Public
21// License, v. 2.0. If a copy of the MPL was not distributed with this
22// file, You can obtain one at http://mozilla.org/MPL/2.0/.
23
24#![warn(missing_docs)]
25#![cfg_attr(docsrs, feature(doc_auto_cfg))]
26
27extern crate alloc;
28
29pub use blake2;
30pub use jid;
31pub use minidom;
32pub use sha1;
33pub use sha2;
34pub use sha3;
35
36// We normally only reexport entire crates, but xso is a special case since it uses proc macros
37// which require it to be directly imported as a crate.  The only useful symbol we have to reexport
38// is its error type, which we expose in all of our return types.
39pub use xso::error::Error;
40
41/// XML namespace definitions used through XMPP.
42pub mod ns;
43
44#[macro_use]
45mod util;
46
47/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
48pub mod bind;
49/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
50pub mod iq;
51/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
52pub mod message;
53/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
54pub mod presence;
55/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
56pub mod sasl;
57/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
58pub mod stanza_error;
59/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
60pub mod starttls;
61/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
62pub mod stream;
63/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
64pub mod stream_error;
65/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
66pub mod stream_features;
67
68/// RFC 6121: Extensible Messaging and Presence Protocol (XMPP): Instant Messaging and Presence
69pub mod roster;
70
71/// RFC 7395: An Extensible Messaging and Presence Protocol (XMPP) Subprotocol for WebSocket
72pub mod websocket;
73
74/// XEP-0004: Data Forms
75pub mod data_forms;
76
77/// XEP-0030: Service Discovery
78pub mod disco;
79
80/// XEP-0045: Multi-User Chat
81pub mod muc;
82
83/// XEP-0047: In-Band Bytestreams
84pub mod ibb;
85
86/// XEP-0048: Bookmarks
87pub mod bookmarks;
88
89/// XEP-0049: Private XML storage
90pub mod private;
91
92/// XEP-0054: vcard-temp
93pub mod vcard;
94
95/// XEP-0059: Result Set Management
96pub mod rsm;
97
98/// XEP-0060: Publish-Subscribe
99pub mod pubsub;
100
101/// XEP-0066: OOB
102pub mod oob;
103
104/// XEP-0071: XHTML-IM
105pub mod xhtml;
106
107/// XEP-0077: In-Band Registration
108pub mod ibr;
109
110/// XEP-0082: XMPP Date and Time Profiles
111pub mod date;
112
113/// XEP-0084: User Avatar
114pub mod avatar;
115
116/// XEP-0085: Chat State Notifications
117pub mod chatstates;
118
119/// XEP-0092: Software Version
120pub mod version;
121
122/// XEP-0107: User Mood
123pub mod mood;
124
125/// XEP-0114: Jabber Component Protocol
126pub mod component;
127
128/// XEP-0115: Entity Capabilities
129pub mod caps;
130
131/// XEP-0118: User Tune
132pub mod tune;
133
134/// XEP-0122: Data Forms Validation
135pub mod data_forms_validate;
136
137///XEP-0153: vCard-Based Avatars
138pub mod vcard_update;
139
140/// XEP-0157: Contact Addresses for XMPP Services
141pub mod server_info;
142
143/// XEP-0166: Jingle
144pub mod jingle;
145
146/// XEP-0167: Jingle RTP Sessions
147pub mod jingle_rtp;
148
149/// XEP-0172: User Nickname
150pub mod nick;
151
152/// XEP-0176: Jingle ICE-UDP Transport Method
153pub mod jingle_ice_udp;
154
155/// XEP-0177: Jingle Raw UDP Transport Method
156pub mod jingle_raw_udp;
157
158/// XEP-0184: Message Delivery Receipts
159pub mod receipts;
160
161/// XEP-0191: Blocking Command
162pub mod blocking;
163
164/// XEP-0198: Stream Management
165pub mod sm;
166
167/// XEP-0199: XMPP Ping
168pub mod ping;
169
170/// XEP-0202: Entity Time
171pub mod time;
172
173/// XEP-0203: Delayed Delivery
174pub mod delay;
175
176/// XEP-0215: External Service Discovery
177pub mod extdisco;
178
179/// XEP-0221: Data Forms Media Element
180pub mod media_element;
181
182/// XEP-0224: Attention
183pub mod attention;
184
185/// XEP-0231: Bits of Binary
186pub mod bob;
187
188/// XEP-0234: Jingle File Transfer
189pub mod jingle_ft;
190
191/// XEP-0257: Client Certificate Management for SASL EXTERNAL
192pub mod cert_management;
193
194/// XEP-0260: Jingle SOCKS5 Bytestreams Transport Method
195pub mod jingle_s5b;
196
197/// XEP-0261: Jingle In-Band Bytestreams Transport Method
198pub mod jingle_ibb;
199
200/// XEP-0264: Jingle Content Thumbnails
201pub mod jingle_thumbnails;
202
203/// XEP-0280: Message Carbons
204pub mod carbons;
205
206/// XEP-0293: Jingle RTP Feedback Negotiation
207pub mod jingle_rtcp_fb;
208
209/// XEP-0294: Jingle RTP Header Extensions Negotiation
210pub mod jingle_rtp_hdrext;
211
212/// XEP-0297: Stanza Forwarding
213pub mod forwarding;
214
215/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
216pub mod hashes;
217
218/// XEP-0301: In-Band Real Time Text
219pub mod rtt;
220
221/// XEP-0308: Last Message Correction
222pub mod message_correct;
223
224/// XEP-0313: Message Archive Management
225pub mod mam;
226
227/// XEP-0319: Last User Interaction in Presence
228pub mod idle;
229
230/// XEP-0320: Use of DTLS-SRTP in Jingle Sessions
231pub mod jingle_dtls_srtp;
232
233/// XEP-0328: JID Prep
234pub mod jid_prep;
235
236/// XEP-0335: JSON Containers
237pub mod json_containers;
238
239/// XEP-0338: Jingle Grouping Framework
240pub mod jingle_grouping;
241
242/// XEP-0339: Source-Specific Media Attributes in Jingle
243pub mod jingle_ssma;
244
245/// XEP-0352: Client State Indication
246pub mod csi;
247
248/// XEP-0353: Jingle Message Initiation
249pub mod jingle_message;
250
251/// XEP-0359: Unique and Stable Stanza IDs
252pub mod stanza_id;
253
254/// XEP-0363: HTTP File Upload
255pub mod http_upload;
256
257/// XEP-0373: OpenPGP for XMPP
258pub mod openpgp;
259
260/// XEP-0377: Spam Reporting
261pub mod spam_reporting;
262
263/// XEP-0380: Explicit Message Encryption
264pub mod eme;
265
266/// XEP-0380: OMEMO Encryption (experimental version 0.3.0)
267pub mod legacy_omemo;
268
269/// XEP-0386: Bind 2
270pub mod bind2;
271
272/// XEP-0388: Extensible SASL Profile
273pub mod sasl2;
274
275/// XEP-0390: Entity Capabilities 2.0
276pub mod ecaps2;
277
278/// XEP-0402: PEP Native Bookmarks
279pub mod bookmarks2;
280
281/// XEP-0421: Anonymous unique occupant identifiers for MUCs
282pub mod occupant_id;
283
284/// XEP-0441: Message Archive Management Preferences
285pub mod mam_prefs;
286
287/// XEP-0440: SASL Channel-Binding Type Capability
288pub mod sasl_cb;
289
290/// XEP-0444: Message Reactions
291pub mod reactions;
292
293/// XEP-0478: Stream Limits Advertisement
294pub mod stream_limits;
295
296/// XEP-0484: Fast Authentication Streamlining Tokens
297pub mod fast;
298
299/// XEP-0490: Message Displayed Synchronization
300pub mod message_displayed;
301
302#[cfg(test)]
303mod tests {
304    #[test]
305    fn reexports() {
306        #[allow(unused_imports)]
307        use crate::blake2;
308        #[allow(unused_imports)]
309        use crate::jid;
310        #[allow(unused_imports)]
311        use crate::minidom;
312        #[allow(unused_imports)]
313        use crate::sha1;
314        #[allow(unused_imports)]
315        use crate::sha2;
316        #[allow(unused_imports)]
317        use crate::sha3;
318    }
319}