2018-12-18 01:53:21 +01:00
|
|
|
mod admin;
|
2020-05-03 17:24:51 +02:00
|
|
|
pub mod core;
|
2018-02-10 01:00:55 +01:00
|
|
|
mod icons;
|
|
|
|
|
mod identity;
|
2018-08-24 19:02:34 +02:00
|
|
|
mod notifications;
|
2023-06-11 13:28:18 +02:00
|
|
|
mod push;
|
2018-12-30 23:34:31 +01:00
|
|
|
mod web;
|
2018-02-10 01:00:55 +01:00
|
|
|
|
2021-11-07 18:53:39 +01:00
|
|
|
use rocket::serde::json::Json;
|
2018-10-10 20:40:39 +02:00
|
|
|
use serde_json::Value;
|
2018-02-17 20:47:13 +01:00
|
|
|
|
2020-07-14 18:00:09 +02:00
|
|
|
pub use crate::api::{
|
2022-11-27 00:00:01 +01:00
|
|
|
admin::catchers as admin_catchers,
|
2020-07-14 18:00:09 +02:00
|
|
|
admin::routes as admin_routes,
|
2022-09-25 10:55:55 +02:00
|
|
|
core::catchers as core_catchers,
|
2023-08-04 21:12:23 +02:00
|
|
|
core::purge_auth_requests,
|
2021-04-02 20:16:49 -07:00
|
|
|
core::purge_sends,
|
2021-04-02 20:52:15 -07:00
|
|
|
core::purge_trashed_ciphers,
|
2020-07-14 18:00:09 +02:00
|
|
|
core::routes as core_routes,
|
2021-10-25 01:36:05 -07:00
|
|
|
core::two_factor::send_incomplete_2fa_notifications,
|
2021-03-24 20:15:55 +01:00
|
|
|
core::{emergency_notification_reminder_job, emergency_request_timeout_job},
|
2022-11-20 19:15:45 +01:00
|
|
|
core::{event_cleanup_job, events_routes as core_events_routes},
|
2024-07-12 22:33:11 +02:00
|
|
|
icons::routes as icons_routes,
|
2020-07-14 18:00:09 +02:00
|
|
|
identity::routes as identity_routes,
|
|
|
|
|
notifications::routes as notifications_routes,
|
2024-03-17 19:52:55 +01:00
|
|
|
notifications::{AnonymousNotify, Notify, UpdateType, WS_ANONYMOUS_SUBSCRIPTIONS, WS_USERS},
|
2023-06-11 13:28:18 +02:00
|
|
|
push::{
|
|
|
|
|
push_cipher_update, push_folder_update, push_logout, push_send_update, push_user_update, register_push_device,
|
|
|
|
|
unregister_push_device,
|
|
|
|
|
},
|
2022-09-25 04:02:16 +02:00
|
|
|
web::catchers as web_catchers,
|
2020-07-14 18:00:09 +02:00
|
|
|
web::routes as web_routes,
|
2022-10-06 11:59:47 +02:00
|
|
|
web::static_files,
|
2020-07-14 18:00:09 +02:00
|
|
|
};
|
2025-06-02 19:47:12 +00:00
|
|
|
use crate::db::{
|
|
|
|
|
models::{OrgPolicy, OrgPolicyType, User},
|
|
|
|
|
DbConn,
|
|
|
|
|
};
|
2025-08-08 23:22:22 +02:00
|
|
|
use crate::CONFIG;
|
2020-07-14 18:00:09 +02:00
|
|
|
|
2018-02-23 00:38:54 +01:00
|
|
|
// Type aliases for API methods results
|
2025-08-08 23:22:22 +02:00
|
|
|
pub type ApiResult<T> = Result<T, crate::error::Error>;
|
2018-12-19 21:52:53 +01:00
|
|
|
pub type JsonResult = ApiResult<Json<Value>>;
|
|
|
|
|
pub type EmptyResult = ApiResult<()>;
|
2018-02-23 00:38:54 +01:00
|
|
|
|
|
|
|
|
// Common structs representing JSON data received
|
|
|
|
|
#[derive(Deserialize)]
|
2024-06-23 21:31:02 +02:00
|
|
|
#[serde(rename_all = "camelCase")]
|
2023-11-12 22:15:44 +01:00
|
|
|
struct PasswordOrOtpData {
|
2024-06-23 21:31:02 +02:00
|
|
|
master_password_hash: Option<String>,
|
|
|
|
|
otp: Option<String>,
|
2023-11-12 22:15:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl PasswordOrOtpData {
|
|
|
|
|
/// Tokens used via this struct can be used multiple times during the process
|
|
|
|
|
/// First for the validation to continue, after that to enable or validate the following actions
|
|
|
|
|
/// This is different per caller, so it can be adjusted to delete the token or not
|
|
|
|
|
pub async fn validate(&self, user: &User, delete_if_valid: bool, conn: &mut DbConn) -> EmptyResult {
|
|
|
|
|
use crate::api::core::two_factor::protected_actions::validate_protected_action_otp;
|
|
|
|
|
|
2024-06-23 21:31:02 +02:00
|
|
|
match (self.master_password_hash.as_deref(), self.otp.as_deref()) {
|
2023-11-12 22:15:44 +01:00
|
|
|
(Some(pw_hash), None) => {
|
|
|
|
|
if !user.check_valid_password(pw_hash) {
|
|
|
|
|
err!("Invalid password");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
(None, Some(otp)) => {
|
|
|
|
|
validate_protected_action_otp(otp, &user.uuid, delete_if_valid, conn).await?;
|
|
|
|
|
}
|
|
|
|
|
_ => err!("No validation provided"),
|
|
|
|
|
}
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
2018-02-23 00:38:54 +01:00
|
|
|
}
|
2025-06-02 19:47:12 +00:00
|
|
|
|
|
|
|
|
#[derive(Debug, Default, Deserialize, Serialize)]
|
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
|
pub struct MasterPasswordPolicy {
|
|
|
|
|
min_complexity: Option<u8>,
|
|
|
|
|
min_length: Option<u32>,
|
|
|
|
|
require_lower: bool,
|
|
|
|
|
require_upper: bool,
|
|
|
|
|
require_numbers: bool,
|
|
|
|
|
require_special: bool,
|
|
|
|
|
enforce_on_login: bool,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Fetch all valid Master Password Policies and merge them into one with all trues and largest numbers as one policy
|
|
|
|
|
async fn master_password_policy(user: &User, conn: &DbConn) -> Value {
|
|
|
|
|
let master_password_policies: Vec<MasterPasswordPolicy> =
|
|
|
|
|
OrgPolicy::find_accepted_and_confirmed_by_user_and_active_policy(
|
|
|
|
|
&user.uuid,
|
|
|
|
|
OrgPolicyType::MasterPassword,
|
|
|
|
|
conn,
|
|
|
|
|
)
|
|
|
|
|
.await
|
|
|
|
|
.into_iter()
|
|
|
|
|
.filter_map(|p| serde_json::from_str(&p.data).ok())
|
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
|
|
let mut mpp_json = if !master_password_policies.is_empty() {
|
|
|
|
|
json!(master_password_policies.into_iter().reduce(|acc, policy| {
|
|
|
|
|
MasterPasswordPolicy {
|
|
|
|
|
min_complexity: acc.min_complexity.max(policy.min_complexity),
|
|
|
|
|
min_length: acc.min_length.max(policy.min_length),
|
|
|
|
|
require_lower: acc.require_lower || policy.require_lower,
|
|
|
|
|
require_upper: acc.require_upper || policy.require_upper,
|
|
|
|
|
require_numbers: acc.require_numbers || policy.require_numbers,
|
|
|
|
|
require_special: acc.require_special || policy.require_special,
|
|
|
|
|
enforce_on_login: acc.enforce_on_login || policy.enforce_on_login,
|
|
|
|
|
}
|
|
|
|
|
}))
|
2025-08-08 23:22:22 +02:00
|
|
|
} else if let Some(policy_str) = CONFIG.sso_master_password_policy().filter(|_| CONFIG.sso_enabled()) {
|
|
|
|
|
serde_json::from_str(&policy_str).unwrap_or(json!({}))
|
2025-06-02 19:47:12 +00:00
|
|
|
} else {
|
|
|
|
|
json!({})
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// NOTE: Upstream still uses PascalCase here for `Object`!
|
|
|
|
|
mpp_json["Object"] = json!("masterPasswordPolicy");
|
|
|
|
|
mpp_json
|
|
|
|
|
}
|