Struct matrix_sdk::ClientBuilder
source · pub struct ClientBuilder { /* private fields */ }
Expand description
Builder that allows creating and configuring various parts of a Client
.
When setting the StateStore
it is up to the user to open/connect
the storage backend before client creation.
§Examples
use matrix_sdk::Client;
// To pass all the request through mitmproxy set the proxy and disable SSL
// verification
let client_builder = Client::builder()
.proxy("http://localhost:8080")
.disable_ssl_verification();
§Example for using a custom http client
Note: setting a custom http client will ignore user_agent
, proxy
, and
disable_ssl_verification
- you’d need to set these yourself if you want
them.
use std::sync::Arc;
use matrix_sdk::Client;
// setting up a custom http client
let reqwest_builder = reqwest::ClientBuilder::new()
.https_only(true)
.no_proxy()
.user_agent("MyApp/v3.0");
let client_builder =
Client::builder().http_client(reqwest_builder.build()?);
Implementations§
source§impl ClientBuilder
impl ClientBuilder
sourcepub fn homeserver_url(self, url: impl AsRef<str>) -> Self
pub fn homeserver_url(self, url: impl AsRef<str>) -> Self
Set the homeserver URL to use.
The following methods are mutually exclusive: Self::homeserver_url
,
Self::server_name
Self::insecure_server_name_no_tls
,
Self::server_name_or_homeserver_url
.
If you set more than one, then whatever was set last will be used.
sourcepub fn server_name(self, server_name: &ServerName) -> Self
pub fn server_name(self, server_name: &ServerName) -> Self
Set the server name to discover the homeserver from.
We assume we can connect in HTTPS to that server. If that’s not the
case, prefer using Self::insecure_server_name_no_tls
.
The following methods are mutually exclusive: Self::homeserver_url
,
Self::server_name
Self::insecure_server_name_no_tls
,
Self::server_name_or_homeserver_url
.
If you set more than one, then whatever was set last will be used.
sourcepub fn insecure_server_name_no_tls(self, server_name: &ServerName) -> Self
pub fn insecure_server_name_no_tls(self, server_name: &ServerName) -> Self
Set the server name to discover the homeserver from, assuming an HTTP (not secured) scheme. This also relaxes OIDC discovery checks to allow HTTP schemes.
The following methods are mutually exclusive: Self::homeserver_url
,
Self::server_name
Self::insecure_server_name_no_tls
,
Self::server_name_or_homeserver_url
.
If you set more than one, then whatever was set last will be used.
sourcepub fn server_name_or_homeserver_url(
self,
server_name_or_url: impl AsRef<str>,
) -> Self
pub fn server_name_or_homeserver_url( self, server_name_or_url: impl AsRef<str>, ) -> Self
Set the server name to discover the homeserver from, falling back to
using it as a homeserver URL if discovery fails. When falling back to a
homeserver URL, a check is made to ensure that the server exists (unlike
Self::homeserver_url
, so you can guarantee that the client is ready
to use.
The following methods are mutually exclusive: Self::homeserver_url
,
Self::server_name
Self::insecure_server_name_no_tls
,
Self::server_name_or_homeserver_url
.
If you set more than one, then whatever was set last will be used.
sourcepub fn sliding_sync_version_builder(
self,
version_builder: SlidingSyncVersionBuilder,
) -> Self
Available on crate feature experimental-sliding-sync
only.
pub fn sliding_sync_version_builder( self, version_builder: SlidingSyncVersionBuilder, ) -> Self
experimental-sliding-sync
only.Set sliding sync to a specific version.
sourcepub fn sqlite_store(
self,
path: impl AsRef<Path>,
passphrase: Option<&str>,
) -> Self
Available on crate feature sqlite
only.
pub fn sqlite_store( self, path: impl AsRef<Path>, passphrase: Option<&str>, ) -> Self
sqlite
only.Set up the store configuration for a SQLite store.
sourcepub fn sqlite_store_with_cache_path(
self,
path: impl AsRef<Path>,
cache_path: impl AsRef<Path>,
passphrase: Option<&str>,
) -> Self
Available on crate feature sqlite
only.
pub fn sqlite_store_with_cache_path( self, path: impl AsRef<Path>, cache_path: impl AsRef<Path>, passphrase: Option<&str>, ) -> Self
sqlite
only.Set up the store configuration for a SQLite store with cached data separated out from state/crypto data.
sourcepub fn indexeddb_store(self, name: &str, passphrase: Option<&str>) -> Self
Available on crate feature indexeddb
only.
pub fn indexeddb_store(self, name: &str, passphrase: Option<&str>) -> Self
indexeddb
only.Set up the store configuration for a IndexedDB store.
sourcepub fn store_config(self, store_config: StoreConfig) -> Self
pub fn store_config(self, store_config: StoreConfig) -> Self
Set up the store configuration.
The easiest way to get a StoreConfig
is to use the
make_store_config
method from one of the store crates.
§Arguments
store_config
- The configuration of the store.
§Examples
use matrix_sdk::{config::StoreConfig, Client};
let store_config =
StoreConfig::new("cross-process-store-locks-holder-name".to_owned())
.state_store(custom_state_store);
let client_builder = Client::builder().store_config(store_config);
sourcepub fn respect_login_well_known(self, value: bool) -> Self
pub fn respect_login_well_known(self, value: bool) -> Self
Update the client’s homeserver URL with the discovery information present in the login response, if any.
sourcepub fn request_config(self, request_config: RequestConfig) -> Self
pub fn request_config(self, request_config: RequestConfig) -> Self
Set the default timeout, fail and retry behavior for all HTTP requests.
sourcepub fn disable_ssl_verification(self) -> Self
Available on non-WebAssembly only.
pub fn disable_ssl_verification(self) -> Self
Disable SSL verification for the HTTP requests.
sourcepub fn user_agent(self, user_agent: impl AsRef<str>) -> Self
Available on non-WebAssembly only.
pub fn user_agent(self, user_agent: impl AsRef<str>) -> Self
Set a custom HTTP user agent for the client.
sourcepub fn add_root_certificates(self, certificates: Vec<Certificate>) -> Self
Available on non-WebAssembly only.
pub fn add_root_certificates(self, certificates: Vec<Certificate>) -> Self
Add the given list of certificates to the certificate store of the HTTP client.
These additional certificates will be trusted and considered when establishing a HTTP request.
Internally this will call the
reqwest::ClientBuilder::add_root_certificate()
method.
sourcepub fn disable_built_in_root_certificates(self) -> Self
Available on non-WebAssembly only.
pub fn disable_built_in_root_certificates(self) -> Self
Don’t trust any system root certificates, only trust the certificates
provided through
add_root_certificates
.
sourcepub fn http_client(self, client: Client) -> Self
pub fn http_client(self, client: Client) -> Self
Specify a reqwest::Client
instance to handle sending requests and
receiving responses.
This method is mutually exclusive with
proxy()
,
disable_ssl_verification
,
add_root_certificates
,
disable_built_in_root_certificates
,
and user_agent()
.
sourcepub fn server_versions(
self,
value: impl IntoIterator<Item = MatrixVersion>,
) -> Self
pub fn server_versions( self, value: impl IntoIterator<Item = MatrixVersion>, ) -> Self
Specify the Matrix versions supported by the homeserver manually, rather
than build()
doing it using a get_supported_versions
request.
This is helpful for test code that doesn’t care to mock that endpoint.
sourcepub fn handle_refresh_tokens(self) -> Self
pub fn handle_refresh_tokens(self) -> Self
Handle refreshing access tokens automatically.
By default, the Client
forwards any error and doesn’t handle errors
with the access token, which means that
Client::refresh_access_token()
needs to be called manually to
refresh access tokens.
Enabling this setting means that the Client
will try to refresh the
token automatically, which means that:
-
If refreshing the token fails, the error is forwarded, so any endpoint can return
HttpError::RefreshToken
. If anUnknownToken
error is encountered, it means that the user needs to be logged in again. -
The access token and refresh token need to be watched for changes, using the authentication API’s
session_tokens_stream()
for example, to be able to restore the session later.
sourcepub fn with_encryption_settings(self, settings: EncryptionSettings) -> Self
Available on crate feature e2e-encryption
only.
pub fn with_encryption_settings(self, settings: EncryptionSettings) -> Self
e2e-encryption
only.Enables specific encryption settings that will persist throughout the
entire lifetime of the Client
.
sourcepub fn with_room_key_recipient_strategy(self, strategy: CollectStrategy) -> Self
Available on crate feature e2e-encryption
only.
pub fn with_room_key_recipient_strategy(self, strategy: CollectStrategy) -> Self
e2e-encryption
only.Set the strategy to be used for picking recipient devices, when sending an encrypted message.
sourcepub fn with_decryption_trust_requirement(
self,
trust_requirement: TrustRequirement,
) -> Self
Available on crate feature e2e-encryption
only.
pub fn with_decryption_trust_requirement( self, trust_requirement: TrustRequirement, ) -> Self
e2e-encryption
only.Set the trust requirement to be used when decrypting events.
sourcepub fn cross_process_store_locks_holder_name(self, holder_name: String) -> Self
pub fn cross_process_store_locks_holder_name(self, holder_name: String) -> Self
Set the cross-process store locks holder name.
The SDK provides cross-process store locks (see
matrix_sdk_common::store_locks::CrossProcessStoreLock
). The
holder_name
will be the value used for all cross-process store locks
used by the Client
being built.
If 2 concurrent Client
s are running in 2 different process, this
method must be called with different hold_name
values.
sourcepub async fn build(self) -> Result<Client, ClientBuildError>
pub async fn build(self) -> Result<Client, ClientBuildError>
Create a Client
with the options set on this builder.
§Errors
This method can fail for two general reasons:
- Invalid input: a missing or invalid homeserver URL or invalid proxy URL
- HTTP error: If you supplied a user ID instead of a homeserver URL, a
server discovery request is made which can fail; if you didn’t set
server_versions(false)
, that amounts to another request that can fail
Trait Implementations§
source§impl Clone for ClientBuilder
impl Clone for ClientBuilder
source§fn clone(&self) -> ClientBuilder
fn clone(&self) -> ClientBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for ClientBuilder
impl !RefUnwindSafe for ClientBuilder
impl Send for ClientBuilder
impl Sync for ClientBuilder
impl Unpin for ClientBuilder
impl !UnwindSafe for ClientBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<T> CompatExt for T
impl<T> CompatExt for T
source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Arc<>
source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more