mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00
using the new CanDelete function
This commit is contained in:
parent
2702a8a66a
commit
6858aa31d7
@ -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();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user