mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
bac06763f5
* [AC-1682] Data migrations for OrgUsers or Groups with AccessAll enabled * [AC-1682] Added script to update [dbo].[CollectionUser] with [Manage] = 1 for all users with Manager role or 'EditAssignedCollections' permission * [AC-1682] Updated sql data migration procedures with performance recommendations * [AC-1682] Moved data migration scripts to DbScripts_transition folder * Apply suggestions from code review: Remove Manage permission from Collection assignments Co-authored-by: Thomas Rittson <31796059+eliykat@users.noreply.github.com> * [AC-1682] Removed unnecessary Collection table join on ManagersEditAssignedCollectionUsers sql script * [AC-1682] Change JOIN to INNER JOIN in SQL scripts * [AC-1682] Renamed sql script to recent date and added correct order to file name * [AC-1682] Add new rows to CollectionUser for Managers and users with EditAssignedCollections permission assigned to groups with collection access * [AC-1682] Update FC data migration scripts to clear AccessAll flags and set all Managers to Users * [AC-1682] Updated data migration scripts to bump the account revision date * [AC-1682] Created Organization_EnableCollectionEnhancements to migrate organization data for flexible collections * [AC-1682] Added script to migrate all organization data for flexible collections * [AC-1682] Deleted old data migration scripts * Revert "[AC-1682] Deleted old data migration scripts" This reverts commit54cc6fab8f
. * [AC-1682] Modified AccessAllCollectionUsers script to bump revision date by each OrgUser * [AC-1682] Update data migration script to only enable collection enhancements for organizations that have not yet migrated * [AC-1682] Updated AccessAllCollectionGroups migration script to use User_BumpAccountRevisionDateByCollectionId * [AC-1682] Bumped up the date on data migration scripts * [AC-1682] Added back batching system to AccessAllCollectionUsers data migration script * [AC-1682] Added data migration script to set FlexibleCollections = 1 for all orgs * [AC-1682] Modified data migration script to contain multiple transactions * [AC-1682] Deleted old data migration scripts * [AC-1682] Placed temp tables outside transactions * [AC-1682] Removed batching from AllOrgsEnableCollectionEnhancements script * [AC-1682] Removed bulk data migration script * [AC-1682] Refactor stored procedure to enable collection enhancements * [AC-1682] Added missing where clause * [AC-1682] Modified data migration script to have just one big transaction * [AC-1682] Combining all updated OrganizationUserIds to bump all revision dates at the same time * Update src/Sql/dbo/Stored Procedures/Organization_EnableCollectionEnhancements.sql Co-authored-by: Thomas Rittson <31796059+eliykat@users.noreply.github.com> * [AC-1682] Renamed aliases * [AC-1682] Simplified inner queries * [AC-1682] Bumping each modified groups RevisionDate * [AC-1682] Removed updating CollectionUser existing records with [ReadOnly] = 0 and [HidePasswords] = 0 * [AC-1682] Updating OrganizationUser RevisionDate * [AC-1682] Updated the stored procedure file * [AC-1682] Selecting distinct values to insert into CollectionUser table * Revert "[AC-1682] Removed updating CollectionUser existing records with [ReadOnly] = 0 and [HidePasswords] = 0" This reverts commit086c88f3c6
. * [AC-1682] Bumped up the date on the migration script * [AC-1682] Updating OrganizationUser RevisionDate --------- Co-authored-by: Thomas Rittson <31796059+eliykat@users.noreply.github.com>
157 lines
7.8 KiB
Transact-SQL
157 lines
7.8 KiB
Transact-SQL
CREATE OR ALTER PROCEDURE [dbo].[Organization_EnableCollectionEnhancements]
|
|
@OrganizationId UNIQUEIDENTIFIER
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON
|
|
|
|
-- Step 1: AccessAll migration for Groups
|
|
-- Create a temporary table to store the groups with AccessAll = 1
|
|
SELECT [Id] AS [GroupId], [OrganizationId]
|
|
INTO #TempGroupsAccessAll
|
|
FROM [dbo].[Group]
|
|
WHERE [OrganizationId] = @OrganizationId
|
|
AND [AccessAll] = 1;
|
|
|
|
-- Step 2: AccessAll migration for OrganizationUsers
|
|
-- Create a temporary table to store the OrganizationUsers with AccessAll = 1
|
|
SELECT [Id] AS [OrganizationUserId], [OrganizationId]
|
|
INTO #TempUsersAccessAll
|
|
FROM [dbo].[OrganizationUser]
|
|
WHERE [OrganizationId] = @OrganizationId
|
|
AND [AccessAll] = 1;
|
|
|
|
-- Step 3: For all OrganizationUsers with Manager role or 'EditAssignedCollections' permission update their existing CollectionUser rows and insert new rows with [Manage] = 1
|
|
-- and finally update all OrganizationUsers with Manager role to User role
|
|
-- Create a temporary table to store the OrganizationUsers with Manager role or 'EditAssignedCollections' permission
|
|
SELECT ou.[Id] AS [OrganizationUserId],
|
|
CASE WHEN ou.[Type] = 3 THEN 1 ELSE 0 END AS [IsManager]
|
|
INTO #TempUserManagers
|
|
FROM [dbo].[OrganizationUser] ou
|
|
WHERE ou.[OrganizationId] = @OrganizationId
|
|
AND (ou.[Type] = 3 OR (ou.[Permissions] IS NOT NULL
|
|
AND ISJSON(ou.[Permissions]) > 0 AND JSON_VALUE(ou.[Permissions], '$.editAssignedCollections') = 'true'));
|
|
|
|
-- Step 4: Bump AccountRevisionDate for all OrganizationUsers updated in the previous steps
|
|
-- Combine and union the distinct OrganizationUserIds from all steps into a single variable
|
|
DECLARE @OrgUsersToBump [dbo].[GuidIdArray]
|
|
INSERT INTO @OrgUsersToBump
|
|
SELECT DISTINCT [OrganizationUserId] AS Id
|
|
FROM (
|
|
-- Step 1
|
|
SELECT GU.[OrganizationUserId]
|
|
FROM [dbo].[GroupUser] GU
|
|
INNER JOIN #TempGroupsAccessAll TG ON GU.[GroupId] = TG.[GroupId]
|
|
|
|
UNION
|
|
|
|
-- Step 2
|
|
SELECT [OrganizationUserId]
|
|
FROM #TempUsersAccessAll
|
|
|
|
UNION
|
|
|
|
-- Step 3
|
|
SELECT [OrganizationUserId]
|
|
FROM #TempUserManagers
|
|
) AS CombinedOrgUsers;
|
|
|
|
BEGIN TRY
|
|
BEGIN TRANSACTION;
|
|
-- Step 1
|
|
-- Update existing rows in [dbo].[CollectionGroup]
|
|
UPDATE CG
|
|
SET
|
|
CG.[ReadOnly] = 0,
|
|
CG.[HidePasswords] = 0,
|
|
CG.[Manage] = 0
|
|
FROM [dbo].[CollectionGroup] CG
|
|
INNER JOIN [dbo].[Collection] C ON CG.[CollectionId] = C.[Id]
|
|
INNER JOIN #TempGroupsAccessAll TG ON CG.[GroupId] = TG.[GroupId]
|
|
WHERE C.[OrganizationId] = TG.[OrganizationId];
|
|
|
|
-- Insert new rows into [dbo].[CollectionGroup]
|
|
INSERT INTO [dbo].[CollectionGroup] ([CollectionId], [GroupId], [ReadOnly], [HidePasswords], [Manage])
|
|
SELECT C.[Id], TG.[GroupId], 0, 0, 0
|
|
FROM [dbo].[Collection] C
|
|
INNER JOIN #TempGroupsAccessAll TG ON C.[OrganizationId] = TG.[OrganizationId]
|
|
LEFT JOIN [dbo].[CollectionGroup] CG ON CG.[CollectionId] = C.[Id] AND CG.[GroupId] = TG.[GroupId]
|
|
WHERE CG.[CollectionId] IS NULL;
|
|
|
|
-- Update Group to clear AccessAll flag and update RevisionDate
|
|
UPDATE G
|
|
SET [AccessAll] = 0, [RevisionDate] = GETUTCDATE()
|
|
FROM [dbo].[Group] G
|
|
INNER JOIN #TempGroupsAccessAll TG ON G.[Id] = TG.[GroupId];
|
|
|
|
-- Step 2
|
|
-- Update existing rows in [dbo].[CollectionUser]
|
|
UPDATE target
|
|
SET
|
|
target.[ReadOnly] = 0,
|
|
target.[HidePasswords] = 0,
|
|
target.[Manage] = 0
|
|
FROM [dbo].[CollectionUser] AS target
|
|
INNER JOIN [dbo].[Collection] AS C ON target.[CollectionId] = C.[Id]
|
|
INNER JOIN #TempUsersAccessAll AS TU ON C.[OrganizationId] = TU.[OrganizationId] AND target.[OrganizationUserId] = TU.[OrganizationUserId];
|
|
|
|
-- Insert new rows into [dbo].[CollectionUser]
|
|
INSERT INTO [dbo].[CollectionUser] ([CollectionId], [OrganizationUserId], [ReadOnly], [HidePasswords], [Manage])
|
|
SELECT C.[Id] AS [CollectionId], TU.[OrganizationUserId], 0, 0, 0
|
|
FROM [dbo].[Collection] C
|
|
INNER JOIN #TempUsersAccessAll TU ON C.[OrganizationId] = TU.[OrganizationId]
|
|
LEFT JOIN [dbo].[CollectionUser] target
|
|
ON target.[CollectionId] = C.[Id] AND target.[OrganizationUserId] = TU.[OrganizationUserId]
|
|
WHERE target.[CollectionId] IS NULL;
|
|
|
|
-- Update OrganizationUser to clear AccessAll flag
|
|
UPDATE OU
|
|
SET [AccessAll] = 0, [RevisionDate] = GETUTCDATE()
|
|
FROM [dbo].[OrganizationUser] OU
|
|
INNER JOIN #TempUsersAccessAll TU ON OU.[Id] = TU.[OrganizationUserId];
|
|
|
|
-- Step 3
|
|
-- Update [dbo].[CollectionUser] with [Manage] = 1 using the temporary table
|
|
UPDATE CU
|
|
SET CU.[ReadOnly] = 0,
|
|
CU.[HidePasswords] = 0,
|
|
CU.[Manage] = 1
|
|
FROM [dbo].[CollectionUser] CU
|
|
INNER JOIN #TempUserManagers TUM ON CU.[OrganizationUserId] = TUM.[OrganizationUserId];
|
|
|
|
-- Insert rows to [dbo].[CollectionUser] with [Manage] = 1 using the temporary table
|
|
-- This is for orgUsers who are Managers / EditAssignedCollections but have access via a group
|
|
-- We cannot give the whole group Manage permissions so we have to give them a direct assignment
|
|
INSERT INTO [dbo].[CollectionUser] ([CollectionId], [OrganizationUserId], [ReadOnly], [HidePasswords], [Manage])
|
|
SELECT DISTINCT CG.[CollectionId], TUM.[OrganizationUserId], 0, 0, 1
|
|
FROM [dbo].[CollectionGroup] CG
|
|
INNER JOIN [dbo].[GroupUser] GU ON CG.[GroupId] = GU.[GroupId]
|
|
INNER JOIN #TempUserManagers TUM ON GU.[OrganizationUserId] = TUM.[OrganizationUserId]
|
|
WHERE NOT EXISTS (
|
|
SELECT 1 FROM [dbo].[CollectionUser] CU
|
|
WHERE CU.[CollectionId] = CG.[CollectionId] AND CU.[OrganizationUserId] = TUM.[OrganizationUserId]
|
|
);
|
|
|
|
-- Update [dbo].[OrganizationUser] to migrate all OrganizationUsers with Manager role to User role
|
|
UPDATE OU
|
|
SET OU.[Type] = 2, OU.[RevisionDate] = GETUTCDATE() -- User
|
|
FROM [dbo].[OrganizationUser] OU
|
|
INNER JOIN #TempUserManagers TUM ON ou.[Id] = TUM.[OrganizationUserId]
|
|
WHERE TUM.[IsManager] = 1; -- Filter for Managers
|
|
|
|
-- Step 4
|
|
-- Execute User_BumpAccountRevisionDateByOrganizationUserIds for the distinct OrganizationUserIds
|
|
EXEC [dbo].[User_BumpAccountRevisionDateByOrganizationUserIds] @OrgUsersToBump;
|
|
COMMIT TRANSACTION;
|
|
END TRY
|
|
BEGIN CATCH
|
|
ROLLBACK TRANSACTION;
|
|
THROW;
|
|
END CATCH;
|
|
|
|
-- Drop the temporary table
|
|
DROP TABLE #TempGroupsAccessAll;
|
|
DROP TABLE #TempUsersAccessAll;
|
|
DROP TABLE #TempUserManagers;
|
|
END
|
|
GO
|