From 2ea0377dfce507f0def20bca35657d3dd2b9bb03 Mon Sep 17 00:00:00 2001 From: jaasen-livefront Date: Fri, 4 Apr 2025 14:41:16 -0700 Subject: [PATCH] DRY up code --- .../Services/Implementations/CipherService.cs | 50 ++++++------------- 1 file changed, 14 insertions(+), 36 deletions(-) diff --git a/src/Core/Vault/Services/Implementations/CipherService.cs b/src/Core/Vault/Services/Implementations/CipherService.cs index a89c7cf2d5..8106e49fc1 100644 --- a/src/Core/Vault/Services/Implementations/CipherService.cs +++ b/src/Core/Vault/Services/Implementations/CipherService.cs @@ -1014,47 +1014,25 @@ public class CipherService : ICipherService private string SerializeCipherData(CipherData data) { - if (data is CipherLoginData cipherLoginData) + return data switch { - return JsonSerializer.Serialize(cipherLoginData); - } - if (data is CipherIdentityData cipherIdentityData) - { - return JsonSerializer.Serialize(cipherIdentityData); - } - if (data is CipherCardData cipherCardData) - { - return JsonSerializer.Serialize(cipherCardData); - } - if (data is CipherSecureNoteData cipherSecureNoteData) - { - return JsonSerializer.Serialize(cipherSecureNoteData); - } - - return null; + CipherLoginData loginData => JsonSerializer.Serialize(loginData), + CipherIdentityData identityData => JsonSerializer.Serialize(identityData), + CipherCardData cardData => JsonSerializer.Serialize(cardData), + CipherSecureNoteData noteData => JsonSerializer.Serialize(noteData), + _ => throw new ArgumentException("Unsupported cipher data type.", nameof(data)) + }; } private CipherData DeserializeCipherData(Cipher cipher) { - if (cipher.Type == CipherType.Login) + return cipher.Type switch { - return JsonSerializer.Deserialize(cipher.Data); - } - - if (cipher.Type == CipherType.Identity) - { - return JsonSerializer.Deserialize(cipher.Data); - } - - if (cipher.Type == CipherType.Card) - { - return JsonSerializer.Deserialize(cipher.Data); - } - - if (cipher.Type == CipherType.SecureNote) - { - return JsonSerializer.Deserialize(cipher.Data); - } - return null; + CipherType.Login => JsonSerializer.Deserialize(cipher.Data), + CipherType.Identity => JsonSerializer.Deserialize(cipher.Data), + CipherType.Card => JsonSerializer.Deserialize(cipher.Data), + CipherType.SecureNote => JsonSerializer.Deserialize(cipher.Data), + _ => throw new ArgumentException("Unsupported cipher type.", nameof(cipher)) + }; } }