2021-03-24 20:15:55 +01:00
|
|
|
use chrono::{Duration, Utc};
|
2021-11-07 18:53:39 +01:00
|
|
|
use rocket::serde::json::Json;
|
Added web-vault v2.21.x support + some misc fixes
- The new web-vault v2.21.0+ has support for Master Password Reset. For
this to work it generates a public/private key-pair which needs to be
stored in the database. Currently the Master Password Reset is not
fixed, but there are endpoints which are needed even if we do not
support this feature (yet). This PR fixes those endpoints, and stores
the keys already in the database.
- There was an issue when you want to do a key-rotate when you change
your password, it also called an Emergency Access endpoint, which we do
not yet support. Because this endpoint failed to reply correctly
produced some errors, and also prevent the user from being forced to
logout. This resolves #1826 by adding at least that endpoint.
Because of that extra endpoint check to Emergency Access is done using
an old user stamp, i also modified the stamp exception to allow multiple
rocket routes to be called, and added an expiration timestamp to it.
During these tests i stumbled upon an issue that after my key-change was
done, it triggered the websockets to try and reload my ciphers, because
they were updated. This shouldn't happen when rotating they keys, since
all access should be invalided. Now there will be no websocket
notification for this, which also prevents error toasts.
- Increased Send Size limit to 500MB (with a litle overhead)
As a side note, i tested these changes on both v2.20.4 and v2.21.1 web-vault versions, all keeps working.
2021-07-04 23:02:56 +02:00
|
|
|
use rocket::Route;
|
2021-03-24 20:15:55 +01:00
|
|
|
use serde_json::Value;
|
|
|
|
use std::borrow::Borrow;
|
Added web-vault v2.21.x support + some misc fixes
- The new web-vault v2.21.0+ has support for Master Password Reset. For
this to work it generates a public/private key-pair which needs to be
stored in the database. Currently the Master Password Reset is not
fixed, but there are endpoints which are needed even if we do not
support this feature (yet). This PR fixes those endpoints, and stores
the keys already in the database.
- There was an issue when you want to do a key-rotate when you change
your password, it also called an Emergency Access endpoint, which we do
not yet support. Because this endpoint failed to reply correctly
produced some errors, and also prevent the user from being forced to
logout. This resolves #1826 by adding at least that endpoint.
Because of that extra endpoint check to Emergency Access is done using
an old user stamp, i also modified the stamp exception to allow multiple
rocket routes to be called, and added an expiration timestamp to it.
During these tests i stumbled upon an issue that after my key-change was
done, it triggered the websockets to try and reload my ciphers, because
they were updated. This shouldn't happen when rotating they keys, since
all access should be invalided. Now there will be no websocket
notification for this, which also prevents error toasts.
- Increased Send Size limit to 500MB (with a litle overhead)
As a side note, i tested these changes on both v2.20.4 and v2.21.1 web-vault versions, all keeps working.
2021-07-04 23:02:56 +02:00
|
|
|
|
2021-03-24 20:15:55 +01:00
|
|
|
use crate::{
|
2022-06-21 17:36:07 +02:00
|
|
|
api::{
|
|
|
|
core::{CipherSyncData, CipherSyncType},
|
|
|
|
EmptyResult, JsonResult, JsonUpcase, NumberOrString,
|
|
|
|
},
|
2021-03-24 20:15:55 +01:00
|
|
|
auth::{decode_emergency_access_invite, Headers},
|
|
|
|
db::{models::*, DbConn, DbPool},
|
|
|
|
mail, CONFIG,
|
|
|
|
};
|
Added web-vault v2.21.x support + some misc fixes
- The new web-vault v2.21.0+ has support for Master Password Reset. For
this to work it generates a public/private key-pair which needs to be
stored in the database. Currently the Master Password Reset is not
fixed, but there are endpoints which are needed even if we do not
support this feature (yet). This PR fixes those endpoints, and stores
the keys already in the database.
- There was an issue when you want to do a key-rotate when you change
your password, it also called an Emergency Access endpoint, which we do
not yet support. Because this endpoint failed to reply correctly
produced some errors, and also prevent the user from being forced to
logout. This resolves #1826 by adding at least that endpoint.
Because of that extra endpoint check to Emergency Access is done using
an old user stamp, i also modified the stamp exception to allow multiple
rocket routes to be called, and added an expiration timestamp to it.
During these tests i stumbled upon an issue that after my key-change was
done, it triggered the websockets to try and reload my ciphers, because
they were updated. This shouldn't happen when rotating they keys, since
all access should be invalided. Now there will be no websocket
notification for this, which also prevents error toasts.
- Increased Send Size limit to 500MB (with a litle overhead)
As a side note, i tested these changes on both v2.20.4 and v2.21.1 web-vault versions, all keeps working.
2021-07-04 23:02:56 +02:00
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
use futures::{stream, stream::StreamExt};
|
|
|
|
|
Added web-vault v2.21.x support + some misc fixes
- The new web-vault v2.21.0+ has support for Master Password Reset. For
this to work it generates a public/private key-pair which needs to be
stored in the database. Currently the Master Password Reset is not
fixed, but there are endpoints which are needed even if we do not
support this feature (yet). This PR fixes those endpoints, and stores
the keys already in the database.
- There was an issue when you want to do a key-rotate when you change
your password, it also called an Emergency Access endpoint, which we do
not yet support. Because this endpoint failed to reply correctly
produced some errors, and also prevent the user from being forced to
logout. This resolves #1826 by adding at least that endpoint.
Because of that extra endpoint check to Emergency Access is done using
an old user stamp, i also modified the stamp exception to allow multiple
rocket routes to be called, and added an expiration timestamp to it.
During these tests i stumbled upon an issue that after my key-change was
done, it triggered the websockets to try and reload my ciphers, because
they were updated. This shouldn't happen when rotating they keys, since
all access should be invalided. Now there will be no websocket
notification for this, which also prevents error toasts.
- Increased Send Size limit to 500MB (with a litle overhead)
As a side note, i tested these changes on both v2.20.4 and v2.21.1 web-vault versions, all keeps working.
2021-07-04 23:02:56 +02:00
|
|
|
pub fn routes() -> Vec<Route> {
|
2021-03-24 20:15:55 +01:00
|
|
|
routes![
|
|
|
|
get_contacts,
|
|
|
|
get_grantees,
|
|
|
|
get_emergency_access,
|
|
|
|
put_emergency_access,
|
|
|
|
delete_emergency_access,
|
|
|
|
post_delete_emergency_access,
|
|
|
|
send_invite,
|
|
|
|
resend_invite,
|
|
|
|
accept_invite,
|
|
|
|
confirm_emergency_access,
|
|
|
|
initiate_emergency_access,
|
|
|
|
approve_emergency_access,
|
|
|
|
reject_emergency_access,
|
|
|
|
takeover_emergency_access,
|
|
|
|
password_emergency_access,
|
|
|
|
view_emergency_access,
|
|
|
|
policies_emergency_access,
|
|
|
|
]
|
Added web-vault v2.21.x support + some misc fixes
- The new web-vault v2.21.0+ has support for Master Password Reset. For
this to work it generates a public/private key-pair which needs to be
stored in the database. Currently the Master Password Reset is not
fixed, but there are endpoints which are needed even if we do not
support this feature (yet). This PR fixes those endpoints, and stores
the keys already in the database.
- There was an issue when you want to do a key-rotate when you change
your password, it also called an Emergency Access endpoint, which we do
not yet support. Because this endpoint failed to reply correctly
produced some errors, and also prevent the user from being forced to
logout. This resolves #1826 by adding at least that endpoint.
Because of that extra endpoint check to Emergency Access is done using
an old user stamp, i also modified the stamp exception to allow multiple
rocket routes to be called, and added an expiration timestamp to it.
During these tests i stumbled upon an issue that after my key-change was
done, it triggered the websockets to try and reload my ciphers, because
they were updated. This shouldn't happen when rotating they keys, since
all access should be invalided. Now there will be no websocket
notification for this, which also prevents error toasts.
- Increased Send Size limit to 500MB (with a litle overhead)
As a side note, i tested these changes on both v2.20.4 and v2.21.1 web-vault versions, all keeps working.
2021-07-04 23:02:56 +02:00
|
|
|
}
|
|
|
|
|
2021-03-24 20:15:55 +01:00
|
|
|
// region get
|
|
|
|
|
Added web-vault v2.21.x support + some misc fixes
- The new web-vault v2.21.0+ has support for Master Password Reset. For
this to work it generates a public/private key-pair which needs to be
stored in the database. Currently the Master Password Reset is not
fixed, but there are endpoints which are needed even if we do not
support this feature (yet). This PR fixes those endpoints, and stores
the keys already in the database.
- There was an issue when you want to do a key-rotate when you change
your password, it also called an Emergency Access endpoint, which we do
not yet support. Because this endpoint failed to reply correctly
produced some errors, and also prevent the user from being forced to
logout. This resolves #1826 by adding at least that endpoint.
Because of that extra endpoint check to Emergency Access is done using
an old user stamp, i also modified the stamp exception to allow multiple
rocket routes to be called, and added an expiration timestamp to it.
During these tests i stumbled upon an issue that after my key-change was
done, it triggered the websockets to try and reload my ciphers, because
they were updated. This shouldn't happen when rotating they keys, since
all access should be invalided. Now there will be no websocket
notification for this, which also prevents error toasts.
- Increased Send Size limit to 500MB (with a litle overhead)
As a side note, i tested these changes on both v2.20.4 and v2.21.1 web-vault versions, all keeps working.
2021-07-04 23:02:56 +02:00
|
|
|
#[get("/emergency-access/trusted")]
|
2021-11-16 17:07:55 +01:00
|
|
|
async fn get_contacts(headers: Headers, conn: DbConn) -> JsonResult {
|
2021-03-24 20:15:55 +01:00
|
|
|
check_emergency_access_allowed()?;
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
let emergency_access_list_json =
|
|
|
|
stream::iter(EmergencyAccess::find_all_by_grantor_uuid(&headers.user.uuid, &conn).await)
|
|
|
|
.then(|e| async {
|
|
|
|
let e = e; // Move out this single variable
|
|
|
|
e.to_json_grantee_details(&conn).await
|
|
|
|
})
|
|
|
|
.collect::<Vec<Value>>()
|
|
|
|
.await;
|
2021-03-24 20:15:55 +01:00
|
|
|
|
|
|
|
Ok(Json(json!({
|
|
|
|
"Data": emergency_access_list_json,
|
|
|
|
"Object": "list",
|
|
|
|
"ContinuationToken": null
|
|
|
|
})))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[get("/emergency-access/granted")]
|
2021-11-16 17:07:55 +01:00
|
|
|
async fn get_grantees(headers: Headers, conn: DbConn) -> JsonResult {
|
2021-03-24 20:15:55 +01:00
|
|
|
check_emergency_access_allowed()?;
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
let emergency_access_list_json =
|
|
|
|
stream::iter(EmergencyAccess::find_all_by_grantee_uuid(&headers.user.uuid, &conn).await)
|
|
|
|
.then(|e| async {
|
|
|
|
let e = e; // Move out this single variable
|
|
|
|
e.to_json_grantor_details(&conn).await
|
|
|
|
})
|
|
|
|
.collect::<Vec<Value>>()
|
|
|
|
.await;
|
Added web-vault v2.21.x support + some misc fixes
- The new web-vault v2.21.0+ has support for Master Password Reset. For
this to work it generates a public/private key-pair which needs to be
stored in the database. Currently the Master Password Reset is not
fixed, but there are endpoints which are needed even if we do not
support this feature (yet). This PR fixes those endpoints, and stores
the keys already in the database.
- There was an issue when you want to do a key-rotate when you change
your password, it also called an Emergency Access endpoint, which we do
not yet support. Because this endpoint failed to reply correctly
produced some errors, and also prevent the user from being forced to
logout. This resolves #1826 by adding at least that endpoint.
Because of that extra endpoint check to Emergency Access is done using
an old user stamp, i also modified the stamp exception to allow multiple
rocket routes to be called, and added an expiration timestamp to it.
During these tests i stumbled upon an issue that after my key-change was
done, it triggered the websockets to try and reload my ciphers, because
they were updated. This shouldn't happen when rotating they keys, since
all access should be invalided. Now there will be no websocket
notification for this, which also prevents error toasts.
- Increased Send Size limit to 500MB (with a litle overhead)
As a side note, i tested these changes on both v2.20.4 and v2.21.1 web-vault versions, all keeps working.
2021-07-04 23:02:56 +02:00
|
|
|
|
|
|
|
Ok(Json(json!({
|
2021-03-24 20:15:55 +01:00
|
|
|
"Data": emergency_access_list_json,
|
Added web-vault v2.21.x support + some misc fixes
- The new web-vault v2.21.0+ has support for Master Password Reset. For
this to work it generates a public/private key-pair which needs to be
stored in the database. Currently the Master Password Reset is not
fixed, but there are endpoints which are needed even if we do not
support this feature (yet). This PR fixes those endpoints, and stores
the keys already in the database.
- There was an issue when you want to do a key-rotate when you change
your password, it also called an Emergency Access endpoint, which we do
not yet support. Because this endpoint failed to reply correctly
produced some errors, and also prevent the user from being forced to
logout. This resolves #1826 by adding at least that endpoint.
Because of that extra endpoint check to Emergency Access is done using
an old user stamp, i also modified the stamp exception to allow multiple
rocket routes to be called, and added an expiration timestamp to it.
During these tests i stumbled upon an issue that after my key-change was
done, it triggered the websockets to try and reload my ciphers, because
they were updated. This shouldn't happen when rotating they keys, since
all access should be invalided. Now there will be no websocket
notification for this, which also prevents error toasts.
- Increased Send Size limit to 500MB (with a litle overhead)
As a side note, i tested these changes on both v2.20.4 and v2.21.1 web-vault versions, all keeps working.
2021-07-04 23:02:56 +02:00
|
|
|
"Object": "list",
|
|
|
|
"ContinuationToken": null
|
|
|
|
})))
|
|
|
|
}
|
2021-03-24 20:15:55 +01:00
|
|
|
|
|
|
|
#[get("/emergency-access/<emer_id>")]
|
2021-11-16 17:07:55 +01:00
|
|
|
async fn get_emergency_access(emer_id: String, conn: DbConn) -> JsonResult {
|
2021-03-24 20:15:55 +01:00
|
|
|
check_emergency_access_allowed()?;
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
match EmergencyAccess::find_by_uuid(&emer_id, &conn).await {
|
|
|
|
Some(emergency_access) => Ok(Json(emergency_access.to_json_grantee_details(&conn).await)),
|
2021-03-24 20:15:55 +01:00
|
|
|
None => err!("Emergency access not valid."),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// endregion
|
|
|
|
|
|
|
|
// region put/post
|
|
|
|
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct EmergencyAccessUpdateData {
|
|
|
|
Type: NumberOrString,
|
|
|
|
WaitTimeDays: i32,
|
|
|
|
KeyEncrypted: Option<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[put("/emergency-access/<emer_id>", data = "<data>")]
|
2021-11-16 17:07:55 +01:00
|
|
|
async fn put_emergency_access(
|
|
|
|
emer_id: String,
|
|
|
|
data: JsonUpcase<EmergencyAccessUpdateData>,
|
|
|
|
conn: DbConn,
|
|
|
|
) -> JsonResult {
|
|
|
|
post_emergency_access(emer_id, data, conn).await
|
2021-03-24 20:15:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/emergency-access/<emer_id>", data = "<data>")]
|
2021-11-16 17:07:55 +01:00
|
|
|
async fn post_emergency_access(
|
|
|
|
emer_id: String,
|
|
|
|
data: JsonUpcase<EmergencyAccessUpdateData>,
|
|
|
|
conn: DbConn,
|
|
|
|
) -> JsonResult {
|
2021-03-24 20:15:55 +01:00
|
|
|
check_emergency_access_allowed()?;
|
|
|
|
|
|
|
|
let data: EmergencyAccessUpdateData = data.into_inner().data;
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
let mut emergency_access = match EmergencyAccess::find_by_uuid(&emer_id, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(emergency_access) => emergency_access,
|
|
|
|
None => err!("Emergency access not valid."),
|
|
|
|
};
|
|
|
|
|
|
|
|
let new_type = match EmergencyAccessType::from_str(&data.Type.into_string()) {
|
|
|
|
Some(new_type) => new_type as i32,
|
|
|
|
None => err!("Invalid emergency access type."),
|
|
|
|
};
|
|
|
|
|
|
|
|
emergency_access.atype = new_type;
|
|
|
|
emergency_access.wait_time_days = data.WaitTimeDays;
|
|
|
|
emergency_access.key_encrypted = data.KeyEncrypted;
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
emergency_access.save(&conn).await?;
|
2021-03-24 20:15:55 +01:00
|
|
|
Ok(Json(emergency_access.to_json()))
|
|
|
|
}
|
|
|
|
|
|
|
|
// endregion
|
|
|
|
|
|
|
|
// region delete
|
|
|
|
|
|
|
|
#[delete("/emergency-access/<emer_id>")]
|
2021-11-16 17:07:55 +01:00
|
|
|
async fn delete_emergency_access(emer_id: String, headers: Headers, conn: DbConn) -> EmptyResult {
|
2021-03-24 20:15:55 +01:00
|
|
|
check_emergency_access_allowed()?;
|
|
|
|
|
|
|
|
let grantor_user = headers.user;
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
let emergency_access = match EmergencyAccess::find_by_uuid(&emer_id, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(emer) => {
|
|
|
|
if emer.grantor_uuid != grantor_user.uuid && emer.grantee_uuid != Some(grantor_user.uuid) {
|
|
|
|
err!("Emergency access not valid.")
|
|
|
|
}
|
|
|
|
emer
|
|
|
|
}
|
|
|
|
None => err!("Emergency access not valid."),
|
|
|
|
};
|
2021-11-16 17:07:55 +01:00
|
|
|
emergency_access.delete(&conn).await?;
|
2021-03-24 20:15:55 +01:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/emergency-access/<emer_id>/delete")]
|
2021-11-16 17:07:55 +01:00
|
|
|
async fn post_delete_emergency_access(emer_id: String, headers: Headers, conn: DbConn) -> EmptyResult {
|
|
|
|
delete_emergency_access(emer_id, headers, conn).await
|
2021-03-24 20:15:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// endregion
|
|
|
|
|
|
|
|
// region invite
|
|
|
|
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct EmergencyAccessInviteData {
|
|
|
|
Email: String,
|
|
|
|
Type: NumberOrString,
|
|
|
|
WaitTimeDays: i32,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/emergency-access/invite", data = "<data>")]
|
2021-11-16 17:07:55 +01:00
|
|
|
async fn send_invite(data: JsonUpcase<EmergencyAccessInviteData>, headers: Headers, conn: DbConn) -> EmptyResult {
|
2021-03-24 20:15:55 +01:00
|
|
|
check_emergency_access_allowed()?;
|
|
|
|
|
|
|
|
let data: EmergencyAccessInviteData = data.into_inner().data;
|
|
|
|
let email = data.Email.to_lowercase();
|
|
|
|
let wait_time_days = data.WaitTimeDays;
|
|
|
|
|
|
|
|
let emergency_access_status = EmergencyAccessStatus::Invited as i32;
|
|
|
|
|
|
|
|
let new_type = match EmergencyAccessType::from_str(&data.Type.into_string()) {
|
|
|
|
Some(new_type) => new_type as i32,
|
|
|
|
None => err!("Invalid emergency access type."),
|
|
|
|
};
|
|
|
|
|
|
|
|
let grantor_user = headers.user;
|
|
|
|
|
|
|
|
// avoid setting yourself as emergency contact
|
|
|
|
if email == grantor_user.email {
|
|
|
|
err!("You can not set yourself as an emergency contact.")
|
|
|
|
}
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
let grantee_user = match User::find_by_mail(&email, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
None => {
|
2021-12-31 11:53:21 +01:00
|
|
|
if !CONFIG.invitations_allowed() {
|
2021-03-24 20:15:55 +01:00
|
|
|
err!(format!("Grantee user does not exist: {}", email))
|
|
|
|
}
|
|
|
|
|
|
|
|
if !CONFIG.is_email_domain_allowed(&email) {
|
|
|
|
err!("Email domain not eligible for invitations")
|
|
|
|
}
|
|
|
|
|
|
|
|
if !CONFIG.mail_enabled() {
|
|
|
|
let invitation = Invitation::new(email.clone());
|
2021-11-16 17:07:55 +01:00
|
|
|
invitation.save(&conn).await?;
|
2021-03-24 20:15:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut user = User::new(email.clone());
|
2021-11-16 17:07:55 +01:00
|
|
|
user.save(&conn).await?;
|
2021-03-24 20:15:55 +01:00
|
|
|
user
|
|
|
|
}
|
|
|
|
Some(user) => user,
|
|
|
|
};
|
|
|
|
|
|
|
|
if EmergencyAccess::find_by_grantor_uuid_and_grantee_uuid_or_email(
|
|
|
|
&grantor_user.uuid,
|
|
|
|
&grantee_user.uuid,
|
|
|
|
&grantee_user.email,
|
|
|
|
&conn,
|
|
|
|
)
|
2021-11-16 17:07:55 +01:00
|
|
|
.await
|
2021-03-24 20:15:55 +01:00
|
|
|
.is_some()
|
|
|
|
{
|
|
|
|
err!(format!("Grantee user already invited: {}", email))
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut new_emergency_access = EmergencyAccess::new(
|
|
|
|
grantor_user.uuid.clone(),
|
|
|
|
Some(grantee_user.email.clone()),
|
|
|
|
emergency_access_status,
|
|
|
|
new_type,
|
|
|
|
wait_time_days,
|
|
|
|
);
|
2021-11-16 17:07:55 +01:00
|
|
|
new_emergency_access.save(&conn).await?;
|
2021-03-24 20:15:55 +01:00
|
|
|
|
|
|
|
if CONFIG.mail_enabled() {
|
|
|
|
mail::send_emergency_access_invite(
|
|
|
|
&grantee_user.email,
|
|
|
|
&grantee_user.uuid,
|
|
|
|
Some(new_emergency_access.uuid),
|
|
|
|
Some(grantor_user.name.clone()),
|
|
|
|
Some(grantor_user.email),
|
|
|
|
)?;
|
|
|
|
} else {
|
|
|
|
// Automatically mark user as accepted if no email invites
|
2021-11-16 17:07:55 +01:00
|
|
|
match User::find_by_mail(&email, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(user) => {
|
2021-11-16 17:07:55 +01:00
|
|
|
match accept_invite_process(user.uuid, new_emergency_access.uuid, Some(email), conn.borrow()).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Ok(v) => (v),
|
|
|
|
Err(e) => err!(e.to_string()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => err!("Grantee user not found."),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/emergency-access/<emer_id>/reinvite")]
|
2021-11-16 17:07:55 +01:00
|
|
|
async fn resend_invite(emer_id: String, headers: Headers, conn: DbConn) -> EmptyResult {
|
2021-03-24 20:15:55 +01:00
|
|
|
check_emergency_access_allowed()?;
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
let emergency_access = match EmergencyAccess::find_by_uuid(&emer_id, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(emer) => emer,
|
|
|
|
None => err!("Emergency access not valid."),
|
|
|
|
};
|
|
|
|
|
|
|
|
if emergency_access.grantor_uuid != headers.user.uuid {
|
|
|
|
err!("Emergency access not valid.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if emergency_access.status != EmergencyAccessStatus::Invited as i32 {
|
|
|
|
err!("The grantee user is already accepted or confirmed to the organization");
|
|
|
|
}
|
|
|
|
|
|
|
|
let email = match emergency_access.email.clone() {
|
|
|
|
Some(email) => email,
|
|
|
|
None => err!("Email not valid."),
|
|
|
|
};
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
let grantee_user = match User::find_by_mail(&email, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(user) => user,
|
2021-09-01 12:54:47 +02:00
|
|
|
None => err!("Grantee user not found."),
|
2021-03-24 20:15:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
let grantor_user = headers.user;
|
|
|
|
|
|
|
|
if CONFIG.mail_enabled() {
|
|
|
|
mail::send_emergency_access_invite(
|
|
|
|
&email,
|
|
|
|
&grantor_user.uuid,
|
|
|
|
Some(emergency_access.uuid),
|
|
|
|
Some(grantor_user.name.clone()),
|
|
|
|
Some(grantor_user.email),
|
|
|
|
)?;
|
|
|
|
} else {
|
2021-11-16 17:07:55 +01:00
|
|
|
if Invitation::find_by_mail(&email, &conn).await.is_none() {
|
2021-03-24 20:15:55 +01:00
|
|
|
let invitation = Invitation::new(email);
|
2021-11-16 17:07:55 +01:00
|
|
|
invitation.save(&conn).await?;
|
2021-03-24 20:15:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Automatically mark user as accepted if no email invites
|
2021-11-16 17:07:55 +01:00
|
|
|
match accept_invite_process(grantee_user.uuid, emergency_access.uuid, emergency_access.email, conn.borrow())
|
|
|
|
.await
|
|
|
|
{
|
2021-03-24 20:15:55 +01:00
|
|
|
Ok(v) => (v),
|
|
|
|
Err(e) => err!(e.to_string()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct AcceptData {
|
|
|
|
Token: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/emergency-access/<emer_id>/accept", data = "<data>")]
|
2021-11-16 17:07:55 +01:00
|
|
|
async fn accept_invite(emer_id: String, data: JsonUpcase<AcceptData>, conn: DbConn) -> EmptyResult {
|
2021-03-24 20:15:55 +01:00
|
|
|
check_emergency_access_allowed()?;
|
|
|
|
|
|
|
|
let data: AcceptData = data.into_inner().data;
|
|
|
|
let token = &data.Token;
|
|
|
|
let claims = decode_emergency_access_invite(token)?;
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
let grantee_user = match User::find_by_mail(&claims.email, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(user) => {
|
2021-11-16 17:07:55 +01:00
|
|
|
Invitation::take(&claims.email, &conn).await;
|
2021-03-24 20:15:55 +01:00
|
|
|
user
|
|
|
|
}
|
|
|
|
None => err!("Invited user not found"),
|
|
|
|
};
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
let emergency_access = match EmergencyAccess::find_by_uuid(&emer_id, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(emer) => emer,
|
|
|
|
None => err!("Emergency access not valid."),
|
|
|
|
};
|
|
|
|
|
|
|
|
// get grantor user to send Accepted email
|
2021-11-16 17:07:55 +01:00
|
|
|
let grantor_user = match User::find_by_uuid(&emergency_access.grantor_uuid, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(user) => user,
|
|
|
|
None => err!("Grantor user not found."),
|
|
|
|
};
|
|
|
|
|
|
|
|
if (claims.emer_id.is_some() && emer_id == claims.emer_id.unwrap())
|
|
|
|
&& (claims.grantor_name.is_some() && grantor_user.name == claims.grantor_name.unwrap())
|
|
|
|
&& (claims.grantor_email.is_some() && grantor_user.email == claims.grantor_email.unwrap())
|
|
|
|
{
|
2021-11-16 17:07:55 +01:00
|
|
|
match accept_invite_process(grantee_user.uuid.clone(), emer_id, Some(grantee_user.email.clone()), &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Ok(v) => (v),
|
|
|
|
Err(e) => err!(e.to_string()),
|
|
|
|
}
|
|
|
|
|
|
|
|
if CONFIG.mail_enabled() {
|
|
|
|
mail::send_emergency_access_invite_accepted(&grantor_user.email, &grantee_user.email)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
err!("Emergency access invitation error.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
async fn accept_invite_process(
|
|
|
|
grantee_uuid: String,
|
|
|
|
emer_id: String,
|
|
|
|
email: Option<String>,
|
|
|
|
conn: &DbConn,
|
|
|
|
) -> EmptyResult {
|
|
|
|
let mut emergency_access = match EmergencyAccess::find_by_uuid(&emer_id, conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(emer) => emer,
|
|
|
|
None => err!("Emergency access not valid."),
|
|
|
|
};
|
|
|
|
|
|
|
|
let emer_email = emergency_access.email;
|
|
|
|
if emer_email.is_none() || emer_email != email {
|
|
|
|
err!("User email does not match invite.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if emergency_access.status == EmergencyAccessStatus::Accepted as i32 {
|
|
|
|
err!("Emergency contact already accepted.");
|
|
|
|
}
|
|
|
|
|
|
|
|
emergency_access.status = EmergencyAccessStatus::Accepted as i32;
|
|
|
|
emergency_access.grantee_uuid = Some(grantee_uuid);
|
|
|
|
emergency_access.email = None;
|
2021-11-16 17:07:55 +01:00
|
|
|
emergency_access.save(conn).await
|
2021-03-24 20:15:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct ConfirmData {
|
|
|
|
Key: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/emergency-access/<emer_id>/confirm", data = "<data>")]
|
2021-11-16 17:07:55 +01:00
|
|
|
async fn confirm_emergency_access(
|
2021-03-24 20:15:55 +01:00
|
|
|
emer_id: String,
|
|
|
|
data: JsonUpcase<ConfirmData>,
|
|
|
|
headers: Headers,
|
|
|
|
conn: DbConn,
|
|
|
|
) -> JsonResult {
|
|
|
|
check_emergency_access_allowed()?;
|
|
|
|
|
|
|
|
let confirming_user = headers.user;
|
|
|
|
let data: ConfirmData = data.into_inner().data;
|
|
|
|
let key = data.Key;
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
let mut emergency_access = match EmergencyAccess::find_by_uuid(&emer_id, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(emer) => emer,
|
|
|
|
None => err!("Emergency access not valid."),
|
|
|
|
};
|
|
|
|
|
|
|
|
if emergency_access.status != EmergencyAccessStatus::Accepted as i32
|
|
|
|
|| emergency_access.grantor_uuid != confirming_user.uuid
|
|
|
|
{
|
|
|
|
err!("Emergency access not valid.")
|
|
|
|
}
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
let grantor_user = match User::find_by_uuid(&confirming_user.uuid, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(user) => user,
|
|
|
|
None => err!("Grantor user not found."),
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(grantee_uuid) = emergency_access.grantee_uuid.as_ref() {
|
2021-11-16 17:07:55 +01:00
|
|
|
let grantee_user = match User::find_by_uuid(grantee_uuid, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(user) => user,
|
|
|
|
None => err!("Grantee user not found."),
|
|
|
|
};
|
|
|
|
|
|
|
|
emergency_access.status = EmergencyAccessStatus::Confirmed as i32;
|
|
|
|
emergency_access.key_encrypted = Some(key);
|
|
|
|
emergency_access.email = None;
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
emergency_access.save(&conn).await?;
|
2021-03-24 20:15:55 +01:00
|
|
|
|
|
|
|
if CONFIG.mail_enabled() {
|
|
|
|
mail::send_emergency_access_invite_confirmed(&grantee_user.email, &grantor_user.name)?;
|
|
|
|
}
|
|
|
|
Ok(Json(emergency_access.to_json()))
|
|
|
|
} else {
|
|
|
|
err!("Grantee user not found.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// endregion
|
|
|
|
|
|
|
|
// region access emergency access
|
|
|
|
|
|
|
|
#[post("/emergency-access/<emer_id>/initiate")]
|
2021-11-16 17:07:55 +01:00
|
|
|
async fn initiate_emergency_access(emer_id: String, headers: Headers, conn: DbConn) -> JsonResult {
|
2021-03-24 20:15:55 +01:00
|
|
|
check_emergency_access_allowed()?;
|
|
|
|
|
|
|
|
let initiating_user = headers.user;
|
2021-11-16 17:07:55 +01:00
|
|
|
let mut emergency_access = match EmergencyAccess::find_by_uuid(&emer_id, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(emer) => emer,
|
|
|
|
None => err!("Emergency access not valid."),
|
|
|
|
};
|
|
|
|
|
|
|
|
if emergency_access.status != EmergencyAccessStatus::Confirmed as i32
|
|
|
|
|| emergency_access.grantee_uuid != Some(initiating_user.uuid.clone())
|
|
|
|
{
|
|
|
|
err!("Emergency access not valid.")
|
|
|
|
}
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
let grantor_user = match User::find_by_uuid(&emergency_access.grantor_uuid, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(user) => user,
|
|
|
|
None => err!("Grantor user not found."),
|
|
|
|
};
|
|
|
|
|
|
|
|
let now = Utc::now().naive_utc();
|
|
|
|
emergency_access.status = EmergencyAccessStatus::RecoveryInitiated as i32;
|
|
|
|
emergency_access.updated_at = now;
|
|
|
|
emergency_access.recovery_initiated_at = Some(now);
|
|
|
|
emergency_access.last_notification_at = Some(now);
|
2021-11-16 17:07:55 +01:00
|
|
|
emergency_access.save(&conn).await?;
|
2021-03-24 20:15:55 +01:00
|
|
|
|
|
|
|
if CONFIG.mail_enabled() {
|
|
|
|
mail::send_emergency_access_recovery_initiated(
|
|
|
|
&grantor_user.email,
|
|
|
|
&initiating_user.name,
|
2021-10-19 10:27:50 +02:00
|
|
|
emergency_access.get_type_as_str(),
|
2021-03-24 20:15:55 +01:00
|
|
|
&emergency_access.wait_time_days.clone().to_string(),
|
|
|
|
)?;
|
|
|
|
}
|
|
|
|
Ok(Json(emergency_access.to_json()))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/emergency-access/<emer_id>/approve")]
|
2021-11-16 17:07:55 +01:00
|
|
|
async fn approve_emergency_access(emer_id: String, headers: Headers, conn: DbConn) -> JsonResult {
|
2021-03-24 20:15:55 +01:00
|
|
|
check_emergency_access_allowed()?;
|
|
|
|
|
|
|
|
let approving_user = headers.user;
|
2021-11-16 17:07:55 +01:00
|
|
|
let mut emergency_access = match EmergencyAccess::find_by_uuid(&emer_id, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(emer) => emer,
|
|
|
|
None => err!("Emergency access not valid."),
|
|
|
|
};
|
|
|
|
|
|
|
|
if emergency_access.status != EmergencyAccessStatus::RecoveryInitiated as i32
|
|
|
|
|| emergency_access.grantor_uuid != approving_user.uuid
|
|
|
|
{
|
|
|
|
err!("Emergency access not valid.")
|
|
|
|
}
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
let grantor_user = match User::find_by_uuid(&approving_user.uuid, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(user) => user,
|
|
|
|
None => err!("Grantor user not found."),
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(grantee_uuid) = emergency_access.grantee_uuid.as_ref() {
|
2021-11-16 17:07:55 +01:00
|
|
|
let grantee_user = match User::find_by_uuid(grantee_uuid, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(user) => user,
|
|
|
|
None => err!("Grantee user not found."),
|
|
|
|
};
|
|
|
|
|
|
|
|
emergency_access.status = EmergencyAccessStatus::RecoveryApproved as i32;
|
2021-11-16 17:07:55 +01:00
|
|
|
emergency_access.save(&conn).await?;
|
2021-03-24 20:15:55 +01:00
|
|
|
|
|
|
|
if CONFIG.mail_enabled() {
|
|
|
|
mail::send_emergency_access_recovery_approved(&grantee_user.email, &grantor_user.name)?;
|
|
|
|
}
|
|
|
|
Ok(Json(emergency_access.to_json()))
|
|
|
|
} else {
|
|
|
|
err!("Grantee user not found.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/emergency-access/<emer_id>/reject")]
|
2021-11-16 17:07:55 +01:00
|
|
|
async fn reject_emergency_access(emer_id: String, headers: Headers, conn: DbConn) -> JsonResult {
|
2021-03-24 20:15:55 +01:00
|
|
|
check_emergency_access_allowed()?;
|
|
|
|
|
|
|
|
let rejecting_user = headers.user;
|
2021-11-16 17:07:55 +01:00
|
|
|
let mut emergency_access = match EmergencyAccess::find_by_uuid(&emer_id, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(emer) => emer,
|
|
|
|
None => err!("Emergency access not valid."),
|
|
|
|
};
|
|
|
|
|
|
|
|
if (emergency_access.status != EmergencyAccessStatus::RecoveryInitiated as i32
|
|
|
|
&& emergency_access.status != EmergencyAccessStatus::RecoveryApproved as i32)
|
|
|
|
|| emergency_access.grantor_uuid != rejecting_user.uuid
|
|
|
|
{
|
|
|
|
err!("Emergency access not valid.")
|
|
|
|
}
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
let grantor_user = match User::find_by_uuid(&rejecting_user.uuid, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(user) => user,
|
|
|
|
None => err!("Grantor user not found."),
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(grantee_uuid) = emergency_access.grantee_uuid.as_ref() {
|
2021-11-16 17:07:55 +01:00
|
|
|
let grantee_user = match User::find_by_uuid(grantee_uuid, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(user) => user,
|
|
|
|
None => err!("Grantee user not found."),
|
|
|
|
};
|
|
|
|
|
|
|
|
emergency_access.status = EmergencyAccessStatus::Confirmed as i32;
|
2021-11-16 17:07:55 +01:00
|
|
|
emergency_access.save(&conn).await?;
|
2021-03-24 20:15:55 +01:00
|
|
|
|
|
|
|
if CONFIG.mail_enabled() {
|
|
|
|
mail::send_emergency_access_recovery_rejected(&grantee_user.email, &grantor_user.name)?;
|
|
|
|
}
|
|
|
|
Ok(Json(emergency_access.to_json()))
|
|
|
|
} else {
|
|
|
|
err!("Grantee user not found.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// endregion
|
|
|
|
|
|
|
|
// region action
|
|
|
|
|
|
|
|
#[post("/emergency-access/<emer_id>/view")]
|
2021-11-16 17:07:55 +01:00
|
|
|
async fn view_emergency_access(emer_id: String, headers: Headers, conn: DbConn) -> JsonResult {
|
2021-03-24 20:15:55 +01:00
|
|
|
check_emergency_access_allowed()?;
|
|
|
|
|
|
|
|
let requesting_user = headers.user;
|
|
|
|
let host = headers.host;
|
2021-11-16 17:07:55 +01:00
|
|
|
let emergency_access = match EmergencyAccess::find_by_uuid(&emer_id, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(emer) => emer,
|
|
|
|
None => err!("Emergency access not valid."),
|
|
|
|
};
|
|
|
|
|
|
|
|
if !is_valid_request(&emergency_access, requesting_user.uuid, EmergencyAccessType::View) {
|
|
|
|
err!("Emergency access not valid.")
|
|
|
|
}
|
|
|
|
|
2022-05-04 21:13:05 +02:00
|
|
|
let ciphers = Cipher::find_owned_by_user(&emergency_access.grantor_uuid, &conn).await;
|
2022-06-21 17:36:07 +02:00
|
|
|
let cipher_sync_data =
|
|
|
|
CipherSyncData::new(&emergency_access.grantor_uuid, &ciphers, CipherSyncType::User, &conn).await;
|
2022-05-04 21:13:05 +02:00
|
|
|
|
|
|
|
let ciphers_json = stream::iter(ciphers)
|
2021-11-16 17:07:55 +01:00
|
|
|
.then(|c| async {
|
|
|
|
let c = c; // Move out this single variable
|
2022-05-04 21:13:05 +02:00
|
|
|
c.to_json(&host, &emergency_access.grantor_uuid, Some(&cipher_sync_data), &conn).await
|
2021-11-16 17:07:55 +01:00
|
|
|
})
|
|
|
|
.collect::<Vec<Value>>()
|
|
|
|
.await;
|
2021-03-24 20:15:55 +01:00
|
|
|
|
|
|
|
Ok(Json(json!({
|
|
|
|
"Ciphers": ciphers_json,
|
|
|
|
"KeyEncrypted": &emergency_access.key_encrypted,
|
|
|
|
"Object": "emergencyAccessView",
|
|
|
|
})))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/emergency-access/<emer_id>/takeover")]
|
2021-11-16 17:07:55 +01:00
|
|
|
async fn takeover_emergency_access(emer_id: String, headers: Headers, conn: DbConn) -> JsonResult {
|
2021-03-24 20:15:55 +01:00
|
|
|
check_emergency_access_allowed()?;
|
|
|
|
|
|
|
|
let requesting_user = headers.user;
|
2021-11-16 17:07:55 +01:00
|
|
|
let emergency_access = match EmergencyAccess::find_by_uuid(&emer_id, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(emer) => emer,
|
|
|
|
None => err!("Emergency access not valid."),
|
|
|
|
};
|
|
|
|
|
|
|
|
if !is_valid_request(&emergency_access, requesting_user.uuid, EmergencyAccessType::Takeover) {
|
|
|
|
err!("Emergency access not valid.")
|
|
|
|
}
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
let grantor_user = match User::find_by_uuid(&emergency_access.grantor_uuid, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(user) => user,
|
|
|
|
None => err!("Grantor user not found."),
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(Json(json!({
|
|
|
|
"Kdf": grantor_user.client_kdf_type,
|
|
|
|
"KdfIterations": grantor_user.client_kdf_iter,
|
|
|
|
"KeyEncrypted": &emergency_access.key_encrypted,
|
|
|
|
"Object": "emergencyAccessTakeover",
|
|
|
|
})))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct EmergencyAccessPasswordData {
|
|
|
|
NewMasterPasswordHash: String,
|
|
|
|
Key: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/emergency-access/<emer_id>/password", data = "<data>")]
|
2021-11-16 17:07:55 +01:00
|
|
|
async fn password_emergency_access(
|
2021-03-24 20:15:55 +01:00
|
|
|
emer_id: String,
|
|
|
|
data: JsonUpcase<EmergencyAccessPasswordData>,
|
|
|
|
headers: Headers,
|
|
|
|
conn: DbConn,
|
|
|
|
) -> EmptyResult {
|
|
|
|
check_emergency_access_allowed()?;
|
|
|
|
|
|
|
|
let data: EmergencyAccessPasswordData = data.into_inner().data;
|
|
|
|
let new_master_password_hash = &data.NewMasterPasswordHash;
|
|
|
|
let key = data.Key;
|
|
|
|
|
|
|
|
let requesting_user = headers.user;
|
2021-11-16 17:07:55 +01:00
|
|
|
let emergency_access = match EmergencyAccess::find_by_uuid(&emer_id, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(emer) => emer,
|
|
|
|
None => err!("Emergency access not valid."),
|
|
|
|
};
|
|
|
|
|
|
|
|
if !is_valid_request(&emergency_access, requesting_user.uuid, EmergencyAccessType::Takeover) {
|
|
|
|
err!("Emergency access not valid.")
|
|
|
|
}
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
let mut grantor_user = match User::find_by_uuid(&emergency_access.grantor_uuid, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(user) => user,
|
|
|
|
None => err!("Grantor user not found."),
|
|
|
|
};
|
|
|
|
|
|
|
|
// change grantor_user password
|
|
|
|
grantor_user.set_password(new_master_password_hash, None);
|
|
|
|
grantor_user.akey = key;
|
2021-11-16 17:07:55 +01:00
|
|
|
grantor_user.save(&conn).await?;
|
2021-03-24 20:15:55 +01:00
|
|
|
|
|
|
|
// Disable TwoFactor providers since they will otherwise block logins
|
2021-11-16 17:07:55 +01:00
|
|
|
TwoFactor::delete_all_by_user(&grantor_user.uuid, &conn).await?;
|
2021-03-24 20:15:55 +01:00
|
|
|
|
|
|
|
// Remove grantor from all organisations unless Owner
|
2021-11-16 17:07:55 +01:00
|
|
|
for user_org in UserOrganization::find_any_state_by_user(&grantor_user.uuid, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
if user_org.atype != UserOrgType::Owner as i32 {
|
2021-11-16 17:07:55 +01:00
|
|
|
user_org.delete(&conn).await?;
|
2021-03-24 20:15:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
// endregion
|
|
|
|
|
|
|
|
#[get("/emergency-access/<emer_id>/policies")]
|
2021-11-16 17:07:55 +01:00
|
|
|
async fn policies_emergency_access(emer_id: String, headers: Headers, conn: DbConn) -> JsonResult {
|
2021-03-24 20:15:55 +01:00
|
|
|
let requesting_user = headers.user;
|
2021-11-16 17:07:55 +01:00
|
|
|
let emergency_access = match EmergencyAccess::find_by_uuid(&emer_id, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(emer) => emer,
|
|
|
|
None => err!("Emergency access not valid."),
|
|
|
|
};
|
|
|
|
|
|
|
|
if !is_valid_request(&emergency_access, requesting_user.uuid, EmergencyAccessType::Takeover) {
|
|
|
|
err!("Emergency access not valid.")
|
|
|
|
}
|
|
|
|
|
2021-11-16 17:07:55 +01:00
|
|
|
let grantor_user = match User::find_by_uuid(&emergency_access.grantor_uuid, &conn).await {
|
2021-03-24 20:15:55 +01:00
|
|
|
Some(user) => user,
|
|
|
|
None => err!("Grantor user not found."),
|
|
|
|
};
|
|
|
|
|
2021-09-24 17:55:49 +02:00
|
|
|
let policies = OrgPolicy::find_confirmed_by_user(&grantor_user.uuid, &conn);
|
2021-11-16 17:07:55 +01:00
|
|
|
let policies_json: Vec<Value> = policies.await.iter().map(OrgPolicy::to_json).collect();
|
2021-03-24 20:15:55 +01:00
|
|
|
|
|
|
|
Ok(Json(json!({
|
|
|
|
"Data": policies_json,
|
|
|
|
"Object": "list",
|
|
|
|
"ContinuationToken": null
|
|
|
|
})))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_valid_request(
|
|
|
|
emergency_access: &EmergencyAccess,
|
|
|
|
requesting_user_uuid: String,
|
|
|
|
requested_access_type: EmergencyAccessType,
|
|
|
|
) -> bool {
|
|
|
|
emergency_access.grantee_uuid == Some(requesting_user_uuid)
|
|
|
|
&& emergency_access.status == EmergencyAccessStatus::RecoveryApproved as i32
|
|
|
|
&& emergency_access.atype == requested_access_type as i32
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_emergency_access_allowed() -> EmptyResult {
|
|
|
|
if !CONFIG.emergency_access_allowed() {
|
|
|
|
err!("Emergency access is not allowed.")
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-11-07 18:53:39 +01:00
|
|
|
pub async fn emergency_request_timeout_job(pool: DbPool) {
|
2021-03-24 20:15:55 +01:00
|
|
|
debug!("Start emergency_request_timeout_job");
|
|
|
|
if !CONFIG.emergency_access_allowed() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-11-07 18:53:39 +01:00
|
|
|
if let Ok(conn) = pool.get().await {
|
2021-11-16 17:07:55 +01:00
|
|
|
let emergency_access_list = EmergencyAccess::find_all_recoveries(&conn).await;
|
2021-03-24 20:15:55 +01:00
|
|
|
|
|
|
|
if emergency_access_list.is_empty() {
|
|
|
|
debug!("No emergency request timeout to approve");
|
|
|
|
}
|
|
|
|
|
|
|
|
for mut emer in emergency_access_list {
|
|
|
|
if emer.recovery_initiated_at.is_some()
|
|
|
|
&& Utc::now().naive_utc()
|
|
|
|
>= emer.recovery_initiated_at.unwrap() + Duration::days(emer.wait_time_days as i64)
|
|
|
|
{
|
|
|
|
emer.status = EmergencyAccessStatus::RecoveryApproved as i32;
|
2021-11-16 17:07:55 +01:00
|
|
|
emer.save(&conn).await.expect("Cannot save emergency access on job");
|
2021-03-24 20:15:55 +01:00
|
|
|
|
|
|
|
if CONFIG.mail_enabled() {
|
|
|
|
// get grantor user to send Accepted email
|
2021-11-16 17:07:55 +01:00
|
|
|
let grantor_user =
|
|
|
|
User::find_by_uuid(&emer.grantor_uuid, &conn).await.expect("Grantor user not found.");
|
2021-03-24 20:15:55 +01:00
|
|
|
|
|
|
|
// get grantee user to send Accepted email
|
|
|
|
let grantee_user =
|
|
|
|
User::find_by_uuid(&emer.grantee_uuid.clone().expect("Grantee user invalid."), &conn)
|
2021-11-16 17:07:55 +01:00
|
|
|
.await
|
2021-03-24 20:15:55 +01:00
|
|
|
.expect("Grantee user not found.");
|
|
|
|
|
|
|
|
mail::send_emergency_access_recovery_timed_out(
|
|
|
|
&grantor_user.email,
|
|
|
|
&grantee_user.name.clone(),
|
2021-10-19 10:27:50 +02:00
|
|
|
emer.get_type_as_str(),
|
2021-03-24 20:15:55 +01:00
|
|
|
)
|
|
|
|
.expect("Error on sending email");
|
|
|
|
|
|
|
|
mail::send_emergency_access_recovery_approved(&grantee_user.email, &grantor_user.name.clone())
|
|
|
|
.expect("Error on sending email");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
error!("Failed to get DB connection while searching emergency request timed out")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-07 18:53:39 +01:00
|
|
|
pub async fn emergency_notification_reminder_job(pool: DbPool) {
|
2021-03-24 20:15:55 +01:00
|
|
|
debug!("Start emergency_notification_reminder_job");
|
|
|
|
if !CONFIG.emergency_access_allowed() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-11-07 18:53:39 +01:00
|
|
|
if let Ok(conn) = pool.get().await {
|
2021-11-16 17:07:55 +01:00
|
|
|
let emergency_access_list = EmergencyAccess::find_all_recoveries(&conn).await;
|
2021-03-24 20:15:55 +01:00
|
|
|
|
|
|
|
if emergency_access_list.is_empty() {
|
|
|
|
debug!("No emergency request reminder notification to send");
|
|
|
|
}
|
|
|
|
|
|
|
|
for mut emer in emergency_access_list {
|
|
|
|
if (emer.recovery_initiated_at.is_some()
|
|
|
|
&& Utc::now().naive_utc()
|
|
|
|
>= emer.recovery_initiated_at.unwrap() + Duration::days((emer.wait_time_days as i64) - 1))
|
|
|
|
&& (emer.last_notification_at.is_none()
|
|
|
|
|| (emer.last_notification_at.is_some()
|
|
|
|
&& Utc::now().naive_utc() >= emer.last_notification_at.unwrap() + Duration::days(1)))
|
|
|
|
{
|
2021-11-16 17:07:55 +01:00
|
|
|
emer.save(&conn).await.expect("Cannot save emergency access on job");
|
2021-03-24 20:15:55 +01:00
|
|
|
|
|
|
|
if CONFIG.mail_enabled() {
|
|
|
|
// get grantor user to send Accepted email
|
2021-11-16 17:07:55 +01:00
|
|
|
let grantor_user =
|
|
|
|
User::find_by_uuid(&emer.grantor_uuid, &conn).await.expect("Grantor user not found.");
|
2021-03-24 20:15:55 +01:00
|
|
|
|
|
|
|
// get grantee user to send Accepted email
|
|
|
|
let grantee_user =
|
|
|
|
User::find_by_uuid(&emer.grantee_uuid.clone().expect("Grantee user invalid."), &conn)
|
2021-11-16 17:07:55 +01:00
|
|
|
.await
|
2021-03-24 20:15:55 +01:00
|
|
|
.expect("Grantee user not found.");
|
|
|
|
|
|
|
|
mail::send_emergency_access_recovery_reminder(
|
|
|
|
&grantor_user.email,
|
|
|
|
&grantee_user.name.clone(),
|
2021-10-19 10:27:50 +02:00
|
|
|
emer.get_type_as_str(),
|
|
|
|
&emer.wait_time_days.to_string(), // TODO(jjlin): This should be the number of days left.
|
2021-03-24 20:15:55 +01:00
|
|
|
)
|
|
|
|
.expect("Error on sending email");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
error!("Failed to get DB connection while searching emergency notification reminder")
|
|
|
|
}
|
|
|
|
}
|