diff --git a/src/api/core/ciphers.rs b/src/api/core/ciphers.rs index 519e67e..d5309c4 100644 --- a/src/api/core/ciphers.rs +++ b/src/api/core/ciphers.rs @@ -121,12 +121,12 @@ fn post_ciphers(data: Json, headers: Headers, conn: DbConn) -> JsonR Ok(Json(cipher.to_json(&headers.host, &headers.user.uuid, &conn))) } -fn update_cipher_from_data(cipher: &mut Cipher, data: CipherData, headers: &Headers, is_new: bool, conn: &DbConn) -> EmptyResult { - if is_new { +fn update_cipher_from_data(cipher: &mut Cipher, data: CipherData, headers: &Headers, is_new_or_shared: bool, conn: &DbConn) -> EmptyResult { + if is_new_or_shared { 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 { + Some(org_user) => if org_user.has_full_access() { cipher.organization_uuid = Some(org_id); } else { err!("You don't have permission to add cipher directly to organization") @@ -340,6 +340,50 @@ fn post_collections_admin(uuid: String, data: Json, header Ok(()) } +#[derive(Deserialize)] +#[allow(non_snake_case)] +struct ShareCipherData { + cipher: CipherData, + collectionIds: Vec, +} + +#[post("/ciphers//share", data = "")] +fn post_cipher_share(uuid: String, data: Json, headers: Headers, conn: DbConn) -> JsonResult { + let data: ShareCipherData = data.into_inner(); + + let mut cipher = match Cipher::find_by_uuid(&uuid, &conn) { + Some(cipher) => { + if cipher.is_write_accessible_to_user(&headers.user.uuid, &conn) { + cipher + } else { + err!("Cipher is not write accessible") + } + }, + None => err!("Cipher doesn't exist") + }; + + match data.cipher.organizationId { + None => err!("Organization id not provided"), + Some(_) => { + update_cipher_from_data(&mut cipher, data.cipher, &headers, true, &conn)?; + for collection in data.collectionIds.iter() { + match Collection::find_by_uuid(&collection, &conn) { + None => err!("Invalid collection ID provided"), + Some(collection) => { + if collection.is_writable_by_user(&headers.user.uuid, &conn) { + CollectionCipher::save(&cipher.uuid.clone(), &collection.uuid, &conn); + } else { + err!("No rights to modify the collection") + } + } + } + } + + Ok(Json(cipher.to_json(&headers.host, &headers.user.uuid, &conn))) + } + } +} + #[post("/ciphers//attachment", format = "multipart/form-data", data = "")] fn post_attachment(uuid: String, data: Data, content_type: &ContentType, headers: Headers, conn: DbConn) -> JsonResult { let cipher = match Cipher::find_by_uuid(&uuid, &conn) { diff --git a/src/api/core/mod.rs b/src/api/core/mod.rs index 1f6daf5..58d634d 100644 --- a/src/api/core/mod.rs +++ b/src/api/core/mod.rs @@ -34,6 +34,7 @@ pub fn routes() -> Vec { delete_attachment_post, delete_attachment, post_cipher_admin, + post_cipher_share, post_cipher, put_cipher, delete_cipher_post, diff --git a/src/db/models/organization.rs b/src/db/models/organization.rs index 91e4b06..a32cc5e 100644 --- a/src/db/models/organization.rs +++ b/src/db/models/organization.rs @@ -224,6 +224,10 @@ impl UserOrganization { } } + pub fn has_full_access(self) -> bool { + self.access_all || self.type_ < UserOrgType::User as i32 + } + pub fn find_by_uuid(uuid: &str, conn: &DbConn) -> Option { users_organizations::table .filter(users_organizations::uuid.eq(uuid))