2018-02-14 23:53:11 +00:00
|
|
|
use chrono::{NaiveDateTime, Utc};
|
2018-02-10 00:00:55 +00:00
|
|
|
use serde_json::Value as JsonValue;
|
|
|
|
|
|
|
|
use uuid::Uuid;
|
|
|
|
|
2018-02-15 18:05:57 +00:00
|
|
|
use crypto;
|
2018-02-10 00:00:55 +00:00
|
|
|
use CONFIG;
|
|
|
|
|
2018-02-14 23:40:34 +00:00
|
|
|
#[derive(Debug, Identifiable, Queryable, Insertable)]
|
2018-02-10 00:00:55 +00:00
|
|
|
#[table_name = "users"]
|
|
|
|
#[primary_key(uuid)]
|
|
|
|
pub struct User {
|
|
|
|
pub uuid: String,
|
|
|
|
pub created_at: NaiveDateTime,
|
|
|
|
pub updated_at: NaiveDateTime,
|
|
|
|
|
|
|
|
pub email: String,
|
|
|
|
pub name: String,
|
|
|
|
|
|
|
|
pub password_hash: Vec<u8>,
|
|
|
|
pub salt: Vec<u8>,
|
|
|
|
pub password_iterations: i32,
|
|
|
|
pub password_hint: Option<String>,
|
|
|
|
|
|
|
|
pub key: String,
|
|
|
|
pub private_key: Option<String>,
|
|
|
|
pub public_key: Option<String>,
|
|
|
|
pub totp_secret: Option<String>,
|
|
|
|
pub totp_recover: Option<String>,
|
|
|
|
pub security_stamp: String,
|
2018-02-14 23:40:34 +00:00
|
|
|
|
|
|
|
pub equivalent_domains: String,
|
|
|
|
pub excluded_globals: String,
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Local methods
|
|
|
|
impl User {
|
2018-02-14 23:40:34 +00:00
|
|
|
pub fn new(mail: String, key: String, password: String) -> Self {
|
2018-02-10 00:00:55 +00:00
|
|
|
let now = Utc::now().naive_utc();
|
|
|
|
let email = mail.to_lowercase();
|
|
|
|
|
|
|
|
let iterations = CONFIG.password_iterations;
|
|
|
|
let salt = crypto::get_random_64();
|
|
|
|
let password_hash = crypto::hash_password(password.as_bytes(), &salt, iterations as u32);
|
|
|
|
|
2018-02-14 23:40:34 +00:00
|
|
|
Self {
|
2018-02-10 00:00:55 +00:00
|
|
|
uuid: Uuid::new_v4().to_string(),
|
|
|
|
created_at: now,
|
|
|
|
updated_at: now,
|
|
|
|
name: email.clone(),
|
|
|
|
email,
|
|
|
|
key,
|
|
|
|
|
|
|
|
password_hash,
|
|
|
|
salt,
|
|
|
|
password_iterations: iterations,
|
|
|
|
|
|
|
|
security_stamp: Uuid::new_v4().to_string(),
|
|
|
|
|
|
|
|
password_hint: None,
|
|
|
|
private_key: None,
|
|
|
|
public_key: None,
|
|
|
|
totp_secret: None,
|
|
|
|
totp_recover: None,
|
2018-02-14 23:40:34 +00:00
|
|
|
|
|
|
|
equivalent_domains: "[]".to_string(),
|
|
|
|
excluded_globals: "[]".to_string(),
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn check_valid_password(&self, password: &str) -> bool {
|
|
|
|
crypto::verify_password_hash(password.as_bytes(),
|
|
|
|
&self.salt,
|
|
|
|
&self.password_hash,
|
|
|
|
self.password_iterations as u32)
|
|
|
|
}
|
|
|
|
|
2018-02-15 18:05:57 +00:00
|
|
|
pub fn check_valid_recovery_code(&self, recovery_code: &str) -> bool {
|
|
|
|
if let Some(ref totp_recover) = self.totp_recover {
|
|
|
|
recovery_code == totp_recover.to_lowercase()
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-10 00:00:55 +00:00
|
|
|
pub fn set_password(&mut self, password: &str) {
|
|
|
|
self.password_hash = crypto::hash_password(password.as_bytes(),
|
|
|
|
&self.salt,
|
|
|
|
self.password_iterations as u32);
|
|
|
|
self.reset_security_stamp();
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn reset_security_stamp(&mut self) {
|
|
|
|
self.security_stamp = Uuid::new_v4().to_string();
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn check_totp_code(&self, totp_code: Option<u64>) -> bool {
|
|
|
|
if let Some(ref totp_secret) = self.totp_secret {
|
|
|
|
if let Some(code) = totp_code {
|
|
|
|
// Validate totp
|
|
|
|
use data_encoding::BASE32;
|
|
|
|
use oath::{totp_raw_now, HashType};
|
|
|
|
|
|
|
|
let decoded_secret = match BASE32.decode(totp_secret.as_bytes()) {
|
|
|
|
Ok(s) => s,
|
2018-02-14 23:53:11 +00:00
|
|
|
Err(_) => return false
|
2018-02-10 00:00:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let generated = totp_raw_now(&decoded_secret, 6, 0, 30, &HashType::SHA1);
|
|
|
|
generated == code
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
2018-04-24 20:01:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
use diesel;
|
|
|
|
use diesel::prelude::*;
|
|
|
|
use db::DbConn;
|
|
|
|
use db::schema::users;
|
|
|
|
|
|
|
|
/// Database methods
|
|
|
|
impl User {
|
|
|
|
pub fn to_json(&self, conn: &DbConn) -> JsonValue {
|
|
|
|
use super::UserOrganization;
|
|
|
|
|
|
|
|
let orgs = UserOrganization::find_by_user(&self.uuid, conn);
|
|
|
|
let orgs_json: Vec<JsonValue> = orgs.iter().map(|c| c.to_json(&conn)).collect();
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
json!({
|
|
|
|
"Id": self.uuid,
|
|
|
|
"Name": self.name,
|
|
|
|
"Email": self.email,
|
|
|
|
"EmailVerified": true,
|
|
|
|
"Premium": true,
|
|
|
|
"MasterPasswordHint": self.password_hint,
|
|
|
|
"Culture": "en-US",
|
|
|
|
"TwoFactorEnabled": self.totp_secret.is_some(),
|
|
|
|
"Key": self.key,
|
|
|
|
"PrivateKey": self.private_key,
|
|
|
|
"SecurityStamp": self.security_stamp,
|
2018-04-24 20:01:55 +00:00
|
|
|
"Organizations": orgs_json,
|
2018-02-10 00:00:55 +00:00
|
|
|
"Object": "profile"
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-15 00:07:57 +00:00
|
|
|
pub fn save(&mut self, conn: &DbConn) -> bool {
|
|
|
|
self.updated_at = Utc::now().naive_utc();
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
match diesel::replace_into(users::table) // Insert or update
|
2018-02-15 00:07:57 +00:00
|
|
|
.values(&*self)
|
2018-02-10 00:00:55 +00:00
|
|
|
.execute(&**conn) {
|
|
|
|
Ok(1) => true, // One row inserted
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-15 18:05:57 +00:00
|
|
|
pub fn delete(self, conn: &DbConn) -> bool {
|
|
|
|
match diesel::delete(users::table.filter(
|
|
|
|
users::uuid.eq(self.uuid)))
|
|
|
|
.execute(&**conn) {
|
|
|
|
Ok(1) => true, // One row deleted
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-14 23:40:34 +00:00
|
|
|
pub fn find_by_mail(mail: &str, conn: &DbConn) -> Option<Self> {
|
2018-02-10 00:00:55 +00:00
|
|
|
let lower_mail = mail.to_lowercase();
|
|
|
|
users::table
|
|
|
|
.filter(users::email.eq(lower_mail))
|
2018-02-14 23:40:34 +00:00
|
|
|
.first::<Self>(&**conn).ok()
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
2018-02-14 23:40:34 +00:00
|
|
|
pub fn find_by_uuid(uuid: &str, conn: &DbConn) -> Option<Self> {
|
2018-02-10 00:00:55 +00:00
|
|
|
users::table
|
|
|
|
.filter(users::uuid.eq(uuid))
|
2018-02-14 23:40:34 +00:00
|
|
|
.first::<Self>(&**conn).ok()
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
}
|