1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
// Copyright 2020 Damir Jelić
// Copyright 2020 The Matrix.org Foundation C.I.C.
// Copyright 2022 Famedly GmbH
//
// 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.
//! Types to interact with the native Matrix authentication API.
use std::fmt;
#[cfg(feature = "sso-login")]
use std::future::Future;
use eyeball::SharedObservable;
use futures_core::Stream;
use futures_util::StreamExt;
use matrix_sdk_base::SessionMeta;
use ruma::{
api::{
client::{
account::register,
session::{
get_login_types, login, logout, refresh_token, sso_login, sso_login_with_provider,
},
uiaa::UserIdentifier,
},
OutgoingRequest, SendAccessToken,
},
serde::JsonObject,
};
use serde::{Deserialize, Serialize};
use thiserror::Error;
use tracing::{debug, error, info, instrument};
use url::Url;
use crate::{
authentication::AuthData,
client::SessionChange,
error::{HttpError, HttpResult},
Client, Error, RefreshTokenError, Result,
};
mod login_builder;
pub use self::login_builder::LoginBuilder;
#[cfg(feature = "sso-login")]
pub use self::login_builder::SsoLoginBuilder;
#[derive(Clone)]
pub(crate) struct MatrixAuthData {
pub(crate) tokens: SharedObservable<MatrixSessionTokens>,
}
#[cfg(not(tarpaulin_include))]
impl fmt::Debug for MatrixAuthData {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("MatrixAuthData").finish_non_exhaustive()
}
}
/// A high-level API to interact with the native Matrix authentication API.
///
/// To access this API, use [`Client::matrix_auth()`].
#[derive(Debug, Clone)]
pub struct MatrixAuth {
client: Client,
}
/// Errors that can occur when using the SSO API.
#[derive(Debug, Error)]
pub enum SsoError {
/// The supplied callback URL used to complete SSO is invalid.
#[error("callback URL invalid")]
CallbackUrlInvalid,
}
impl MatrixAuth {
pub(crate) fn new(client: Client) -> Self {
Self { client }
}
fn data(&self) -> Option<&MatrixAuthData> {
self.client.inner.auth_ctx.auth_data.get()?.as_matrix()
}
/// Gets the homeserver’s supported login types.
///
/// This should be the first step when trying to log in so you can call the
/// appropriate method for the next step.
pub async fn get_login_types(&self) -> HttpResult<get_login_types::v3::Response> {
let request = get_login_types::v3::Request::new();
self.client.send(request, None).await
}
/// Get the URL to use to log in via Single Sign-On.
///
/// Returns a URL that should be opened in a web browser to let the user
/// log in.
///
/// After a successful login, the loginToken received at the redirect URL
/// should be used to log in with [`login_token`].
///
/// # Arguments
///
/// * `redirect_url` - The URL that will receive a `loginToken` after a
/// successful SSO login.
///
/// * `idp_id` - The optional ID of the identity provider to log in with.
///
/// [`login_token`]: #method.login_token
pub async fn get_sso_login_url(
&self,
redirect_url: &str,
idp_id: Option<&str>,
) -> Result<String> {
let homeserver = self.client.homeserver();
let server_versions = self.client.server_versions().await?;
let request = if let Some(id) = idp_id {
sso_login_with_provider::v3::Request::new(id.to_owned(), redirect_url.to_owned())
.try_into_http_request::<Vec<u8>>(
homeserver.as_str(),
SendAccessToken::None,
&server_versions,
)
} else {
sso_login::v3::Request::new(redirect_url.to_owned()).try_into_http_request::<Vec<u8>>(
homeserver.as_str(),
SendAccessToken::None,
&server_versions,
)
};
match request {
Ok(req) => Ok(req.uri().to_string()),
Err(err) => Err(Error::from(HttpError::IntoHttp(err))),
}
}
/// Log into the server with a username and password.
///
/// This can be used for the first login as well as for subsequent logins,
/// note that if the device ID isn't provided a new device will be created.
///
/// If this isn't the first login, a device ID should be provided through
/// [`LoginBuilder::device_id`] to restore the correct stores.
///
/// Alternatively the [`restore_session`] method can be used to restore a
/// logged-in client without the password.
///
/// # Arguments
///
/// * `user` - The user ID or user ID localpart of the user that should be
/// logged into the homeserver.
///
/// * `password` - The password of the user.
///
/// # Examples
///
/// ```no_run
/// # use url::Url;
/// # let homeserver = Url::parse("http://example.com").unwrap();
/// # futures_executor::block_on(async {
/// use matrix_sdk::Client;
///
/// let client = Client::new(homeserver).await?;
/// let user = "example";
///
/// let response = client
/// .matrix_auth()
/// .login_username(user, "wordpass")
/// .initial_device_display_name("My bot")
/// .await?;
///
/// println!(
/// "Logged in as {user}, got device_id {} and access_token {}",
/// response.device_id, response.access_token,
/// );
/// # anyhow::Ok(()) });
/// ```
///
/// [`restore_session`]: #method.restore_session
pub fn login_username(&self, id: impl AsRef<str>, password: &str) -> LoginBuilder {
self.login_identifier(UserIdentifier::UserIdOrLocalpart(id.as_ref().to_owned()), password)
}
/// Log into the server with a user identifier and password.
///
/// This is a more general form of [`login_username`][Self::login_username]
/// that also accepts third-party identifiers instead of just the user ID or
/// its localpart.
pub fn login_identifier(&self, id: UserIdentifier, password: &str) -> LoginBuilder {
LoginBuilder::new_password(self.clone(), id, password.to_owned())
}
/// Log into the server with a custom login type.
///
/// # Arguments
///
/// * `login_type` - Identifier of the custom login type, e.g.
/// `org.matrix.login.jwt`
///
/// * `data` - The additional data which should be attached to the login
/// request.
///
/// # Examples
///
/// ```no_run
/// # use url::Url;
/// # let homeserver = Url::parse("http://example.com").unwrap();
/// # async {
/// use matrix_sdk::Client;
///
/// let client = Client::new(homeserver).await?;
/// let user = "example";
///
/// let response = client
/// .matrix_auth()
/// .login_custom(
/// "org.matrix.login.jwt",
/// [("token".to_owned(), "jwt_token_content".into())]
/// .into_iter()
/// .collect(),
/// )?
/// .initial_device_display_name("My bot")
/// .await?;
///
/// println!(
/// "Logged in as {user}, got device_id {} and access_token {}",
/// response.device_id, response.access_token,
/// );
/// # anyhow::Ok(()) };
/// ```
pub fn login_custom(
&self,
login_type: &str,
data: JsonObject,
) -> serde_json::Result<LoginBuilder> {
LoginBuilder::new_custom(self.clone(), login_type, data)
}
/// Log into the server with a token.
///
/// This token is usually received in the SSO flow after following the URL
/// provided by [`get_sso_login_url`], note that this is not the access
/// token of a session.
///
/// This should only be used for the first login.
///
/// The [`restore_session`] method should be used to restore a logged-in
/// client after the first login.
///
/// A device ID should be provided through [`LoginBuilder::device_id`] to
/// restore the correct stores, if the device ID isn't provided a new
/// device will be created.
///
/// # Arguments
///
/// * `token` - A login token.
///
/// # Examples
///
/// ```no_run
/// use matrix_sdk::Client;
/// # use url::Url;
/// # let homeserver = Url::parse("https://example.com").unwrap();
/// # let redirect_url = "http://localhost:1234";
/// # let login_token = "token";
/// # async {
/// let client = Client::new(homeserver).await.unwrap();
/// let auth = client.matrix_auth();
/// let sso_url = auth.get_sso_login_url(redirect_url, None);
///
/// // Let the user authenticate at the SSO URL.
/// // Receive the loginToken param at the redirect_url.
///
/// let response = auth
/// .login_token(login_token)
/// .initial_device_display_name("My app")
/// .await
/// .unwrap();
///
/// println!(
/// "Logged in as {}, got device_id {} and access_token {}",
/// response.user_id, response.device_id, response.access_token,
/// );
/// # };
/// ```
///
/// [`get_sso_login_url`]: #method.get_sso_login_url
/// [`restore_session`]: #method.restore_session
pub fn login_token(&self, token: &str) -> LoginBuilder {
LoginBuilder::new_token(self.clone(), token.to_owned())
}
/// A higher level wrapper around the methods to complete an SSO login after
/// the user has logged in through a webview. This method should be used
/// in tandem with [`MatrixAuth::get_sso_login_url`].
///
/// # Arguments
///
/// * `callback_url` - The received callback URL carrying the login token.
///
/// # Examples
///
/// ```no_run
/// use matrix_sdk::Client;
/// # use url::Url;
/// # let homeserver = Url::parse("https://example.com").unwrap();
/// # let redirect_url = "http://localhost:1234";
/// # let callback_url = Url::parse("http://localhost:1234?loginToken=token").unwrap();
/// # async {
/// let client = Client::new(homeserver).await.unwrap();
/// let auth = client.matrix_auth();
/// let sso_url = auth.get_sso_login_url(redirect_url, None);
///
/// // Let the user authenticate at the SSO URL.
/// // Receive the callback_url.
///
/// let response = auth
/// .login_with_sso_callback(callback_url)
/// .unwrap()
/// .initial_device_display_name("My app")
/// .await
/// .unwrap();
///
/// println!(
/// "Logged in as {}, got device_id {} and access_token {}",
/// response.user_id, response.device_id, response.access_token,
/// );
/// # };
/// ```
pub fn login_with_sso_callback(&self, callback_url: Url) -> Result<LoginBuilder, SsoError> {
#[derive(Deserialize)]
struct QueryParameters {
#[serde(rename = "loginToken")]
login_token: Option<String>,
}
let query_string = callback_url.query().unwrap_or_default();
let query: QueryParameters =
serde_html_form::from_str(query_string).map_err(|_| SsoError::CallbackUrlInvalid)?;
let token = query.login_token.ok_or(SsoError::CallbackUrlInvalid)?;
Ok(self.login_token(token.as_str()))
}
/// Log into the server via Single Sign-On.
///
/// This takes care of the whole SSO flow:
/// * Spawn a local http server
/// * Provide a callback to open the SSO login URL in a web browser
/// * Wait for the local http server to get the loginToken
/// * Call [`login_token`]
///
/// If cancellation is needed the method should be wrapped in a cancellable
/// task. **Note** that users with root access to the system have the
/// ability to snoop in on the data/token that is passed to the local
/// HTTP server that will be spawned.
///
/// If you need more control over the SSO login process, you should use
/// [`get_sso_login_url`] and [`login_token`] directly.
///
/// This should only be used for the first login.
///
/// The [`restore_session`] method should be used to restore a logged-in
/// client after the first login.
///
/// # Arguments
///
/// * `use_sso_login_url` - A callback that will receive the SSO Login URL.
/// It should usually be used to open the SSO URL in a browser and must
/// return `Ok(())` if the URL was successfully opened. If it returns
/// `Err`, the error will be forwarded.
///
/// # Examples
///
/// ```no_run
/// use matrix_sdk::Client;
/// # use url::Url;
/// # let homeserver = Url::parse("https://example.com").unwrap();
/// # async {
/// let client = Client::new(homeserver).await.unwrap();
///
/// let response = client
/// .matrix_auth()
/// .login_sso(|sso_url| async move {
/// // Open sso_url
/// Ok(())
/// })
/// .initial_device_display_name("My app")
/// .await
/// .unwrap();
///
/// println!(
/// "Logged in as {}, got device_id {} and access_token {}",
/// response.user_id, response.device_id, response.access_token
/// );
/// # };
/// ```
///
/// [`get_sso_login_url`]: #method.get_sso_login_url
/// [`login_token`]: #method.login_token
/// [`restore_session`]: #method.restore_session
#[cfg(feature = "sso-login")]
pub fn login_sso<F, Fut>(&self, use_sso_login_url: F) -> SsoLoginBuilder<F>
where
F: FnOnce(String) -> Fut + Send,
Fut: Future<Output = Result<()>> + Send,
{
SsoLoginBuilder::new(self.clone(), use_sso_login_url)
}
/// Is the client logged in using the native Matrix authentication API.
pub fn logged_in(&self) -> bool {
self.session_tokens().is_some()
}
/// Refresh the access token.
///
/// When support for [refreshing access tokens] is activated on both the
/// homeserver and the client, access tokens have an expiration date and
/// need to be refreshed periodically. To activate support for refresh
/// tokens in the [`Client`], it needs to be done at login with the
/// [`LoginBuilder::request_refresh_token()`] method, or during account
/// registration.
///
/// This method doesn't need to be called if
/// [`ClientBuilder::handle_refresh_tokens()`] is called during construction
/// of the `Client`. Otherwise, it should be called once when a refresh
/// token is available and an [`UnknownToken`] error is received.
/// If this call fails with another [`UnknownToken`] error, it means that
/// the session needs to be logged in again.
///
/// It can also be called at any time when a refresh token is available, it
/// will invalidate the previous access token.
///
/// The new tokens in the response will be used by the `Client` and should
/// be persisted to be able to [restore the session]. The response will
/// always contain an access token that replaces the previous one. It
/// can also contain a refresh token, in which case it will also replace
/// the previous one.
///
/// This method is protected behind a lock, so calling this method several
/// times at once will only call the endpoint once and all subsequent calls
/// will wait for the result of the first call. The first call will
/// return `Ok(Some(response))` or the [`HttpError`] returned by the
/// endpoint, while the others will return `Ok(None)` if the token was
/// refreshed by the first call or a [`RefreshTokenError`] error, if it
/// failed.
///
/// # Examples
///
/// ```no_run
/// use matrix_sdk::{Client, Error};
/// use url::Url;
/// # async {
/// # fn get_credentials() -> (&'static str, &'static str) { ("", "") };
/// # fn persist_session(_: Option<matrix_sdk::AuthSession>) {};
///
/// let homeserver = Url::parse("http://example.com")?;
/// let client = Client::new(homeserver).await?;
///
/// let (user, password) = get_credentials();
/// let response = client
/// .matrix_auth()
/// .login_username(user, password)
/// .initial_device_display_name("My App")
/// .request_refresh_token()
/// .send()
/// .await?;
///
/// persist_session(client.session());
///
/// // Handle when an `M_UNKNOWN_TOKEN` error is encountered.
/// async fn on_unknown_token_err(client: &Client) -> Result<(), Error> {
/// let auth = client.matrix_auth();
///
/// if auth.refresh_token().is_some()
/// && auth.refresh_access_token().await.is_ok()
/// {
/// persist_session(client.session());
/// return Ok(());
/// }
///
/// let (user, password) = get_credentials();
/// auth.login_username(user, password)
/// .request_refresh_token()
/// .send()
/// .await?;
///
/// persist_session(client.session());
///
/// Ok(())
/// }
/// # anyhow::Ok(()) };
/// ```
///
/// [refreshing access tokens]: https://spec.matrix.org/v1.3/client-server-api/#refreshing-access-tokens
/// [`UnknownToken`]: ruma::api::client::error::ErrorKind::UnknownToken
/// [restore the session]: Client::restore_session
/// [`ClientBuilder::handle_refresh_tokens()`]: crate::ClientBuilder::handle_refresh_tokens
pub async fn refresh_access_token(&self) -> Result<(), RefreshTokenError> {
macro_rules! fail {
($lock:expr, $err:expr) => {
let error = $err;
*$lock = Err(error.clone());
return Err(error);
};
}
let refresh_token_lock = &self.client.inner.auth_ctx.refresh_token_lock;
let Ok(mut guard) = refresh_token_lock.try_lock() else {
// Somebody else is also doing a token refresh; wait for it to finish first.
return refresh_token_lock.lock().await.clone();
};
let Some(mut session_tokens) = self.session_tokens() else {
fail!(guard, RefreshTokenError::RefreshTokenRequired);
};
let Some(refresh_token) = session_tokens.refresh_token.clone() else {
fail!(guard, RefreshTokenError::RefreshTokenRequired);
};
let request = refresh_token::v3::Request::new(refresh_token);
let res = self.client.send_inner(request, None, None, Default::default()).await;
match res {
Ok(res) => {
*guard = Ok(());
session_tokens.access_token = res.access_token;
if let Some(refresh_token) = res.refresh_token {
session_tokens.refresh_token = Some(refresh_token);
}
self.set_session_tokens(session_tokens);
if let Some(save_session_callback) =
self.client.inner.auth_ctx.save_session_callback.get()
{
if let Err(err) = save_session_callback(self.client.clone()) {
error!("when saving session after refresh: {err}");
}
}
_ = self
.client
.inner
.auth_ctx
.session_change_sender
.send(SessionChange::TokensRefreshed);
Ok(())
}
Err(error) => {
let error = RefreshTokenError::MatrixAuth(error.into());
fail!(guard, error);
}
}
}
/// Register a user to the server.
///
/// If registration was successful and a session token was returned by the
/// server, the client session is set (the client is logged in).
///
/// # Arguments
///
/// * `registration` - The easiest way to create this request is using the
/// [`register::v3::Request`] itself.
///
/// # Examples
///
/// ```no_run
/// use matrix_sdk::{
/// ruma::api::client::{
/// account::register::v3::Request as RegistrationRequest, uiaa,
/// },
/// Client,
/// };
/// # use url::Url;
/// # let homeserver = Url::parse("http://example.com").unwrap();
/// # async {
///
/// let mut request = RegistrationRequest::new();
/// request.username = Some("user".to_owned());
/// request.password = Some("password".to_owned());
/// request.auth = Some(uiaa::AuthData::FallbackAcknowledgement(
/// uiaa::FallbackAcknowledgement::new("foobar".to_owned()),
/// ));
///
/// let client = Client::new(homeserver).await.unwrap();
/// client.matrix_auth().register(request).await;
/// # };
/// ```
#[instrument(skip_all)]
pub async fn register(&self, request: register::v3::Request) -> Result<register::v3::Response> {
let homeserver = self.client.homeserver();
info!("Registering to {homeserver}");
#[cfg(feature = "e2e-encryption")]
let login_info = match (&request.username, &request.password) {
(Some(u), Some(p)) => Some(login::v3::LoginInfo::Password(login::v3::Password::new(
UserIdentifier::UserIdOrLocalpart(u.into()),
p.clone(),
))),
_ => None,
};
let response = self.client.send(request, None).await?;
if let Some(session) = MatrixSession::from_register_response(&response) {
let _ = self
.set_session(
session,
#[cfg(feature = "e2e-encryption")]
login_info,
)
.await;
}
Ok(response)
}
/// Log out the current user.
pub async fn logout(&self) -> HttpResult<logout::v3::Response> {
let request = logout::v3::Request::new();
self.client.send(request, None).await
}
/// Get the current access token and optional refresh token for this
/// session.
///
/// Will be `None` if the client has not been logged in with the native
/// Matrix Authentication API.
///
/// After login, the tokens should only change if support for [refreshing
/// access tokens] has been enabled.
///
/// [refreshing access tokens]: https://spec.matrix.org/v1.3/client-server-api/#refreshing-access-tokens
pub fn session_tokens(&self) -> Option<MatrixSessionTokens> {
Some(self.data()?.tokens.get())
}
/// Set the current session tokens
pub(crate) fn set_session_tokens(&self, tokens: MatrixSessionTokens) {
if let Some(auth_data) = self.client.inner.auth_ctx.auth_data.get() {
let Some(data) = auth_data.as_matrix() else {
panic!("Cannot call native Matrix authentication API after logging in with another API");
};
data.tokens.set_if_not_eq(tokens);
} else {
self.client
.inner
.auth_ctx
.auth_data
.set(AuthData::Matrix(MatrixAuthData { tokens: SharedObservable::new(tokens) }))
.expect("We just checked the value was not set");
}
}
/// Get the current access token for this session.
///
/// Will be `None` if the client has not been logged in with the native
/// Matrix Authentication API.
///
/// After login, this token should only change if support for [refreshing
/// access tokens] has been enabled.
///
/// [refreshing access tokens]: https://spec.matrix.org/v1.3/client-server-api/#refreshing-access-tokens
pub fn access_token(&self) -> Option<String> {
self.session_tokens().map(|tokens| tokens.access_token)
}
/// Get the current refresh token for this session.
///
/// Will be `None` if the client has not been logged in with the native
/// Matrix Authentication API, or if the access token doesn't expire.
///
/// After login, this token should only change if support for [refreshing
/// access tokens] has been enabled.
///
/// [refreshing access tokens]: https://spec.matrix.org/v1.3/client-server-api/#refreshing-access-tokens
pub fn refresh_token(&self) -> Option<String> {
self.session_tokens().and_then(|tokens| tokens.refresh_token)
}
/// [`Stream`] to get notified when the current access token and optional
/// refresh token for this session change.
///
/// This can be used with [`MatrixAuth::session()`] to persist the
/// [`MatrixSession`] when the tokens change.
///
/// After login, the tokens should only change if support for [refreshing
/// access tokens] has been enabled.
///
/// # Examples
///
/// ```no_run
/// # fn persist_session(_: Option<matrix_sdk::AuthSession>) {};
/// # async {
/// use futures_util::StreamExt;
/// use matrix_sdk::Client;
///
/// let homeserver = "http://example.com";
/// let client = Client::builder()
/// .homeserver_url(homeserver)
/// .handle_refresh_tokens()
/// .build()
/// .await?;
/// let auth = client.matrix_auth();
///
/// let response = auth
/// .login_username("user", "wordpass")
/// .initial_device_display_name("My App")
/// .request_refresh_token()
/// .send()
/// .await?;
///
/// persist_session(client.session());
///
/// // Handle when at least one of the tokens changed.
/// let future = auth
/// .session_tokens_changed_stream()
/// .expect("Client should be logged in")
/// .for_each(move |_| {
/// let client = client.clone();
/// async move {
/// persist_session(client.session());
/// }
/// });
///
/// tokio::spawn(future);
/// # anyhow::Ok(()) };
/// ```
///
/// [refreshing access tokens]: https://spec.matrix.org/v1.3/client-server-api/#refreshing-access-tokens
pub fn session_tokens_changed_stream(&self) -> Option<impl Stream<Item = ()>> {
Some(self.session_tokens_stream()?.map(|_| ()))
}
/// Get changes to the access token and optional refresh token for this
/// session as a [`Stream`].
///
/// Will be `None` if the client has not been logged in.
///
/// After login, the tokens should only change if support for [refreshing
/// access tokens] has been enabled.
///
/// # Examples
///
/// ```no_run
/// use futures_util::StreamExt;
/// use matrix_sdk::Client;
/// # fn persist_session(_: &matrix_sdk::matrix_auth::MatrixSession) {};
/// # async {
/// let homeserver = "http://example.com";
/// let client = Client::builder()
/// .homeserver_url(homeserver)
/// .handle_refresh_tokens()
/// .build()
/// .await?;
/// let auth = client.matrix_auth();
///
/// auth.login_username("user", "wordpass")
/// .initial_device_display_name("My App")
/// .request_refresh_token()
/// .send()
/// .await?;
///
/// let mut session = auth.session().expect("Client should be logged in");
/// persist_session(&session);
///
/// // Handle when at least one of the tokens changed.
/// let mut tokens_stream =
/// auth.session_tokens_stream().expect("Client should be logged in");
/// loop {
/// if let Some(tokens) = tokens_stream.next().await {
/// session.tokens.access_token = tokens.access_token;
///
/// if let Some(refresh_token) = tokens.refresh_token {
/// session.tokens.refresh_token = Some(refresh_token);
/// }
///
/// persist_session(&session);
/// }
/// }
/// # anyhow::Ok(()) };
/// ```
///
/// [refreshing access tokens]: https://spec.matrix.org/v1.3/client-server-api/#refreshing-access-tokens
pub fn session_tokens_stream(&self) -> Option<impl Stream<Item = MatrixSessionTokens>> {
Some(self.data()?.tokens.subscribe())
}
/// Get the whole native Matrix authentication session info of this client.
///
/// Will be `None` if the client has not been logged in with the native
/// Matrix Authentication API.
///
/// Can be used with [`MatrixAuth::restore_session`] to restore a previously
/// logged-in session.
pub fn session(&self) -> Option<MatrixSession> {
let meta = self.client.session_meta()?;
let tokens = self.session_tokens()?;
Some(MatrixSession { meta: meta.to_owned(), tokens })
}
/// Restore a previously logged in session.
///
/// This can be used to restore the client to a logged in state, loading all
/// the stored state and encryption keys.
///
/// Alternatively, if the whole session isn't stored the [`login`] method
/// can be used with a device ID.
///
/// # Arguments
///
/// * `session` - A session that the user already has from a
/// previous login call.
///
/// # Panics
///
/// Panics if a session was already restored or logged in.
///
/// # Examples
///
/// ```no_run
/// use matrix_sdk::{
/// matrix_auth::{MatrixSession, MatrixSessionTokens},
/// ruma::{device_id, user_id},
/// Client, SessionMeta,
/// };
/// # use url::Url;
/// # async {
///
/// let homeserver = Url::parse("http://example.com")?;
/// let client = Client::new(homeserver).await?;
///
/// let session = MatrixSession {
/// meta: SessionMeta {
/// user_id: user_id!("@example:localhost").to_owned(),
/// device_id: device_id!("MYDEVICEID").to_owned(),
/// },
/// tokens: MatrixSessionTokens {
/// access_token: "My-Token".to_owned(),
/// refresh_token: None,
/// },
/// };
///
/// client.restore_session(session).await?;
/// # anyhow::Ok(()) };
/// ```
///
/// The `MatrixSession` object can also be created from the response the
/// [`LoginBuilder::send()`] method returns:
///
/// ```no_run
/// use matrix_sdk::Client;
/// use url::Url;
/// # async {
///
/// let homeserver = Url::parse("http://example.com")?;
/// let client = Client::new(homeserver).await?;
/// let auth = client.matrix_auth();
///
/// let response = auth.login_username("example", "my-password").send().await?;
///
/// // Persist the `MatrixSession` so it can later be used to restore the login.
///
/// auth.restore_session((&response).into()).await?;
/// # anyhow::Ok(()) };
/// ```
///
/// [`login`]: #method.login
/// [`LoginBuilder::send()`]: crate::matrix_auth::LoginBuilder::send
#[instrument(skip_all)]
pub async fn restore_session(&self, session: MatrixSession) -> Result<()> {
debug!("Restoring Matrix auth session");
self.set_session(
session,
#[cfg(feature = "e2e-encryption")]
None,
)
.await?;
debug!("Done restoring Matrix auth session");
Ok(())
}
/// Receive a login response and update the homeserver and the base client
/// if needed.
///
/// # Arguments
///
/// * `response` - A successful login response.
pub(crate) async fn receive_login_response(
&self,
response: &login::v3::Response,
#[cfg(feature = "e2e-encryption")] login_info: Option<login::v3::LoginInfo>,
) -> Result<()> {
self.client.maybe_update_login_well_known(response.well_known.as_ref());
self.set_session(
response.into(),
#[cfg(feature = "e2e-encryption")]
login_info,
)
.await?;
Ok(())
}
async fn set_session(
&self,
session: MatrixSession,
#[cfg(feature = "e2e-encryption")] login_info: Option<login::v3::LoginInfo>,
) -> Result<()> {
self.set_session_tokens(session.tokens);
self.client
.set_session_meta(
session.meta,
#[cfg(feature = "e2e-encryption")]
None,
)
.await?;
#[cfg(feature = "e2e-encryption")]
{
use ruma::api::client::uiaa::{AuthData, Password};
let auth_data = match login_info {
Some(login::v3::LoginInfo::Password(login::v3::Password {
identifier: Some(identifier),
password,
..
})) => Some(AuthData::Password(Password::new(identifier, password))),
// Other methods can't be immediately translated to an auth.
_ => None,
};
self.client.encryption().spawn_initialization_task(auth_data);
}
Ok(())
}
}
/// A user session using the native Matrix authentication API.
///
/// # Examples
///
/// ```
/// use matrix_sdk::{
/// matrix_auth::{MatrixSession, MatrixSessionTokens},
/// SessionMeta,
/// };
/// use ruma::{device_id, user_id};
///
/// let session = MatrixSession {
/// meta: SessionMeta {
/// user_id: user_id!("@example:localhost").to_owned(),
/// device_id: device_id!("MYDEVICEID").to_owned(),
/// },
/// tokens: MatrixSessionTokens {
/// access_token: "My-Token".to_owned(),
/// refresh_token: None,
/// },
/// };
///
/// assert_eq!(session.meta.device_id.as_str(), "MYDEVICEID");
/// ```
#[derive(Clone, Eq, Hash, PartialEq, Serialize, Deserialize)]
pub struct MatrixSession {
/// The Matrix user session info.
#[serde(flatten)]
pub meta: SessionMeta,
/// The tokens used for authentication.
#[serde(flatten)]
pub tokens: MatrixSessionTokens,
}
#[cfg(not(tarpaulin_include))]
impl fmt::Debug for MatrixSession {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("MatrixSession").field("meta", &self.meta).finish_non_exhaustive()
}
}
impl From<&login::v3::Response> for MatrixSession {
fn from(response: &login::v3::Response) -> Self {
let login::v3::Response { user_id, access_token, device_id, refresh_token, .. } = response;
Self {
meta: SessionMeta { user_id: user_id.clone(), device_id: device_id.clone() },
tokens: MatrixSessionTokens {
access_token: access_token.clone(),
refresh_token: refresh_token.clone(),
},
}
}
}
impl MatrixSession {
#[allow(clippy::question_mark)] // clippy falsely complains about the let-unpacking
fn from_register_response(response: ®ister::v3::Response) -> Option<Self> {
let register::v3::Response { user_id, access_token, device_id, refresh_token, .. } =
response;
Some(Self {
meta: SessionMeta { user_id: user_id.clone(), device_id: device_id.clone()? },
tokens: MatrixSessionTokens {
access_token: access_token.clone()?,
refresh_token: refresh_token.clone(),
},
})
}
}
/// The tokens for a user session obtained with the native Matrix authentication
/// API.
#[derive(Clone, Eq, Hash, PartialEq, Serialize, Deserialize)]
#[allow(missing_debug_implementations)]
pub struct MatrixSessionTokens {
/// The access token used for this session.
pub access_token: String,
/// The token used for [refreshing the access token], if any.
///
/// [refreshing the access token]: https://spec.matrix.org/v1.3/client-server-api/#refreshing-access-tokens
#[serde(skip_serializing_if = "Option::is_none")]
pub refresh_token: Option<String>,
}