2020-04-14 12:39:51 +00:00
|
|
|
use std::ops::Deref;
|
|
|
|
use std::sync::Arc;
|
|
|
|
use std::{env, process::exit};
|
|
|
|
use url::Url;
|
|
|
|
|
|
|
|
use matrix_sdk::{
|
|
|
|
self,
|
|
|
|
events::room::message::{MessageEvent, MessageEventContent, TextMessageEventContent},
|
|
|
|
AsyncClient, AsyncClientConfig, EventEmitter, Room, SyncSettings,
|
|
|
|
};
|
2020-04-14 18:49:29 +00:00
|
|
|
use tokio::sync::Mutex;
|
2020-04-14 12:39:51 +00:00
|
|
|
|
|
|
|
struct CommandBot {
|
2020-04-14 18:49:29 +00:00
|
|
|
client: AsyncClient,
|
2020-04-14 12:39:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl CommandBot {
|
2020-04-14 18:49:29 +00:00
|
|
|
pub fn new(client: AsyncClient) -> Self {
|
|
|
|
Self { client }
|
2020-04-14 12:39:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait]
|
|
|
|
impl EventEmitter for CommandBot {
|
|
|
|
async fn on_room_message(&mut self, room: Arc<Mutex<Room>>, event: Arc<Mutex<MessageEvent>>) {
|
|
|
|
if let MessageEvent {
|
|
|
|
content: MessageEventContent::Text(TextMessageEventContent { body: msg_body, .. }),
|
|
|
|
..
|
|
|
|
} = event.lock().await.deref()
|
|
|
|
{
|
|
|
|
let room = room.lock().await;
|
|
|
|
if msg_body.contains("!party") {
|
2020-04-14 18:49:29 +00:00
|
|
|
println!("!party found");
|
|
|
|
let content = MessageEventContent::Text(TextMessageEventContent {
|
|
|
|
body: "🎉🎊🥳 let's PARTY!! 🥳🎊🎉".to_string(),
|
|
|
|
format: None,
|
|
|
|
formatted_body: None,
|
|
|
|
relates_to: None,
|
|
|
|
});
|
|
|
|
self.client
|
|
|
|
.room_send(&room.room_id, content, None)
|
2020-04-14 12:39:51 +00:00
|
|
|
.await
|
2020-04-14 18:49:29 +00:00
|
|
|
.unwrap();
|
|
|
|
println!("message sent");
|
2020-04-14 12:39:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(clippy::for_loop_over_option)]
|
|
|
|
async fn login_and_sync(
|
|
|
|
homeserver_url: String,
|
|
|
|
username: String,
|
|
|
|
password: String,
|
|
|
|
) -> Result<(), matrix_sdk::Error> {
|
|
|
|
let client_config = AsyncClientConfig::new();
|
|
|
|
// .proxy("http://localhost:8080")?
|
|
|
|
// .disable_ssl_verification();
|
|
|
|
let homeserver_url = Url::parse(&homeserver_url)?;
|
|
|
|
let mut client = AsyncClient::new_with_config(homeserver_url, None, client_config).unwrap();
|
|
|
|
|
|
|
|
client
|
2020-04-14 18:49:29 +00:00
|
|
|
.add_event_emitter(Arc::new(Mutex::new(Box::new(CommandBot::new(
|
|
|
|
client.clone(),
|
|
|
|
)))))
|
2020-04-14 12:39:51 +00:00
|
|
|
.await;
|
|
|
|
|
|
|
|
client
|
|
|
|
.login(
|
|
|
|
username.clone(),
|
|
|
|
password,
|
|
|
|
None,
|
|
|
|
Some("command bot".to_string()),
|
|
|
|
)
|
|
|
|
.await?;
|
|
|
|
|
2020-04-14 18:49:29 +00:00
|
|
|
println!("logged in as {}", username);
|
2020-04-14 12:39:51 +00:00
|
|
|
|
2020-04-14 19:16:20 +00:00
|
|
|
client.sync_forever(SyncSettings::new(), |_| async {}).await;
|
2020-04-14 12:39:51 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-04-14 18:49:29 +00:00
|
|
|
#[tokio::main]
|
|
|
|
async fn main() -> Result<(), matrix_sdk::Error> {
|
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 18:49:29 +00:00
|
|
|
login_and_sync(homeserver_url, username, password).await?;
|
|
|
|
Ok(())
|
2020-04-14 12:39:51 +00:00
|
|
|
}
|