2018-10-10 18:40:39 +00:00
|
|
|
use rocket_contrib::json::Json;
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-12-07 01:05:45 +00:00
|
|
|
use crate::db::models::*;
|
|
|
|
use crate::db::DbConn;
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-12-30 22:34:31 +00:00
|
|
|
use crate::api::{EmptyResult, JsonResult, JsonUpcase, Notify, NumberOrString, PasswordData, UpdateType};
|
2019-01-19 20:36:34 +00:00
|
|
|
use crate::auth::{decode_invite, Headers};
|
2018-12-07 01:05:45 +00:00
|
|
|
use crate::mail;
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-12-07 01:05:45 +00:00
|
|
|
use crate::CONFIG;
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-12-30 22:34:31 +00:00
|
|
|
use rocket::Route;
|
2018-10-10 18:40:39 +00:00
|
|
|
|
|
|
|
pub fn routes() -> Vec<Route> {
|
|
|
|
routes![
|
|
|
|
register,
|
|
|
|
profile,
|
|
|
|
put_profile,
|
|
|
|
post_profile,
|
|
|
|
get_public_keys,
|
|
|
|
post_keys,
|
|
|
|
post_password,
|
|
|
|
post_kdf,
|
2018-11-24 22:00:41 +00:00
|
|
|
post_rotatekey,
|
2018-10-10 18:40:39 +00:00
|
|
|
post_sstamp,
|
|
|
|
post_email_token,
|
|
|
|
post_email,
|
|
|
|
delete_account,
|
|
|
|
post_delete_account,
|
|
|
|
revision_date,
|
|
|
|
password_hint,
|
|
|
|
prelogin,
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2018-02-10 00:00:55 +00:00
|
|
|
#[derive(Deserialize, Debug)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct RegisterData {
|
2018-05-31 22:18:50 +00:00
|
|
|
Email: String,
|
2018-09-19 15:30:14 +00:00
|
|
|
Kdf: Option<i32>,
|
|
|
|
KdfIterations: Option<i32>,
|
2018-05-31 22:18:50 +00:00
|
|
|
Key: String,
|
|
|
|
Keys: Option<KeysData>,
|
|
|
|
MasterPasswordHash: String,
|
|
|
|
MasterPasswordHint: Option<String>,
|
|
|
|
Name: Option<String>,
|
2018-12-21 03:16:41 +00:00
|
|
|
Token: Option<String>,
|
|
|
|
OrganizationUserId: Option<String>,
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct KeysData {
|
2018-05-31 22:35:30 +00:00
|
|
|
EncryptedPrivateKey: String,
|
|
|
|
PublicKey: String,
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/accounts/register", data = "<data>")]
|
2018-05-31 22:18:50 +00:00
|
|
|
fn register(data: JsonUpcase<RegisterData>, conn: DbConn) -> EmptyResult {
|
|
|
|
let data: RegisterData = data.into_inner().data;
|
2018-02-17 22:38:55 +00:00
|
|
|
|
2018-09-10 13:51:40 +00:00
|
|
|
let mut user = match User::find_by_mail(&data.Email, &conn) {
|
2018-11-24 22:00:41 +00:00
|
|
|
Some(user) => {
|
2019-01-08 14:11:16 +00:00
|
|
|
if !user.password_hash.is_empty() {
|
|
|
|
err!("User already exists")
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(token) = data.Token {
|
2019-01-19 20:36:34 +00:00
|
|
|
let claims = decode_invite(&token)?;
|
2019-01-08 14:11:16 +00:00
|
|
|
if claims.email == data.Email {
|
2018-12-15 02:56:00 +00:00
|
|
|
user
|
|
|
|
} else {
|
2019-01-08 14:11:16 +00:00
|
|
|
err!("Registration email does not match invite email")
|
|
|
|
}
|
|
|
|
} else if Invitation::take(&data.Email, &conn) {
|
|
|
|
for mut user_org in UserOrganization::find_invited_by_user(&user.uuid, &conn).iter_mut() {
|
|
|
|
user_org.status = UserOrgStatus::Accepted as i32;
|
|
|
|
user_org.save(&conn)?;
|
2018-11-24 22:00:41 +00:00
|
|
|
}
|
2019-01-08 14:11:16 +00:00
|
|
|
|
|
|
|
user
|
2019-01-25 17:23:51 +00:00
|
|
|
} else if CONFIG.signups_allowed() {
|
2018-12-23 23:27:12 +00:00
|
|
|
err!("Account with this email already exists")
|
2018-09-10 13:51:40 +00:00
|
|
|
} else {
|
2018-12-21 03:16:41 +00:00
|
|
|
err!("Registration not allowed")
|
2018-09-10 13:51:40 +00:00
|
|
|
}
|
2018-11-24 22:00:41 +00:00
|
|
|
}
|
2018-09-10 13:51:40 +00:00
|
|
|
None => {
|
2019-01-25 17:23:51 +00:00
|
|
|
if CONFIG.signups_allowed() || Invitation::take(&data.Email, &conn) {
|
2019-01-08 14:11:16 +00:00
|
|
|
User::new(data.Email.clone())
|
2018-09-10 13:51:40 +00:00
|
|
|
} else {
|
|
|
|
err!("Registration not allowed")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2019-01-08 14:11:16 +00:00
|
|
|
// Make sure we don't leave a lingering invitation.
|
|
|
|
Invitation::take(&data.Email, &conn);
|
|
|
|
|
2018-09-19 15:30:14 +00:00
|
|
|
if let Some(client_kdf_iter) = data.KdfIterations {
|
|
|
|
user.client_kdf_iter = client_kdf_iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(client_kdf_type) = data.Kdf {
|
|
|
|
user.client_kdf_type = client_kdf_type;
|
|
|
|
}
|
|
|
|
|
2018-09-11 13:25:12 +00:00
|
|
|
user.set_password(&data.MasterPasswordHash);
|
|
|
|
user.key = data.Key;
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
// Add extra fields if present
|
2018-05-31 22:18:50 +00:00
|
|
|
if let Some(name) = data.Name {
|
2018-02-10 00:00:55 +00:00
|
|
|
user.name = name;
|
|
|
|
}
|
|
|
|
|
2018-05-31 22:18:50 +00:00
|
|
|
if let Some(hint) = data.MasterPasswordHint {
|
2018-02-10 00:00:55 +00:00
|
|
|
user.password_hint = Some(hint);
|
|
|
|
}
|
|
|
|
|
2018-05-31 22:18:50 +00:00
|
|
|
if let Some(keys) = data.Keys {
|
2018-05-31 22:35:30 +00:00
|
|
|
user.private_key = Some(keys.EncryptedPrivateKey);
|
|
|
|
user.public_key = Some(keys.PublicKey);
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
2018-12-19 20:52:53 +00:00
|
|
|
user.save(&conn)
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[get("/accounts/profile")]
|
2018-04-24 20:01:55 +00:00
|
|
|
fn profile(headers: Headers, conn: DbConn) -> JsonResult {
|
|
|
|
Ok(Json(headers.user.to_json(&conn)))
|
|
|
|
}
|
|
|
|
|
2018-06-16 22:06:59 +00:00
|
|
|
#[derive(Deserialize, Debug)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct ProfileData {
|
|
|
|
#[serde(rename = "Culture")]
|
2018-11-24 22:00:41 +00:00
|
|
|
_Culture: String, // Ignored, always use en-US
|
2018-06-16 22:06:59 +00:00
|
|
|
MasterPasswordHint: Option<String>,
|
|
|
|
Name: String,
|
|
|
|
}
|
|
|
|
|
2018-08-15 15:10:40 +00:00
|
|
|
#[put("/accounts/profile", data = "<data>")]
|
|
|
|
fn put_profile(data: JsonUpcase<ProfileData>, headers: Headers, conn: DbConn) -> JsonResult {
|
|
|
|
post_profile(data, headers, conn)
|
|
|
|
}
|
|
|
|
|
2018-06-16 22:06:59 +00:00
|
|
|
#[post("/accounts/profile", data = "<data>")]
|
|
|
|
fn post_profile(data: JsonUpcase<ProfileData>, headers: Headers, conn: DbConn) -> JsonResult {
|
|
|
|
let data: ProfileData = data.into_inner().data;
|
|
|
|
|
|
|
|
let mut user = headers.user;
|
|
|
|
|
|
|
|
user.name = data.Name;
|
2018-09-11 11:00:59 +00:00
|
|
|
user.password_hint = match data.MasterPasswordHint {
|
|
|
|
Some(ref h) if h.is_empty() => None,
|
|
|
|
_ => data.MasterPasswordHint,
|
|
|
|
};
|
2018-12-19 20:52:53 +00:00
|
|
|
user.save(&conn)?;
|
|
|
|
Ok(Json(user.to_json(&conn)))
|
2018-06-16 22:06:59 +00:00
|
|
|
}
|
|
|
|
|
2018-04-24 20:01:55 +00:00
|
|
|
#[get("/users/<uuid>/public-key")]
|
2018-05-30 20:30:45 +00:00
|
|
|
fn get_public_keys(uuid: String, _headers: Headers, conn: DbConn) -> JsonResult {
|
2018-04-24 20:01:55 +00:00
|
|
|
let user = match User::find_by_uuid(&uuid, &conn) {
|
|
|
|
Some(user) => user,
|
2018-11-24 22:00:41 +00:00
|
|
|
None => err!("User doesn't exist"),
|
2018-04-24 20:01:55 +00:00
|
|
|
};
|
|
|
|
|
2018-05-04 20:54:23 +00:00
|
|
|
Ok(Json(json!({
|
|
|
|
"UserId": user.uuid,
|
|
|
|
"PublicKey": user.public_key,
|
|
|
|
"Object":"userKey"
|
|
|
|
})))
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/accounts/keys", data = "<data>")]
|
2018-05-31 22:18:50 +00:00
|
|
|
fn post_keys(data: JsonUpcase<KeysData>, headers: Headers, conn: DbConn) -> JsonResult {
|
|
|
|
let data: KeysData = data.into_inner().data;
|
2018-02-17 22:38:55 +00:00
|
|
|
|
2018-02-10 00:00:55 +00:00
|
|
|
let mut user = headers.user;
|
|
|
|
|
2018-05-31 22:35:30 +00:00
|
|
|
user.private_key = Some(data.EncryptedPrivateKey);
|
|
|
|
user.public_key = Some(data.PublicKey);
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-12-19 20:52:53 +00:00
|
|
|
user.save(&conn)?;
|
|
|
|
Ok(Json(user.to_json(&conn)))
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 23:38:54 +00:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct ChangePassData {
|
2018-05-31 22:18:50 +00:00
|
|
|
MasterPasswordHash: String,
|
|
|
|
NewMasterPasswordHash: String,
|
|
|
|
Key: String,
|
2018-02-22 23:38:54 +00:00
|
|
|
}
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-02-22 23:38:54 +00:00
|
|
|
#[post("/accounts/password", data = "<data>")]
|
2018-05-31 22:18:50 +00:00
|
|
|
fn post_password(data: JsonUpcase<ChangePassData>, headers: Headers, conn: DbConn) -> EmptyResult {
|
|
|
|
let data: ChangePassData = data.into_inner().data;
|
2018-02-10 00:00:55 +00:00
|
|
|
let mut user = headers.user;
|
|
|
|
|
2018-05-31 22:18:50 +00:00
|
|
|
if !user.check_valid_password(&data.MasterPasswordHash) {
|
2018-02-10 00:00:55 +00:00
|
|
|
err!("Invalid password")
|
|
|
|
}
|
|
|
|
|
2018-05-31 22:18:50 +00:00
|
|
|
user.set_password(&data.NewMasterPasswordHash);
|
|
|
|
user.key = data.Key;
|
2018-12-19 20:52:53 +00:00
|
|
|
user.save(&conn)
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
2018-09-19 15:30:14 +00:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct ChangeKdfData {
|
|
|
|
Kdf: i32,
|
|
|
|
KdfIterations: i32,
|
|
|
|
|
|
|
|
MasterPasswordHash: String,
|
|
|
|
NewMasterPasswordHash: String,
|
|
|
|
Key: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/accounts/kdf", data = "<data>")]
|
|
|
|
fn post_kdf(data: JsonUpcase<ChangeKdfData>, headers: Headers, conn: DbConn) -> EmptyResult {
|
|
|
|
let data: ChangeKdfData = data.into_inner().data;
|
|
|
|
let mut user = headers.user;
|
|
|
|
|
|
|
|
if !user.check_valid_password(&data.MasterPasswordHash) {
|
|
|
|
err!("Invalid password")
|
|
|
|
}
|
|
|
|
|
|
|
|
user.client_kdf_iter = data.KdfIterations;
|
|
|
|
user.client_kdf_type = data.Kdf;
|
|
|
|
user.set_password(&data.NewMasterPasswordHash);
|
|
|
|
user.key = data.Key;
|
2018-12-19 20:52:53 +00:00
|
|
|
user.save(&conn)
|
2018-09-19 15:30:14 +00:00
|
|
|
}
|
|
|
|
|
2018-11-24 22:00:41 +00:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct UpdateFolderData {
|
|
|
|
Id: String,
|
|
|
|
Name: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
use super::ciphers::CipherData;
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct KeyData {
|
|
|
|
Ciphers: Vec<CipherData>,
|
|
|
|
Folders: Vec<UpdateFolderData>,
|
|
|
|
Key: String,
|
|
|
|
PrivateKey: String,
|
|
|
|
MasterPasswordHash: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/accounts/key", data = "<data>")]
|
2018-12-30 22:34:31 +00:00
|
|
|
fn post_rotatekey(data: JsonUpcase<KeyData>, headers: Headers, conn: DbConn, nt: Notify) -> EmptyResult {
|
2018-11-24 22:00:41 +00:00
|
|
|
let data: KeyData = data.into_inner().data;
|
|
|
|
|
|
|
|
if !headers.user.check_valid_password(&data.MasterPasswordHash) {
|
|
|
|
err!("Invalid password")
|
|
|
|
}
|
|
|
|
|
|
|
|
let user_uuid = &headers.user.uuid;
|
|
|
|
|
|
|
|
// Update folder data
|
|
|
|
for folder_data in data.Folders {
|
|
|
|
let mut saved_folder = match Folder::find_by_uuid(&folder_data.Id, &conn) {
|
|
|
|
Some(folder) => folder,
|
|
|
|
None => err!("Folder doesn't exist"),
|
|
|
|
};
|
|
|
|
|
|
|
|
if &saved_folder.user_uuid != user_uuid {
|
|
|
|
err!("The folder is not owned by the user")
|
|
|
|
}
|
|
|
|
|
|
|
|
saved_folder.name = folder_data.Name;
|
2018-12-19 20:52:53 +00:00
|
|
|
saved_folder.save(&conn)?
|
2018-11-24 22:00:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update cipher data
|
|
|
|
use super::ciphers::update_cipher_from_data;
|
|
|
|
|
|
|
|
for cipher_data in data.Ciphers {
|
|
|
|
let mut saved_cipher = match Cipher::find_by_uuid(cipher_data.Id.as_ref().unwrap(), &conn) {
|
|
|
|
Some(cipher) => cipher,
|
|
|
|
None => err!("Cipher doesn't exist"),
|
|
|
|
};
|
|
|
|
|
|
|
|
if saved_cipher.user_uuid.as_ref().unwrap() != user_uuid {
|
|
|
|
err!("The cipher is not owned by the user")
|
|
|
|
}
|
|
|
|
|
2018-12-30 22:34:31 +00:00
|
|
|
update_cipher_from_data(
|
|
|
|
&mut saved_cipher,
|
|
|
|
cipher_data,
|
|
|
|
&headers,
|
|
|
|
false,
|
|
|
|
&conn,
|
|
|
|
&nt,
|
|
|
|
UpdateType::CipherUpdate,
|
|
|
|
)?
|
2018-11-24 22:00:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update user data
|
|
|
|
let mut user = headers.user;
|
|
|
|
|
|
|
|
user.key = data.Key;
|
|
|
|
user.private_key = Some(data.PrivateKey);
|
|
|
|
user.reset_security_stamp();
|
|
|
|
|
2018-12-19 20:52:53 +00:00
|
|
|
user.save(&conn)
|
2018-11-24 22:00:41 +00:00
|
|
|
}
|
|
|
|
|
2018-02-10 00:00:55 +00:00
|
|
|
#[post("/accounts/security-stamp", data = "<data>")]
|
2018-05-31 22:18:50 +00:00
|
|
|
fn post_sstamp(data: JsonUpcase<PasswordData>, headers: Headers, conn: DbConn) -> EmptyResult {
|
|
|
|
let data: PasswordData = data.into_inner().data;
|
2018-02-10 00:00:55 +00:00
|
|
|
let mut user = headers.user;
|
|
|
|
|
2018-05-31 22:18:50 +00:00
|
|
|
if !user.check_valid_password(&data.MasterPasswordHash) {
|
2018-02-10 00:00:55 +00:00
|
|
|
err!("Invalid password")
|
|
|
|
}
|
|
|
|
|
2019-02-16 22:06:26 +00:00
|
|
|
Device::delete_all_by_user(&user.uuid, &conn)?;
|
2018-02-10 00:00:55 +00:00
|
|
|
user.reset_security_stamp();
|
2018-12-19 20:52:53 +00:00
|
|
|
user.save(&conn)
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 23:38:54 +00:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
#[allow(non_snake_case)]
|
2018-06-16 22:06:59 +00:00
|
|
|
struct EmailTokenData {
|
2018-05-31 22:18:50 +00:00
|
|
|
MasterPasswordHash: String,
|
|
|
|
NewEmail: String,
|
2018-02-22 23:38:54 +00:00
|
|
|
}
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-02-22 23:38:54 +00:00
|
|
|
#[post("/accounts/email-token", data = "<data>")]
|
2018-06-16 22:06:59 +00:00
|
|
|
fn post_email_token(data: JsonUpcase<EmailTokenData>, headers: Headers, conn: DbConn) -> EmptyResult {
|
|
|
|
let data: EmailTokenData = data.into_inner().data;
|
|
|
|
|
|
|
|
if !headers.user.check_valid_password(&data.MasterPasswordHash) {
|
|
|
|
err!("Invalid password")
|
|
|
|
}
|
|
|
|
|
|
|
|
if User::find_by_mail(&data.NewEmail, &conn).is_some() {
|
|
|
|
err!("Email already in use");
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct ChangeEmailData {
|
|
|
|
MasterPasswordHash: String,
|
|
|
|
NewEmail: String,
|
2018-11-24 22:00:41 +00:00
|
|
|
|
2018-06-16 22:06:59 +00:00
|
|
|
Key: String,
|
|
|
|
NewMasterPasswordHash: String,
|
|
|
|
#[serde(rename = "Token")]
|
|
|
|
_Token: NumberOrString,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/accounts/email", data = "<data>")]
|
2018-05-31 22:18:50 +00:00
|
|
|
fn post_email(data: JsonUpcase<ChangeEmailData>, headers: Headers, conn: DbConn) -> EmptyResult {
|
|
|
|
let data: ChangeEmailData = data.into_inner().data;
|
2018-02-10 00:00:55 +00:00
|
|
|
let mut user = headers.user;
|
|
|
|
|
2018-05-31 22:18:50 +00:00
|
|
|
if !user.check_valid_password(&data.MasterPasswordHash) {
|
2018-02-10 00:00:55 +00:00
|
|
|
err!("Invalid password")
|
|
|
|
}
|
|
|
|
|
2018-05-31 22:18:50 +00:00
|
|
|
if User::find_by_mail(&data.NewEmail, &conn).is_some() {
|
2018-02-14 23:40:34 +00:00
|
|
|
err!("Email already in use");
|
|
|
|
}
|
|
|
|
|
2018-05-31 22:18:50 +00:00
|
|
|
user.email = data.NewEmail;
|
2018-11-24 22:00:41 +00:00
|
|
|
|
2018-06-16 22:06:59 +00:00
|
|
|
user.set_password(&data.NewMasterPasswordHash);
|
|
|
|
user.key = data.Key;
|
|
|
|
|
2018-12-19 20:52:53 +00:00
|
|
|
user.save(&conn)
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/accounts/delete", data = "<data>")]
|
2018-09-18 10:13:45 +00:00
|
|
|
fn post_delete_account(data: JsonUpcase<PasswordData>, headers: Headers, conn: DbConn) -> EmptyResult {
|
|
|
|
delete_account(data, headers, conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[delete("/accounts", data = "<data>")]
|
2018-05-31 22:18:50 +00:00
|
|
|
fn delete_account(data: JsonUpcase<PasswordData>, headers: Headers, conn: DbConn) -> EmptyResult {
|
|
|
|
let data: PasswordData = data.into_inner().data;
|
2018-02-14 23:53:11 +00:00
|
|
|
let user = headers.user;
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-05-31 22:18:50 +00:00
|
|
|
if !user.check_valid_password(&data.MasterPasswordHash) {
|
2018-02-10 00:00:55 +00:00
|
|
|
err!("Invalid password")
|
|
|
|
}
|
2018-11-24 22:00:41 +00:00
|
|
|
|
2018-12-19 20:52:53 +00:00
|
|
|
user.delete(&conn)
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[get("/accounts/revision-date")]
|
2018-02-17 19:47:13 +00:00
|
|
|
fn revision_date(headers: Headers) -> String {
|
2018-08-10 16:17:44 +00:00
|
|
|
let revision_date = headers.user.updated_at.timestamp_millis();
|
2018-02-17 19:47:13 +00:00
|
|
|
revision_date.to_string()
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
2018-08-10 13:21:42 +00:00
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct PasswordHintData {
|
|
|
|
Email: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/accounts/password-hint", data = "<data>")]
|
|
|
|
fn password_hint(data: JsonUpcase<PasswordHintData>, conn: DbConn) -> EmptyResult {
|
|
|
|
let data: PasswordHintData = data.into_inner().data;
|
|
|
|
|
2018-10-03 22:01:04 +00:00
|
|
|
let hint = match User::find_by_mail(&data.Email, &conn) {
|
|
|
|
Some(user) => user.password_hint,
|
|
|
|
None => return Ok(()),
|
|
|
|
};
|
2018-08-15 06:32:19 +00:00
|
|
|
|
2019-02-02 00:09:21 +00:00
|
|
|
if CONFIG.mail_enabled() {
|
|
|
|
mail::send_password_hint(&data.Email, hint)?;
|
2019-01-25 17:23:51 +00:00
|
|
|
} else if CONFIG.show_password_hint() {
|
2018-10-03 22:01:04 +00:00
|
|
|
if let Some(hint) = hint {
|
2018-09-11 11:04:34 +00:00
|
|
|
err!(format!("Your password hint is: {}", &hint));
|
|
|
|
} else {
|
2018-09-13 19:55:23 +00:00
|
|
|
err!("Sorry, you have no password hint...");
|
2018-09-11 11:04:34 +00:00
|
|
|
}
|
2018-08-10 13:21:42 +00:00
|
|
|
}
|
2018-08-15 06:32:19 +00:00
|
|
|
|
|
|
|
Ok(())
|
2018-08-10 13:21:42 +00:00
|
|
|
}
|
2018-08-24 17:02:34 +00:00
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct PreloginData {
|
|
|
|
Email: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/accounts/prelogin", data = "<data>")]
|
|
|
|
fn prelogin(data: JsonUpcase<PreloginData>, conn: DbConn) -> JsonResult {
|
|
|
|
let data: PreloginData = data.into_inner().data;
|
|
|
|
|
2018-09-13 21:04:52 +00:00
|
|
|
let (kdf_type, kdf_iter) = match User::find_by_mail(&data.Email, &conn) {
|
2018-09-19 15:30:14 +00:00
|
|
|
Some(user) => (user.client_kdf_type, user.client_kdf_iter),
|
|
|
|
None => (User::CLIENT_KDF_TYPE_DEFAULT, User::CLIENT_KDF_ITER_DEFAULT),
|
2018-09-13 21:04:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Ok(Json(json!({
|
|
|
|
"Kdf": kdf_type,
|
|
|
|
"KdfIterations": kdf_iter
|
|
|
|
})))
|
2018-08-24 17:02:34 +00:00
|
|
|
}
|