2020-10-24 08:32:17 +00:00
|
|
|
use std::{
|
|
|
|
collections::BTreeMap,
|
|
|
|
env, io,
|
|
|
|
process::exit,
|
|
|
|
sync::atomic::{AtomicBool, Ordering},
|
|
|
|
};
|
|
|
|
|
|
|
|
use matrix_sdk::{
|
2021-06-23 10:06:28 +00:00
|
|
|
ruma::{api::client::r0::uiaa::AuthData, UserId},
|
|
|
|
Client, LoopCtrl, SyncSettings,
|
2020-10-24 08:32:17 +00:00
|
|
|
};
|
2021-05-12 10:56:29 +00:00
|
|
|
use serde_json::json;
|
|
|
|
use url::Url;
|
2020-10-24 08:32:17 +00:00
|
|
|
|
|
|
|
fn auth_data<'a>(user: &UserId, password: &str, session: Option<&'a str>) -> AuthData<'a> {
|
|
|
|
let mut auth_parameters = BTreeMap::new();
|
|
|
|
let identifier = json!({
|
|
|
|
"type": "m.id.user",
|
|
|
|
"user": user,
|
|
|
|
});
|
|
|
|
|
|
|
|
auth_parameters.insert("identifier".to_owned(), identifier);
|
|
|
|
auth_parameters.insert("password".to_owned(), password.to_owned().into());
|
|
|
|
|
2021-05-12 15:00:47 +00:00
|
|
|
AuthData::DirectRequest { kind: "m.login.password", auth_parameters, session }
|
2020-10-24 08:32:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async fn bootstrap(client: Client, user_id: UserId, password: String) {
|
|
|
|
println!("Bootstrapping a new cross signing identity, press enter to continue.");
|
|
|
|
|
|
|
|
let mut input = String::new();
|
|
|
|
|
2021-05-12 15:00:47 +00:00
|
|
|
io::stdin().read_line(&mut input).expect("error: unable to read user input");
|
2020-10-24 08:32:17 +00:00
|
|
|
|
2020-11-26 13:27:11 +00:00
|
|
|
#[cfg(feature = "encryption")]
|
2020-10-24 08:32:17 +00:00
|
|
|
if let Err(e) = client.bootstrap_cross_signing(None).await {
|
|
|
|
if let Some(response) = e.uiaa_response() {
|
|
|
|
let auth_data = auth_data(&user_id, &password, response.session.as_deref());
|
|
|
|
client
|
|
|
|
.bootstrap_cross_signing(Some(auth_data))
|
|
|
|
.await
|
|
|
|
.expect("Couldn't bootstrap cross signing")
|
|
|
|
} else {
|
2021-06-05 12:35:20 +00:00
|
|
|
panic!("Error during cross-signing bootstrap {:#?}", e);
|
2020-10-24 08:32:17 +00:00
|
|
|
}
|
|
|
|
}
|
2020-11-26 13:27:11 +00:00
|
|
|
|
|
|
|
#[cfg(not(feature = "encryption"))]
|
|
|
|
panic!("Cross signing requires the encryption feature to be enabled");
|
2020-10-24 08:32:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async fn login(
|
|
|
|
homeserver_url: String,
|
|
|
|
username: &str,
|
|
|
|
password: &str,
|
|
|
|
) -> Result<(), matrix_sdk::Error> {
|
|
|
|
let homeserver_url = Url::parse(&homeserver_url).expect("Couldn't parse the homeserver URL");
|
2021-01-22 09:01:21 +00:00
|
|
|
let client = Client::new(homeserver_url).unwrap();
|
2020-10-24 08:32:17 +00:00
|
|
|
|
2021-05-12 15:00:47 +00:00
|
|
|
let response = client.login(username, password, None, Some("rust-sdk")).await?;
|
2020-10-24 08:32:17 +00:00
|
|
|
|
|
|
|
let user_id = &response.user_id;
|
|
|
|
let client_ref = &client;
|
|
|
|
let asked = AtomicBool::new(false);
|
|
|
|
let asked_ref = &asked;
|
|
|
|
|
|
|
|
client
|
|
|
|
.sync_with_callback(SyncSettings::new(), |_| async move {
|
|
|
|
let asked = asked_ref;
|
|
|
|
let client = &client_ref;
|
|
|
|
let user_id = &user_id;
|
|
|
|
let password = &password;
|
|
|
|
|
|
|
|
// Wait for sync to be done then ask the user to bootstrap.
|
|
|
|
if !asked.load(Ordering::SeqCst) {
|
|
|
|
tokio::spawn(bootstrap(
|
|
|
|
(*client).clone(),
|
|
|
|
(*user_id).clone(),
|
|
|
|
password.to_string(),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
asked.store(true, Ordering::SeqCst);
|
|
|
|
LoopCtrl::Continue
|
|
|
|
})
|
|
|
|
.await;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::main]
|
|
|
|
async fn main() -> Result<(), matrix_sdk::Error> {
|
|
|
|
tracing_subscriber::fmt::init();
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|