matrix-rust-sdk/matrix_sdk/examples/command_bot.rs

122 lines
3.9 KiB
Rust
Raw Normal View History

2020-04-14 12:39:51 +00:00
use std::{env, process::exit};
2020-04-14 12:39:51 +00:00
use matrix_sdk::{
self, async_trait,
2020-06-20 21:18:20 +00:00
events::{
room::message::{MessageEventContent, TextMessageEventContent},
AnyMessageEventContent, SyncMessageEvent,
2020-06-20 21:18:20 +00:00
},
Client, ClientConfig, EventHandler, RoomState, SyncSettings,
2020-04-14 12:39:51 +00:00
};
use url::Url;
2020-04-14 12:39:51 +00:00
struct CommandBot {
/// This clone of the `Client` will send requests to the server,
/// while the other keeps us in sync with the server using `sync`.
client: Client,
2020-04-14 12:39:51 +00:00
}
impl CommandBot {
pub fn new(client: Client) -> Self {
2020-04-15 12:44:29 +00:00
Self { client }
2020-04-14 12:39:51 +00:00
}
}
#[async_trait]
impl EventHandler for CommandBot {
2020-12-19 19:20:39 +00:00
async fn on_room_message(
&self,
room: RoomState,
event: &SyncMessageEvent<MessageEventContent>,
) {
if let RoomState::Joined(room) = room {
let msg_body = if let SyncMessageEvent {
content: MessageEventContent::Text(TextMessageEventContent { body: msg_body, .. }),
..
} = event
{
msg_body.clone()
} else {
String::new()
};
if msg_body.contains("!party") {
2020-11-25 17:50:50 +00:00
let content = AnyMessageEventContent::RoomMessage(MessageEventContent::text_plain(
"🎉🎊🥳 let's PARTY!! 🥳🎊🎉",
));
println!("sending");
self.client
// send our message to the room we found the "!party" command in
// the last parameter is an optional Uuid which we don't care about.
2020-12-19 19:20:39 +00:00
.room_send(room.room_id(), content, None)
.await
.unwrap();
println!("message sent");
}
2020-04-14 12:39:51 +00:00
}
}
}
async fn login_and_sync(
homeserver_url: String,
username: String,
password: String,
) -> Result<(), matrix_sdk::Error> {
// the location for `JsonStore` to save files to
2020-04-25 10:26:35 +00:00
let mut home = dirs::home_dir().expect("no home directory found");
home.push("party_bot");
let client_config = ClientConfig::new().store_path(home);
let homeserver_url = Url::parse(&homeserver_url).expect("Couldn't parse the homeserver URL");
// create a new Client with the given homeserver url and config
2020-12-19 19:20:39 +00:00
let client = Client::new_with_config(homeserver_url, client_config).unwrap();
2020-04-14 12:39:51 +00:00
client
2020-08-15 01:09:13 +00:00
.login(&username, &password, None, Some("command bot"))
2020-04-14 12:39:51 +00:00
.await?;
2020-04-14 18:49:29 +00:00
println!("logged in as {}", username);
2020-04-14 12:39:51 +00:00
// An initial sync to set up state and so our bot doesn't respond to old messages.
// If the `StateStore` finds saved state in the location given the initial sync will
// be skipped in favor of loading state from the store
client.sync_once(SyncSettings::default()).await.unwrap();
// add our CommandBot to be notified of incoming messages, we do this after the initial
// sync to avoid responding to messages before the bot was running.
client
.set_event_handler(Box::new(CommandBot::new(client.clone())))
.await;
// since we called `sync_once` before we entered our sync loop we must pass
// that sync token to `sync`
let settings = SyncSettings::default().token(client.sync_token().await.unwrap());
// this keeps state from the server streaming in to CommandBot via the EventHandler trait
client.sync(settings).await;
2020-04-14 12:39:51 +00:00
Ok(())
}
2020-04-14 22:14:14 +00:00
#[tokio::main]
async fn main() -> Result<(), matrix_sdk::Error> {
tracing_subscriber::fmt::init();
2020-04-14 12:39:51 +00:00
let (homeserver_url, username, password) =
match (env::args().nth(1), env::args().nth(2), env::args().nth(3)) {
(Some(a), Some(b), Some(c)) => (a, b, c),
_ => {
eprintln!(
"Usage: {} <homeserver_url> <username> <password>",
env::args().next().unwrap()
);
exit(1)
}
};
2020-04-14 22:14:14 +00:00
login_and_sync(homeserver_url, username, password).await?;
2020-04-14 18:49:29 +00:00
Ok(())
2020-04-14 12:39:51 +00:00
}