From 380cf062119bc4a8d892e84eb536440d0b67fc68 Mon Sep 17 00:00:00 2001 From: janost Date: Sat, 6 Oct 2018 14:13:49 +0200 Subject: [PATCH] Cipher::save() should return QueryResult instead of bool --- src/api/core/ciphers.rs | 10 ++++++++-- src/db/models/cipher.rs | 10 ++++------ 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/src/api/core/ciphers.rs b/src/api/core/ciphers.rs index 80ecd6d0..dc072872 100644 --- a/src/api/core/ciphers.rs +++ b/src/api/core/ciphers.rs @@ -191,7 +191,10 @@ pub fn update_cipher_from_data(cipher: &mut Cipher, data: CipherData, headers: & cipher.data = type_data.to_string(); cipher.password_history = data.PasswordHistory.map(|f| f.to_string()); - cipher.save(&conn); + match cipher.save(&conn) { + Ok(()) => (), + Err(_) => println!("Error: Failed to save cipher") + }; ws.send_cipher_update(ut, &cipher, &cipher.update_users_revision(&conn)); if cipher.move_to_folder(data.FolderId, &headers.user.uuid, &conn).is_err() { @@ -626,7 +629,10 @@ fn move_cipher_selected(data: JsonUpcase, headers: Headers, conn: DbConn, if cipher.move_to_folder(folder_id.clone(), &headers.user.uuid, &conn).is_err() { err!("Error saving the folder information") } - cipher.save(&conn); + match cipher.save(&conn) { + Ok(()) => (), + Err(_) => println!("Error: Failed to save cipher") + }; ws.send_cipher_update(UpdateType::SyncCipherUpdate, &cipher, &cipher.update_users_revision(&conn)); } diff --git a/src/db/models/cipher.rs b/src/db/models/cipher.rs index 9039c527..e67ea0fd 100644 --- a/src/db/models/cipher.rs +++ b/src/db/models/cipher.rs @@ -151,16 +151,14 @@ impl Cipher { user_uuids } - pub fn save(&mut self, conn: &DbConn) -> bool { + pub fn save(&mut self, conn: &DbConn) -> QueryResult<()> { self.update_users_revision(conn); self.updated_at = Utc::now().naive_utc(); - match diesel::replace_into(ciphers::table) + diesel::replace_into(ciphers::table) .values(&*self) - .execute(&**conn) { - Ok(1) => true, // One row inserted - _ => false, - } + .execute(&**conn) + .and(Ok(())) } pub fn delete(&self, conn: &DbConn) -> QueryResult<()> {