mirror of
https://github.com/bitwarden/server.git
synced 2025-07-06 18:42:49 -05:00
Added bulk procedure for saving users, collections and groups from inviting. Added test to validate Ef and Sproc
This commit is contained in:
@ -0,0 +1,97 @@
|
||||
CREATE OR ALTER PROCEDURE [dbo].[OrganizationUser_CreateManyWithCollectionsAndGroups]
|
||||
@organizationUserData NVARCHAR(MAX),
|
||||
@collectionData NVARCHAR(MAX),
|
||||
@groupData NVARCHAR(MAX)
|
||||
AS
|
||||
BEGIN
|
||||
SET NOCOUNT ON
|
||||
|
||||
INSERT INTO [dbo].[OrganizationUser]
|
||||
(
|
||||
[Id],
|
||||
[OrganizationId],
|
||||
[UserId],
|
||||
[Email],
|
||||
[Key],
|
||||
[Status],
|
||||
[Type],
|
||||
[ExternalId],
|
||||
[CreationDate],
|
||||
[RevisionDate],
|
||||
[Permissions],
|
||||
[ResetPasswordKey],
|
||||
[AccessSecretsManager]
|
||||
)
|
||||
SELECT
|
||||
OUI.[Id],
|
||||
OUI.[OrganizationId],
|
||||
OUI.[UserId],
|
||||
OUI.[Email],
|
||||
OUI.[Key],
|
||||
OUI.[Status],
|
||||
OUI.[Type],
|
||||
OUI.[ExternalId],
|
||||
OUI.[CreationDate],
|
||||
OUI.[RevisionDate],
|
||||
OUI.[Permissions],
|
||||
OUI.[ResetPasswordKey],
|
||||
OUI.[AccessSecretsManager]
|
||||
FROM
|
||||
OPENJSON(@organizationUserData)
|
||||
WITH (
|
||||
[Id] UNIQUEIDENTIFIER '$.Id',
|
||||
[OrganizationId] UNIQUEIDENTIFIER '$.OrganizationId',
|
||||
[UserId] UNIQUEIDENTIFIER '$.UserId',
|
||||
[Email] NVARCHAR(256) '$.Email',
|
||||
[Key] VARCHAR(MAX) '$.Key',
|
||||
[Status] SMALLINT '$.Status',
|
||||
[Type] TINYINT '$.Type',
|
||||
[ExternalId] NVARCHAR(300) '$.ExternalId',
|
||||
[CreationDate] DATETIME2(7) '$.CreationDate',
|
||||
[RevisionDate] DATETIME2(7) '$.RevisionDate',
|
||||
[Permissions] NVARCHAR (MAX) '$.Permissions',
|
||||
[ResetPasswordKey] VARCHAR (MAX) '$.ResetPasswordKey',
|
||||
[AccessSecretsManager] BIT '$.AccessSecretsManager'
|
||||
) OUI
|
||||
|
||||
INSERT INTO [dbo].[GroupUser]
|
||||
(
|
||||
[OrganizationUserId],
|
||||
[GroupId]
|
||||
)
|
||||
SELECT
|
||||
OUG.OrganizationUserId,
|
||||
OUG.GroupId
|
||||
FROM
|
||||
OPENJSON(@groupData)
|
||||
WITH(
|
||||
[OrganizationUserId] UNIQUEIDENTIFIER '$.OrganizationUserId',
|
||||
[GroupId] UNIQUEIDENTIFIER '$.GroupId'
|
||||
) OUG
|
||||
|
||||
INSERT INTO [dbo].[CollectionUser]
|
||||
(
|
||||
[CollectionId],
|
||||
[OrganizationUserId],
|
||||
[ReadOnly],
|
||||
[HidePasswords],
|
||||
[Manage]
|
||||
)
|
||||
SELECT
|
||||
OUC.[CollectionId],
|
||||
OUC.[OrganizationUserId],
|
||||
OUC.[ReadOnly],
|
||||
OUC.[HidePasswords],
|
||||
OUC.[Manage]
|
||||
FROM
|
||||
OPENJSON(@collectionData)
|
||||
WITH(
|
||||
[CollectionId] UNIQUEIDENTIFIER '$.CollectionId',
|
||||
[OrganizationUserId] UNIQUEIDENTIFIER '$.OrganizationUserId',
|
||||
[ReadOnly] BIT '$.ReadOnly',
|
||||
[HidePasswords] BIT '$.HidePasswords',
|
||||
[Manage] BIT '$.Manage'
|
||||
) OUC
|
||||
END
|
||||
go
|
||||
|
Reference in New Issue
Block a user