xmpp-rs/examples/echo_bot.rs

90 lines
2.6 KiB
Rust
Raw Normal View History

2017-06-03 23:37:46 +00:00
extern crate futures;
2018-09-01 19:59:02 +00:00
extern crate tokio;
2017-06-03 23:37:46 +00:00
extern crate tokio_xmpp;
2017-06-13 23:55:56 +00:00
extern crate jid;
extern crate minidom;
extern crate xmpp_parsers;
extern crate try_from;
2017-06-03 23:37:46 +00:00
use std::env::args;
use std::process::exit;
use try_from::TryFrom;
use futures::{Stream, Sink, future};
2018-09-01 19:59:02 +00:00
use tokio::runtime::current_thread::Runtime;
2017-07-12 23:47:05 +00:00
use tokio_xmpp::Client;
use minidom::Element;
use xmpp_parsers::presence::{Presence, Type as PresenceType, Show as PresenceShow};
2017-08-14 22:27:40 +00:00
use xmpp_parsers::message::{Message, MessageType, Body};
use jid::Jid;
2017-06-03 23:37:46 +00:00
fn main() {
let args: Vec<String> = args().collect();
if args.len() != 3 {
println!("Usage: {} <jid> <password>", args[0]);
exit(1);
}
let jid = &args[1];
let password = &args[2];
// tokio_core context
2018-09-01 19:59:02 +00:00
let mut rt = Runtime::new().unwrap();
2017-07-13 20:04:54 +00:00
// Client instance
2018-09-01 19:59:02 +00:00
let client = Client::new(jid, password).unwrap();
2017-06-13 23:55:56 +00:00
2017-07-13 20:04:54 +00:00
// Make the two interfaces for sending and receiving independent
// of each other so we can move one into a closure.
let (mut sink, stream) = client.split();
2017-07-13 20:04:54 +00:00
// Wrap sink in Option so that we can take() it for the send(self)
// to consume and return it back when ready.
2017-07-12 23:40:14 +00:00
let mut send = move |stanza| {
sink.start_send(stanza).expect("start_send");
2017-07-12 23:40:14 +00:00
};
2017-07-13 20:04:54 +00:00
// Main loop, processes events
2017-07-12 23:40:14 +00:00
let done = stream.for_each(|event| {
2017-07-13 20:04:54 +00:00
if event.is_online() {
println!("Online!");
2017-07-13 20:04:54 +00:00
let presence = make_presence();
send(presence);
2017-07-20 22:19:08 +00:00
} else if let Some(message) = event.into_stanza()
.and_then(|stanza| Message::try_from(stanza).ok())
{
// This is a message we'll echo
match (message.from, message.bodies.get("")) {
(Some(from), Some(body)) =>
if message.type_ != MessageType::Error {
2017-08-14 22:27:40 +00:00
let reply = make_reply(from, &body.0);
2017-07-20 22:19:08 +00:00
send(reply);
},
_ => (),
}
2017-07-13 20:04:54 +00:00
}
Box::new(future::ok(()))
2017-06-03 23:37:46 +00:00
});
2017-07-13 20:04:54 +00:00
// Start polling `done`
2018-09-01 19:59:02 +00:00
match rt.block_on(done) {
2017-06-04 22:42:35 +00:00
Ok(_) => (),
Err(e) => {
println!("Fatal: {}", e);
()
}
}
2017-06-03 23:37:46 +00:00
}
2017-06-20 19:26:51 +00:00
2017-07-13 20:04:54 +00:00
// Construct a <presence/>
fn make_presence() -> Element {
let mut presence = Presence::new(PresenceType::None);
presence.show = PresenceShow::Chat;
presence.statuses.insert(String::from("en"), String::from("Echoing messages."));
presence.into()
}
2017-07-13 20:04:54 +00:00
// Construct a chat <message/>
fn make_reply(to: Jid, body: &str) -> Element {
let mut message = Message::new(Some(to));
2017-08-14 22:27:40 +00:00
message.bodies.insert(String::new(), Body(body.to_owned()));
message.into()
2017-06-20 19:26:51 +00:00
}