1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

[PM-11162] Assign to Collection Permission Update (#4844)

Only users with Manage/Edit permissions will be allowed to Assign To Collections. If the user has Can Edit Except Password the collections dropdown will be disabled.

---------

Co-authored-by: Matt Bishop <mbishop@bitwarden.com>
Co-authored-by: kejaeger <138028972+kejaeger@users.noreply.github.com>
This commit is contained in:
Jason Ng 2025-02-04 15:45:24 -05:00 committed by GitHub
parent 90680f482a
commit 412c6f9849
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 233 additions and 39 deletions

View File

@ -424,6 +424,59 @@ public class CiphersController : Controller
return false; return false;
} }
/// <summary>
/// TODO: Move this to its own authorization handler or equivalent service - AC-2062
/// </summary>
private async Task<bool> CanModifyCipherCollectionsAsync(Guid organizationId, IEnumerable<Guid> cipherIds)
{
// If the user can edit all ciphers for the organization, just check they all belong to the org
if (await CanEditAllCiphersAsync(organizationId))
{
// TODO: This can likely be optimized to only query the requested ciphers and then checking they belong to the org
var orgCiphers = (await _cipherRepository.GetManyByOrganizationIdAsync(organizationId)).ToDictionary(c => c.Id);
// Ensure all requested ciphers are in orgCiphers
if (cipherIds.Any(c => !orgCiphers.ContainsKey(c)))
{
return false;
}
return true;
}
// The user cannot access any ciphers for the organization, we're done
if (!await CanAccessOrganizationCiphersAsync(organizationId))
{
return false;
}
var userId = _userService.GetProperUserId(User).Value;
// Select all editable ciphers for this user belonging to the organization
var editableOrgCipherList = (await _cipherRepository.GetManyByUserIdAsync(userId, true))
.Where(c => c.OrganizationId == organizationId && c.UserId == null && c.Edit && c.ViewPassword).ToList();
// Special case for unassigned ciphers
if (await CanAccessUnassignedCiphersAsync(organizationId))
{
var unassignedCiphers =
(await _cipherRepository.GetManyUnassignedOrganizationDetailsByOrganizationIdAsync(
organizationId));
// Users that can access unassigned ciphers can also edit them
editableOrgCipherList.AddRange(unassignedCiphers.Select(c => new CipherDetails(c) { Edit = true }));
}
var editableOrgCiphers = editableOrgCipherList
.ToDictionary(c => c.Id);
if (cipherIds.Any(c => !editableOrgCiphers.ContainsKey(c)))
{
return false;
}
return true;
}
/// <summary> /// <summary>
/// TODO: Move this to its own authorization handler or equivalent service - AC-2062 /// TODO: Move this to its own authorization handler or equivalent service - AC-2062
/// </summary> /// </summary>
@ -579,7 +632,7 @@ public class CiphersController : Controller
var userId = _userService.GetProperUserId(User).Value; var userId = _userService.GetProperUserId(User).Value;
var cipher = await GetByIdAsync(id, userId); var cipher = await GetByIdAsync(id, userId);
if (cipher == null || !cipher.OrganizationId.HasValue || if (cipher == null || !cipher.OrganizationId.HasValue ||
!await _currentContext.OrganizationUser(cipher.OrganizationId.Value)) !await _currentContext.OrganizationUser(cipher.OrganizationId.Value) || !cipher.ViewPassword)
{ {
throw new NotFoundException(); throw new NotFoundException();
} }
@ -634,7 +687,7 @@ public class CiphersController : Controller
[HttpPost("bulk-collections")] [HttpPost("bulk-collections")]
public async Task PostBulkCollections([FromBody] CipherBulkUpdateCollectionsRequestModel model) public async Task PostBulkCollections([FromBody] CipherBulkUpdateCollectionsRequestModel model)
{ {
if (!await CanEditCiphersAsync(model.OrganizationId, model.CipherIds) || if (!await CanModifyCipherCollectionsAsync(model.OrganizationId, model.CipherIds) ||
!await CanEditItemsInCollections(model.OrganizationId, model.CollectionIds)) !await CanEditItemsInCollections(model.OrganizationId, model.CollectionIds))
{ {
throw new NotFoundException(); throw new NotFoundException();

View File

@ -98,7 +98,7 @@ public class CipherRepository : Repository<Cipher, Guid>, ICipherRepository
return results return results
.GroupBy(c => c.Id) .GroupBy(c => c.Id)
.Select(g => g.OrderByDescending(og => og.Edit).First()) .Select(g => g.OrderByDescending(og => og.Edit).ThenByDescending(og => og.ViewPassword).First())
.ToList(); .ToList();
} }
} }

