2018-02-10 01:00:55 +01:00
|
|
|
mod accounts;
|
|
|
|
mod ciphers;
|
|
|
|
mod folders;
|
2018-02-17 22:30:19 +01:00
|
|
|
mod organizations;
|
2018-07-12 21:46:50 +02:00
|
|
|
pub(crate) mod two_factor;
|
2018-02-10 01:00:55 +01:00
|
|
|
|
|
|
|
pub fn routes() -> Vec<Route> {
|
2018-10-10 20:40:39 +02:00
|
|
|
let mut mod_routes = routes![
|
2018-02-10 01:00:55 +01:00
|
|
|
clear_device_token,
|
|
|
|
put_device_token,
|
|
|
|
|
|
|
|
get_eq_domains,
|
2018-04-20 18:35:11 +02:00
|
|
|
post_eq_domains,
|
2018-10-23 00:32:43 +02:00
|
|
|
put_eq_domains,
|
2018-10-10 20:40:39 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
let mut routes = Vec::new();
|
|
|
|
routes.append(&mut accounts::routes());
|
|
|
|
routes.append(&mut ciphers::routes());
|
|
|
|
routes.append(&mut folders::routes());
|
|
|
|
routes.append(&mut organizations::routes());
|
|
|
|
routes.append(&mut two_factor::routes());
|
|
|
|
routes.append(&mut mod_routes);
|
2018-04-20 18:35:11 +02:00
|
|
|
|
2018-10-10 20:40:39 +02:00
|
|
|
routes
|
2018-02-10 01:00:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
///
|
|
|
|
/// Move this somewhere else
|
|
|
|
///
|
|
|
|
|
|
|
|
use rocket::Route;
|
|
|
|
|
2018-10-10 20:40:39 +02:00
|
|
|
use rocket_contrib::json::Json;
|
|
|
|
use serde_json::Value;
|
2018-02-10 01:00:55 +01:00
|
|
|
|
2018-12-07 02:05:45 +01:00
|
|
|
use crate::db::DbConn;
|
|
|
|
use crate::db::models::*;
|
2018-02-10 01:00:55 +01:00
|
|
|
|
2018-12-07 02:05:45 +01:00
|
|
|
use crate::api::{JsonResult, EmptyResult, JsonUpcase};
|
|
|
|
use crate::auth::Headers;
|
2018-02-10 01:00:55 +01:00
|
|
|
|
2018-12-06 16:28:36 +01:00
|
|
|
#[put("/devices/identifier/<uuid>/clear-token")]
|
|
|
|
fn clear_device_token(uuid: String, headers: Headers, conn: DbConn) -> EmptyResult {
|
2018-06-01 15:08:03 +02:00
|
|
|
let device = match Device::find_by_uuid(&uuid, &conn) {
|
|
|
|
Some(device) => device,
|
|
|
|
None => err!("Device not found")
|
|
|
|
};
|
|
|
|
|
|
|
|
if device.user_uuid != headers.user.uuid {
|
|
|
|
err!("Device not owned by user")
|
|
|
|
}
|
|
|
|
|
2018-12-06 16:28:36 +01:00
|
|
|
// This only clears push token
|
|
|
|
// https://github.com/bitwarden/core/blob/master/src/Api/Controllers/DevicesController.cs#L109
|
|
|
|
// https://github.com/bitwarden/core/blob/master/src/Core/Services/Implementations/DeviceService.cs#L37
|
|
|
|
Ok(())
|
2018-02-17 20:47:13 +01:00
|
|
|
}
|
2018-02-10 01:00:55 +01:00
|
|
|
|
2018-06-01 15:08:03 +02:00
|
|
|
#[put("/devices/identifier/<uuid>/token", data = "<data>")]
|
2018-10-10 20:40:39 +02:00
|
|
|
fn put_device_token(uuid: String, data: JsonUpcase<Value>, headers: Headers, conn: DbConn) -> JsonResult {
|
|
|
|
let _data: Value = data.into_inner().data;
|
2018-12-06 16:28:36 +01:00
|
|
|
|
2018-06-01 15:08:03 +02:00
|
|
|
let device = match Device::find_by_uuid(&uuid, &conn) {
|
|
|
|
Some(device) => device,
|
|
|
|
None => err!("Device not found")
|
|
|
|
};
|
|
|
|
|
|
|
|
if device.user_uuid != headers.user.uuid {
|
|
|
|
err!("Device not owned by user")
|
|
|
|
}
|
|
|
|
|
2018-12-06 16:28:36 +01:00
|
|
|
// This should save the push token, but we don't have push functionality
|
2018-06-01 15:08:03 +02:00
|
|
|
|
2018-12-07 02:05:45 +01:00
|
|
|
use crate::util::format_date;
|
2018-12-06 16:28:36 +01:00
|
|
|
|
|
|
|
Ok(Json(json!({
|
|
|
|
"Id": device.uuid,
|
|
|
|
"Name": device.name,
|
|
|
|
"Type": device.type_,
|
|
|
|
"Identifier": device.uuid,
|
|
|
|
"CreationDate": format_date(&device.created_at),
|
|
|
|
})))
|
2018-02-17 20:47:13 +01:00
|
|
|
}
|
2018-02-10 01:00:55 +01:00
|
|
|
|
2018-02-17 23:21:04 +01:00
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct GlobalDomain {
|
|
|
|
Type: i32,
|
|
|
|
Domains: Vec<String>,
|
|
|
|
Excluded: bool,
|
|
|
|
}
|
|
|
|
|
2018-06-11 15:44:37 +02:00
|
|
|
const GLOBAL_DOMAINS: &str = include_str!("global_domains.json");
|
2018-02-17 23:21:04 +01:00
|
|
|
|
2018-02-10 01:00:55 +01:00
|
|
|
#[get("/settings/domains")]
|
2018-02-20 14:09:00 +01:00
|
|
|
fn get_eq_domains(headers: Headers) -> JsonResult {
|
2018-02-17 23:21:04 +01:00
|
|
|
let user = headers.user;
|
|
|
|
use serde_json::from_str;
|
|
|
|
|
|
|
|
let equivalent_domains: Vec<Vec<String>> = from_str(&user.equivalent_domains).unwrap();
|
|
|
|
let excluded_globals: Vec<i32> = from_str(&user.excluded_globals).unwrap();
|
|
|
|
|
|
|
|
let mut globals: Vec<GlobalDomain> = from_str(GLOBAL_DOMAINS).unwrap();
|
|
|
|
|
|
|
|
for global in &mut globals {
|
|
|
|
global.Excluded = excluded_globals.contains(&global.Type);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(Json(json!({
|
|
|
|
"EquivalentDomains": equivalent_domains,
|
2018-02-20 14:09:00 +01:00
|
|
|
"GlobalEquivalentDomains": globals,
|
|
|
|
"Object": "domains",
|
2018-02-17 23:21:04 +01:00
|
|
|
})))
|
2018-02-10 01:00:55 +01:00
|
|
|
}
|
|
|
|
|
2018-02-23 00:38:54 +01:00
|
|
|
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct EquivDomainData {
|
|
|
|
ExcludedGlobalEquivalentDomains: Option<Vec<i32>>,
|
|
|
|
EquivalentDomains: Option<Vec<Vec<String>>>,
|
|
|
|
}
|
|
|
|
|
2018-02-15 00:40:34 +01:00
|
|
|
#[post("/settings/domains", data = "<data>")]
|
2018-10-23 00:32:43 +02:00
|
|
|
fn post_eq_domains(data: JsonUpcase<EquivDomainData>, headers: Headers, conn: DbConn) -> JsonResult {
|
2018-06-01 00:18:50 +02:00
|
|
|
let data: EquivDomainData = data.into_inner().data;
|
2018-02-15 00:40:34 +01:00
|
|
|
|
2018-06-11 15:44:37 +02:00
|
|
|
let excluded_globals = data.ExcludedGlobalEquivalentDomains.unwrap_or_default();
|
|
|
|
let equivalent_domains = data.EquivalentDomains.unwrap_or_default();
|
2018-02-15 00:40:34 +01:00
|
|
|
|
2018-02-17 23:21:04 +01:00
|
|
|
let mut user = headers.user;
|
|
|
|
use serde_json::to_string;
|
2018-02-15 00:40:34 +01:00
|
|
|
|
2018-02-17 23:21:04 +01:00
|
|
|
user.excluded_globals = to_string(&excluded_globals).unwrap_or("[]".to_string());
|
|
|
|
user.equivalent_domains = to_string(&equivalent_domains).unwrap_or("[]".to_string());
|
|
|
|
|
2018-10-14 19:32:43 +02:00
|
|
|
match user.save(&conn) {
|
2018-10-23 00:32:43 +02:00
|
|
|
Ok(()) => Ok(Json(json!({}))),
|
2018-10-14 19:32:43 +02:00
|
|
|
Err(_) => err!("Failed to save user")
|
|
|
|
}
|
2018-02-17 23:21:04 +01:00
|
|
|
|
2018-02-10 01:00:55 +01:00
|
|
|
}
|
2018-10-23 00:32:43 +02:00
|
|
|
|
|
|
|
#[put("/settings/domains", data = "<data>")]
|
|
|
|
fn put_eq_domains(data: JsonUpcase<EquivDomainData>, headers: Headers, conn: DbConn) -> JsonResult {
|
|
|
|
post_eq_domains(data, headers, conn)
|
|
|
|
}
|