|
|
@ -3,7 +3,7 @@ use serde_json::Value as JsonValue; |
|
|
|
|
|
|
|
use uuid::Uuid; |
|
|
|
|
|
|
|
use super::{User, Organization, Attachment, FolderCipher, CollectionCipher, UserOrgType, UserOrgStatus}; |
|
|
|
use super::{User, Organization, Attachment, FolderCipher, CollectionCipher, UserOrganization, UserOrgType, UserOrgStatus}; |
|
|
|
|
|
|
|
#[derive(Debug, Identifiable, Queryable, Insertable, Associations)] |
|
|
|
#[table_name = "ciphers"] |
|
|
@ -122,7 +122,23 @@ impl Cipher { |
|
|
|
json_object |
|
|
|
} |
|
|
|
|
|
|
|
pub fn update_users_revision(&self, conn: &DbConn) { |
|
|
|
match self.user_uuid { |
|
|
|
Some(ref user_uuid) => User::update_uuid_revision(&user_uuid, conn), |
|
|
|
None => { // Belongs to Organization, need to update affected users
|
|
|
|
if let Some(ref org_uuid) = self.organization_uuid { |
|
|
|
UserOrganization::find_by_cipher_and_org(&self.uuid, &org_uuid, conn) |
|
|
|
.iter() |
|
|
|
.for_each(|user_org| { |
|
|
|
User::update_uuid_revision(&user_org.user_uuid, conn) |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
}; |
|
|
|
} |
|
|
|
|
|
|
|
pub fn save(&mut self, conn: &DbConn) -> bool { |
|
|
|
self.update_users_revision(conn); |
|
|
|
self.updated_at = Utc::now().naive_utc(); |
|
|
|
|
|
|
|
match diesel::replace_into(ciphers::table) |
|
|
@ -134,6 +150,8 @@ impl Cipher { |
|
|
|
} |
|
|
|
|
|
|
|
pub fn delete(self, conn: &DbConn) -> QueryResult<()> { |
|
|
|
self.update_users_revision(conn); |
|
|
|
|
|
|
|
FolderCipher::delete_all_by_cipher(&self.uuid, &conn)?; |
|
|
|
CollectionCipher::delete_all_by_cipher(&self.uuid, &conn)?; |
|
|
|
Attachment::delete_all_by_cipher(&self.uuid, &conn)?; |
|
|
@ -157,6 +175,7 @@ impl Cipher { |
|
|
|
None => { |
|
|
|
match folder_uuid { |
|
|
|
Some(new_folder) => { |
|
|
|
self.update_users_revision(conn); |
|
|
|
let folder_cipher = FolderCipher::new(&new_folder, &self.uuid); |
|
|
|
folder_cipher.save(&conn).or(Err("Couldn't save folder setting")) |
|
|
|
}, |
|
|
@ -169,6 +188,7 @@ impl Cipher { |
|
|
|
if current_folder == new_folder { |
|
|
|
Ok(()) //nothing to do
|
|
|
|
} else { |
|
|
|
self.update_users_revision(conn); |
|
|
|
match FolderCipher::find_by_folder_and_cipher(¤t_folder, &self.uuid, &conn) { |
|
|
|
Some(current_folder) => { |
|
|
|
current_folder.delete(&conn).or(Err("Failed removing old folder mapping")) |
|
|
@ -181,6 +201,7 @@ impl Cipher { |
|
|
|
} |
|
|
|
}, |
|
|
|
None => { |
|
|
|
self.update_users_revision(conn); |
|
|
|
match FolderCipher::find_by_folder_and_cipher(¤t_folder, &self.uuid, &conn) { |
|
|
|
Some(current_folder) => { |
|
|
|
current_folder.delete(&conn).or(Err("Failed removing old folder mapping")) |
|
|
|