xmpp-rs/examples/hello_bot.rs

80 lines
2.8 KiB
Rust
Raw Normal View History

2019-03-21 17:41:29 +00:00
// Copyright (c) 2019 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
//
// 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/.
use futures::prelude::*;
2019-03-21 17:41:29 +00:00
use std::env::args;
use std::process::exit;
use tokio::runtime::current_thread::Runtime;
use xmpp_parsers::{message::MessageType, Jid};
2019-03-21 17:41:29 +00:00
use xmpp::{ClientBuilder, ClientType, ClientFeature, Event};
fn main() {
let args: Vec<String> = args().collect();
if args.len() != 3 {
println!("Usage: {} <jid> <password>", args[0]);
2019-03-21 17:41:29 +00:00
exit(1);
}
let jid = &args[1];
let password = &args[2];
// tokio_core context
let mut rt = Runtime::new().unwrap();
// Client instance
let (mut agent, stream) = ClientBuilder::new(jid, password)
2019-03-21 17:41:29 +00:00
.set_client(ClientType::Bot, "xmpp-rs")
.set_website("https://gitlab.com/xmpp-rs/xmpp-rs")
.set_default_nick("bot")
2019-03-21 17:41:29 +00:00
.enable_feature(ClientFeature::Avatars)
2019-06-01 15:56:46 +00:00
.enable_feature(ClientFeature::ContactList)
.enable_feature(ClientFeature::JoinRooms)
.build()
2019-03-21 17:41:29 +00:00
.unwrap();
// We return either Some(Error) if an error was encountered
// or None, if we were simply disconnected
let handler = stream.map_err(Some).for_each(|evt: Event| {
2019-03-21 17:41:29 +00:00
match evt {
Event::Online => {
println!("Online.");
},
Event::Disconnected => {
println!("Disconnected.");
return Err(None);
2019-03-21 17:41:29 +00:00
},
2019-06-01 15:56:46 +00:00
Event::ContactAdded(contact) => {
println!("Contact {} added.", contact.jid);
2019-06-01 15:56:46 +00:00
},
Event::ContactRemoved(contact) => {
println!("Contact {} removed.", contact.jid);
2019-06-01 15:56:46 +00:00
},
Event::ContactChanged(contact) => {
println!("Contact {} changed.", contact.jid);
},
Event::OpenRoomBookmark(bookmark) => {
println!("Joining room “{}” ({})…", bookmark.name, bookmark.jid);
agent.join_room(bookmark.jid, bookmark.nick, bookmark.password, "en", "Yet another bot!");
2019-06-01 15:56:46 +00:00
},
2019-03-21 17:41:29 +00:00
Event::RoomJoined(jid) => {
println!("Joined room {}.", jid);
agent.send_message(Jid::Bare(jid), MessageType::Groupchat, "en", "Hello world!");
2019-03-21 17:41:29 +00:00
},
Event::RoomLeft(jid) => {
println!("Left room {}.", jid);
},
2019-03-21 17:41:29 +00:00
Event::AvatarRetrieved(jid, path) => {
println!("Received avatar for {} in {}.", jid, path);
},
}
Ok(())
});
2019-03-21 17:41:29 +00:00
rt.block_on(handler).unwrap_or_else(|e| match e {
Some(e) => println!("Error: {:?}", e),
None => println!("Disconnected."),
});
2019-03-21 17:41:29 +00:00
}