2019-10-23 20:47:00 +00:00
|
|
|
#![feature(async_closure)]
|
|
|
|
|
2019-10-30 22:26:26 +00:00
|
|
|
use std::future::Future;
|
2019-11-10 17:33:06 +00:00
|
|
|
use std::pin::Pin;
|
2019-10-30 22:26:26 +00:00
|
|
|
use std::rc::Rc;
|
2019-11-10 17:33:06 +00:00
|
|
|
use std::sync::{Arc, Mutex};
|
|
|
|
use std::{env, process::exit};
|
|
|
|
use url::Url;
|
2019-10-20 11:56:46 +00:00
|
|
|
|
|
|
|
use matrix_nio::{
|
|
|
|
self,
|
|
|
|
events::{
|
|
|
|
collections::all::RoomEvent,
|
|
|
|
room::message::{MessageEvent, MessageEventContent, TextMessageEventContent},
|
2019-10-23 20:47:00 +00:00
|
|
|
EventType,
|
2019-10-20 11:56:46 +00:00
|
|
|
},
|
2019-11-10 17:33:06 +00:00
|
|
|
AsyncClient, AsyncClientConfig, Room, SyncSettings,
|
2019-10-20 11:56:46 +00:00
|
|
|
};
|
|
|
|
|
2019-10-31 08:17:13 +00:00
|
|
|
async fn async_helper(room: Arc<Mutex<Room>>, event: Arc<RoomEvent>) {
|
|
|
|
let room = room.lock().unwrap();
|
2019-10-30 22:26:26 +00:00
|
|
|
if let RoomEvent::RoomMessage(MessageEvent {
|
|
|
|
content: MessageEventContent::Text(TextMessageEventContent { body: msg_body, .. }),
|
|
|
|
sender,
|
|
|
|
..
|
|
|
|
}) = &*event
|
|
|
|
{
|
|
|
|
let user = room.members.get(&sender.to_string()).unwrap();
|
2019-11-10 17:33:06 +00:00
|
|
|
println!(
|
|
|
|
"{}: {}",
|
|
|
|
user.display_name.as_ref().unwrap_or(&sender.to_string()),
|
|
|
|
msg_body
|
|
|
|
);
|
2019-10-30 22:26:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-10 17:33:06 +00:00
|
|
|
fn async_callback(
|
|
|
|
room: Arc<Mutex<Room>>,
|
|
|
|
event: Arc<RoomEvent>,
|
|
|
|
) -> Pin<Box<dyn Future<Output = ()> + Send + Sync>> {
|
2019-10-30 22:26:26 +00:00
|
|
|
Box::pin(async_helper(room, event))
|
2019-10-30 18:30:55 +00:00
|
|
|
}
|
|
|
|
|
2019-10-20 11:56:46 +00:00
|
|
|
async fn login(
|
|
|
|
homeserver_url: String,
|
|
|
|
username: String,
|
|
|
|
password: String,
|
|
|
|
) -> Result<(), matrix_nio::Error> {
|
|
|
|
let client_config = AsyncClientConfig::new()
|
|
|
|
.proxy("http://localhost:8080")?
|
|
|
|
.disable_ssl_verification();
|
2019-11-10 17:33:06 +00:00
|
|
|
let homeserver_url = Url::parse(&homeserver_url)?;
|
|
|
|
let mut client = AsyncClient::new_with_config(homeserver_url, None, client_config).unwrap();
|
2019-10-20 11:56:46 +00:00
|
|
|
|
2019-11-10 17:33:06 +00:00
|
|
|
// client.add_event_future(EventType::RoomMessage, Box::new(async_callback));
|
2019-10-23 20:47:00 +00:00
|
|
|
|
|
|
|
client.login(username, password, None).await?;
|
|
|
|
let response = client.sync(SyncSettings::new()).await?;
|
2019-10-20 11:56:46 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::main]
|
|
|
|
async fn main() -> Result<(), matrix_nio::Error> {
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
login(homeserver_url, username, password).await
|
|
|
|
}
|