From 6858aa31d75c07bdc91545ab25dce0d16fee8dcf Mon Sep 17 00:00:00 2001 From: cd-bitwarden <106776772+cd-bitwarden@users.noreply.github.com> Date: Tue, 18 Mar 2025 16:36:39 -0400 Subject: [PATCH] using the new CanDelete function --- src/Api/Vault/Controllers/CiphersController.cs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/Api/Vault/Controllers/CiphersController.cs b/src/Api/Vault/Controllers/CiphersController.cs index 3ab007ddb9..f1087ff965 100644 --- a/src/Api/Vault/Controllers/CiphersController.cs +++ b/src/Api/Vault/Controllers/CiphersController.cs @@ -16,6 +16,7 @@ using Bit.Core.Services; using Bit.Core.Settings; using Bit.Core.Tools.Services; using Bit.Core.Utilities; +using Bit.Core.Vault.Authorization.Permissions; using Bit.Core.Vault.Entities; using Bit.Core.Vault.Models.Data; using Bit.Core.Vault.Queries; @@ -708,13 +709,11 @@ public class CiphersController : Controller public async Task Delete(Guid id) { var userId = _userService.GetProperUserId(User).Value; + var user = await _userService.GetUserByIdAsync(userId); var cipher = await GetByIdAsync(id, userId); - var collectionCiphers = await _collectionCipherRepository.GetManyByUserIdCipherIdAsync(userId, cipher.Id); - var hasManagePermissionsForCipher = (await _collectionRepository.GetManyByUserIdAsync(userId)) - .Where(c => c.OrganizationId == cipher.OrganizationId && c.Manage && collectionCiphers.Select(cc => cc.CollectionId).Contains(c.Id)) - .ToDictionary(c => c.Id)?.Count > 0; + var canDelete = NormalCipherPermissions.CanDelete(user, cipher, null); - if (cipher == null || (!hasManagePermissionsForCipher && cipher.Type == Core.Vault.Enums.CipherType.SecureNote)) + if (cipher == null || !canDelete) { throw new NotFoundException(); }