mirror of
https://github.com/element-hq/matrix-authentication-service.git
synced 2026-06-07 00:12:11 +00:00
288 lines
8.3 KiB
Rust
288 lines
8.3 KiB
Rust
// Copyright 2024, 2025 New Vector Ltd.
|
|
// Copyright 2021-2024 The Matrix.org Foundation C.I.C.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
// Please see LICENSE files in the repository root for full details.
|
|
|
|
use std::net::IpAddr;
|
|
|
|
use chrono::{DateTime, Utc};
|
|
use rand::Rng;
|
|
use serde::Serialize;
|
|
use ulid::Ulid;
|
|
use url::Url;
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
|
|
pub struct MatrixUser {
|
|
pub mxid: String,
|
|
pub display_name: Option<String>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
|
|
pub struct User {
|
|
pub id: Ulid,
|
|
pub username: String,
|
|
pub sub: String,
|
|
pub created_at: DateTime<Utc>,
|
|
pub locked_at: Option<DateTime<Utc>>,
|
|
pub deactivated_at: Option<DateTime<Utc>>,
|
|
pub can_request_admin: bool,
|
|
pub is_guest: bool,
|
|
}
|
|
|
|
impl User {
|
|
/// Returns `true` unless the user is locked or deactivated.
|
|
#[must_use]
|
|
pub fn is_valid(&self) -> bool {
|
|
self.locked_at.is_none() && self.deactivated_at.is_none()
|
|
}
|
|
|
|
/// Returns `true` if the user is a valid actor, for example
|
|
/// of a personal session.
|
|
///
|
|
/// Currently: this is `true` unless the user is deactivated.
|
|
///
|
|
/// This is a weaker form of validity: `is_valid` always implies
|
|
/// `is_valid_actor`, but some users (currently: locked users)
|
|
/// can be valid actors for personal sessions but aren't valid
|
|
/// except through administrative access.
|
|
#[must_use]
|
|
pub fn is_valid_actor(&self) -> bool {
|
|
self.deactivated_at.is_none()
|
|
}
|
|
}
|
|
|
|
impl User {
|
|
#[doc(hidden)]
|
|
#[must_use]
|
|
pub fn samples(now: chrono::DateTime<Utc>, rng: &mut impl Rng) -> Vec<Self> {
|
|
vec![User {
|
|
id: Ulid::from_datetime_with_source(now.into(), rng),
|
|
username: "john".to_owned(),
|
|
sub: "123-456".to_owned(),
|
|
created_at: now,
|
|
locked_at: None,
|
|
deactivated_at: None,
|
|
can_request_admin: false,
|
|
is_guest: false,
|
|
}]
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
|
|
pub struct Password {
|
|
pub id: Ulid,
|
|
pub hashed_password: String,
|
|
pub version: u16,
|
|
pub upgraded_from_id: Option<Ulid>,
|
|
pub created_at: DateTime<Utc>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
|
|
pub struct Authentication {
|
|
pub id: Ulid,
|
|
pub created_at: DateTime<Utc>,
|
|
pub authentication_method: AuthenticationMethod,
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
|
|
pub enum AuthenticationMethod {
|
|
Password { user_password_id: Ulid },
|
|
UpstreamOAuth2 { upstream_oauth2_session_id: Ulid },
|
|
Unknown,
|
|
}
|
|
|
|
/// A session to recover a user if they have lost their credentials
|
|
///
|
|
/// For each session intiated, there may be multiple [`UserRecoveryTicket`]s
|
|
/// sent to the user, either because multiple [`User`] have the same email
|
|
/// address, or because the user asked to send the recovery email again.
|
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
|
|
pub struct UserRecoverySession {
|
|
pub id: Ulid,
|
|
pub email: String,
|
|
pub user_agent: String,
|
|
pub ip_address: Option<IpAddr>,
|
|
pub locale: String,
|
|
pub created_at: DateTime<Utc>,
|
|
pub consumed_at: Option<DateTime<Utc>>,
|
|
}
|
|
|
|
/// A single recovery ticket for a user recovery session
|
|
///
|
|
/// Whenever a new recovery session is initiated, a new ticket is created for
|
|
/// each email address matching in the database. That ticket is sent by email,
|
|
/// as a link that the user can click to recover their account.
|
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
|
|
pub struct UserRecoveryTicket {
|
|
pub id: Ulid,
|
|
pub user_recovery_session_id: Ulid,
|
|
pub user_email_id: Ulid,
|
|
pub ticket: String,
|
|
pub created_at: DateTime<Utc>,
|
|
pub expires_at: DateTime<Utc>,
|
|
}
|
|
|
|
impl UserRecoveryTicket {
|
|
#[must_use]
|
|
pub fn active(&self, now: DateTime<Utc>) -> bool {
|
|
now < self.expires_at
|
|
}
|
|
}
|
|
|
|
/// A user email authentication session
|
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
|
|
pub struct UserEmailAuthentication {
|
|
pub id: Ulid,
|
|
pub user_session_id: Option<Ulid>,
|
|
pub user_registration_id: Option<Ulid>,
|
|
pub email: String,
|
|
pub created_at: DateTime<Utc>,
|
|
pub completed_at: Option<DateTime<Utc>>,
|
|
}
|
|
|
|
/// A user email authentication code
|
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
|
|
pub struct UserEmailAuthenticationCode {
|
|
pub id: Ulid,
|
|
pub user_email_authentication_id: Ulid,
|
|
pub code: String,
|
|
pub created_at: DateTime<Utc>,
|
|
pub expires_at: DateTime<Utc>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
|
|
pub struct BrowserSession {
|
|
pub id: Ulid,
|
|
pub user: User,
|
|
pub created_at: DateTime<Utc>,
|
|
pub finished_at: Option<DateTime<Utc>>,
|
|
pub user_agent: Option<String>,
|
|
pub last_active_at: Option<DateTime<Utc>>,
|
|
pub last_active_ip: Option<IpAddr>,
|
|
}
|
|
|
|
impl BrowserSession {
|
|
#[must_use]
|
|
pub fn active(&self) -> bool {
|
|
self.finished_at.is_none() && self.user.is_valid()
|
|
}
|
|
}
|
|
|
|
impl BrowserSession {
|
|
#[must_use]
|
|
pub fn samples(now: chrono::DateTime<Utc>, rng: &mut impl Rng) -> Vec<Self> {
|
|
User::samples(now, rng)
|
|
.into_iter()
|
|
.map(|user| BrowserSession {
|
|
id: Ulid::from_datetime_with_source(now.into(), rng),
|
|
user,
|
|
created_at: now,
|
|
finished_at: None,
|
|
user_agent: Some(
|
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.0.0 Safari/537.36".to_owned()
|
|
),
|
|
last_active_at: Some(now),
|
|
last_active_ip: None,
|
|
})
|
|
.collect()
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
|
|
pub struct UserEmail {
|
|
pub id: Ulid,
|
|
pub user_id: Ulid,
|
|
pub email: String,
|
|
pub created_at: DateTime<Utc>,
|
|
}
|
|
|
|
impl UserEmail {
|
|
#[must_use]
|
|
pub fn samples(now: chrono::DateTime<Utc>, rng: &mut impl Rng) -> Vec<Self> {
|
|
vec![
|
|
Self {
|
|
id: Ulid::from_datetime_with_source(now.into(), rng),
|
|
user_id: Ulid::from_datetime_with_source(now.into(), rng),
|
|
email: "alice@example.com".to_owned(),
|
|
created_at: now,
|
|
},
|
|
Self {
|
|
id: Ulid::from_datetime_with_source(now.into(), rng),
|
|
user_id: Ulid::from_datetime_with_source(now.into(), rng),
|
|
email: "bob@example.com".to_owned(),
|
|
created_at: now,
|
|
},
|
|
]
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
|
|
pub struct UserRegistrationPassword {
|
|
pub hashed_password: String,
|
|
pub version: u16,
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
|
|
pub struct UserRegistrationToken {
|
|
pub id: Ulid,
|
|
pub token: String,
|
|
pub usage_limit: Option<u32>,
|
|
pub times_used: u32,
|
|
pub created_at: DateTime<Utc>,
|
|
pub last_used_at: Option<DateTime<Utc>>,
|
|
pub expires_at: Option<DateTime<Utc>>,
|
|
pub revoked_at: Option<DateTime<Utc>>,
|
|
}
|
|
|
|
impl UserRegistrationToken {
|
|
/// Returns `true` if the token is still valid and can be used
|
|
#[must_use]
|
|
pub fn is_valid(&self, now: DateTime<Utc>) -> bool {
|
|
// Check if revoked
|
|
if self.revoked_at.is_some() {
|
|
return false;
|
|
}
|
|
|
|
// Check if expired
|
|
if let Some(expires_at) = self.expires_at
|
|
&& now >= expires_at
|
|
{
|
|
return false;
|
|
}
|
|
|
|
// Check if usage limit exceeded
|
|
if let Some(usage_limit) = self.usage_limit
|
|
&& self.times_used >= usage_limit
|
|
{
|
|
return false;
|
|
}
|
|
|
|
true
|
|
}
|
|
|
|
/// Returns `true` if the token can still be used (not expired and under
|
|
/// usage limit)
|
|
#[must_use]
|
|
pub fn can_be_used(&self, now: DateTime<Utc>) -> bool {
|
|
self.is_valid(now)
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
|
|
pub struct UserRegistration {
|
|
pub id: Ulid,
|
|
pub username: String,
|
|
pub display_name: Option<String>,
|
|
pub terms_url: Option<Url>,
|
|
pub email_authentication_id: Option<Ulid>,
|
|
pub user_registration_token_id: Option<Ulid>,
|
|
pub password: Option<UserRegistrationPassword>,
|
|
pub upstream_oauth_authorization_session_id: Option<Ulid>,
|
|
pub post_auth_action: Option<serde_json::Value>,
|
|
pub ip_address: Option<IpAddr>,
|
|
pub user_agent: Option<String>,
|
|
pub created_at: DateTime<Utc>,
|
|
pub completed_at: Option<DateTime<Utc>>,
|
|
}
|