2018-02-14 23:40:34 +00:00
|
|
|
use std::path::Path;
|
2018-05-09 10:55:05 +00:00
|
|
|
use std::collections::HashSet;
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-02-14 23:53:11 +00:00
|
|
|
use rocket::Data;
|
2018-02-10 00:00:55 +00:00
|
|
|
use rocket::http::ContentType;
|
|
|
|
|
|
|
|
use rocket_contrib::{Json, Value};
|
|
|
|
|
2018-02-14 23:40:34 +00:00
|
|
|
use multipart::server::{Multipart, SaveResult};
|
|
|
|
use multipart::server::save::SavedData;
|
|
|
|
|
|
|
|
use data_encoding::HEXLOWER;
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
use db::DbConn;
|
|
|
|
use db::models::*;
|
2018-02-14 23:40:34 +00:00
|
|
|
|
2018-02-10 00:00:55 +00:00
|
|
|
use util;
|
2018-02-14 23:40:34 +00:00
|
|
|
use crypto;
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-02-22 23:38:54 +00:00
|
|
|
use api::{self, PasswordData, JsonResult, EmptyResult};
|
2018-02-10 00:00:55 +00:00
|
|
|
use auth::Headers;
|
|
|
|
|
2018-02-14 23:40:34 +00:00
|
|
|
use CONFIG;
|
|
|
|
|
2018-02-10 00:00:55 +00:00
|
|
|
#[get("/sync")]
|
2018-02-17 19:47:13 +00:00
|
|
|
fn sync(headers: Headers, conn: DbConn) -> JsonResult {
|
2018-04-24 20:01:55 +00:00
|
|
|
let user_json = headers.user.to_json(&conn);
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-02-20 13:09:00 +00:00
|
|
|
let folders = Folder::find_by_user(&headers.user.uuid, &conn);
|
2018-02-10 00:00:55 +00:00
|
|
|
let folders_json: Vec<Value> = folders.iter().map(|c| c.to_json()).collect();
|
|
|
|
|
2018-02-20 13:09:00 +00:00
|
|
|
let ciphers = Cipher::find_by_user(&headers.user.uuid, &conn);
|
2018-04-30 09:52:15 +00:00
|
|
|
let ciphers_json: Vec<Value> = ciphers.iter().map(|c| c.to_json(&headers.host, &headers.user.uuid, &conn)).collect();
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-02-20 13:09:00 +00:00
|
|
|
let domains_json = api::core::get_eq_domains(headers).unwrap().into_inner();
|
|
|
|
|
2018-02-10 00:00:55 +00:00
|
|
|
Ok(Json(json!({
|
2018-02-20 13:09:00 +00:00
|
|
|
"Profile": user_json,
|
2018-02-10 00:00:55 +00:00
|
|
|
"Folders": folders_json,
|
|
|
|
"Ciphers": ciphers_json,
|
2018-02-20 13:09:00 +00:00
|
|
|
"Domains": domains_json,
|
2018-02-10 00:00:55 +00:00
|
|
|
"Object": "sync"
|
|
|
|
})))
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[get("/ciphers")]
|
2018-02-17 19:47:13 +00:00
|
|
|
fn get_ciphers(headers: Headers, conn: DbConn) -> JsonResult {
|
2018-02-10 00:00:55 +00:00
|
|
|
let ciphers = Cipher::find_by_user(&headers.user.uuid, &conn);
|
|
|
|
|
2018-04-30 09:52:15 +00:00
|
|
|
let ciphers_json: Vec<Value> = ciphers.iter().map(|c| c.to_json(&headers.host, &headers.user.uuid, &conn)).collect();
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
Ok(Json(json!({
|
|
|
|
"Data": ciphers_json,
|
|
|
|
"Object": "list",
|
|
|
|
})))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[get("/ciphers/<uuid>")]
|
2018-02-17 19:47:13 +00:00
|
|
|
fn get_cipher(uuid: String, headers: Headers, conn: DbConn) -> JsonResult {
|
2018-02-10 00:00:55 +00:00
|
|
|
let cipher = match Cipher::find_by_uuid(&uuid, &conn) {
|
|
|
|
Some(cipher) => cipher,
|
|
|
|
None => err!("Cipher doesn't exist")
|
|
|
|
};
|
|
|
|
|
2018-04-30 09:52:15 +00:00
|
|
|
if !cipher.is_accessible_to_user(&headers.user.uuid, &conn) {
|
2018-02-14 23:40:34 +00:00
|
|
|
err!("Cipher is not owned by user")
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
2018-04-30 09:52:15 +00:00
|
|
|
Ok(Json(cipher.to_json(&headers.host, &headers.user.uuid, &conn)))
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
2018-05-04 17:25:50 +00:00
|
|
|
#[get("/ciphers/<uuid>/admin")]
|
|
|
|
fn get_cipher_admin(uuid: String, headers: Headers, conn: DbConn) -> JsonResult {
|
|
|
|
// TODO: Implement this correctly
|
|
|
|
get_cipher(uuid, headers, conn)
|
|
|
|
}
|
|
|
|
|
2018-02-10 00:00:55 +00:00
|
|
|
#[derive(Deserialize, Debug)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct CipherData {
|
2018-02-22 23:38:54 +00:00
|
|
|
// Folder id is not included in import
|
2018-02-10 00:00:55 +00:00
|
|
|
folderId: Option<String>,
|
2018-02-22 23:38:54 +00:00
|
|
|
// TODO: Some of these might appear all the time, no need for Option
|
2018-02-10 00:00:55 +00:00
|
|
|
organizationId: Option<String>,
|
2018-03-05 23:02:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Login = 1,
|
|
|
|
SecureNote = 2,
|
|
|
|
Card = 3,
|
|
|
|
Identity = 4
|
|
|
|
*/
|
|
|
|
#[serde(rename = "type")]
|
|
|
|
type_: i32,
|
|
|
|
name: String,
|
2018-02-10 00:00:55 +00:00
|
|
|
notes: Option<String>,
|
2018-03-05 23:02:36 +00:00
|
|
|
fields: Option<Value>,
|
2018-02-15 23:32:26 +00:00
|
|
|
|
2018-03-05 23:02:36 +00:00
|
|
|
// Only one of these should exist, depending on type
|
2018-02-10 00:00:55 +00:00
|
|
|
login: Option<Value>,
|
2018-02-15 23:32:26 +00:00
|
|
|
secureNote: Option<Value>,
|
2018-02-10 00:00:55 +00:00
|
|
|
card: Option<Value>,
|
2018-02-15 23:32:26 +00:00
|
|
|
identity: Option<Value>,
|
|
|
|
|
2018-04-27 11:49:34 +00:00
|
|
|
favorite: Option<bool>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/ciphers/admin", data = "<data>")]
|
|
|
|
fn post_ciphers_admin(data: Json<CipherData>, headers: Headers, conn: DbConn) -> JsonResult {
|
2018-05-04 17:25:50 +00:00
|
|
|
// TODO: Implement this correctly
|
2018-04-27 11:49:34 +00:00
|
|
|
post_ciphers(data, headers, conn)
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/ciphers", data = "<data>")]
|
2018-02-17 19:47:13 +00:00
|
|
|
fn post_ciphers(data: Json<CipherData>, headers: Headers, conn: DbConn) -> JsonResult {
|
2018-02-17 22:38:55 +00:00
|
|
|
let data: CipherData = data.into_inner();
|
|
|
|
|
2018-05-04 17:02:19 +00:00
|
|
|
let mut cipher = Cipher::new(data.type_, data.name.clone());
|
|
|
|
update_cipher_from_data(&mut cipher, data, &headers, true, &conn)?;
|
2018-02-15 23:32:26 +00:00
|
|
|
|
2018-04-30 09:52:15 +00:00
|
|
|
Ok(Json(cipher.to_json(&headers.host, &headers.user.uuid, &conn)))
|
2018-02-15 23:32:26 +00:00
|
|
|
}
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-05-04 17:02:19 +00:00
|
|
|
fn update_cipher_from_data(cipher: &mut Cipher, data: CipherData, headers: &Headers, is_new: bool, conn: &DbConn) -> EmptyResult {
|
|
|
|
if is_new {
|
|
|
|
if let Some(org_id) = data.organizationId {
|
|
|
|
match UserOrganization::find_by_user_and_org(&headers.user.uuid, &org_id, &conn) {
|
|
|
|
None => err!("You don't have permission to add item to organization"),
|
|
|
|
Some(org_user) => if org_user.access_all || org_user.type_ < UserOrgType::User as i32 {
|
|
|
|
cipher.organization_uuid = Some(org_id);
|
|
|
|
} else {
|
|
|
|
err!("You don't have permission to add cipher directly to organization")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cipher.user_uuid = Some(headers.user.uuid.clone());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-19 15:54:56 +00:00
|
|
|
if let Some(ref folder_id) = data.folderId {
|
|
|
|
match Folder::find_by_uuid(folder_id, conn) {
|
2018-02-14 23:40:34 +00:00
|
|
|
Some(folder) => {
|
|
|
|
if folder.user_uuid != headers.user.uuid {
|
|
|
|
err!("Folder is not owned by user")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => err!("Folder doesn't exist")
|
|
|
|
}
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
2018-04-27 16:12:59 +00:00
|
|
|
let uppercase_fields = data.fields.map(|f| {
|
|
|
|
let mut value = json!({});
|
|
|
|
// Copy every field object and change the names to the correct case
|
|
|
|
copy_values(&f, &mut value);
|
|
|
|
value
|
|
|
|
});
|
|
|
|
|
2018-03-05 23:02:36 +00:00
|
|
|
// TODO: ******* Backwards compat start **********
|
|
|
|
// To remove backwards compatibility, just create an empty values object,
|
|
|
|
// and remove the compat code from cipher::to_json
|
2018-02-10 00:00:55 +00:00
|
|
|
let mut values = json!({
|
|
|
|
"Name": data.name,
|
|
|
|
"Notes": data.notes
|
|
|
|
});
|
|
|
|
|
2018-04-27 16:12:59 +00:00
|
|
|
values["Fields"] = uppercase_fields.clone().unwrap_or(Value::Null);
|
2018-03-05 23:02:36 +00:00
|
|
|
// TODO: ******* Backwards compat end **********
|
|
|
|
|
2018-02-15 23:32:26 +00:00
|
|
|
let type_data_opt = match data.type_ {
|
2018-02-17 22:38:55 +00:00
|
|
|
1 => data.login,
|
|
|
|
2 => data.secureNote,
|
|
|
|
3 => data.card,
|
|
|
|
4 => data.identity,
|
2018-02-15 23:32:26 +00:00
|
|
|
_ => err!("Invalid type")
|
|
|
|
};
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-02-15 23:32:26 +00:00
|
|
|
let type_data = match type_data_opt {
|
|
|
|
Some(data) => data,
|
|
|
|
None => err!("Data missing")
|
|
|
|
};
|
|
|
|
|
|
|
|
// Copy the type data and change the names to the correct case
|
2018-03-21 00:07:48 +00:00
|
|
|
copy_values(&type_data, &mut values);
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-05-01 15:54:22 +00:00
|
|
|
if cipher.move_to_folder(data.folderId, &headers.user.uuid, &conn).is_err() {
|
|
|
|
err!("Error saving the folder information")
|
|
|
|
}
|
2018-05-04 17:02:19 +00:00
|
|
|
|
|
|
|
cipher.favorite = data.favorite.unwrap_or(false);
|
2018-04-27 16:12:59 +00:00
|
|
|
cipher.name = data.name;
|
|
|
|
cipher.notes = data.notes;
|
|
|
|
cipher.fields = uppercase_fields.map(|f| f.to_string());
|
2018-02-15 23:32:26 +00:00
|
|
|
cipher.data = values.to_string();
|
|
|
|
|
2018-05-04 17:02:19 +00:00
|
|
|
cipher.save(&conn);
|
2018-02-15 23:32:26 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2018-03-21 00:07:48 +00:00
|
|
|
fn copy_values(from: &Value, to: &mut Value) {
|
|
|
|
if let Some(map) = from.as_object() {
|
|
|
|
for (key, val) in map {
|
|
|
|
copy_values(val, &mut to[util::upcase_first(key)]);
|
|
|
|
}
|
|
|
|
} else if let Some(array) = from.as_array() {
|
|
|
|
// Initialize array with null values
|
|
|
|
*to = json!(vec![Value::Null; array.len()]);
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-03-21 00:07:48 +00:00
|
|
|
for (index, val) in array.iter().enumerate() {
|
|
|
|
copy_values(val, &mut to[index]);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
*to = from.clone();
|
|
|
|
}
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 23:38:54 +00:00
|
|
|
use super::folders::FolderData;
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct ImportData {
|
|
|
|
ciphers: Vec<CipherData>,
|
|
|
|
folders: Vec<FolderData>,
|
|
|
|
folderRelationships: Vec<RelationsData>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct RelationsData {
|
|
|
|
// Cipher id
|
|
|
|
key: u32,
|
|
|
|
// Folder id
|
|
|
|
value: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-10 00:00:55 +00:00
|
|
|
#[post("/ciphers/import", data = "<data>")]
|
2018-02-22 23:38:54 +00:00
|
|
|
fn post_ciphers_import(data: Json<ImportData>, headers: Headers, conn: DbConn) -> EmptyResult {
|
|
|
|
let data: ImportData = data.into_inner();
|
2018-02-15 23:32:26 +00:00
|
|
|
|
|
|
|
// Read and create the folders
|
2018-05-04 17:25:50 +00:00
|
|
|
let folders: Vec<_> = data.folders.into_iter().map(|folder| {
|
|
|
|
let mut folder = Folder::new(headers.user.uuid.clone(), folder.name);
|
2018-02-15 23:32:26 +00:00
|
|
|
folder.save(&conn);
|
|
|
|
folder
|
|
|
|
}).collect();
|
|
|
|
|
|
|
|
// Read the relations between folders and ciphers
|
2018-02-22 23:38:54 +00:00
|
|
|
use std::collections::HashMap;
|
|
|
|
let mut relations_map = HashMap::new();
|
|
|
|
|
|
|
|
for relation in data.folderRelationships {
|
|
|
|
relations_map.insert(relation.key, relation.value);
|
|
|
|
}
|
2018-02-15 23:32:26 +00:00
|
|
|
|
|
|
|
// Read and create the ciphers
|
2018-02-22 23:38:54 +00:00
|
|
|
let mut index = 0;
|
|
|
|
for cipher_data in data.ciphers {
|
|
|
|
let folder_uuid = relations_map.get(&index)
|
|
|
|
.map(|i| folders[*i as usize].uuid.clone());
|
2018-02-15 23:32:26 +00:00
|
|
|
|
2018-05-04 17:02:19 +00:00
|
|
|
let mut cipher = Cipher::new(cipher_data.type_, cipher_data.name.clone());
|
|
|
|
update_cipher_from_data(&mut cipher, cipher_data, &headers, true, &conn)?;
|
2018-02-15 23:32:26 +00:00
|
|
|
|
2018-05-03 16:47:27 +00:00
|
|
|
cipher.move_to_folder(folder_uuid, &headers.user.uuid.clone(), &conn).ok();
|
2018-05-04 17:02:19 +00:00
|
|
|
|
2018-02-22 23:38:54 +00:00
|
|
|
index += 1;
|
|
|
|
}
|
2018-02-15 23:32:26 +00:00
|
|
|
|
|
|
|
Ok(())
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
2018-05-04 17:25:50 +00:00
|
|
|
#[post("/ciphers/<uuid>/admin", data = "<data>")]
|
|
|
|
fn post_cipher_admin(uuid: String, data: Json<CipherData>, headers: Headers, conn: DbConn) -> JsonResult {
|
|
|
|
// TODO: Implement this correctly
|
|
|
|
post_cipher(uuid, data, headers, conn)
|
|
|
|
}
|
|
|
|
|
2018-02-15 23:32:26 +00:00
|
|
|
#[post("/ciphers/<uuid>", data = "<data>")]
|
2018-02-17 19:47:13 +00:00
|
|
|
fn post_cipher(uuid: String, data: Json<CipherData>, headers: Headers, conn: DbConn) -> JsonResult {
|
2018-02-15 23:32:26 +00:00
|
|
|
put_cipher(uuid, data, headers, conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[put("/ciphers/<uuid>", data = "<data>")]
|
2018-02-17 19:47:13 +00:00
|
|
|
fn put_cipher(uuid: String, data: Json<CipherData>, headers: Headers, conn: DbConn) -> JsonResult {
|
2018-02-17 22:38:55 +00:00
|
|
|
let data: CipherData = data.into_inner();
|
|
|
|
|
2018-02-15 23:32:26 +00:00
|
|
|
let mut cipher = match Cipher::find_by_uuid(&uuid, &conn) {
|
|
|
|
Some(cipher) => cipher,
|
|
|
|
None => err!("Cipher doesn't exist")
|
|
|
|
};
|
|
|
|
|
2018-04-30 09:52:15 +00:00
|
|
|
if !cipher.is_write_accessible_to_user(&headers.user.uuid, &conn) {
|
|
|
|
err!("Cipher is not write accessible")
|
2018-02-15 23:32:26 +00:00
|
|
|
}
|
|
|
|
|
2018-05-04 17:02:19 +00:00
|
|
|
update_cipher_from_data(&mut cipher, data, &headers, false, &conn)?;
|
2018-02-15 23:32:26 +00:00
|
|
|
|
2018-04-30 09:52:15 +00:00
|
|
|
Ok(Json(cipher.to_json(&headers.host, &headers.user.uuid, &conn)))
|
2018-02-15 23:32:26 +00:00
|
|
|
}
|
|
|
|
|
2018-05-09 10:55:05 +00:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct CollectionsAdminData {
|
|
|
|
collectionIds: Vec<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/ciphers/<uuid>/collections-admin", data = "<data>")]
|
|
|
|
fn post_collections_admin(uuid: String, data: Json<CollectionsAdminData>, headers: Headers, conn: DbConn) -> EmptyResult {
|
|
|
|
let data: CollectionsAdminData = data.into_inner();
|
|
|
|
|
|
|
|
let cipher = match Cipher::find_by_uuid(&uuid, &conn) {
|
|
|
|
Some(cipher) => cipher,
|
|
|
|
None => err!("Cipher doesn't exist")
|
|
|
|
};
|
|
|
|
|
|
|
|
if !cipher.is_write_accessible_to_user(&headers.user.uuid, &conn) {
|
|
|
|
err!("Cipher is not write accessible")
|
|
|
|
}
|
|
|
|
|
|
|
|
let posted_collections: HashSet<String> = data.collectionIds.iter().cloned().collect();
|
|
|
|
let current_collections: HashSet<String> = cipher.get_collections(&conn).iter().cloned().collect();
|
|
|
|
|
|
|
|
for collection in posted_collections.symmetric_difference(¤t_collections) {
|
|
|
|
match Collection::find_by_uuid(&collection, &conn) {
|
2018-05-11 10:45:55 +00:00
|
|
|
None => err!("Invalid collection ID provided"),
|
2018-05-09 10:55:05 +00:00
|
|
|
Some(collection) => {
|
|
|
|
if collection.is_writable_by_user(&headers.user.uuid, &conn) {
|
|
|
|
if posted_collections.contains(&collection.uuid) { // Add to collection
|
|
|
|
CollectionCipher::save(&cipher.uuid, &collection.uuid, &conn);
|
|
|
|
} else { // Remove from collection
|
|
|
|
CollectionCipher::delete(&cipher.uuid, &collection.uuid, &conn);
|
|
|
|
}
|
2018-05-11 10:45:55 +00:00
|
|
|
} else {
|
|
|
|
err!("No rights to modify the collection")
|
2018-05-09 10:55:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2018-02-15 23:32:26 +00:00
|
|
|
|
2018-02-10 00:00:55 +00:00
|
|
|
#[post("/ciphers/<uuid>/attachment", format = "multipart/form-data", data = "<data>")]
|
2018-02-17 19:47:13 +00:00
|
|
|
fn post_attachment(uuid: String, data: Data, content_type: &ContentType, headers: Headers, conn: DbConn) -> JsonResult {
|
2018-02-14 23:40:34 +00:00
|
|
|
let cipher = match Cipher::find_by_uuid(&uuid, &conn) {
|
|
|
|
Some(cipher) => cipher,
|
|
|
|
None => err!("Cipher doesn't exist")
|
|
|
|
};
|
|
|
|
|
2018-04-30 09:52:15 +00:00
|
|
|
if !cipher.is_write_accessible_to_user(&headers.user.uuid, &conn) {
|
|
|
|
err!("Cipher is not write accessible")
|
2018-02-14 23:40:34 +00:00
|
|
|
}
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
let mut params = content_type.params();
|
2018-02-14 23:40:34 +00:00
|
|
|
let boundary_pair = params.next().expect("No boundary provided");
|
2018-02-10 00:00:55 +00:00
|
|
|
let boundary = boundary_pair.1;
|
|
|
|
|
2018-02-14 23:40:34 +00:00
|
|
|
let base_path = Path::new(&CONFIG.attachments_folder).join(&cipher.uuid);
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-02-14 23:40:34 +00:00
|
|
|
Multipart::with_body(data.open(), boundary).foreach_entry(|mut field| {
|
|
|
|
let name = field.headers.filename.unwrap(); // This is provided by the client, don't trust it
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-02-14 23:40:34 +00:00
|
|
|
let file_name = HEXLOWER.encode(&crypto::get_random(vec![0; 10]));
|
|
|
|
let path = base_path.join(&file_name);
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-02-14 23:40:34 +00:00
|
|
|
let size = match field.data.save()
|
|
|
|
.memory_threshold(0)
|
|
|
|
.size_limit(None)
|
|
|
|
.with_path(path) {
|
2018-02-14 23:53:11 +00:00
|
|
|
SaveResult::Full(SavedData::File(_, size)) => size as i32,
|
2018-02-14 23:40:34 +00:00
|
|
|
_ => return
|
|
|
|
};
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-02-14 23:40:34 +00:00
|
|
|
let attachment = Attachment::new(file_name, cipher.uuid.clone(), name, size);
|
|
|
|
println!("Attachment: {:#?}", attachment);
|
|
|
|
attachment.save(&conn);
|
2018-02-22 23:38:54 +00:00
|
|
|
}).expect("Error processing multipart data");
|
2018-02-14 23:40:34 +00:00
|
|
|
|
2018-04-30 09:52:15 +00:00
|
|
|
Ok(Json(cipher.to_json(&headers.host, &headers.user.uuid, &conn)))
|
2018-02-14 23:40:34 +00:00
|
|
|
}
|
|
|
|
|
2018-02-17 22:38:55 +00:00
|
|
|
#[post("/ciphers/<uuid>/attachment/<attachment_id>/delete")]
|
|
|
|
fn delete_attachment_post(uuid: String, attachment_id: String, headers: Headers, conn: DbConn) -> EmptyResult {
|
2018-02-14 23:40:34 +00:00
|
|
|
delete_attachment(uuid, attachment_id, headers, conn)
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[delete("/ciphers/<uuid>/attachment/<attachment_id>")]
|
2018-02-17 19:47:13 +00:00
|
|
|
fn delete_attachment(uuid: String, attachment_id: String, headers: Headers, conn: DbConn) -> EmptyResult {
|
2018-02-14 23:40:34 +00:00
|
|
|
let attachment = match Attachment::find_by_id(&attachment_id, &conn) {
|
|
|
|
Some(attachment) => attachment,
|
|
|
|
None => err!("Attachment doesn't exist")
|
|
|
|
};
|
|
|
|
|
|
|
|
if attachment.cipher_uuid != uuid {
|
|
|
|
err!("Attachment from other cipher")
|
|
|
|
}
|
|
|
|
|
|
|
|
let cipher = match Cipher::find_by_uuid(&uuid, &conn) {
|
|
|
|
Some(cipher) => cipher,
|
|
|
|
None => err!("Cipher doesn't exist")
|
|
|
|
};
|
|
|
|
|
2018-04-30 09:52:15 +00:00
|
|
|
if !cipher.is_write_accessible_to_user(&headers.user.uuid, &conn) {
|
|
|
|
err!("Cipher cannot be deleted by user")
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
2018-02-15 18:05:57 +00:00
|
|
|
// Delete attachment
|
2018-02-14 23:40:34 +00:00
|
|
|
attachment.delete(&conn);
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-02-14 23:40:34 +00:00
|
|
|
Ok(())
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
|
|
|
|
2018-02-15 23:32:26 +00:00
|
|
|
#[post("/ciphers/<uuid>/delete")]
|
2018-02-17 19:47:13 +00:00
|
|
|
fn delete_cipher_post(uuid: String, headers: Headers, conn: DbConn) -> EmptyResult {
|
2018-04-19 16:57:17 +00:00
|
|
|
_delete_cipher_by_uuid(&uuid, &headers, &conn)
|
2018-02-15 18:05:57 +00:00
|
|
|
}
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
#[delete("/ciphers/<uuid>")]
|
2018-02-17 19:47:13 +00:00
|
|
|
fn delete_cipher(uuid: String, headers: Headers, conn: DbConn) -> EmptyResult {
|
2018-04-19 16:57:17 +00:00
|
|
|
_delete_cipher_by_uuid(&uuid, &headers, &conn)
|
2018-02-15 18:05:57 +00:00
|
|
|
}
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-03-05 23:02:36 +00:00
|
|
|
#[post("/ciphers/delete", data = "<data>")]
|
|
|
|
fn delete_cipher_selected(data: Json<Value>, headers: Headers, conn: DbConn) -> EmptyResult {
|
|
|
|
let data: Value = data.into_inner();
|
|
|
|
|
2018-04-19 14:32:11 +00:00
|
|
|
let uuids = match data.get("ids") {
|
|
|
|
Some(ids) => match ids.as_array() {
|
2018-04-24 20:01:55 +00:00
|
|
|
Some(ids) => ids.iter().filter_map(|uuid| { uuid.as_str() }),
|
2018-04-19 14:32:11 +00:00
|
|
|
None => err!("Posted ids field is not an array")
|
|
|
|
},
|
|
|
|
None => err!("Request missing ids field")
|
|
|
|
};
|
|
|
|
|
|
|
|
for uuid in uuids {
|
2018-04-19 16:57:17 +00:00
|
|
|
if let error @ Err(_) = _delete_cipher_by_uuid(uuid, &headers, &conn) {
|
|
|
|
return error;
|
2018-04-19 14:32:11 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/ciphers/move", data = "<data>")]
|
|
|
|
fn move_cipher_selected(data: Json<Value>, headers: Headers, conn: DbConn) -> EmptyResult {
|
|
|
|
let folder_id = match data.get("folderId") {
|
|
|
|
Some(folder_id) => {
|
|
|
|
match folder_id.as_str() {
|
|
|
|
Some(folder_id) => {
|
|
|
|
match Folder::find_by_uuid(folder_id, &conn) {
|
|
|
|
Some(folder) => {
|
|
|
|
if folder.user_uuid != headers.user.uuid {
|
|
|
|
err!("Folder is not owned by user")
|
|
|
|
}
|
2018-04-30 09:52:15 +00:00
|
|
|
Some(folder.uuid)
|
2018-04-19 14:32:11 +00:00
|
|
|
}
|
|
|
|
None => err!("Folder doesn't exist")
|
|
|
|
}
|
2018-04-24 20:01:55 +00:00
|
|
|
}
|
2018-04-19 14:32:11 +00:00
|
|
|
None => err!("Folder id provided in wrong format")
|
|
|
|
}
|
2018-04-24 20:01:55 +00:00
|
|
|
}
|
2018-04-19 14:32:11 +00:00
|
|
|
None => None
|
|
|
|
};
|
|
|
|
|
|
|
|
let uuids = match data.get("ids") {
|
|
|
|
Some(ids) => match ids.as_array() {
|
2018-04-24 20:01:55 +00:00
|
|
|
Some(ids) => ids.iter().filter_map(|uuid| { uuid.as_str() }),
|
2018-04-19 14:32:11 +00:00
|
|
|
None => err!("Posted ids field is not an array")
|
|
|
|
},
|
|
|
|
None => err!("Request missing ids field")
|
|
|
|
};
|
|
|
|
|
|
|
|
for uuid in uuids {
|
|
|
|
let mut cipher = match Cipher::find_by_uuid(uuid, &conn) {
|
|
|
|
Some(cipher) => cipher,
|
|
|
|
None => err!("Cipher doesn't exist")
|
|
|
|
};
|
|
|
|
|
2018-04-30 09:52:15 +00:00
|
|
|
if !cipher.is_accessible_to_user(&headers.user.uuid, &conn) {
|
|
|
|
err!("Cipher is not accessible by user")
|
2018-04-19 14:32:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Move cipher
|
2018-05-01 15:54:22 +00:00
|
|
|
if cipher.move_to_folder(folder_id.clone(), &headers.user.uuid, &conn).is_err() {
|
|
|
|
err!("Error saving the folder information")
|
|
|
|
}
|
2018-04-19 14:32:11 +00:00
|
|
|
cipher.save(&conn);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
2018-03-05 23:02:36 +00:00
|
|
|
}
|
|
|
|
|
2018-02-22 23:38:54 +00:00
|
|
|
#[post("/ciphers/purge", data = "<data>")]
|
|
|
|
fn delete_all(data: Json<PasswordData>, headers: Headers, conn: DbConn) -> EmptyResult {
|
|
|
|
let data: PasswordData = data.into_inner();
|
|
|
|
let password_hash = data.masterPasswordHash;
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
let user = headers.user;
|
|
|
|
|
2018-02-22 23:38:54 +00:00
|
|
|
if !user.check_valid_password(&password_hash) {
|
2018-02-10 00:00:55 +00:00
|
|
|
err!("Invalid password")
|
|
|
|
}
|
|
|
|
|
2018-02-15 18:05:57 +00:00
|
|
|
// Delete ciphers and their attachments
|
|
|
|
for cipher in Cipher::find_by_user(&user.uuid, &conn) {
|
2018-04-19 16:57:17 +00:00
|
|
|
_delete_cipher(cipher, &conn);
|
2018-02-15 18:05:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Delete folders
|
|
|
|
for f in Folder::find_by_user(&user.uuid, &conn) { f.delete(&conn); }
|
|
|
|
|
|
|
|
Ok(())
|
2018-02-10 00:00:55 +00:00
|
|
|
}
|
2018-04-19 16:57:17 +00:00
|
|
|
|
|
|
|
fn _delete_cipher_by_uuid(uuid: &str, headers: &Headers, conn: &DbConn) -> EmptyResult {
|
|
|
|
let cipher = match Cipher::find_by_uuid(uuid, conn) {
|
|
|
|
Some(cipher) => cipher,
|
|
|
|
None => err!("Cipher doesn't exist"),
|
|
|
|
};
|
|
|
|
|
2018-04-30 09:52:15 +00:00
|
|
|
if !cipher.is_write_accessible_to_user(&headers.user.uuid, &conn) {
|
|
|
|
err!("Cipher can't be deleted by user")
|
2018-04-19 16:57:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_delete_cipher(cipher, conn);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn _delete_cipher(cipher: Cipher, conn: &DbConn) {
|
|
|
|
// Delete the attachments
|
|
|
|
for a in Attachment::find_by_cipher(&cipher.uuid, &conn) { a.delete(&conn); }
|
|
|
|
|
|
|
|
// Delete the cipher
|
|
|
|
cipher.delete(conn);
|
|
|
|
}
|