2020-02-21 15:54:05 +00:00
|
|
|
// Copyright 2020 Damir Jelić
|
|
|
|
// Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2020-04-23 10:43:59 +00:00
|
|
|
#[cfg(feature = "encryption")]
|
|
|
|
use std::collections::BTreeMap;
|
|
|
|
use std::collections::HashMap;
|
2019-10-23 20:47:00 +00:00
|
|
|
use std::convert::{TryFrom, TryInto};
|
2020-03-18 13:15:56 +00:00
|
|
|
use std::result::Result as StdResult;
|
2020-04-01 02:00:46 +00:00
|
|
|
use std::sync::Arc;
|
2020-04-01 13:37:00 +00:00
|
|
|
|
2020-05-12 12:28:01 +00:00
|
|
|
use matrix_sdk_common::instant::{Duration, Instant};
|
2020-05-08 14:12:21 +00:00
|
|
|
use matrix_sdk_common::locks::RwLock;
|
|
|
|
use matrix_sdk_common::uuid::Uuid;
|
2020-04-09 14:19:32 +00:00
|
|
|
|
2020-05-08 14:12:21 +00:00
|
|
|
use futures_timer::Delay as sleep;
|
|
|
|
use std::future::Future;
|
2020-04-03 08:42:03 +00:00
|
|
|
#[cfg(feature = "encryption")]
|
2020-05-05 13:29:25 +00:00
|
|
|
use tracing::{debug, warn};
|
2020-04-03 08:42:03 +00:00
|
|
|
use tracing::{info, instrument, trace};
|
2019-10-23 20:47:00 +00:00
|
|
|
|
|
|
|
use http::Method as HttpMethod;
|
|
|
|
use http::Response as HttpResponse;
|
2020-05-08 14:12:21 +00:00
|
|
|
use reqwest::header::{HeaderValue, InvalidHeaderValue, AUTHORIZATION};
|
2019-10-23 20:47:00 +00:00
|
|
|
use url::Url;
|
|
|
|
|
2020-04-29 08:40:27 +00:00
|
|
|
use crate::events::room::message::MessageEventContent;
|
2020-05-05 13:29:25 +00:00
|
|
|
use crate::events::EventType;
|
2020-05-15 10:32:36 +00:00
|
|
|
use crate::identifiers::{EventId, RoomId, RoomIdOrAliasId, UserId};
|
2020-04-29 08:40:27 +00:00
|
|
|
use crate::Endpoint;
|
2019-10-23 20:47:00 +00:00
|
|
|
|
2020-04-01 13:37:00 +00:00
|
|
|
#[cfg(feature = "encryption")]
|
2020-04-29 08:40:27 +00:00
|
|
|
use crate::identifiers::DeviceId;
|
2020-04-01 13:37:00 +00:00
|
|
|
|
2019-10-23 20:47:00 +00:00
|
|
|
use crate::api;
|
2020-05-13 13:02:28 +00:00
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
2019-11-17 18:55:59 +00:00
|
|
|
use crate::VERSION;
|
2020-03-31 23:34:11 +00:00
|
|
|
use crate::{Error, EventEmitter, Result};
|
2020-05-11 08:43:21 +00:00
|
|
|
use matrix_sdk_base::BaseClient;
|
2020-05-07 12:57:38 +00:00
|
|
|
use matrix_sdk_base::Room;
|
|
|
|
use matrix_sdk_base::Session;
|
|
|
|
use matrix_sdk_base::StateStore;
|
2020-03-29 12:05:40 +00:00
|
|
|
|
2020-03-24 15:18:56 +00:00
|
|
|
const DEFAULT_SYNC_TIMEOUT: Duration = Duration::from_secs(30);
|
2020-02-28 09:33:17 +00:00
|
|
|
|
2020-02-21 13:29:25 +00:00
|
|
|
/// An async/await enabled Matrix client.
|
2020-04-15 11:52:29 +00:00
|
|
|
///
|
2020-05-08 12:02:49 +00:00
|
|
|
/// All of the state is held in an `Arc` so the `Client` can be cloned freely.
|
2020-05-06 13:36:55 +00:00
|
|
|
#[derive(Clone)]
|
2020-05-08 12:02:49 +00:00
|
|
|
pub struct Client {
|
2019-10-23 20:47:00 +00:00
|
|
|
/// The URL of the homeserver to connect to.
|
|
|
|
homeserver: Url,
|
|
|
|
/// The underlying HTTP client.
|
|
|
|
http_client: reqwest::Client,
|
|
|
|
/// User session data.
|
2020-05-06 13:36:55 +00:00
|
|
|
pub(crate) base_client: BaseClient,
|
2019-10-23 20:47:00 +00:00
|
|
|
}
|
|
|
|
|
2020-05-14 13:26:22 +00:00
|
|
|
#[cfg_attr(tarpaulin, skip)]
|
2020-05-08 12:02:49 +00:00
|
|
|
impl std::fmt::Debug for Client {
|
2020-03-19 12:55:04 +00:00
|
|
|
fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> StdResult<(), std::fmt::Error> {
|
2020-05-08 12:02:49 +00:00
|
|
|
write!(fmt, "Client {{ homeserver: {} }}", self.homeserver)
|
2020-03-19 12:55:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-22 21:39:57 +00:00
|
|
|
#[derive(Default)]
|
2020-05-08 12:02:49 +00:00
|
|
|
/// Configuration for the creation of the `Client`.
|
2020-02-21 13:29:25 +00:00
|
|
|
///
|
2020-04-23 23:37:27 +00:00
|
|
|
/// When setting the `StateStore` it is up to the user to open/connect
|
|
|
|
/// the storage backend before client creation.
|
|
|
|
///
|
2020-02-21 13:29:25 +00:00
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```
|
2020-05-08 12:02:49 +00:00
|
|
|
/// # use matrix_sdk::ClientConfig;
|
2020-02-21 13:29:25 +00:00
|
|
|
/// // To pass all the request through mitmproxy set the proxy and disable SSL
|
|
|
|
/// // verification
|
2020-05-08 12:02:49 +00:00
|
|
|
/// let client_config = ClientConfig::new()
|
2020-02-21 13:29:25 +00:00
|
|
|
/// .proxy("http://localhost:8080")
|
|
|
|
/// .unwrap()
|
|
|
|
/// .disable_ssl_verification();
|
|
|
|
/// ```
|
2020-05-08 12:02:49 +00:00
|
|
|
/// An example of adding a default `JsonStore` to the `Client`.
|
2020-04-23 23:37:27 +00:00
|
|
|
/// ```no_run
|
2020-05-08 12:02:49 +00:00
|
|
|
/// # use matrix_sdk::{ClientConfig, JsonStore};
|
2020-04-23 23:37:27 +00:00
|
|
|
///
|
|
|
|
/// let store = JsonStore::open("path/to/json").unwrap();
|
2020-05-08 12:02:49 +00:00
|
|
|
/// let client_config = ClientConfig::new()
|
2020-04-26 21:13:55 +00:00
|
|
|
/// .state_store(Box::new(store));
|
2020-04-23 23:37:27 +00:00
|
|
|
/// ```
|
2020-05-08 12:02:49 +00:00
|
|
|
pub struct ClientConfig {
|
2020-05-08 14:12:21 +00:00
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
2019-10-23 20:47:00 +00:00
|
|
|
proxy: Option<reqwest::Proxy>,
|
2019-10-24 20:34:58 +00:00
|
|
|
user_agent: Option<HeaderValue>,
|
2019-10-23 20:47:00 +00:00
|
|
|
disable_ssl_verification: bool,
|
2020-04-22 21:39:57 +00:00
|
|
|
state_store: Option<Box<dyn StateStore>>,
|
|
|
|
}
|
|
|
|
|
2020-05-14 13:26:22 +00:00
|
|
|
#[cfg_attr(tarpaulin, skip)]
|
2020-05-08 12:02:49 +00:00
|
|
|
impl std::fmt::Debug for ClientConfig {
|
2020-04-22 21:39:57 +00:00
|
|
|
fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> StdResult<(), std::fmt::Error> {
|
2020-05-08 14:12:21 +00:00
|
|
|
let mut res = fmt.debug_struct("ClientConfig");
|
|
|
|
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
|
|
let res = res.field("proxy", &self.proxy);
|
|
|
|
|
|
|
|
res.field("user_agent", &self.user_agent)
|
2020-04-22 21:39:57 +00:00
|
|
|
.field("disable_ssl_verification", &self.disable_ssl_verification)
|
|
|
|
.finish()
|
|
|
|
}
|
2019-10-23 20:47:00 +00:00
|
|
|
}
|
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
impl ClientConfig {
|
|
|
|
/// Create a new default `ClientConfig`.
|
2019-10-23 20:47:00 +00:00
|
|
|
pub fn new() -> Self {
|
|
|
|
Default::default()
|
|
|
|
}
|
|
|
|
|
2020-02-21 13:29:25 +00:00
|
|
|
/// Set the proxy through which all the HTTP requests should go.
|
|
|
|
///
|
|
|
|
/// Note, only HTTP proxies are supported.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
|
|
|
/// * `proxy` - The HTTP URL of the proxy.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```
|
2020-05-08 12:02:49 +00:00
|
|
|
/// use matrix_sdk::ClientConfig;
|
2020-02-21 13:29:25 +00:00
|
|
|
///
|
2020-05-08 12:02:49 +00:00
|
|
|
/// let client_config = ClientConfig::new()
|
2020-02-21 13:29:25 +00:00
|
|
|
/// .proxy("http://localhost:8080")
|
|
|
|
/// .unwrap();
|
|
|
|
/// ```
|
2020-05-08 14:12:21 +00:00
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
2020-03-18 13:15:56 +00:00
|
|
|
pub fn proxy(mut self, proxy: &str) -> Result<Self> {
|
2019-10-23 20:47:00 +00:00
|
|
|
self.proxy = Some(reqwest::Proxy::all(proxy)?);
|
|
|
|
Ok(self)
|
|
|
|
}
|
|
|
|
|
2020-02-21 13:29:25 +00:00
|
|
|
/// Disable SSL verification for the HTTP requests.
|
2019-10-23 20:47:00 +00:00
|
|
|
pub fn disable_ssl_verification(mut self) -> Self {
|
|
|
|
self.disable_ssl_verification = true;
|
|
|
|
self
|
|
|
|
}
|
2019-10-24 20:34:58 +00:00
|
|
|
|
2020-02-21 13:29:25 +00:00
|
|
|
/// Set a custom HTTP user agent for the client.
|
2020-03-18 13:15:56 +00:00
|
|
|
pub fn user_agent(mut self, user_agent: &str) -> StdResult<Self, InvalidHeaderValue> {
|
2019-10-24 20:34:58 +00:00
|
|
|
self.user_agent = Some(HeaderValue::from_str(user_agent)?);
|
|
|
|
Ok(self)
|
|
|
|
}
|
2020-04-22 21:39:57 +00:00
|
|
|
|
|
|
|
/// Set a custom implementation of a `StateStore`.
|
|
|
|
///
|
2020-04-24 23:57:51 +00:00
|
|
|
/// The state store should be opened before being set.
|
2020-04-22 21:39:57 +00:00
|
|
|
pub fn state_store(mut self, store: Box<dyn StateStore>) -> Self {
|
|
|
|
self.state_store = Some(store);
|
|
|
|
self
|
|
|
|
}
|
2019-10-23 20:47:00 +00:00
|
|
|
}
|
|
|
|
|
2019-12-04 18:31:33 +00:00
|
|
|
#[derive(Debug, Default, Clone)]
|
2020-02-21 13:29:25 +00:00
|
|
|
/// Settings for a sync call.
|
2019-10-23 20:47:00 +00:00
|
|
|
pub struct SyncSettings {
|
2020-03-24 15:18:56 +00:00
|
|
|
pub(crate) timeout: Option<Duration>,
|
2019-10-23 20:47:00 +00:00
|
|
|
pub(crate) token: Option<String>,
|
2020-04-03 12:09:56 +00:00
|
|
|
pub(crate) full_state: bool,
|
2019-10-23 20:47:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl SyncSettings {
|
2020-02-21 13:29:25 +00:00
|
|
|
/// Create new default sync settings.
|
2019-10-23 20:47:00 +00:00
|
|
|
pub fn new() -> Self {
|
|
|
|
Default::default()
|
|
|
|
}
|
|
|
|
|
2020-02-21 13:29:25 +00:00
|
|
|
/// Set the sync token.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
|
|
|
/// * `token` - The sync token that should be used for the sync call.
|
2019-10-23 20:47:00 +00:00
|
|
|
pub fn token<S: Into<String>>(mut self, token: S) -> Self {
|
|
|
|
self.token = Some(token.into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-02-21 13:29:25 +00:00
|
|
|
/// Set the maximum time the server can wait, in milliseconds, before
|
|
|
|
/// responding to the sync request.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
|
|
|
/// * `timeout` - The time the server is allowed to wait.
|
2020-03-24 15:18:56 +00:00
|
|
|
pub fn timeout(mut self, timeout: Duration) -> Self {
|
|
|
|
self.timeout = Some(timeout);
|
|
|
|
self
|
2019-10-23 20:47:00 +00:00
|
|
|
}
|
|
|
|
|
2020-02-21 13:29:25 +00:00
|
|
|
/// Should the server return the full state from the start of the timeline.
|
|
|
|
///
|
|
|
|
/// This does nothing if no sync token is set.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
/// * `full_state` - A boolean deciding if the server should return the full
|
|
|
|
/// state or not.
|
2019-10-23 20:47:00 +00:00
|
|
|
pub fn full_state(mut self, full_state: bool) -> Self {
|
2020-04-03 12:09:56 +00:00
|
|
|
self.full_state = full_state;
|
2019-10-23 20:47:00 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-01 13:37:00 +00:00
|
|
|
#[cfg(feature = "encryption")]
|
2020-04-03 08:27:30 +00:00
|
|
|
use api::r0::keys::{claim_keys, get_keys, upload_keys, KeyAlgorithm};
|
2020-04-10 20:32:28 +00:00
|
|
|
use api::r0::membership::{
|
2020-05-05 12:33:31 +00:00
|
|
|
ban_user, forget_room,
|
2020-04-10 20:32:28 +00:00
|
|
|
invite_user::{self, InvitationRecipient},
|
2020-05-15 10:32:36 +00:00
|
|
|
join_room_by_id, join_room_by_id_or_alias, kick_user, leave_room, Invite3pid,
|
2020-04-10 20:32:28 +00:00
|
|
|
};
|
2020-02-21 15:33:08 +00:00
|
|
|
use api::r0::message::create_message_event;
|
2020-04-11 12:46:45 +00:00
|
|
|
use api::r0::message::get_message_events;
|
2020-05-05 12:33:31 +00:00
|
|
|
use api::r0::receipt::create_receipt;
|
2020-04-10 20:32:28 +00:00
|
|
|
use api::r0::room::create_room;
|
2019-10-23 20:47:00 +00:00
|
|
|
use api::r0::session::login;
|
|
|
|
use api::r0::sync::sync_events;
|
2020-05-05 13:29:25 +00:00
|
|
|
#[cfg(feature = "encryption")]
|
|
|
|
use api::r0::to_device::send_event_to_device;
|
2020-05-05 12:33:31 +00:00
|
|
|
use api::r0::typing::create_typing_event;
|
2019-10-23 20:47:00 +00:00
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
impl Client {
|
2019-10-23 20:47:00 +00:00
|
|
|
/// Creates a new client for making HTTP requests to the given homeserver.
|
2020-02-21 13:29:25 +00:00
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
|
|
|
/// * `homeserver_url` - The homeserver that the client should connect to.
|
|
|
|
/// * `session` - If a previous login exists, the access token can be
|
|
|
|
/// reused by giving a session object here.
|
2020-03-18 13:15:56 +00:00
|
|
|
pub fn new<U: TryInto<Url>>(homeserver_url: U, session: Option<Session>) -> Result<Self> {
|
2020-05-08 12:02:49 +00:00
|
|
|
let config = ClientConfig::new();
|
|
|
|
Client::new_with_config(homeserver_url, session, config)
|
2019-10-23 20:47:00 +00:00
|
|
|
}
|
|
|
|
|
2020-02-21 13:29:25 +00:00
|
|
|
/// Create a new client with the given configuration.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
|
|
|
/// * `homeserver_url` - The homeserver that the client should connect to.
|
|
|
|
/// * `session` - If a previous login exists, the access token can be
|
|
|
|
/// reused by giving a session object here.
|
|
|
|
/// * `config` - Configuration for the client.
|
2019-11-10 10:44:03 +00:00
|
|
|
pub fn new_with_config<U: TryInto<Url>>(
|
|
|
|
homeserver_url: U,
|
2019-10-23 20:47:00 +00:00
|
|
|
session: Option<Session>,
|
2020-05-08 12:02:49 +00:00
|
|
|
config: ClientConfig,
|
2020-03-18 13:15:56 +00:00
|
|
|
) -> Result<Self> {
|
2020-03-31 23:34:11 +00:00
|
|
|
#[allow(clippy::match_wild_err_arm)]
|
2019-11-10 10:44:03 +00:00
|
|
|
let homeserver: Url = match homeserver_url.try_into() {
|
|
|
|
Ok(u) => u,
|
2020-02-21 13:29:46 +00:00
|
|
|
Err(_e) => panic!("Error parsing homeserver url"),
|
2019-11-10 10:44:03 +00:00
|
|
|
};
|
|
|
|
|
2019-10-23 20:47:00 +00:00
|
|
|
let http_client = reqwest::Client::builder();
|
|
|
|
|
2020-05-08 14:12:21 +00:00
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
|
|
let http_client = {
|
|
|
|
let http_client = if config.disable_ssl_verification {
|
|
|
|
http_client.danger_accept_invalid_certs(true)
|
|
|
|
} else {
|
|
|
|
http_client
|
|
|
|
};
|
2019-10-23 20:47:00 +00:00
|
|
|
|
2020-05-08 14:12:21 +00:00
|
|
|
let http_client = match config.proxy {
|
|
|
|
Some(p) => http_client.proxy(p),
|
|
|
|
None => http_client,
|
|
|
|
};
|
2019-10-23 20:47:00 +00:00
|
|
|
|
2020-05-08 14:12:21 +00:00
|
|
|
let mut headers = reqwest::header::HeaderMap::new();
|
2019-10-23 20:47:00 +00:00
|
|
|
|
2020-05-08 14:12:21 +00:00
|
|
|
let user_agent = match config.user_agent {
|
|
|
|
Some(a) => a,
|
|
|
|
None => HeaderValue::from_str(&format!("matrix-rust-sdk {}", VERSION)).unwrap(),
|
|
|
|
};
|
2019-10-24 20:34:58 +00:00
|
|
|
|
2020-05-08 14:12:21 +00:00
|
|
|
headers.insert(reqwest::header::USER_AGENT, user_agent);
|
2019-10-23 20:47:00 +00:00
|
|
|
|
2020-05-08 14:12:21 +00:00
|
|
|
http_client.default_headers(headers)
|
|
|
|
};
|
|
|
|
|
|
|
|
let http_client = http_client.build()?;
|
2019-10-23 20:47:00 +00:00
|
|
|
|
2020-05-06 13:20:20 +00:00
|
|
|
let base_client = if let Some(store) = config.state_store {
|
|
|
|
BaseClient::new_with_state_store(session, store)?
|
|
|
|
} else {
|
|
|
|
BaseClient::new(session)?
|
2020-04-22 21:39:57 +00:00
|
|
|
};
|
|
|
|
|
2019-10-23 20:47:00 +00:00
|
|
|
Ok(Self {
|
|
|
|
homeserver,
|
|
|
|
http_client,
|
2020-05-06 13:36:55 +00:00
|
|
|
base_client,
|
2019-10-23 20:47:00 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-01-11 21:24:32 +00:00
|
|
|
/// Is the client logged in.
|
2020-03-11 10:42:59 +00:00
|
|
|
pub async fn logged_in(&self) -> bool {
|
2020-05-06 13:36:55 +00:00
|
|
|
self.base_client.logged_in().await
|
2019-11-17 18:55:27 +00:00
|
|
|
}
|
|
|
|
|
2020-01-11 21:24:32 +00:00
|
|
|
/// The Homeserver of the client.
|
|
|
|
pub fn homeserver(&self) -> &Url {
|
|
|
|
&self.homeserver
|
|
|
|
}
|
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
/// Add `EventEmitter` to `Client`.
|
2020-03-31 23:34:11 +00:00
|
|
|
///
|
|
|
|
/// The methods of `EventEmitter` are called when the respective `RoomEvents` occur.
|
2020-04-14 22:10:10 +00:00
|
|
|
pub async fn add_event_emitter(&mut self, emitter: Box<dyn EventEmitter>) {
|
2020-05-06 13:36:55 +00:00
|
|
|
self.base_client.add_event_emitter(emitter).await;
|
2020-03-31 23:34:11 +00:00
|
|
|
}
|
|
|
|
|
2020-05-06 23:45:27 +00:00
|
|
|
/// Returns the joined rooms this client knows about.
|
2020-04-02 19:59:13 +00:00
|
|
|
///
|
|
|
|
/// A `HashMap` of room id to `matrix::models::Room`
|
2020-05-08 14:12:21 +00:00
|
|
|
pub fn joined_rooms(&self) -> Arc<RwLock<HashMap<RoomId, Arc<RwLock<Room>>>>> {
|
2020-05-06 13:55:18 +00:00
|
|
|
self.base_client.joined_rooms()
|
2020-03-27 21:22:11 +00:00
|
|
|
}
|
|
|
|
|
2020-05-06 23:45:27 +00:00
|
|
|
/// Returns the invited rooms this client knows about.
|
|
|
|
///
|
|
|
|
/// A `HashMap` of room id to `matrix::models::Room`
|
2020-05-08 14:12:21 +00:00
|
|
|
pub fn invited_rooms(&self) -> Arc<RwLock<HashMap<RoomId, Arc<RwLock<Room>>>>> {
|
2020-05-07 00:35:15 +00:00
|
|
|
self.base_client.invited_rooms()
|
2020-05-06 23:45:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the left rooms this client knows about.
|
|
|
|
///
|
|
|
|
/// A `HashMap` of room id to `matrix::models::Room`
|
2020-05-08 14:12:21 +00:00
|
|
|
pub fn left_rooms(&self) -> Arc<RwLock<HashMap<RoomId, Arc<RwLock<Room>>>>> {
|
2020-05-07 00:35:15 +00:00
|
|
|
self.base_client.left_rooms()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get a joined room with the given room id.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
|
|
|
/// `room_id` - The unique id of the room that should be fetched.
|
|
|
|
pub async fn get_joined_room(&self, room_id: &RoomId) -> Option<Arc<RwLock<Room>>> {
|
|
|
|
self.base_client.get_joined_room(room_id).await
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get an invited room with the given room id.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
|
|
|
/// `room_id` - The unique id of the room that should be fetched.
|
|
|
|
pub async fn get_invited_room(&self, room_id: &RoomId) -> Option<Arc<RwLock<Room>>> {
|
|
|
|
self.base_client.get_invited_room(room_id).await
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get a left room with the given room id.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
|
|
|
/// `room_id` - The unique id of the room that should be fetched.
|
|
|
|
pub async fn get_left_room(&self, room_id: &RoomId) -> Option<Arc<RwLock<Room>>> {
|
|
|
|
self.base_client.get_left_room(room_id).await
|
2020-05-06 23:45:27 +00:00
|
|
|
}
|
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
/// This allows `Client` to manually sync state with the provided `StateStore`.
|
2020-04-23 23:37:27 +00:00
|
|
|
///
|
|
|
|
/// Returns true when a successful `StateStore` sync has completed.
|
2020-05-06 12:36:28 +00:00
|
|
|
///
|
2020-04-23 23:37:27 +00:00
|
|
|
/// # Examples
|
|
|
|
///
|
2020-04-26 21:13:55 +00:00
|
|
|
/// ```no_run
|
2020-05-08 12:02:49 +00:00
|
|
|
/// use matrix_sdk::{Client, ClientConfig, JsonStore, RoomBuilder};
|
2020-04-26 21:13:55 +00:00
|
|
|
/// # use matrix_sdk::api::r0::room::Visibility;
|
|
|
|
/// # use url::Url;
|
|
|
|
///
|
|
|
|
/// # let homeserver = Url::parse("http://example.com").unwrap();
|
|
|
|
/// let store = JsonStore::open("path/to/store").unwrap();
|
2020-05-08 12:02:49 +00:00
|
|
|
/// let config = ClientConfig::new().state_store(Box::new(store));
|
|
|
|
/// let mut client = Client::new(homeserver, None).unwrap();
|
2020-04-26 21:13:55 +00:00
|
|
|
/// # use futures::executor::block_on;
|
|
|
|
/// # block_on(async {
|
2020-05-07 11:09:22 +00:00
|
|
|
/// let _ = client.login("name", "password", None, None).await.unwrap();
|
2020-04-26 21:13:55 +00:00
|
|
|
/// // returns true when a state store sync is successful
|
2020-05-07 11:09:22 +00:00
|
|
|
/// assert!(client.sync_with_state_store().await.unwrap());
|
2020-04-26 21:13:55 +00:00
|
|
|
/// // now state is restored without a request to the server
|
2020-05-07 11:09:22 +00:00
|
|
|
/// let mut names = vec![];
|
|
|
|
/// for r in client.joined_rooms().read().await.values() {
|
2020-05-07 11:18:13 +00:00
|
|
|
/// names.push(r.read().await.display_name());
|
2020-05-07 11:09:22 +00:00
|
|
|
/// }
|
|
|
|
/// assert_eq!(vec!["room".to_string(), "names".to_string()], names)
|
2020-04-26 21:13:55 +00:00
|
|
|
/// # });
|
2020-04-23 23:37:27 +00:00
|
|
|
/// ```
|
|
|
|
pub async fn sync_with_state_store(&self) -> Result<bool> {
|
2020-05-08 10:39:36 +00:00
|
|
|
Ok(self.base_client.sync_with_state_store().await?)
|
2020-04-23 23:37:27 +00:00
|
|
|
}
|
|
|
|
|
2020-05-13 08:06:08 +00:00
|
|
|
/// This allows `Client` to manually store `Room` state with the provided
|
|
|
|
/// `StateStore`.
|
2020-05-09 11:33:57 +00:00
|
|
|
///
|
|
|
|
/// Returns Ok when a successful `Room` store occurs.
|
|
|
|
pub async fn store_room_state(&self, room_id: &RoomId) -> Result<()> {
|
|
|
|
self.base_client
|
|
|
|
.store_room_state(room_id)
|
|
|
|
.await
|
|
|
|
.map_err(Into::into)
|
|
|
|
}
|
|
|
|
|
2020-02-21 13:29:25 +00:00
|
|
|
/// Login to the server.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
2020-03-02 10:31:03 +00:00
|
|
|
/// * `user` - The user that should be logged in to the homeserver.
|
|
|
|
///
|
|
|
|
/// * `password` - The password of the user.
|
|
|
|
///
|
|
|
|
/// * `device_id` - A unique id that will be associated with this session. If
|
2020-03-30 18:18:08 +00:00
|
|
|
/// not given the homeserver will create one. Can be an existing
|
2020-02-21 13:29:25 +00:00
|
|
|
/// device_id from a previous login call. Note that this should be done
|
2020-03-30 18:18:08 +00:00
|
|
|
/// only if the client also holds the encryption keys for this device.
|
2020-03-19 12:55:04 +00:00
|
|
|
#[instrument(skip(password))]
|
|
|
|
pub async fn login<S: Into<String> + std::fmt::Debug>(
|
2020-04-15 12:29:34 +00:00
|
|
|
&self,
|
2019-10-23 20:47:00 +00:00
|
|
|
user: S,
|
|
|
|
password: S,
|
|
|
|
device_id: Option<S>,
|
2020-03-27 08:22:29 +00:00
|
|
|
initial_device_display_name: Option<S>,
|
2020-03-18 13:15:56 +00:00
|
|
|
) -> Result<login::Response> {
|
2020-03-19 12:55:04 +00:00
|
|
|
info!("Logging in to {} as {:?}", self.homeserver, user);
|
|
|
|
|
2019-10-23 20:47:00 +00:00
|
|
|
let request = login::Request {
|
2020-02-21 15:33:08 +00:00
|
|
|
user: login::UserInfo::MatrixId(user.into()),
|
|
|
|
login_info: login::LoginInfo::Password {
|
|
|
|
password: password.into(),
|
|
|
|
},
|
2019-10-23 20:47:00 +00:00
|
|
|
device_id: device_id.map(|d| d.into()),
|
2020-03-27 08:22:29 +00:00
|
|
|
initial_device_display_name: initial_device_display_name.map(|d| d.into()),
|
2019-10-23 20:47:00 +00:00
|
|
|
};
|
|
|
|
|
2019-10-30 18:30:55 +00:00
|
|
|
let response = self.send(request).await?;
|
2020-05-06 13:36:55 +00:00
|
|
|
self.base_client.receive_login_response(&response).await?;
|
2019-10-23 20:47:00 +00:00
|
|
|
|
|
|
|
Ok(response)
|
|
|
|
}
|
|
|
|
|
2020-04-10 20:32:28 +00:00
|
|
|
/// Join a room by `RoomId`.
|
|
|
|
///
|
|
|
|
/// Returns a `join_room_by_id::Response` consisting of the
|
|
|
|
/// joined rooms `RoomId`.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `room_id` - The `RoomId` of the room to be joined.
|
|
|
|
pub async fn join_room_by_id(&self, room_id: &RoomId) -> Result<join_room_by_id::Response> {
|
2020-04-10 20:32:28 +00:00
|
|
|
let request = join_room_by_id::Request {
|
|
|
|
room_id: room_id.clone(),
|
|
|
|
third_party_signed: None,
|
|
|
|
};
|
|
|
|
self.send(request).await
|
|
|
|
}
|
|
|
|
|
2020-05-14 12:30:29 +00:00
|
|
|
// TODO enable this once Ruma supports proper serialization of the query
|
|
|
|
// string.
|
2020-05-15 10:32:36 +00:00
|
|
|
/// Join a room by `RoomId`.
|
|
|
|
///
|
|
|
|
/// Returns a `join_room_by_id_or_alias::Response` consisting of the
|
|
|
|
/// joined rooms `RoomId`.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
|
|
|
/// * `alias` - The `RoomId` or `RoomAliasId` of the room to be joined.
|
|
|
|
/// An alias looks like this `#name:example.com`
|
|
|
|
pub async fn join_room_by_id_or_alias(
|
|
|
|
&self,
|
|
|
|
alias: &RoomIdOrAliasId,
|
|
|
|
server_names: &[String],
|
|
|
|
) -> Result<join_room_by_id_or_alias::Response> {
|
|
|
|
let request = join_room_by_id_or_alias::Request {
|
|
|
|
room_id_or_alias: alias.clone(),
|
|
|
|
server_name: server_names.to_owned(),
|
|
|
|
third_party_signed: None,
|
|
|
|
};
|
|
|
|
self.send(request).await
|
|
|
|
}
|
2020-04-10 20:32:28 +00:00
|
|
|
|
2020-05-05 12:33:31 +00:00
|
|
|
/// Forget a room by `RoomId`.
|
|
|
|
///
|
|
|
|
/// Returns a `forget_room::Response`, an empty response.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `room_id` - The `RoomId` of the room to be forget.
|
2020-05-05 12:33:31 +00:00
|
|
|
pub async fn forget_room_by_id(&self, room_id: &RoomId) -> Result<forget_room::Response> {
|
|
|
|
let request = forget_room::Request {
|
|
|
|
room_id: room_id.clone(),
|
|
|
|
};
|
|
|
|
self.send(request).await
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Ban a user from a room by `RoomId` and `UserId`.
|
|
|
|
///
|
|
|
|
/// Returns a `ban_user::Response`, an empty response.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `room_id` - The `RoomId` of the room to ban the user from.
|
2020-05-05 12:33:31 +00:00
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `user_id` - The user to ban by `UserId`.
|
2020-05-05 12:33:31 +00:00
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `reason` - The reason for banning this user.
|
2020-05-05 12:33:31 +00:00
|
|
|
pub async fn ban_user(
|
|
|
|
&self,
|
2020-05-06 12:36:28 +00:00
|
|
|
room_id: &RoomId,
|
|
|
|
user_id: &UserId,
|
2020-05-05 12:33:31 +00:00
|
|
|
reason: Option<String>,
|
|
|
|
) -> Result<ban_user::Response> {
|
|
|
|
let request = ban_user::Request {
|
|
|
|
reason,
|
2020-05-06 12:36:28 +00:00
|
|
|
room_id: room_id.clone(),
|
|
|
|
user_id: user_id.clone(),
|
2020-05-05 12:33:31 +00:00
|
|
|
};
|
|
|
|
self.send(request).await
|
|
|
|
}
|
|
|
|
|
2020-04-10 20:32:28 +00:00
|
|
|
/// Kick a user out of the specified room.
|
|
|
|
///
|
|
|
|
/// Returns a `kick_user::Response`, an empty response.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `room_id` - The `RoomId` of the room the user should be kicked out of.
|
2020-04-10 20:32:28 +00:00
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `user_id` - The `UserId` of the user that should be kicked out of the room.
|
2020-04-10 20:32:28 +00:00
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `reason` - Optional reason why the room member is being kicked out.
|
2020-04-10 20:32:28 +00:00
|
|
|
pub async fn kick_user(
|
2020-04-15 12:29:34 +00:00
|
|
|
&self,
|
2020-04-10 20:32:28 +00:00
|
|
|
room_id: &RoomId,
|
|
|
|
user_id: &UserId,
|
|
|
|
reason: Option<String>,
|
|
|
|
) -> Result<kick_user::Response> {
|
|
|
|
let request = kick_user::Request {
|
|
|
|
reason,
|
|
|
|
room_id: room_id.clone(),
|
|
|
|
user_id: user_id.clone(),
|
|
|
|
};
|
|
|
|
self.send(request).await
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Leave the specified room.
|
|
|
|
///
|
|
|
|
/// Returns a `leave_room::Response`, an empty response.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `room_id` - The `RoomId` of the room to leave.
|
2020-04-10 20:32:28 +00:00
|
|
|
///
|
2020-04-15 12:29:34 +00:00
|
|
|
pub async fn leave_room(&self, room_id: &RoomId) -> Result<leave_room::Response> {
|
2020-04-10 20:32:28 +00:00
|
|
|
let request = leave_room::Request {
|
|
|
|
room_id: room_id.clone(),
|
|
|
|
};
|
|
|
|
self.send(request).await
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Invite the specified user by `UserId` to the given room.
|
|
|
|
///
|
|
|
|
/// Returns a `invite_user::Response`, an empty response.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `room_id` - The `RoomId` of the room to invite the specified user to.
|
2020-04-10 20:32:28 +00:00
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `user_id` - The `UserId` of the user to invite to the room.
|
2020-04-10 20:32:28 +00:00
|
|
|
pub async fn invite_user_by_id(
|
2020-04-15 12:29:34 +00:00
|
|
|
&self,
|
2020-04-10 20:32:28 +00:00
|
|
|
room_id: &RoomId,
|
|
|
|
user_id: &UserId,
|
|
|
|
) -> Result<invite_user::Response> {
|
|
|
|
let request = invite_user::Request {
|
|
|
|
room_id: room_id.clone(),
|
|
|
|
recipient: InvitationRecipient::UserId {
|
|
|
|
user_id: user_id.clone(),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
self.send(request).await
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Invite the specified user by third party id to the given room.
|
|
|
|
///
|
|
|
|
/// Returns a `invite_user::Response`, an empty response.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `room_id` - The `RoomId` of the room to invite the specified user to.
|
2020-04-10 20:32:28 +00:00
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `invite_id` - A third party id of a user to invite to the room.
|
2020-04-10 20:32:28 +00:00
|
|
|
pub async fn invite_user_by_3pid(
|
2020-04-15 12:29:34 +00:00
|
|
|
&self,
|
2020-04-10 20:32:28 +00:00
|
|
|
room_id: &RoomId,
|
|
|
|
invite_id: &Invite3pid,
|
|
|
|
) -> Result<invite_user::Response> {
|
|
|
|
let request = invite_user::Request {
|
|
|
|
room_id: room_id.clone(),
|
|
|
|
recipient: InvitationRecipient::ThirdPartyId(invite_id.clone()),
|
|
|
|
};
|
|
|
|
self.send(request).await
|
|
|
|
}
|
|
|
|
|
2020-04-14 10:36:03 +00:00
|
|
|
/// Create a room using the `RoomBuilder` and send the request.
|
2020-04-10 20:32:28 +00:00
|
|
|
///
|
2020-04-14 10:36:03 +00:00
|
|
|
/// Sends a request to `/_matrix/client/r0/createRoom`, returns a `create_room::Response`,
|
|
|
|
/// this is an empty response.
|
2020-04-10 20:32:28 +00:00
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `room` - The easiest way to create this request is using the `RoomBuilder`.
|
2020-04-10 20:32:28 +00:00
|
|
|
///
|
|
|
|
/// # Examples
|
2020-04-14 10:36:03 +00:00
|
|
|
/// ```no_run
|
2020-05-08 12:02:49 +00:00
|
|
|
/// use matrix_sdk::{Client, RoomBuilder};
|
2020-04-14 10:36:03 +00:00
|
|
|
/// # use matrix_sdk::api::r0::room::Visibility;
|
|
|
|
/// # use url::Url;
|
2020-04-14 10:42:42 +00:00
|
|
|
///
|
2020-04-14 10:36:03 +00:00
|
|
|
/// # let homeserver = Url::parse("http://example.com").unwrap();
|
2020-04-13 18:08:51 +00:00
|
|
|
/// let mut builder = RoomBuilder::default();
|
|
|
|
/// builder.creation_content(false)
|
2020-04-10 20:32:28 +00:00
|
|
|
/// .initial_state(vec![])
|
|
|
|
/// .visibility(Visibility::Public)
|
|
|
|
/// .name("name")
|
|
|
|
/// .room_version("v1.0");
|
|
|
|
///
|
2020-05-08 12:02:49 +00:00
|
|
|
/// let mut cli = Client::new(homeserver, None).unwrap();
|
2020-04-14 10:36:03 +00:00
|
|
|
/// # use futures::executor::block_on;
|
|
|
|
/// # block_on(async {
|
2020-04-13 18:08:51 +00:00
|
|
|
/// assert!(cli.create_room(builder).await.is_ok());
|
2020-04-14 10:36:03 +00:00
|
|
|
/// # });
|
2020-04-10 20:32:28 +00:00
|
|
|
/// ```
|
|
|
|
pub async fn create_room<R: Into<create_room::Request>>(
|
2020-04-15 12:29:34 +00:00
|
|
|
&self,
|
2020-04-10 20:32:28 +00:00
|
|
|
room: R,
|
|
|
|
) -> Result<create_room::Response> {
|
|
|
|
let request = room.into();
|
|
|
|
self.send(request).await
|
|
|
|
}
|
|
|
|
|
2020-04-14 10:36:03 +00:00
|
|
|
/// Get messages starting at a specific sync point using the
|
|
|
|
/// `MessagesRequestBuilder`s `from` field as a starting point.
|
2020-04-11 12:46:45 +00:00
|
|
|
///
|
2020-04-14 10:36:03 +00:00
|
|
|
/// Sends a request to `/_matrix/client/r0/rooms/{room_id}/messages` and
|
|
|
|
/// returns a `get_message_events::IncomingResponse` that contains chunks
|
|
|
|
/// of `RoomEvents`.
|
2020-04-11 12:46:45 +00:00
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `request` - The easiest way to create a `Request` is using the
|
2020-04-14 10:36:03 +00:00
|
|
|
/// `MessagesRequestBuilder`.
|
2020-04-13 18:46:54 +00:00
|
|
|
///
|
2020-04-13 18:08:51 +00:00
|
|
|
/// # Examples
|
2020-04-14 10:36:03 +00:00
|
|
|
/// ```no_run
|
|
|
|
/// # use std::convert::TryFrom;
|
2020-05-08 12:02:49 +00:00
|
|
|
/// use matrix_sdk::{Client, MessagesRequestBuilder};
|
2020-04-14 10:36:03 +00:00
|
|
|
/// # use matrix_sdk::identifiers::RoomId;
|
|
|
|
/// # use matrix_sdk::api::r0::filter::RoomEventFilter;
|
|
|
|
/// # use matrix_sdk::api::r0::message::get_message_events::Direction;
|
|
|
|
/// # use url::Url;
|
2020-04-29 08:40:27 +00:00
|
|
|
/// # use matrix_sdk::js_int::UInt;
|
2020-04-14 10:42:42 +00:00
|
|
|
///
|
2020-04-14 10:36:03 +00:00
|
|
|
/// # let homeserver = Url::parse("http://example.com").unwrap();
|
|
|
|
/// let mut builder = MessagesRequestBuilder::new();
|
2020-04-13 18:08:51 +00:00
|
|
|
/// builder.room_id(RoomId::try_from("!roomid:example.com").unwrap())
|
|
|
|
/// .from("t47429-4392820_219380_26003_2265".to_string())
|
|
|
|
/// .to("t4357353_219380_26003_2265".to_string())
|
|
|
|
/// .direction(Direction::Backward)
|
|
|
|
/// .limit(UInt::new(10).unwrap());
|
2020-04-13 18:46:54 +00:00
|
|
|
///
|
2020-05-08 12:02:49 +00:00
|
|
|
/// let mut cli = Client::new(homeserver, None).unwrap();
|
2020-04-14 10:36:03 +00:00
|
|
|
/// # use futures::executor::block_on;
|
|
|
|
/// # block_on(async {
|
|
|
|
/// assert!(cli.room_messages(builder).await.is_ok());
|
|
|
|
/// # });
|
2020-04-13 18:08:51 +00:00
|
|
|
/// ```
|
2020-04-12 12:21:23 +00:00
|
|
|
pub async fn room_messages<R: Into<get_message_events::Request>>(
|
2020-04-15 12:29:34 +00:00
|
|
|
&self,
|
2020-04-11 12:46:45 +00:00
|
|
|
request: R,
|
2020-04-23 08:52:47 +00:00
|
|
|
) -> Result<get_message_events::Response> {
|
2020-04-11 12:46:45 +00:00
|
|
|
let req = request.into();
|
2020-04-13 18:08:51 +00:00
|
|
|
self.send(req).await
|
2020-04-11 12:46:45 +00:00
|
|
|
}
|
|
|
|
|
2020-05-05 12:33:31 +00:00
|
|
|
/// Send a request to notify the room of a user typing.
|
|
|
|
///
|
|
|
|
/// Returns a `create_typing_event::Response`, an empty response.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `room_id` - The `RoomId` the user is typing in.
|
2020-05-05 12:33:31 +00:00
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `user_id` - The `UserId` of the user that is typing.
|
2020-05-05 12:33:31 +00:00
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `typing` - Whether the user is typing, if false `timeout` is not needed.
|
2020-05-05 12:33:31 +00:00
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `timeout` - Length of time in milliseconds to mark user is typing.
|
2020-05-05 12:33:31 +00:00
|
|
|
pub async fn typing_notice(
|
|
|
|
&self,
|
|
|
|
room_id: &RoomId,
|
|
|
|
user_id: &UserId,
|
|
|
|
typing: bool,
|
|
|
|
timeout: Option<Duration>,
|
|
|
|
) -> Result<create_typing_event::Response> {
|
|
|
|
let request = create_typing_event::Request {
|
|
|
|
room_id: room_id.clone(),
|
|
|
|
user_id: user_id.clone(),
|
|
|
|
timeout,
|
|
|
|
typing,
|
|
|
|
};
|
|
|
|
self.send(request).await
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Send a request to notify the room of a user typing.
|
|
|
|
///
|
|
|
|
/// Returns a `create_receipt::Response`, an empty response.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `room_id` - The `RoomId` the user is typing in.
|
2020-05-05 12:33:31 +00:00
|
|
|
///
|
2020-05-06 12:36:28 +00:00
|
|
|
/// * `event_id` - The `UserId` of the user that is typing.
|
2020-05-05 12:33:31 +00:00
|
|
|
pub async fn read_receipt(
|
|
|
|
&self,
|
|
|
|
room_id: &RoomId,
|
|
|
|
event_id: &EventId,
|
|
|
|
) -> Result<create_receipt::Response> {
|
|
|
|
let request = create_receipt::Request {
|
|
|
|
room_id: room_id.clone(),
|
|
|
|
event_id: event_id.clone(),
|
|
|
|
receipt_type: create_receipt::ReceiptType::Read,
|
|
|
|
};
|
|
|
|
self.send(request).await
|
|
|
|
}
|
|
|
|
|
2020-03-30 18:18:08 +00:00
|
|
|
/// Synchronize the client's state with the latest state on the server.
|
2020-02-21 13:29:25 +00:00
|
|
|
///
|
2020-04-23 23:37:27 +00:00
|
|
|
/// If a `StateStore` is provided and this is the initial sync state will
|
|
|
|
/// be loaded from the state store.
|
|
|
|
///
|
2020-02-21 13:29:25 +00:00
|
|
|
/// # Arguments
|
|
|
|
///
|
|
|
|
/// * `sync_settings` - Settings for the sync call.
|
2020-03-19 12:55:04 +00:00
|
|
|
#[instrument]
|
2020-05-06 10:23:34 +00:00
|
|
|
#[allow(clippy::useless_let_if_seq)]
|
2020-04-24 01:53:13 +00:00
|
|
|
pub async fn sync(&self, mut sync_settings: SyncSettings) -> Result<sync_events::Response> {
|
2020-04-23 23:37:27 +00:00
|
|
|
{
|
2020-04-24 23:57:51 +00:00
|
|
|
// if the client has been synced from the state store don't sync again
|
2020-05-06 13:36:55 +00:00
|
|
|
if !self.base_client.is_state_store_synced() {
|
2020-04-24 01:57:54 +00:00
|
|
|
// this will bail out returning false if the store has not been set up
|
2020-04-23 23:37:27 +00:00
|
|
|
if let Ok(synced) = self.sync_with_state_store().await {
|
|
|
|
if synced {
|
|
|
|
// once synced, update the sync token to the last known state from `StateStore`.
|
|
|
|
sync_settings.token = self.sync_token().await;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-23 20:47:00 +00:00
|
|
|
let request = sync_events::Request {
|
|
|
|
filter: None,
|
|
|
|
since: sync_settings.token,
|
|
|
|
full_state: sync_settings.full_state,
|
2020-04-03 12:09:56 +00:00
|
|
|
set_presence: sync_events::SetPresence::Online,
|
2019-10-23 20:47:00 +00:00
|
|
|
timeout: sync_settings.timeout,
|
|
|
|
};
|
|
|
|
|
2020-03-12 14:41:11 +00:00
|
|
|
let mut response = self.send(request).await?;
|
2019-10-23 20:47:00 +00:00
|
|
|
|
2020-05-06 13:36:55 +00:00
|
|
|
self.base_client
|
|
|
|
.receive_sync_response(&mut response)
|
|
|
|
.await?;
|
2020-05-05 20:13:14 +00:00
|
|
|
|
|
|
|
Ok(response)
|
|
|
|
}
|
|
|
|
|
2020-02-21 13:29:25 +00:00
|
|
|
/// Repeatedly call sync to synchronize the client state with the server.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
|
|
|
/// * `sync_settings` - Settings for the sync call. Note that those settings
|
|
|
|
/// will be only used for the first sync call.
|
2020-03-02 10:31:03 +00:00
|
|
|
///
|
2020-02-21 13:29:25 +00:00
|
|
|
/// * `callback` - A callback that will be called every time a successful
|
|
|
|
/// response has been fetched from the server.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// The following example demonstrates how to sync forever while sending all
|
|
|
|
/// the interesting events through a mpsc channel to another thread e.g. a
|
|
|
|
/// UI thread.
|
|
|
|
///
|
2020-03-02 10:31:03 +00:00
|
|
|
/// ```compile_fail,E0658
|
|
|
|
/// # use matrix_sdk::events::{
|
|
|
|
/// # collections::all::RoomEvent,
|
|
|
|
/// # room::message::{MessageEvent, MessageEventContent, TextMessageEventContent},
|
|
|
|
/// # EventResult,
|
|
|
|
/// # };
|
|
|
|
/// # use matrix_sdk::Room;
|
|
|
|
/// # use std::sync::{Arc, RwLock};
|
2020-05-08 12:02:49 +00:00
|
|
|
/// # use matrix_sdk::{Client, SyncSettings};
|
2020-03-02 10:31:03 +00:00
|
|
|
/// # use url::Url;
|
|
|
|
/// # use futures::executor::block_on;
|
|
|
|
/// # block_on(async {
|
|
|
|
/// # let homeserver = Url::parse("http://localhost:8080").unwrap();
|
2020-05-08 12:02:49 +00:00
|
|
|
/// # let mut client = Client::new(homeserver, None).unwrap();
|
2020-03-02 10:31:03 +00:00
|
|
|
///
|
|
|
|
/// use async_std::sync::channel;
|
|
|
|
///
|
|
|
|
/// let (tx, rx) = channel(100);
|
|
|
|
///
|
|
|
|
/// let sync_channel = &tx;
|
|
|
|
/// let sync_settings = SyncSettings::new()
|
|
|
|
/// .timeout(30_000)
|
|
|
|
/// .unwrap();
|
|
|
|
///
|
2020-02-21 13:29:25 +00:00
|
|
|
/// client
|
|
|
|
/// .sync_forever(sync_settings, async move |response| {
|
|
|
|
/// let channel = sync_channel;
|
2020-03-02 10:31:03 +00:00
|
|
|
///
|
2020-02-21 13:29:25 +00:00
|
|
|
/// for (room_id, room) in response.rooms.join {
|
|
|
|
/// for event in room.timeline.events {
|
|
|
|
/// if let EventResult::Ok(e) = event {
|
|
|
|
/// channel.send(e).await;
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// })
|
|
|
|
/// .await;
|
2020-03-02 10:31:03 +00:00
|
|
|
/// })
|
2020-02-21 13:29:25 +00:00
|
|
|
/// ```
|
2020-03-19 12:55:04 +00:00
|
|
|
#[instrument(skip(callback))]
|
2019-12-04 21:33:26 +00:00
|
|
|
pub async fn sync_forever<C>(
|
2020-04-15 12:29:34 +00:00
|
|
|
&self,
|
2019-12-04 21:33:26 +00:00
|
|
|
sync_settings: SyncSettings,
|
2020-04-23 08:52:47 +00:00
|
|
|
callback: impl Fn(sync_events::Response) -> C + Send,
|
2019-12-04 21:33:26 +00:00
|
|
|
) where
|
|
|
|
C: Future<Output = ()>,
|
|
|
|
{
|
|
|
|
let mut sync_settings = sync_settings;
|
2020-02-28 09:33:17 +00:00
|
|
|
let mut last_sync_time: Option<Instant> = None;
|
2019-12-04 21:33:26 +00:00
|
|
|
|
|
|
|
loop {
|
|
|
|
let response = self.sync(sync_settings.clone()).await;
|
|
|
|
|
|
|
|
let response = if let Ok(r) = response {
|
|
|
|
r
|
|
|
|
} else {
|
2020-05-12 12:23:57 +00:00
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
2020-05-12 13:56:27 +00:00
|
|
|
sleep::new(Duration::from_secs(1)).await;
|
|
|
|
|
2019-12-04 21:33:26 +00:00
|
|
|
continue;
|
|
|
|
};
|
|
|
|
|
2020-03-11 10:43:58 +00:00
|
|
|
// TODO send out to-device messages here
|
|
|
|
|
|
|
|
#[cfg(feature = "encryption")]
|
|
|
|
{
|
2020-05-06 13:36:55 +00:00
|
|
|
if self.base_client.should_upload_keys().await {
|
2020-05-05 13:29:25 +00:00
|
|
|
let response = self.keys_upload().await;
|
|
|
|
|
|
|
|
if let Err(e) = response {
|
|
|
|
warn!("Error while uploading E2EE keys {:?}", e);
|
|
|
|
}
|
2020-03-11 10:43:58 +00:00
|
|
|
}
|
2020-04-01 13:37:00 +00:00
|
|
|
|
2020-05-06 13:36:55 +00:00
|
|
|
if self.base_client.should_query_keys().await {
|
2020-05-05 13:29:25 +00:00
|
|
|
let response = self.keys_query().await;
|
|
|
|
|
|
|
|
if let Err(e) = response {
|
|
|
|
warn!("Error while querying device keys {:?}", e);
|
|
|
|
}
|
2020-04-01 13:37:00 +00:00
|
|
|
}
|
2020-03-11 10:43:58 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 12:23:57 +00:00
|
|
|
callback(response).await;
|
|
|
|
|
2020-02-28 09:33:17 +00:00
|
|
|
let now = Instant::now();
|
|
|
|
|
|
|
|
// If the last sync happened less than a second ago, sleep for a
|
|
|
|
// while to not hammer out requests if the server doesn't respect
|
|
|
|
// the sync timeout.
|
2020-05-12 12:23:57 +00:00
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
|
|
{
|
|
|
|
if let Some(t) = last_sync_time {
|
|
|
|
if now - t <= Duration::from_secs(1) {
|
|
|
|
sleep::new(Duration::from_secs(1)).await;
|
|
|
|
}
|
2020-02-28 09:33:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
last_sync_time = Some(now);
|
|
|
|
|
2020-03-24 15:18:56 +00:00
|
|
|
sync_settings = SyncSettings::new().timeout(DEFAULT_SYNC_TIMEOUT).token(
|
|
|
|
self.sync_token()
|
|
|
|
.await
|
|
|
|
.expect("No sync token found after initial sync"),
|
|
|
|
);
|
2019-12-04 21:33:26 +00:00
|
|
|
}
|
|
|
|
}
|
2019-11-26 19:34:11 +00:00
|
|
|
|
2020-04-29 08:40:27 +00:00
|
|
|
async fn send<Request: Endpoint<ResponseError = crate::api::Error> + std::fmt::Debug>(
|
2019-12-04 18:31:33 +00:00
|
|
|
&self,
|
|
|
|
request: Request,
|
2020-04-23 08:52:47 +00:00
|
|
|
) -> Result<Request::Response> {
|
2019-10-23 20:47:00 +00:00
|
|
|
let request: http::Request<Vec<u8>> = request.try_into()?;
|
|
|
|
let url = request.uri();
|
2020-04-09 14:27:43 +00:00
|
|
|
let path_and_query = url.path_and_query().unwrap();
|
|
|
|
let mut url = self.homeserver.clone();
|
|
|
|
|
|
|
|
url.set_path(path_and_query.path());
|
|
|
|
url.set_query(path_and_query.query());
|
2019-10-23 20:47:00 +00:00
|
|
|
|
2020-03-19 12:55:04 +00:00
|
|
|
trace!("Doing request {:?}", url);
|
|
|
|
|
2019-10-23 20:47:00 +00:00
|
|
|
let request_builder = match Request::METADATA.method {
|
|
|
|
HttpMethod::GET => self.http_client.get(url),
|
|
|
|
HttpMethod::POST => {
|
|
|
|
let body = request.body().clone();
|
2020-04-09 14:28:27 +00:00
|
|
|
self.http_client
|
|
|
|
.post(url)
|
|
|
|
.body(body)
|
|
|
|
.header(reqwest::header::CONTENT_TYPE, "application/json")
|
2019-10-23 20:47:00 +00:00
|
|
|
}
|
2019-11-10 10:44:03 +00:00
|
|
|
HttpMethod::PUT => {
|
|
|
|
let body = request.body().clone();
|
2020-04-09 14:28:27 +00:00
|
|
|
self.http_client
|
|
|
|
.put(url)
|
|
|
|
.body(body)
|
|
|
|
.header(reqwest::header::CONTENT_TYPE, "application/json")
|
2019-11-10 10:44:03 +00:00
|
|
|
}
|
2019-10-23 20:47:00 +00:00
|
|
|
HttpMethod::DELETE => unimplemented!(),
|
|
|
|
_ => panic!("Unsuported method"),
|
|
|
|
};
|
|
|
|
|
|
|
|
let request_builder = if Request::METADATA.requires_authentication {
|
2020-05-06 13:55:18 +00:00
|
|
|
let session = self.base_client.session().read().await;
|
2019-11-10 10:44:03 +00:00
|
|
|
|
2020-05-06 12:27:53 +00:00
|
|
|
if let Some(session) = session.as_ref() {
|
2020-05-08 14:12:21 +00:00
|
|
|
let header_value = format!("Bearer {}", &session.access_token);
|
|
|
|
request_builder.header(AUTHORIZATION, header_value)
|
2019-10-23 20:47:00 +00:00
|
|
|
} else {
|
2020-03-18 13:15:56 +00:00
|
|
|
return Err(Error::AuthenticationRequired);
|
2019-10-23 20:47:00 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
request_builder
|
|
|
|
};
|
2020-03-19 12:55:04 +00:00
|
|
|
let mut response = request_builder.send().await?;
|
|
|
|
|
|
|
|
trace!("Got response: {:?}", response);
|
2019-10-23 20:47:00 +00:00
|
|
|
|
|
|
|
let status = response.status();
|
2020-04-16 20:39:44 +00:00
|
|
|
let mut http_builder = HttpResponse::builder().status(status);
|
|
|
|
let headers = http_builder.headers_mut().unwrap();
|
2020-03-19 12:55:04 +00:00
|
|
|
|
|
|
|
for (k, v) in response.headers_mut().drain() {
|
|
|
|
if let Some(key) = k {
|
|
|
|
headers.insert(key, v);
|
|
|
|
}
|
|
|
|
}
|
2019-10-23 20:47:00 +00:00
|
|
|
let body = response.bytes().await?.as_ref().to_owned();
|
2020-04-16 20:39:44 +00:00
|
|
|
let http_response = http_builder.body(body).unwrap();
|
2019-10-23 20:47:00 +00:00
|
|
|
|
2020-04-23 08:52:47 +00:00
|
|
|
Ok(<Request::Response>::try_from(http_response)?)
|
2019-10-23 20:47:00 +00:00
|
|
|
}
|
2019-11-10 10:44:44 +00:00
|
|
|
|
2020-02-21 13:29:25 +00:00
|
|
|
/// Send a room message to the homeserver.
|
|
|
|
///
|
2020-03-02 10:31:03 +00:00
|
|
|
/// Returns the parsed response from the server.
|
|
|
|
///
|
2020-04-10 09:53:07 +00:00
|
|
|
/// If the encryption feature is enabled this method will transparently
|
|
|
|
/// encrypt the room message if the given room is encrypted.
|
|
|
|
///
|
2020-02-21 13:29:25 +00:00
|
|
|
/// # Arguments
|
|
|
|
///
|
2020-03-02 10:31:03 +00:00
|
|
|
/// * `room_id` - The id of the room that should receive the message.
|
2020-02-21 13:29:25 +00:00
|
|
|
///
|
2020-04-10 09:53:07 +00:00
|
|
|
/// * `content` - The content of the message event.
|
2020-04-13 18:46:54 +00:00
|
|
|
///
|
2020-04-13 18:08:51 +00:00
|
|
|
/// * `txn_id` - A unique `Uuid` that can be attached to a `MessageEvent` held
|
2020-04-13 18:46:54 +00:00
|
|
|
/// in it's unsigned field as `transaction_id`. If not given one is created for the
|
|
|
|
/// message.
|
2020-04-10 09:53:07 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```no_run
|
|
|
|
/// # use matrix_sdk::Room;
|
|
|
|
/// # use std::sync::{Arc, RwLock};
|
2020-05-08 12:02:49 +00:00
|
|
|
/// # use matrix_sdk::{Client, SyncSettings};
|
2020-04-10 09:53:07 +00:00
|
|
|
/// # use url::Url;
|
|
|
|
/// # use futures::executor::block_on;
|
|
|
|
/// # use ruma_identifiers::RoomId;
|
|
|
|
/// # use std::convert::TryFrom;
|
|
|
|
/// use matrix_sdk::events::room::message::{MessageEventContent, TextMessageEventContent};
|
|
|
|
/// # block_on(async {
|
|
|
|
/// # let homeserver = Url::parse("http://localhost:8080").unwrap();
|
2020-05-08 12:02:49 +00:00
|
|
|
/// # let mut client = Client::new(homeserver, None).unwrap();
|
2020-04-10 09:53:07 +00:00
|
|
|
/// # let room_id = RoomId::try_from("!test:localhost").unwrap();
|
2020-05-08 14:12:21 +00:00
|
|
|
/// use matrix_sdk_common::uuid::Uuid;
|
2020-04-13 18:46:54 +00:00
|
|
|
///
|
2020-04-10 09:53:07 +00:00
|
|
|
/// let content = MessageEventContent::Text(TextMessageEventContent {
|
|
|
|
/// body: "Hello world".to_owned(),
|
|
|
|
/// format: None,
|
|
|
|
/// formatted_body: None,
|
|
|
|
/// relates_to: None,
|
|
|
|
/// });
|
2020-04-13 18:08:51 +00:00
|
|
|
/// let txn_id = Uuid::new_v4();
|
2020-04-13 18:46:54 +00:00
|
|
|
/// client.room_send(&room_id, content, Some(txn_id)).await.unwrap();
|
2020-04-10 09:53:07 +00:00
|
|
|
/// })
|
|
|
|
/// ```
|
2019-11-10 17:33:06 +00:00
|
|
|
pub async fn room_send(
|
2020-04-15 12:29:34 +00:00
|
|
|
&self,
|
2020-04-03 15:00:37 +00:00
|
|
|
room_id: &RoomId,
|
2020-05-05 13:29:25 +00:00
|
|
|
content: MessageEventContent,
|
2020-04-13 18:08:51 +00:00
|
|
|
txn_id: Option<Uuid>,
|
2020-03-18 13:15:56 +00:00
|
|
|
) -> Result<create_message_event::Response> {
|
2020-04-10 09:53:07 +00:00
|
|
|
#[allow(unused_mut)]
|
2020-04-09 14:26:00 +00:00
|
|
|
let mut event_type = EventType::RoomMessage;
|
2020-05-05 13:29:25 +00:00
|
|
|
#[allow(unused_mut)]
|
|
|
|
let mut raw_content = serde_json::value::to_raw_value(&content)?;
|
2020-04-09 14:26:00 +00:00
|
|
|
|
2020-04-03 08:30:32 +00:00
|
|
|
#[cfg(feature = "encryption")]
|
|
|
|
{
|
|
|
|
let encrypted = {
|
2020-05-06 13:55:18 +00:00
|
|
|
let room = self.base_client.get_joined_room(room_id).await;
|
2020-04-03 08:30:32 +00:00
|
|
|
|
|
|
|
match room {
|
2020-04-15 12:29:34 +00:00
|
|
|
Some(r) => r.read().await.is_encrypted(),
|
2020-04-03 08:30:32 +00:00
|
|
|
None => false,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if encrypted {
|
|
|
|
let missing_sessions = {
|
2020-05-06 13:55:18 +00:00
|
|
|
let room = self.base_client.get_joined_room(room_id).await;
|
2020-04-15 12:29:34 +00:00
|
|
|
let room = room.as_ref().unwrap().read().await;
|
2020-04-03 08:30:32 +00:00
|
|
|
let users = room.members.keys();
|
2020-05-06 13:36:55 +00:00
|
|
|
self.base_client.get_missing_sessions(users).await?
|
2020-04-03 08:30:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if !missing_sessions.is_empty() {
|
2020-04-10 09:50:18 +00:00
|
|
|
self.claim_one_time_keys(missing_sessions).await?;
|
2020-04-03 08:30:32 +00:00
|
|
|
}
|
2020-04-10 09:50:18 +00:00
|
|
|
|
2020-05-06 13:36:55 +00:00
|
|
|
if self.base_client.should_share_group_session(room_id).await {
|
2020-04-10 09:50:18 +00:00
|
|
|
// TODO we need to make sure that only one such request is
|
|
|
|
// in flight per room at a time.
|
2020-05-14 09:55:12 +00:00
|
|
|
let response = self.share_group_session(room_id).await;
|
|
|
|
|
|
|
|
// If one of the responses failed invalidate the group
|
|
|
|
// session as using it would end up in undecryptable
|
|
|
|
// messages.
|
|
|
|
if let Err(r) = response {
|
|
|
|
self.base_client.invalidate_group_session(room_id).await;
|
|
|
|
return Err(r);
|
|
|
|
}
|
2020-04-10 09:50:18 +00:00
|
|
|
}
|
|
|
|
|
2020-05-05 13:29:25 +00:00
|
|
|
raw_content = serde_json::value::to_raw_value(
|
2020-05-06 13:36:55 +00:00
|
|
|
&self.base_client.encrypt(room_id, content).await?,
|
2020-05-05 13:29:25 +00:00
|
|
|
)?;
|
2020-04-10 09:50:18 +00:00
|
|
|
event_type = EventType::RoomEncrypted;
|
2020-04-03 08:30:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-21 15:33:08 +00:00
|
|
|
let request = create_message_event::Request {
|
2020-04-03 15:00:37 +00:00
|
|
|
room_id: room_id.clone(),
|
2020-04-09 14:26:00 +00:00
|
|
|
event_type,
|
2020-04-14 10:42:42 +00:00
|
|
|
txn_id: txn_id.unwrap_or_else(Uuid::new_v4).to_string(),
|
2020-05-05 13:29:25 +00:00
|
|
|
data: raw_content,
|
2019-11-10 10:44:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let response = self.send(request).await?;
|
|
|
|
Ok(response)
|
|
|
|
}
|
2019-11-24 21:40:52 +00:00
|
|
|
|
2020-04-03 08:27:30 +00:00
|
|
|
/// Claim one-time keys creating new Olm sessions.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
|
|
|
/// * `users` - The list of user/device pairs that we should claim keys for.
|
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
|
|
|
/// Panics if the client isn't logged in, or if no encryption keys need to
|
|
|
|
/// be uploaded.
|
|
|
|
#[cfg(feature = "encryption")]
|
|
|
|
#[cfg_attr(docsrs, doc(cfg(feature = "encryption")))]
|
|
|
|
#[instrument]
|
|
|
|
async fn claim_one_time_keys(
|
|
|
|
&self,
|
2020-04-23 08:52:47 +00:00
|
|
|
one_time_keys: BTreeMap<UserId, BTreeMap<DeviceId, KeyAlgorithm>>,
|
2020-04-03 08:27:30 +00:00
|
|
|
) -> Result<claim_keys::Response> {
|
|
|
|
let request = claim_keys::Request {
|
|
|
|
timeout: None,
|
|
|
|
one_time_keys,
|
|
|
|
};
|
|
|
|
|
|
|
|
let response = self.send(request).await?;
|
|
|
|
self.base_client
|
|
|
|
.receive_keys_claim_response(&response)
|
|
|
|
.await?;
|
|
|
|
Ok(response)
|
|
|
|
}
|
|
|
|
|
2020-04-09 14:29:03 +00:00
|
|
|
/// Share a group session for a room.
|
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
///
|
|
|
|
/// * `room_id` - The ID of the room for which we want to share a group
|
|
|
|
/// session.
|
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
|
|
|
/// Panics if the client isn't logged in.
|
|
|
|
#[cfg(feature = "encryption")]
|
|
|
|
#[cfg_attr(docsrs, doc(cfg(feature = "encryption")))]
|
|
|
|
#[instrument]
|
|
|
|
async fn share_group_session(&self, room_id: &RoomId) -> Result<()> {
|
|
|
|
let mut requests = self
|
|
|
|
.base_client
|
|
|
|
.share_group_session(room_id)
|
|
|
|
.await
|
|
|
|
.expect("Keys don't need to be uploaded");
|
|
|
|
|
|
|
|
for request in requests.drain(..) {
|
2020-04-10 09:50:18 +00:00
|
|
|
let _response: send_event_to_device::Response = self.send(request).await?;
|
2020-04-09 14:29:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-03-11 10:42:59 +00:00
|
|
|
/// Upload the E2E encryption keys.
|
|
|
|
///
|
|
|
|
/// This uploads the long lived device keys as well as the required amount
|
|
|
|
/// of one-time keys.
|
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
|
|
|
/// Panics if the client isn't logged in, or if no encryption keys need to
|
|
|
|
/// be uploaded.
|
|
|
|
#[cfg(feature = "encryption")]
|
2020-03-19 12:55:04 +00:00
|
|
|
#[cfg_attr(docsrs, doc(cfg(feature = "encryption")))]
|
|
|
|
#[instrument]
|
2020-03-18 13:15:56 +00:00
|
|
|
async fn keys_upload(&self) -> Result<upload_keys::Response> {
|
2020-03-11 10:42:59 +00:00
|
|
|
let (device_keys, one_time_keys) = self
|
|
|
|
.base_client
|
|
|
|
.keys_for_upload()
|
|
|
|
.await
|
|
|
|
.expect("Keys don't need to be uploaded");
|
2020-03-19 12:55:04 +00:00
|
|
|
|
|
|
|
debug!(
|
|
|
|
"Uploading encryption keys device keys: {}, one-time-keys: {}",
|
|
|
|
device_keys.is_some(),
|
|
|
|
one_time_keys.as_ref().map_or(0, |k| k.len())
|
|
|
|
);
|
|
|
|
|
2020-03-11 10:42:59 +00:00
|
|
|
let request = upload_keys::Request {
|
|
|
|
device_keys,
|
|
|
|
one_time_keys,
|
|
|
|
};
|
|
|
|
|
|
|
|
let response = self.send(request).await?;
|
|
|
|
self.base_client
|
|
|
|
.receive_keys_upload_response(&response)
|
2020-03-18 14:50:32 +00:00
|
|
|
.await?;
|
2020-03-11 10:42:59 +00:00
|
|
|
Ok(response)
|
|
|
|
}
|
|
|
|
|
2020-02-21 13:29:25 +00:00
|
|
|
/// Get the current, if any, sync token of the client.
|
|
|
|
/// This will be None if the client didn't sync at least once.
|
2020-03-11 10:42:59 +00:00
|
|
|
pub async fn sync_token(&self) -> Option<String> {
|
2020-05-06 13:36:55 +00:00
|
|
|
self.base_client.sync_token().await
|
2019-11-24 21:40:52 +00:00
|
|
|
}
|
2020-04-01 13:37:00 +00:00
|
|
|
|
|
|
|
/// Query the server for users device keys.
|
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
|
|
|
/// Panics if no key query needs to be done.
|
2020-04-03 08:42:03 +00:00
|
|
|
#[cfg(feature = "encryption")]
|
|
|
|
#[cfg_attr(docsrs, doc(cfg(feature = "encryption")))]
|
|
|
|
#[instrument]
|
2020-04-01 13:37:00 +00:00
|
|
|
async fn keys_query(&self) -> Result<get_keys::Response> {
|
|
|
|
let mut users_for_query = self
|
|
|
|
.base_client
|
|
|
|
.users_for_key_query()
|
|
|
|
.await
|
|
|
|
.expect("Keys don't need to be uploaded");
|
|
|
|
|
|
|
|
debug!(
|
|
|
|
"Querying device keys device for users: {:?}",
|
|
|
|
users_for_query
|
|
|
|
);
|
|
|
|
|
2020-04-23 08:52:47 +00:00
|
|
|
let mut device_keys: BTreeMap<UserId, Vec<DeviceId>> = BTreeMap::new();
|
2020-04-01 13:37:00 +00:00
|
|
|
|
|
|
|
for user in users_for_query.drain() {
|
2020-04-03 15:00:37 +00:00
|
|
|
device_keys.insert(user, Vec::new());
|
2020-04-01 13:37:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let request = get_keys::Request {
|
|
|
|
timeout: None,
|
|
|
|
device_keys,
|
|
|
|
token: None,
|
|
|
|
};
|
|
|
|
|
|
|
|
let response = self.send(request).await?;
|
|
|
|
self.base_client
|
|
|
|
.receive_keys_query_response(&response)
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
Ok(response)
|
|
|
|
}
|
2019-10-23 20:47:00 +00:00
|
|
|
}
|
2020-04-07 00:59:44 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
2020-05-06 12:36:28 +00:00
|
|
|
use super::{
|
|
|
|
ban_user, create_receipt, create_typing_event, forget_room, invite_user, kick_user,
|
2020-05-14 12:39:39 +00:00
|
|
|
leave_room, Invite3pid, MessageEventContent,
|
2020-05-06 12:36:28 +00:00
|
|
|
};
|
2020-05-08 12:02:49 +00:00
|
|
|
use super::{Client, ClientConfig, Session, SyncSettings, Url};
|
2020-05-08 07:57:42 +00:00
|
|
|
use crate::events::collections::all::RoomEvent;
|
2020-05-07 10:51:53 +00:00
|
|
|
use crate::events::room::member::MembershipState;
|
2020-05-07 19:21:06 +00:00
|
|
|
use crate::events::room::message::TextMessageEventContent;
|
2020-05-15 10:32:36 +00:00
|
|
|
use crate::identifiers::{EventId, RoomId, RoomIdOrAliasId, UserId};
|
2020-05-08 07:57:42 +00:00
|
|
|
|
2020-05-07 14:22:18 +00:00
|
|
|
use matrix_sdk_base::JsonStore;
|
2020-05-08 14:12:21 +00:00
|
|
|
use matrix_sdk_test::{EventBuilder, EventsFile};
|
2020-05-06 12:36:28 +00:00
|
|
|
use mockito::{mock, Matcher};
|
2020-05-18 20:26:27 +00:00
|
|
|
use tempfile::tempdir;
|
|
|
|
|
2020-04-07 00:59:44 +00:00
|
|
|
use std::convert::TryFrom;
|
2020-05-18 20:26:27 +00:00
|
|
|
use std::path::Path;
|
2020-04-16 21:03:40 +00:00
|
|
|
use std::str::FromStr;
|
2020-05-07 10:51:53 +00:00
|
|
|
use std::time::Duration;
|
|
|
|
|
2020-05-18 20:26:27 +00:00
|
|
|
#[tokio::test]
|
|
|
|
async fn test_join_leave_room() {
|
|
|
|
let homeserver = Url::from_str(&mockito::server_url()).unwrap();
|
|
|
|
|
|
|
|
let room_id = RoomId::try_from("!SVkFJHzfwvuaIEawgC:localhost").unwrap();
|
|
|
|
|
|
|
|
let session = Session {
|
|
|
|
access_token: "1234".to_owned(),
|
|
|
|
user_id: UserId::try_from("@example:localhost").unwrap(),
|
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let _m = mock(
|
|
|
|
"GET",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/sync\?.*$".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
.with_body_from_file("../test_data/sync.json")
|
|
|
|
.create();
|
|
|
|
|
|
|
|
let dir = tempdir().unwrap();
|
|
|
|
let path: &Path = dir.path();
|
|
|
|
let store = Box::new(JsonStore::open(path).unwrap());
|
|
|
|
|
|
|
|
let config = ClientConfig::default().state_store(store);
|
|
|
|
let client =
|
|
|
|
Client::new_with_config(homeserver.clone(), Some(session.clone()), config).unwrap();
|
|
|
|
|
|
|
|
let room = client.get_joined_room(&room_id).await;
|
|
|
|
assert!(room.is_none());
|
|
|
|
|
|
|
|
client.sync(SyncSettings::default()).await.unwrap();
|
|
|
|
|
|
|
|
let room = client.get_left_room(&room_id).await;
|
|
|
|
assert!(room.is_none());
|
|
|
|
|
|
|
|
let room = client.get_joined_room(&room_id).await;
|
|
|
|
assert!(room.is_some());
|
|
|
|
|
|
|
|
// test store reloads with correct room state from JsonStore
|
|
|
|
let store = Box::new(JsonStore::open(path).unwrap());
|
|
|
|
let config = ClientConfig::default().state_store(store);
|
|
|
|
let joined_client = Client::new_with_config(homeserver, Some(session), config).unwrap();
|
|
|
|
|
|
|
|
// joined room reloaded from state store
|
|
|
|
joined_client.sync(SyncSettings::default()).await.unwrap();
|
|
|
|
let room = joined_client.get_joined_room(&room_id).await;
|
|
|
|
assert!(room.is_some());
|
|
|
|
|
|
|
|
let _m = mock(
|
|
|
|
"GET",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/sync\?.*$".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
.with_body_from_file("../test_data/leave_event_sync.json")
|
|
|
|
.create();
|
|
|
|
|
|
|
|
joined_client.sync(SyncSettings::default()).await.unwrap();
|
|
|
|
|
|
|
|
let room = joined_client.get_joined_room(&room_id).await;
|
|
|
|
assert!(room.is_none());
|
|
|
|
|
|
|
|
let room = joined_client.get_left_room(&room_id).await;
|
|
|
|
assert!(room.is_some());
|
|
|
|
}
|
|
|
|
|
2020-05-07 10:51:53 +00:00
|
|
|
#[tokio::test]
|
|
|
|
async fn account_data() {
|
|
|
|
let homeserver = Url::from_str(&mockito::server_url()).unwrap();
|
|
|
|
|
|
|
|
let session = Session {
|
|
|
|
access_token: "1234".to_owned(),
|
|
|
|
user_id: UserId::try_from("@example:example.com").unwrap(),
|
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let _m = mock(
|
|
|
|
"GET",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/sync\?.*$".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
.with_body_from_file("../test_data/sync.json")
|
|
|
|
.create();
|
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
let client = Client::new(homeserver, Some(session)).unwrap();
|
2020-05-07 10:51:53 +00:00
|
|
|
|
|
|
|
let sync_settings = SyncSettings::new().timeout(Duration::from_millis(3000));
|
|
|
|
|
|
|
|
let _response = client.sync(sync_settings).await.unwrap();
|
|
|
|
|
2020-05-07 14:22:18 +00:00
|
|
|
// let bc = &client.base_client;
|
|
|
|
// let ignored_users = bc.ignored_users.read().await;
|
|
|
|
// assert_eq!(1, ignored_users.len())
|
2020-05-07 10:51:53 +00:00
|
|
|
}
|
2020-04-07 00:59:44 +00:00
|
|
|
|
2020-05-08 07:57:42 +00:00
|
|
|
#[tokio::test]
|
|
|
|
async fn room_creation() {
|
2020-05-13 10:47:24 +00:00
|
|
|
let session = Session {
|
2020-05-08 07:57:42 +00:00
|
|
|
access_token: "12345".to_owned(),
|
|
|
|
user_id: UserId::try_from("@example:localhost").unwrap(),
|
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
|
|
|
let homeserver = url::Url::parse(&mockito::server_url()).unwrap();
|
2020-05-08 12:02:49 +00:00
|
|
|
let client = Client::new(homeserver, Some(session)).unwrap();
|
2020-05-08 07:57:42 +00:00
|
|
|
|
|
|
|
let mut response = EventBuilder::default()
|
2020-05-08 14:12:21 +00:00
|
|
|
.add_room_event(EventsFile::Member, RoomEvent::RoomMember)
|
|
|
|
.add_room_event(EventsFile::PowerLevels, RoomEvent::RoomPowerLevels)
|
2020-05-08 07:57:42 +00:00
|
|
|
.build_sync_response();
|
|
|
|
|
|
|
|
client
|
|
|
|
.base_client
|
|
|
|
.receive_sync_response(&mut response)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
let room_id = RoomId::try_from("!SVkFJHzfwvuaIEawgC:localhost").unwrap();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
client.homeserver(),
|
|
|
|
&Url::parse(&mockito::server_url()).unwrap()
|
|
|
|
);
|
|
|
|
|
|
|
|
let room = client.get_joined_room(&room_id).await;
|
|
|
|
assert!(room.is_some());
|
|
|
|
}
|
2020-04-16 21:03:40 +00:00
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn login_error() {
|
|
|
|
let homeserver = Url::from_str(&mockito::server_url()).unwrap();
|
|
|
|
|
|
|
|
let _m = mock("POST", "/_matrix/client/r0/login")
|
|
|
|
.with_status(403)
|
2020-04-29 07:48:00 +00:00
|
|
|
.with_body_from_file("../test_data/login_response_error.json")
|
2020-04-16 21:03:40 +00:00
|
|
|
.create();
|
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
let client = Client::new(homeserver, None).unwrap();
|
2020-04-16 21:03:40 +00:00
|
|
|
|
|
|
|
if let Err(err) = client.login("example", "wordpass", None, None).await {
|
2020-04-29 08:40:27 +00:00
|
|
|
if let crate::Error::RumaResponse(crate::FromHttpResponseError::Http(
|
|
|
|
crate::ServerError::Known(crate::api::Error {
|
2020-04-16 21:03:40 +00:00
|
|
|
kind,
|
|
|
|
message,
|
|
|
|
status_code,
|
|
|
|
}),
|
|
|
|
)) = err
|
|
|
|
{
|
2020-04-29 08:40:27 +00:00
|
|
|
if let crate::api::error::ErrorKind::Forbidden = kind {
|
2020-04-16 21:03:40 +00:00
|
|
|
} else {
|
|
|
|
panic!(
|
|
|
|
"found the wrong `ErrorKind` {:?}, expected `Forbidden",
|
|
|
|
kind
|
|
|
|
);
|
|
|
|
}
|
|
|
|
assert_eq!(message, "Invalid password".to_string());
|
|
|
|
assert_eq!(status_code, http::StatusCode::from_u16(403).unwrap());
|
|
|
|
} else {
|
|
|
|
panic!(
|
|
|
|
"found the wrong `Error` type {:?}, expected `Error::RumaResponse",
|
|
|
|
err
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
panic!("this request should return an `Err` variant")
|
|
|
|
}
|
|
|
|
}
|
2020-05-06 12:36:28 +00:00
|
|
|
|
|
|
|
#[tokio::test]
|
2020-05-07 19:21:06 +00:00
|
|
|
async fn join_room_by_id() {
|
2020-05-06 12:36:28 +00:00
|
|
|
let homeserver = Url::from_str(&mockito::server_url()).unwrap();
|
|
|
|
|
|
|
|
let session = Session {
|
|
|
|
access_token: "1234".to_owned(),
|
|
|
|
user_id: UserId::try_from("@example:localhost").unwrap(),
|
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let _m = mock(
|
|
|
|
"POST",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/rooms/.*/join".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
.with_body_from_file("../test_data/room_id.json")
|
|
|
|
.create();
|
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
let client = Client::new(homeserver, Some(session)).unwrap();
|
2020-05-06 12:36:28 +00:00
|
|
|
let room_id = RoomId::try_from("!testroom:example.org").unwrap();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
// this is the `join_by_room_id::Response` but since no PartialEq we check the RoomId field
|
|
|
|
client.join_room_by_id(&room_id).await.unwrap().room_id,
|
|
|
|
room_id
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-05-14 12:30:29 +00:00
|
|
|
// TODO enable this once Ruma supports proper serialization of the query
|
|
|
|
// string.
|
2020-05-15 10:32:36 +00:00
|
|
|
#[tokio::test]
|
|
|
|
async fn join_room_by_id_or_alias() {
|
|
|
|
let homeserver = Url::from_str(&mockito::server_url()).unwrap();
|
|
|
|
|
|
|
|
let session = Session {
|
|
|
|
access_token: "1234".to_owned(),
|
|
|
|
user_id: UserId::try_from("@example:localhost").unwrap(),
|
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let _m = mock(
|
|
|
|
"POST",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/join/".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
.with_body_from_file("../test_data/room_id.json")
|
|
|
|
.create();
|
|
|
|
|
|
|
|
let client = Client::new(homeserver, Some(session)).unwrap();
|
|
|
|
let room_id = RoomIdOrAliasId::try_from("!testroom:example.org").unwrap();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
// this is the `join_by_room_id::Response` but since no PartialEq we check the RoomId field
|
|
|
|
client
|
|
|
|
.join_room_by_id_or_alias(&room_id, &["server.com".to_string()])
|
|
|
|
.await
|
|
|
|
.unwrap()
|
|
|
|
.room_id,
|
|
|
|
RoomId::try_from("!testroom:example.org").unwrap()
|
|
|
|
);
|
|
|
|
}
|
2020-05-07 19:21:06 +00:00
|
|
|
|
2020-05-06 12:36:28 +00:00
|
|
|
#[tokio::test]
|
|
|
|
#[allow(irrefutable_let_patterns)]
|
2020-05-07 19:21:06 +00:00
|
|
|
async fn invite_user_by_id() {
|
2020-05-06 12:36:28 +00:00
|
|
|
let homeserver = Url::from_str(&mockito::server_url()).unwrap();
|
|
|
|
let user = UserId::try_from("@example:localhost").unwrap();
|
|
|
|
let room_id = RoomId::try_from("!testroom:example.org").unwrap();
|
|
|
|
|
|
|
|
let session = Session {
|
|
|
|
access_token: "1234".to_owned(),
|
|
|
|
user_id: user.clone(),
|
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let _m = mock(
|
|
|
|
"POST",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/rooms/.*/invite".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
.with_body_from_file("../test_data/logout_response.json")
|
|
|
|
.create();
|
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
let client = Client::new(homeserver, Some(session)).unwrap();
|
2020-05-06 12:36:28 +00:00
|
|
|
|
|
|
|
if let invite_user::Response = client.invite_user_by_id(&room_id, &user).await.unwrap() {}
|
|
|
|
}
|
|
|
|
|
2020-05-07 19:21:06 +00:00
|
|
|
#[tokio::test]
|
|
|
|
#[allow(irrefutable_let_patterns)]
|
|
|
|
async fn invite_user_by_3pid() {
|
|
|
|
let homeserver = Url::from_str(&mockito::server_url()).unwrap();
|
|
|
|
let user = UserId::try_from("@example:localhost").unwrap();
|
|
|
|
let room_id = RoomId::try_from("!testroom:example.org").unwrap();
|
|
|
|
|
|
|
|
let session = Session {
|
|
|
|
access_token: "1234".to_owned(),
|
|
|
|
user_id: user.clone(),
|
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let _m = mock(
|
|
|
|
"POST",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/rooms/.*/invite".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
.with_body_from_file("../test_data/logout_response.json")
|
|
|
|
.create();
|
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
let client = Client::new(homeserver, Some(session)).unwrap();
|
2020-05-07 19:21:06 +00:00
|
|
|
|
|
|
|
if let invite_user::Response = client
|
|
|
|
.invite_user_by_3pid(
|
|
|
|
&room_id,
|
|
|
|
&Invite3pid {
|
|
|
|
id_server: "example.org".to_string(),
|
|
|
|
id_access_token: "IdToken".to_string(),
|
|
|
|
medium: crate::api::r0::thirdparty::Medium::Email,
|
|
|
|
address: "address".to_string(),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.await
|
|
|
|
.unwrap()
|
|
|
|
{}
|
|
|
|
}
|
|
|
|
|
2020-05-06 12:36:28 +00:00
|
|
|
#[tokio::test]
|
|
|
|
#[allow(irrefutable_let_patterns)]
|
|
|
|
async fn leave_room() {
|
|
|
|
let homeserver = Url::from_str(&mockito::server_url()).unwrap();
|
|
|
|
|
|
|
|
let session = Session {
|
|
|
|
access_token: "1234".to_owned(),
|
|
|
|
user_id: UserId::try_from("@example:localhost").unwrap(),
|
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let _m = mock(
|
|
|
|
"POST",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/rooms/.*/leave".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
// this is an empty JSON object
|
|
|
|
.with_body_from_file("../test_data/logout_response.json")
|
|
|
|
.create();
|
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
let client = Client::new(homeserver, Some(session)).unwrap();
|
2020-05-06 12:36:28 +00:00
|
|
|
let room_id = RoomId::try_from("!testroom:example.org").unwrap();
|
|
|
|
|
|
|
|
let response = client.leave_room(&room_id).await.unwrap();
|
|
|
|
if let leave_room::Response = response {
|
|
|
|
} else {
|
|
|
|
panic!(
|
|
|
|
"expected `ruma_client_api::leave_room::Response` found {:?}",
|
|
|
|
response
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
#[allow(irrefutable_let_patterns)]
|
|
|
|
async fn ban_user() {
|
|
|
|
let homeserver = Url::from_str(&mockito::server_url()).unwrap();
|
|
|
|
let user = UserId::try_from("@example:localhost").unwrap();
|
|
|
|
let room_id = RoomId::try_from("!testroom:example.org").unwrap();
|
|
|
|
|
|
|
|
let session = Session {
|
|
|
|
access_token: "1234".to_owned(),
|
|
|
|
user_id: user.clone(),
|
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let _m = mock(
|
|
|
|
"POST",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/rooms/.*/ban".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
// this is an empty JSON object
|
|
|
|
.with_body_from_file("../test_data/logout_response.json")
|
|
|
|
.create();
|
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
let client = Client::new(homeserver, Some(session)).unwrap();
|
2020-05-06 12:36:28 +00:00
|
|
|
|
|
|
|
let response = client.ban_user(&room_id, &user, None).await.unwrap();
|
|
|
|
if let ban_user::Response = response {
|
|
|
|
} else {
|
|
|
|
panic!(
|
|
|
|
"expected `ruma_client_api::ban_user::Response` found {:?}",
|
|
|
|
response
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
#[allow(irrefutable_let_patterns)]
|
|
|
|
async fn kick_user() {
|
|
|
|
let homeserver = Url::from_str(&mockito::server_url()).unwrap();
|
|
|
|
let user = UserId::try_from("@example:localhost").unwrap();
|
|
|
|
let room_id = RoomId::try_from("!testroom:example.org").unwrap();
|
|
|
|
|
|
|
|
let session = Session {
|
|
|
|
access_token: "1234".to_owned(),
|
|
|
|
user_id: user.clone(),
|
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let _m = mock(
|
|
|
|
"POST",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/rooms/.*/kick".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
// this is an empty JSON object
|
|
|
|
.with_body_from_file("../test_data/logout_response.json")
|
|
|
|
.create();
|
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
let client = Client::new(homeserver, Some(session)).unwrap();
|
2020-05-06 12:36:28 +00:00
|
|
|
|
|
|
|
let response = client.kick_user(&room_id, &user, None).await.unwrap();
|
|
|
|
if let kick_user::Response = response {
|
|
|
|
} else {
|
|
|
|
panic!(
|
|
|
|
"expected `ruma_client_api::kick_user::Response` found {:?}",
|
|
|
|
response
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
#[allow(irrefutable_let_patterns)]
|
|
|
|
async fn forget_room() {
|
|
|
|
let homeserver = Url::from_str(&mockito::server_url()).unwrap();
|
|
|
|
let user = UserId::try_from("@example:localhost").unwrap();
|
|
|
|
let room_id = RoomId::try_from("!testroom:example.org").unwrap();
|
|
|
|
|
|
|
|
let session = Session {
|
|
|
|
access_token: "1234".to_owned(),
|
|
|
|
user_id: user.clone(),
|
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let _m = mock(
|
|
|
|
"POST",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/rooms/.*/forget".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
// this is an empty JSON object
|
|
|
|
.with_body_from_file("../test_data/logout_response.json")
|
|
|
|
.create();
|
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
let client = Client::new(homeserver, Some(session)).unwrap();
|
2020-05-06 12:36:28 +00:00
|
|
|
|
|
|
|
let response = client.forget_room_by_id(&room_id).await.unwrap();
|
|
|
|
if let forget_room::Response = response {
|
|
|
|
} else {
|
|
|
|
panic!(
|
|
|
|
"expected `ruma_client_api::forget_room::Response` found {:?}",
|
|
|
|
response
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
#[allow(irrefutable_let_patterns)]
|
|
|
|
async fn read_receipt() {
|
|
|
|
let homeserver = Url::from_str(&mockito::server_url()).unwrap();
|
|
|
|
let user_id = UserId::try_from("@example:localhost").unwrap();
|
|
|
|
let room_id = RoomId::try_from("!testroom:example.org").unwrap();
|
|
|
|
let event_id = EventId::new("example.org").unwrap();
|
|
|
|
|
|
|
|
let session = Session {
|
|
|
|
access_token: "1234".to_owned(),
|
|
|
|
user_id,
|
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let _m = mock(
|
|
|
|
"POST",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/rooms/.*/receipt".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
// this is an empty JSON object
|
|
|
|
.with_body_from_file("../test_data/logout_response.json")
|
|
|
|
.create();
|
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
let client = Client::new(homeserver, Some(session)).unwrap();
|
2020-05-06 12:36:28 +00:00
|
|
|
|
|
|
|
let response = client.read_receipt(&room_id, &event_id).await.unwrap();
|
|
|
|
if let create_receipt::Response = response {
|
|
|
|
} else {
|
|
|
|
panic!(
|
|
|
|
"expected `ruma_client_api::create_receipt::Response` found {:?}",
|
|
|
|
response
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
#[allow(irrefutable_let_patterns)]
|
|
|
|
async fn typing_notice() {
|
|
|
|
let homeserver = Url::from_str(&mockito::server_url()).unwrap();
|
|
|
|
let user = UserId::try_from("@example:localhost").unwrap();
|
|
|
|
let room_id = RoomId::try_from("!testroom:example.org").unwrap();
|
|
|
|
|
|
|
|
let session = Session {
|
|
|
|
access_token: "1234".to_owned(),
|
|
|
|
user_id: user.clone(),
|
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let _m = mock(
|
|
|
|
"PUT",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/rooms/.*/typing".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
// this is an empty JSON object
|
|
|
|
.with_body_from_file("../test_data/logout_response.json")
|
|
|
|
.create();
|
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
let client = Client::new(homeserver, Some(session)).unwrap();
|
2020-05-06 12:36:28 +00:00
|
|
|
|
|
|
|
let response = client
|
|
|
|
.typing_notice(
|
|
|
|
&room_id,
|
|
|
|
&user,
|
|
|
|
true,
|
|
|
|
Some(std::time::Duration::from_secs(1)),
|
|
|
|
)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
if let create_typing_event::Response = response {
|
|
|
|
} else {
|
|
|
|
panic!(
|
|
|
|
"expected `ruma_client_api::create_typing_event::Response` found {:?}",
|
|
|
|
response
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2020-05-07 10:51:53 +00:00
|
|
|
|
2020-05-07 19:21:06 +00:00
|
|
|
#[tokio::test]
|
|
|
|
async fn room_message_send() {
|
2020-05-08 14:12:21 +00:00
|
|
|
use matrix_sdk_common::uuid::Uuid;
|
2020-05-07 19:21:06 +00:00
|
|
|
|
|
|
|
let homeserver = Url::from_str(&mockito::server_url()).unwrap();
|
|
|
|
let user = UserId::try_from("@example:localhost").unwrap();
|
|
|
|
let room_id = RoomId::try_from("!testroom:example.org").unwrap();
|
|
|
|
|
|
|
|
let session = Session {
|
|
|
|
access_token: "1234".to_owned(),
|
|
|
|
user_id: user.clone(),
|
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let _m = mock(
|
|
|
|
"PUT",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/rooms/.*/send/".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
.with_body_from_file("../test_data/event_id.json")
|
|
|
|
.create();
|
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
let client = Client::new(homeserver, Some(session)).unwrap();
|
2020-05-07 19:21:06 +00:00
|
|
|
|
|
|
|
let content = MessageEventContent::Text(TextMessageEventContent {
|
|
|
|
body: "Hello world".to_owned(),
|
|
|
|
format: None,
|
|
|
|
formatted_body: None,
|
|
|
|
relates_to: None,
|
|
|
|
});
|
|
|
|
let txn_id = Uuid::new_v4();
|
|
|
|
let response = client
|
|
|
|
.room_send(&room_id, content, Some(txn_id))
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
EventId::try_from("$h29iv0s8:example.com").ok(),
|
|
|
|
response.event_id
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-05-07 10:51:53 +00:00
|
|
|
#[tokio::test]
|
|
|
|
async fn user_presence() {
|
|
|
|
let homeserver = Url::from_str(&mockito::server_url()).unwrap();
|
|
|
|
|
|
|
|
let session = Session {
|
|
|
|
access_token: "1234".to_owned(),
|
|
|
|
user_id: UserId::try_from("@example:localhost").unwrap(),
|
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let _m = mock(
|
|
|
|
"GET",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/sync\?.*$".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
.with_body_from_file("../test_data/sync.json")
|
|
|
|
.create();
|
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
let client = Client::new(homeserver, Some(session)).unwrap();
|
2020-05-07 10:51:53 +00:00
|
|
|
|
|
|
|
let sync_settings = SyncSettings::new().timeout(Duration::from_millis(3000));
|
|
|
|
|
|
|
|
let _response = client.sync(sync_settings).await.unwrap();
|
|
|
|
|
|
|
|
let rooms_lock = &client.base_client.joined_rooms();
|
|
|
|
let rooms = rooms_lock.read().await;
|
|
|
|
let room = &rooms
|
|
|
|
.get(&RoomId::try_from("!SVkFJHzfwvuaIEawgC:localhost").unwrap())
|
|
|
|
.unwrap()
|
|
|
|
.read()
|
|
|
|
.await;
|
|
|
|
|
|
|
|
assert_eq!(2, room.members.len());
|
|
|
|
for member in room.members.values() {
|
|
|
|
assert_eq!(MembershipState::Join, member.membership);
|
|
|
|
}
|
|
|
|
|
|
|
|
assert!(room.power_levels.is_some())
|
|
|
|
}
|
|
|
|
|
2020-05-07 19:21:06 +00:00
|
|
|
#[tokio::test]
|
|
|
|
async fn calculate_room_names_from_summary() {
|
|
|
|
let homeserver = Url::from_str(&mockito::server_url()).unwrap();
|
2020-05-07 14:22:18 +00:00
|
|
|
|
2020-05-07 19:21:06 +00:00
|
|
|
let session = Session {
|
|
|
|
access_token: "1234".to_owned(),
|
|
|
|
user_id: UserId::try_from("@example:localhost").unwrap(),
|
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
2020-05-07 14:22:18 +00:00
|
|
|
|
2020-05-07 19:21:06 +00:00
|
|
|
let _m = mock(
|
|
|
|
"GET",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/sync\?.*$".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
.with_body_from_file("../test_data/sync_with_summary.json")
|
|
|
|
.create();
|
2020-05-07 14:22:18 +00:00
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
let client = Client::new(homeserver, Some(session)).unwrap();
|
2020-05-07 14:22:18 +00:00
|
|
|
|
2020-05-07 19:21:06 +00:00
|
|
|
let sync_settings = SyncSettings::new().timeout(Duration::from_millis(3000));
|
|
|
|
let _response = client.sync(sync_settings).await.unwrap();
|
|
|
|
|
|
|
|
let mut room_names = vec![];
|
|
|
|
for room in client.joined_rooms().read().await.values() {
|
|
|
|
room_names.push(room.read().await.display_name())
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!(vec!["example, example2"], room_names);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn invited_rooms() {
|
|
|
|
use std::convert::TryFrom;
|
|
|
|
|
2020-05-13 10:47:24 +00:00
|
|
|
let session = Session {
|
2020-05-07 19:21:06 +00:00
|
|
|
access_token: "12345".to_owned(),
|
|
|
|
user_id: UserId::try_from("@example:localhost").unwrap(),
|
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let homeserver = url::Url::parse(&mockito::server_url()).unwrap();
|
2020-05-08 12:02:49 +00:00
|
|
|
let client = Client::new(homeserver, Some(session)).unwrap();
|
2020-05-07 19:21:06 +00:00
|
|
|
|
|
|
|
let _m = mock(
|
|
|
|
"GET",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/sync\?.*$".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
.with_body_from_file("../test_data/invite_sync.json")
|
|
|
|
.create();
|
|
|
|
|
|
|
|
let _response = client.sync(SyncSettings::default()).await.unwrap();
|
|
|
|
|
|
|
|
assert!(client.joined_rooms().read().await.is_empty());
|
|
|
|
assert!(client.left_rooms().read().await.is_empty());
|
|
|
|
assert!(!client.invited_rooms().read().await.is_empty());
|
|
|
|
|
|
|
|
assert!(client
|
|
|
|
.get_invited_room(&RoomId::try_from("!696r7674:example.com").unwrap())
|
|
|
|
.await
|
|
|
|
.is_some());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn left_rooms() {
|
|
|
|
use std::convert::TryFrom;
|
|
|
|
|
2020-05-13 10:47:24 +00:00
|
|
|
let session = Session {
|
2020-05-07 19:21:06 +00:00
|
|
|
access_token: "12345".to_owned(),
|
|
|
|
user_id: UserId::try_from("@example:localhost").unwrap(),
|
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let homeserver = url::Url::parse(&mockito::server_url()).unwrap();
|
2020-05-08 12:02:49 +00:00
|
|
|
let client = Client::new(homeserver, Some(session)).unwrap();
|
2020-05-07 19:21:06 +00:00
|
|
|
|
|
|
|
let _m = mock(
|
|
|
|
"GET",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/sync\?.*$".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
.with_body_from_file("../test_data/leave_sync.json")
|
|
|
|
.create();
|
|
|
|
|
|
|
|
let _response = client.sync(SyncSettings::default()).await.unwrap();
|
|
|
|
|
|
|
|
assert!(client.joined_rooms().read().await.is_empty());
|
|
|
|
assert!(!client.left_rooms().read().await.is_empty());
|
|
|
|
assert!(client.invited_rooms().read().await.is_empty());
|
|
|
|
|
|
|
|
assert!(client
|
|
|
|
.get_left_room(&RoomId::try_from("!SVkFJHzfwvuaIEawgC:localhost").unwrap())
|
|
|
|
.await
|
|
|
|
.is_some())
|
|
|
|
}
|
2020-05-07 14:22:18 +00:00
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn test_client_sync_store() {
|
|
|
|
let homeserver = url::Url::from_str(&mockito::server_url()).unwrap();
|
2020-05-07 10:51:53 +00:00
|
|
|
|
|
|
|
let session = Session {
|
|
|
|
access_token: "1234".to_owned(),
|
2020-05-07 14:22:18 +00:00
|
|
|
user_id: UserId::try_from("@cheeky_monkey:matrix.org").unwrap(),
|
2020-05-07 10:51:53 +00:00
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
|
|
|
|
2020-05-07 14:22:18 +00:00
|
|
|
let _m = mock(
|
|
|
|
"GET",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/sync\?.*$".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
.with_body_from_file("../test_data/sync.json")
|
|
|
|
.create();
|
2020-05-07 10:51:53 +00:00
|
|
|
|
2020-05-07 14:22:18 +00:00
|
|
|
let _m = mock("POST", "/_matrix/client/r0/login")
|
|
|
|
.with_status(200)
|
|
|
|
.with_body_from_file("../test_data/login_response.json")
|
|
|
|
.create();
|
2020-05-07 11:18:13 +00:00
|
|
|
|
2020-05-18 20:26:27 +00:00
|
|
|
let dir = tempdir().unwrap();
|
2020-05-07 14:22:18 +00:00
|
|
|
// a sync response to populate our JSON store
|
2020-05-08 12:02:49 +00:00
|
|
|
let config =
|
|
|
|
ClientConfig::default().state_store(Box::new(JsonStore::open(dir.path()).unwrap()));
|
2020-05-07 14:22:18 +00:00
|
|
|
let client =
|
2020-05-08 12:02:49 +00:00
|
|
|
Client::new_with_config(homeserver.clone(), Some(session.clone()), config).unwrap();
|
2020-05-07 14:22:18 +00:00
|
|
|
let sync_settings = SyncSettings::new().timeout(std::time::Duration::from_millis(3000));
|
|
|
|
|
|
|
|
// gather state to save to the db, the first time through loading will be skipped
|
|
|
|
let _ = client.sync(sync_settings.clone()).await.unwrap();
|
|
|
|
|
|
|
|
// now syncing the client will update from the state store
|
2020-05-08 12:02:49 +00:00
|
|
|
let config =
|
|
|
|
ClientConfig::default().state_store(Box::new(JsonStore::open(dir.path()).unwrap()));
|
|
|
|
let client = Client::new_with_config(homeserver, Some(session.clone()), config).unwrap();
|
2020-05-07 14:22:18 +00:00
|
|
|
client.sync(sync_settings).await.unwrap();
|
|
|
|
|
|
|
|
let base_client = &client.base_client;
|
|
|
|
|
|
|
|
// assert the synced client and the logged in client are equal
|
|
|
|
assert_eq!(*base_client.session().read().await, Some(session));
|
|
|
|
assert_eq!(
|
|
|
|
base_client.sync_token().await,
|
|
|
|
Some("s526_47314_0_7_1_1_1_11444_1".to_string())
|
|
|
|
);
|
|
|
|
// assert_eq!(
|
|
|
|
// *base_client.ignored_users.read().await,
|
|
|
|
// vec![UserId::try_from("@someone:example.org").unwrap()]
|
|
|
|
// );
|
2020-05-07 10:51:53 +00:00
|
|
|
}
|
2020-05-08 09:27:33 +00:00
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn login() {
|
|
|
|
let homeserver = Url::from_str(&mockito::server_url()).unwrap();
|
|
|
|
|
|
|
|
let _m = mock("POST", "/_matrix/client/r0/login")
|
|
|
|
.with_status(200)
|
|
|
|
.with_body_from_file("../test_data/login_response.json")
|
|
|
|
.create();
|
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
let client = Client::new(homeserver, None).unwrap();
|
2020-05-08 09:27:33 +00:00
|
|
|
|
|
|
|
client
|
|
|
|
.login("example", "wordpass", None, None)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let logged_in = client.logged_in().await;
|
|
|
|
assert!(logged_in, "Clint should be logged in");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn sync() {
|
|
|
|
let homeserver = Url::from_str(&mockito::server_url()).unwrap();
|
|
|
|
|
|
|
|
let session = Session {
|
|
|
|
access_token: "1234".to_owned(),
|
|
|
|
user_id: UserId::try_from("@example:localhost").unwrap(),
|
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let _m = mock(
|
|
|
|
"GET",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/sync\?.*$".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
.with_body_from_file("../test_data/sync.json")
|
|
|
|
.create();
|
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
let client = Client::new(homeserver, Some(session)).unwrap();
|
2020-05-08 09:27:33 +00:00
|
|
|
|
|
|
|
let sync_settings = SyncSettings::new().timeout(Duration::from_millis(3000));
|
|
|
|
|
|
|
|
let response = client.sync(sync_settings).await.unwrap();
|
|
|
|
|
|
|
|
assert_ne!(response.next_batch, "");
|
|
|
|
|
|
|
|
assert!(client.sync_token().await.is_some());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn room_names() {
|
|
|
|
let homeserver = Url::from_str(&mockito::server_url()).unwrap();
|
|
|
|
|
|
|
|
let session = Session {
|
|
|
|
access_token: "1234".to_owned(),
|
|
|
|
user_id: UserId::try_from("@example:localhost").unwrap(),
|
|
|
|
device_id: "DEVICEID".to_owned(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let _m = mock(
|
|
|
|
"GET",
|
|
|
|
Matcher::Regex(r"^/_matrix/client/r0/sync\?.*$".to_string()),
|
|
|
|
)
|
|
|
|
.with_status(200)
|
|
|
|
.with_body_from_file("../test_data/sync.json")
|
|
|
|
.create();
|
|
|
|
|
2020-05-08 12:02:49 +00:00
|
|
|
let client = Client::new(homeserver, Some(session)).unwrap();
|
2020-05-08 09:27:33 +00:00
|
|
|
|
|
|
|
let sync_settings = SyncSettings::new().timeout(Duration::from_millis(3000));
|
|
|
|
|
|
|
|
let _response = client.sync(sync_settings).await.unwrap();
|
|
|
|
|
|
|
|
let mut names = vec![];
|
|
|
|
for r in client.joined_rooms().read().await.values() {
|
|
|
|
names.push(r.read().await.display_name());
|
|
|
|
}
|
|
|
|
assert_eq!(vec!["tutorial"], names);
|
|
|
|
let room = client
|
|
|
|
.get_joined_room(&RoomId::try_from("!SVkFJHzfwvuaIEawgC:localhost").unwrap())
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
assert_eq!("tutorial".to_string(), room.read().await.display_name());
|
|
|
|
}
|
2020-04-07 00:59:44 +00:00
|
|
|
}
|