xmpp-rs/examples/echo_bot.rs

93 lines
2.8 KiB
Rust
Raw Normal View History

2017-06-03 23:37:46 +00:00
extern crate futures;
extern crate tokio_core;
extern crate tokio_xmpp;
2017-06-13 23:55:56 +00:00
extern crate jid;
2017-06-19 00:35:21 +00:00
extern crate xml;
2017-06-03 23:37:46 +00:00
use tokio_core::reactor::Core;
2017-06-20 19:26:51 +00:00
use futures::{Future, Stream, Sink, future};
use tokio_xmpp::{Client, ClientEvent};
2017-06-03 23:37:46 +00:00
fn main() {
2017-06-20 19:26:51 +00:00
let mut core = Core::new().unwrap();
let client = Client::new("astrobot@example.org", "", &core.handle()).unwrap();
2017-06-13 23:55:56 +00:00
let (sink, stream) = client.split();
let mut sink = Some(sink);
let done = stream.for_each(move |event| {
let result: Box<Future<Item=(), Error=String>> = match event {
2017-06-20 19:26:51 +00:00
ClientEvent::Online => {
println!("Online!");
let presence = make_presence();
sink = Some(
sink.take().
expect("sink")
.send(presence)
.wait()
.expect("sink.send")
);
Box::new(
future::ok(())
)
2017-06-20 19:26:51 +00:00
},
ClientEvent::Stanza(ref stanza)
if stanza.name == "message"
&& stanza.get_attribute("type", None) != Some("error") =>
{
let from = stanza.get_attribute("from", None);
let body = stanza.get_child("body", Some("jabber:client"))
.map(|el| el.content_str());
match (from.as_ref(), body) {
(Some(from), Some(body)) => {
let reply = make_reply(from, body);
sink = Some(
sink.take().
expect("sink")
.send(reply)
.wait()
.expect("sink.send")
);
},
_ => (),
};
Box::new(future::ok(()))
2017-06-20 19:26:51 +00:00
},
_ => {
Box::new(future::ok(()))
2017-06-20 19:26:51 +00:00
},
};
result
2017-06-03 23:37:46 +00:00
});
2017-06-20 19:26:51 +00:00
match core.run(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
fn make_presence() -> xml::Element {
let mut presence = xml::Element::new("presence".to_owned(), None, vec![]);
presence.tag(xml::Element::new("status".to_owned(), None, vec![]))
.text("chat".to_owned());
presence.tag(xml::Element::new("show".to_owned(), None, vec![]))
.text("Echoing messages".to_owned());
presence
}
2017-06-20 19:26:51 +00:00
fn make_reply(to: &str, body: String) -> xml::Element {
let mut message = xml::Element::new(
"message".to_owned(),
None,
vec![("type".to_owned(), None, "chat".to_owned()),
("to".to_owned(), None, to.to_owned())]
);
message.tag(xml::Element::new("body".to_owned(), None, vec![]))
.text(body);
message
}