248 lines
8.2 KiB
Rust
248 lines
8.2 KiB
Rust
#![doc(html_favicon_url = "https://www.ruma.io/favicon.ico")]
|
|
#![doc(html_logo_url = "https://www.ruma.io/images/logo.png")]
|
|
//! A minimal [Matrix](https://matrix.org/) client library.
|
|
//!
|
|
//! # Usage
|
|
//!
|
|
//! Begin by creating a `Client` type, usually using the `https` method for a client that supports
|
|
//! secure connections, and then logging in:
|
|
//!
|
|
//! ```ignore
|
|
//! use ruma_client::Client;
|
|
//!
|
|
//! let work = async {
|
|
//! let homeserver_url = "https://example.com".parse().unwrap();
|
|
//! let client = Client::new(homeserver_url, None);
|
|
//!
|
|
//! let session = client
|
|
//! .log_in("@alice:example.com", "secret", None, None)
|
|
//! .await?;
|
|
//!
|
|
//! // You're now logged in! Write the session to a file if you want to restore it later.
|
|
//! // Then start using the API!
|
|
//! # Result::<(), ruma_client::Error<_>>::Ok(())
|
|
//! };
|
|
//! ```
|
|
//!
|
|
//! You can also pass an existing access token to the `Client` constructor to restore a previous
|
|
//! session rather than calling `log_in`. This can also be used to create a session for an
|
|
//! application service that does not need to log in, but uses the access_token directly:
|
|
//!
|
|
//! ```no_run
|
|
//! use ruma_client::Client;
|
|
//!
|
|
//! let work = async {
|
|
//! let homeserver_url = "https://example.com".parse().unwrap();
|
|
//! let client = Client::new(homeserver_url, Some("as_access_token".into()));
|
|
//!
|
|
//! // make calls to the API
|
|
//! };
|
|
//! ```
|
|
//!
|
|
//! For the standard use case of synchronizing with the homeserver (i.e. getting all the latest
|
|
//! events), use the `Client::sync` method:
|
|
//!
|
|
//! ```ignore
|
|
//! use std::time::Duration;
|
|
//!
|
|
//! # use ruma_client::Client;
|
|
//! # use ruma::presence::PresenceState;
|
|
//! # use tokio_stream::{StreamExt as _};
|
|
//! # let homeserver_url = "https://example.com".parse().unwrap();
|
|
//! # let client = Client::new(homeserver_url, None);
|
|
//! # let next_batch_token = String::new();
|
|
//! # async {
|
|
//! let mut sync_stream = Box::pin(client.sync(
|
|
//! None,
|
|
//! next_batch_token,
|
|
//! &PresenceState::Online,
|
|
//! Some(Duration::from_secs(30)),
|
|
//! ));
|
|
//! while let Some(response) = sync_stream.try_next().await? {
|
|
//! // Do something with the data in the response...
|
|
//! }
|
|
//! # Result::<(), ruma_client::Error<_>>::Ok(())
|
|
//! # };
|
|
//! ```
|
|
//!
|
|
//! The `Client` type also provides methods for registering a new account if you don't already have
|
|
//! one with the given homeserver.
|
|
//!
|
|
//! Beyond these basic convenience methods, `ruma-client` gives you access to the entire Matrix
|
|
//! client-server API via the `request` method. You can pass it any of the `Request` types found in
|
|
//! `ruma::api::*` and get back a corresponding response from the homeserver.
|
|
//!
|
|
//! For example:
|
|
//!
|
|
//! ```no_run
|
|
//! # use ruma_client::Client;
|
|
//! # let homeserver_url = "https://example.com".parse().unwrap();
|
|
//! # let client = Client::new(homeserver_url, None);
|
|
//! use std::convert::TryFrom;
|
|
//!
|
|
//! use ruma::{
|
|
//! api::client::r0::alias::get_alias,
|
|
//! room_alias_id, room_id,
|
|
//! };
|
|
//!
|
|
//! async {
|
|
//! let response = client
|
|
//! .request(get_alias::Request::new(&room_alias_id!("#example_room:example.com")))
|
|
//! .await?;
|
|
//!
|
|
//! assert_eq!(response.room_id, room_id!("!n8f893n9:example.com"));
|
|
//! # Result::<(), ruma_client::Error<_>>::Ok(())
|
|
//! }
|
|
//! # ;
|
|
//! ```
|
|
|
|
#![warn(rust_2018_idioms)]
|
|
#![deny(missing_debug_implementations, missing_docs)]
|
|
|
|
use std::{
|
|
collections::BTreeMap,
|
|
sync::{Arc, Mutex},
|
|
};
|
|
|
|
use assign::assign;
|
|
use http::{uri::Uri, Response as HttpResponse};
|
|
use hyper::client::{Client as HyperClient, HttpConnector};
|
|
use ruma_api::{AuthScheme, OutgoingRequest, SendAccessToken};
|
|
use ruma_serde::urlencoded;
|
|
|
|
#[cfg(feature = "client-api")]
|
|
mod client_api;
|
|
mod error;
|
|
|
|
pub use self::error::Error;
|
|
|
|
#[cfg(not(feature = "_tls"))]
|
|
type Connector = HttpConnector;
|
|
|
|
#[cfg(feature = "tls-native")]
|
|
type Connector = hyper_tls::HttpsConnector<HttpConnector>;
|
|
|
|
#[cfg(feature = "_tls-rustls")]
|
|
type Connector = hyper_rustls::HttpsConnector<HttpConnector>;
|
|
|
|
fn create_connector() -> Connector {
|
|
#[cfg(not(feature = "_tls"))]
|
|
let connector = HttpConnector::new();
|
|
|
|
#[cfg(feature = "tls-native")]
|
|
let connector = hyper_tls::HttpsConnector::new();
|
|
|
|
#[cfg(feature = "tls-rustls-native-roots")]
|
|
let connector = hyper_rustls::HttpsConnector::with_native_roots();
|
|
|
|
#[cfg(feature = "tls-rustls-webpki-roots")]
|
|
let connector = hyper_rustls::HttpsConnector::with_webpki_roots();
|
|
|
|
connector
|
|
}
|
|
|
|
/// A client for the Matrix client-server API.
|
|
#[derive(Clone, Debug)]
|
|
pub struct Client(Arc<ClientData>);
|
|
|
|
/// Data contained in Client's Rc
|
|
#[derive(Debug)]
|
|
struct ClientData {
|
|
/// The URL of the homeserver to connect to.
|
|
homeserver_url: Uri,
|
|
|
|
/// The underlying HTTP client.
|
|
hyper: HyperClient<Connector>,
|
|
|
|
/// User session data.
|
|
access_token: Mutex<Option<String>>,
|
|
}
|
|
|
|
impl Client {
|
|
/// Creates a new client.
|
|
pub fn new(homeserver_url: Uri, access_token: Option<String>) -> Self {
|
|
Self(Arc::new(ClientData {
|
|
homeserver_url,
|
|
hyper: HyperClient::builder().build(create_connector()),
|
|
access_token: Mutex::new(access_token),
|
|
}))
|
|
}
|
|
|
|
/// Creates a new client using the given `hyper::client::Builder`.
|
|
///
|
|
/// This allows the user to configure the details of HTTP as desired.
|
|
pub fn custom(
|
|
client_builder: &hyper::client::Builder,
|
|
homeserver_url: Uri,
|
|
access_token: Option<String>,
|
|
) -> Self {
|
|
Self(Arc::new(ClientData {
|
|
homeserver_url,
|
|
hyper: client_builder.build(create_connector()),
|
|
access_token: Mutex::new(access_token),
|
|
}))
|
|
}
|
|
|
|
/// Get a copy of the current `access_token`, if any.
|
|
///
|
|
/// Useful for serializing and persisting the session to be restored later.
|
|
pub fn access_token(&self) -> Option<String> {
|
|
self.0.access_token.lock().expect("session mutex was poisoned").clone()
|
|
}
|
|
|
|
/// Makes a request to a Matrix API endpoint.
|
|
pub async fn request<Request: OutgoingRequest>(
|
|
&self,
|
|
request: Request,
|
|
) -> Result<Request::IncomingResponse, Error<Request::EndpointError>> {
|
|
self.request_with_url_params(request, None).await
|
|
}
|
|
|
|
/// Makes a request to a Matrix API endpoint including additional URL parameters.
|
|
pub async fn request_with_url_params<Request: OutgoingRequest>(
|
|
&self,
|
|
request: Request,
|
|
extra_params: Option<BTreeMap<String, String>>,
|
|
) -> Result<Request::IncomingResponse, Error<Request::EndpointError>> {
|
|
let client = self.0.clone();
|
|
let mut http_request = {
|
|
let lock;
|
|
let access_token = if Request::METADATA.authentication == AuthScheme::AccessToken {
|
|
lock = client.access_token.lock().unwrap();
|
|
if let Some(access_token) = &*lock {
|
|
SendAccessToken::IfRequired(access_token.as_str())
|
|
} else {
|
|
return Err(Error::AuthenticationRequired);
|
|
}
|
|
} else {
|
|
SendAccessToken::None
|
|
};
|
|
|
|
request.try_into_http_request::<Vec<u8>>(
|
|
&client.homeserver_url.to_string(),
|
|
access_token,
|
|
)?
|
|
};
|
|
|
|
let extra_params = urlencoded::to_string(extra_params).unwrap();
|
|
let uri = http_request.uri_mut();
|
|
let new_path_and_query = match uri.query() {
|
|
Some(params) => format!("{}?{}&{}", uri.path(), params, extra_params),
|
|
None => format!("{}?{}", uri.path(), extra_params),
|
|
};
|
|
*uri = Uri::from_parts(assign!(uri.clone().into_parts(), {
|
|
path_and_query: Some(new_path_and_query.parse()?),
|
|
}))?;
|
|
|
|
let hyper_response = client.hyper.request(http_request.map(hyper::Body::from)).await?;
|
|
let (head, body) = hyper_response.into_parts();
|
|
|
|
// FIXME: Use aggregate instead of to_bytes once serde_json can parse from a reader at a
|
|
// comparable speed as reading from a slice: https://github.com/serde-rs/json/issues/160
|
|
let full_body = hyper::body::to_bytes(body).await?;
|
|
let full_response = HttpResponse::from_parts(head, full_body);
|
|
|
|
Ok(ruma_api::IncomingResponse::try_from_http_response(full_response)?)
|
|
}
|
|
}
|