View File

@ -5,12 +5,40 @@ AS
BEGIN BEGIN
SET NOCOUNT ON SET NOCOUNT ON
SELECT TOP 1 SELECT
* [Id],
[UserId],
[OrganizationId],
[Type],
[Data],
[Attachments],
[CreationDate],
[RevisionDate],
[Favorite],
[FolderId],
[DeletedDate],
[Reprompt],
[Key],
[OrganizationUseTotp],
MAX ([Edit]) AS [Edit],
MAX ([ViewPassword]) AS [ViewPassword]
FROM FROM
[dbo].[UserCipherDetails](@UserId) [dbo].[UserCipherDetails](@UserId)
WHERE WHERE
[Id] = @Id [Id] = @Id
ORDER BY GROUP BY
[Edit] DESC [Id],
END [UserId],
[OrganizationId],
[Type],
[Data],
[Attachments],
[CreationDate],
[RevisionDate],
[Favorite],
[FolderId],
[DeletedDate],
[Reprompt],
[Key],
[OrganizationUseTotp]
END

View File

@ -14,10 +14,9 @@ BEGIN
WHERE WHERE
[Id] = @CipherId [Id] = @CipherId
) )
SELECT
;WITH [AvailableCollectionsCTE] AS(
SELECT
C.[Id] C.[Id]
INTO #TempAvailableCollections
FROM FROM
[dbo].[Collection] C [dbo].[Collection] C
INNER JOIN INNER JOIN
@ -40,38 +39,33 @@ BEGIN
CU.[ReadOnly] = 0 CU.[ReadOnly] = 0
OR CG.[ReadOnly] = 0 OR CG.[ReadOnly] = 0
) )
), -- Insert new collection assignments
[CollectionCiphersCTE] AS( INSERT INTO [dbo].[CollectionCipher] (
SELECT [CollectionId],
[CollectionId], [CipherId]
[CipherId]
FROM
[dbo].[CollectionCipher]
WHERE
[CipherId] = @CipherId
) )
MERGE SELECT
[CollectionCiphersCTE] AS [Target] [Id],
USING @CipherId
@CollectionIds AS [Source] FROM @CollectionIds
ON WHERE [Id] IN (SELECT [Id] FROM [#TempAvailableCollections])
[Target].[CollectionId] = [Source].[Id] AND NOT EXISTS (
AND [Target].[CipherId] = @CipherId SELECT 1
WHEN NOT MATCHED BY TARGET FROM [dbo].[CollectionCipher]
AND [Source].[Id] IN (SELECT [Id] FROM [AvailableCollectionsCTE]) THEN WHERE [CollectionId] = [@CollectionIds].[Id]
INSERT VALUES AND [CipherId] = @CipherId
( );
[Source].[Id],
@CipherId -- Delete removed collection assignments
) DELETE CC
WHEN NOT MATCHED BY SOURCE FROM [dbo].[CollectionCipher] CC
AND [Target].[CipherId] = @CipherId WHERE CC.[CipherId] = @CipherId
AND [Target].[CollectionId] IN (SELECT [Id] FROM [AvailableCollectionsCTE]) THEN AND CC.[CollectionId] IN (SELECT [Id] FROM [#TempAvailableCollections])
DELETE AND CC.[CollectionId] NOT IN (SELECT [Id] FROM @CollectionIds);
;
IF @OrgId IS NOT NULL IF @OrgId IS NOT NULL
BEGIN BEGIN
EXEC [dbo].[User_BumpAccountRevisionDateByOrganizationId] @OrgId EXEC [dbo].[User_BumpAccountRevisionDateByOrganizationId] @OrgId
END END
DROP TABLE #TempAvailableCollections;
END END

View File

@ -127,6 +127,7 @@ public class CiphersControllerTests
UserId = userId, UserId = userId,
OrganizationId = Guid.NewGuid(), OrganizationId = Guid.NewGuid(),
Type = CipherType.Login, Type = CipherType.Login,
ViewPassword = true,
Data = @" Data = @"
{ {
""Uris"": [ ""Uris"": [

View File

@ -0,0 +1,118 @@
CREATE OR ALTER PROCEDURE [dbo].[CipherDetails_ReadByIdUserId]
@Id UNIQUEIDENTIFIER,
@UserId UNIQUEIDENTIFIER
AS
BEGIN
SET NOCOUNT ON
SELECT
[Id],
[UserId],
[OrganizationId],
[Type],
[Data],
[Attachments],
[CreationDate],
[RevisionDate],
[Favorite],
[FolderId],
[DeletedDate],
[Reprompt],
[Key],
[OrganizationUseTotp],
MAX ([Edit]) AS [Edit],
MAX ([ViewPassword]) AS [ViewPassword]
FROM
[dbo].[UserCipherDetails](@UserId)
WHERE
[Id] = @Id
GROUP BY
[Id],
[UserId],
[OrganizationId],
[Type],
[Data],
[Attachments],
[CreationDate],
[RevisionDate],
[Favorite],
[FolderId],
[DeletedDate],
[Reprompt],
[Key],
[OrganizationUseTotp]
END
GO
CREATE OR ALTER PROCEDURE [dbo].[CollectionCipher_UpdateCollections]
@CipherId UNIQUEIDENTIFIER,
@UserId UNIQUEIDENTIFIER,
@CollectionIds AS [dbo].[GuidIdArray] READONLY
AS
BEGIN
SET NOCOUNT ON
DECLARE @OrgId UNIQUEIDENTIFIER = (
SELECT TOP 1
[OrganizationId]
FROM
[dbo].[Cipher]
WHERE
[Id] = @CipherId
)
SELECT
C.[Id]
INTO #TempAvailableCollections
FROM
[dbo].[Collection] C
INNER JOIN
[Organization] O ON O.[Id] = C.[OrganizationId]
INNER JOIN
[dbo].[OrganizationUser] OU ON OU.[OrganizationId] = O.[Id] AND OU.[UserId] = @UserId
LEFT JOIN
[dbo].[CollectionUser] CU ON CU.[CollectionId] = C.[Id] AND CU.[OrganizationUserId] = OU.[Id]
LEFT JOIN
[dbo].[GroupUser] GU ON CU.[CollectionId] IS NULL AND GU.[OrganizationUserId] = OU.[Id]
LEFT JOIN
[dbo].[Group] G ON G.[Id] = GU.[GroupId]
LEFT JOIN
[dbo].[CollectionGroup] CG ON CG.[CollectionId] = C.[Id] AND CG.[GroupId] = GU.[GroupId]
WHERE
O.[Id] = @OrgId
AND O.[Enabled] = 1
AND OU.[Status] = 2 -- Confirmed
AND (
CU.[ReadOnly] = 0
OR CG.[ReadOnly] = 0
)
-- Insert new collection assignments
INSERT INTO [dbo].[CollectionCipher] (
[CollectionId],
[CipherId]
)
SELECT
[Id],
@CipherId
FROM @CollectionIds
WHERE [Id] IN (SELECT [Id] FROM [#TempAvailableCollections])
AND NOT EXISTS (
SELECT 1
FROM [dbo].[CollectionCipher]
WHERE [CollectionId] = [@CollectionIds].[Id]
AND [CipherId] = @CipherId
);
-- Delete removed collection assignments
DELETE CC
FROM [dbo].[CollectionCipher] CC
WHERE CC.[CipherId] = @CipherId
AND CC.[CollectionId] IN (SELECT [Id] FROM [#TempAvailableCollections])
AND CC.[CollectionId] NOT IN (SELECT [Id] FROM @CollectionIds);
IF @OrgId IS NOT NULL
BEGIN
EXEC [dbo].[User_BumpAccountRevisionDateByOrganizationId] @OrgId
END
DROP TABLE #TempAvailableCollections;
END
GO