mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
make bump sprocs first
This commit is contained in:
parent
a8b4261a85
commit
a1cb980bac
@ -1,4 +1,96 @@
|
|||||||
IF OBJECT_ID('[dbo].[Cipher_DeleteByUserId]') IS NOT NULL
|
IF OBJECT_ID('[dbo].[User_BumpAccountRevisionDateByCipherId]') IS NOT NULL
|
||||||
|
BEGIN
|
||||||
|
DROP PROCEDURE [dbo].[User_BumpAccountRevisionDateByCipherId]
|
||||||
|
END
|
||||||
|
GO
|
||||||
|
|
||||||
|
CREATE PROCEDURE [dbo].[User_BumpAccountRevisionDateByCipherId]
|
||||||
|
@CipherId UNIQUEIDENTIFIER,
|
||||||
|
@OrganizationId UNIQUEIDENTIFIER
|
||||||
|
AS
|
||||||
|
BEGIN
|
||||||
|
SET NOCOUNT ON
|
||||||
|
|
||||||
|
UPDATE
|
||||||
|
U
|
||||||
|
SET
|
||||||
|
U.[AccountRevisionDate] = GETUTCDATE()
|
||||||
|
FROM
|
||||||
|
[dbo].[User] U
|
||||||
|
LEFT JOIN
|
||||||
|
[dbo].[OrganizationUser] OU ON OU.[UserId] = U.[Id]
|
||||||
|
LEFT JOIN
|
||||||
|
[dbo].[CollectionCipher] CC ON CC.[CipherId] = @CipherId
|
||||||
|
LEFT JOIN
|
||||||
|
[dbo].[CollectionUser] CU ON OU.[AccessAll] = 0 AND CU.[OrganizationUserId] = OU.[Id] AND CU.[CollectionId] = CC.[CollectionId]
|
||||||
|
LEFT JOIN
|
||||||
|
[dbo].[GroupUser] GU ON CU.[CollectionId] IS NULL AND OU.[AccessAll] = 0 AND GU.[OrganizationUserId] = OU.[Id]
|
||||||
|
LEFT JOIN
|
||||||
|
[dbo].[Group] G ON G.[Id] = GU.[GroupId]
|
||||||
|
LEFT JOIN
|
||||||
|
[dbo].[CollectionGroup] CG ON G.[AccessAll] = 0 AND CG.[GroupId] = GU.[GroupId] AND CG.[CollectionId] = CC.[CollectionId]
|
||||||
|
WHERE
|
||||||
|
OU.[Status] = 2 -- 2 = Confirmed
|
||||||
|
AND (
|
||||||
|
CU.[CollectionId] IS NOT NULL
|
||||||
|
OR CG.[CollectionId] IS NOT NULL
|
||||||
|
OR (
|
||||||
|
OU.[OrganizationId] = @OrganizationId
|
||||||
|
AND (
|
||||||
|
OU.[AccessAll] = 1
|
||||||
|
OR G.[AccessAll] = 1
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
END
|
||||||
|
GO
|
||||||
|
|
||||||
|
IF OBJECT_ID('[dbo].[User_BumpAccountRevisionDateByCollectionId]') IS NOT NULL
|
||||||
|
BEGIN
|
||||||
|
DROP PROCEDURE [dbo].[User_BumpAccountRevisionDateByCollectionId]
|
||||||
|
END
|
||||||
|
GO
|
||||||
|
|
||||||
|
CREATE PROCEDURE [dbo].[User_BumpAccountRevisionDateByCollectionId]
|
||||||
|
@CollectionId UNIQUEIDENTIFIER,
|
||||||
|
@OrganizationId UNIQUEIDENTIFIER
|
||||||
|
AS
|
||||||
|
BEGIN
|
||||||
|
SET NOCOUNT ON
|
||||||
|
|
||||||
|
UPDATE
|
||||||
|
U
|
||||||
|
SET
|
||||||
|
U.[AccountRevisionDate] = GETUTCDATE()
|
||||||
|
FROM
|
||||||
|
[dbo].[User] U
|
||||||
|
LEFT JOIN
|
||||||
|
[dbo].[OrganizationUser] OU ON OU.[UserId] = U.[Id]
|
||||||
|
LEFT JOIN
|
||||||
|
[dbo].[CollectionUser] CU ON OU.[AccessAll] = 0 AND CU.[OrganizationUserId] = OU.[Id] AND CU.[CollectionId] = @CollectionId
|
||||||
|
LEFT JOIN
|
||||||
|
[dbo].[GroupUser] GU ON CU.[CollectionId] IS NULL AND OU.[AccessAll] = 0 AND GU.[OrganizationUserId] = OU.[Id]
|
||||||
|
LEFT JOIN
|
||||||
|
[dbo].[Group] G ON G.[Id] = GU.[GroupId]
|
||||||
|
LEFT JOIN
|
||||||
|
[dbo].[CollectionGroup] CG ON G.[AccessAll] = 0 AND CG.[GroupId] = GU.[GroupId] AND CG.[CollectionId] = @CollectionId
|
||||||
|
WHERE
|
||||||
|
OU.[Status] = 2 -- 2 = Confirmed
|
||||||
|
AND (
|
||||||
|
CU.[CollectionId] IS NOT NULL
|
||||||
|
OR CG.[CollectionId] IS NOT NULL
|
||||||
|
OR (
|
||||||
|
OU.[OrganizationId] = @OrganizationId
|
||||||
|
AND (
|
||||||
|
OU.[AccessAll] = 1
|
||||||
|
OR G.[AccessAll] = 1
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
END
|
||||||
|
GO
|
||||||
|
|
||||||
|
IF OBJECT_ID('[dbo].[Cipher_DeleteByUserId]') IS NOT NULL
|
||||||
BEGIN
|
BEGIN
|
||||||
DROP PROCEDURE [dbo].[Cipher_DeleteByUserId]
|
DROP PROCEDURE [dbo].[Cipher_DeleteByUserId]
|
||||||
END
|
END
|
||||||
@ -1130,95 +1222,3 @@ BEGIN
|
|||||||
[Id] = @Id
|
[Id] = @Id
|
||||||
END
|
END
|
||||||
GO
|
GO
|
||||||
|
|
||||||
IF OBJECT_ID('[dbo].[User_BumpAccountRevisionDateByCipherId]') IS NOT NULL
|
|
||||||
BEGIN
|
|
||||||
DROP PROCEDURE [dbo].[User_BumpAccountRevisionDateByCipherId]
|
|
||||||
END
|
|
||||||
GO
|
|
||||||
|
|
||||||
CREATE PROCEDURE [dbo].[User_BumpAccountRevisionDateByCipherId]
|
|
||||||
@CipherId UNIQUEIDENTIFIER,
|
|
||||||
@OrganizationId UNIQUEIDENTIFIER
|
|
||||||
AS
|
|
||||||
BEGIN
|
|
||||||
SET NOCOUNT ON
|
|
||||||
|
|
||||||
UPDATE
|
|
||||||
U
|
|
||||||
SET
|
|
||||||
U.[AccountRevisionDate] = GETUTCDATE()
|
|
||||||
FROM
|
|
||||||
[dbo].[User] U
|
|
||||||
LEFT JOIN
|
|
||||||
[dbo].[OrganizationUser] OU ON OU.[UserId] = U.[Id]
|
|
||||||
LEFT JOIN
|
|
||||||
[dbo].[CollectionCipher] CC ON CC.[CipherId] = @CipherId
|
|
||||||
LEFT JOIN
|
|
||||||
[dbo].[CollectionUser] CU ON OU.[AccessAll] = 0 AND CU.[OrganizationUserId] = OU.[Id] AND CU.[CollectionId] = CC.[CollectionId]
|
|
||||||
LEFT JOIN
|
|
||||||
[dbo].[GroupUser] GU ON CU.[CollectionId] IS NULL AND OU.[AccessAll] = 0 AND GU.[OrganizationUserId] = OU.[Id]
|
|
||||||
LEFT JOIN
|
|
||||||
[dbo].[Group] G ON G.[Id] = GU.[GroupId]
|
|
||||||
LEFT JOIN
|
|
||||||
[dbo].[CollectionGroup] CG ON G.[AccessAll] = 0 AND CG.[GroupId] = GU.[GroupId] AND CG.[CollectionId] = CC.[CollectionId]
|
|
||||||
WHERE
|
|
||||||
OU.[Status] = 2 -- 2 = Confirmed
|
|
||||||
AND (
|
|
||||||
CU.[CollectionId] IS NOT NULL
|
|
||||||
OR CG.[CollectionId] IS NOT NULL
|
|
||||||
OR (
|
|
||||||
OU.[OrganizationId] = @OrganizationId
|
|
||||||
AND (
|
|
||||||
OU.[AccessAll] = 1
|
|
||||||
OR G.[AccessAll] = 1
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
END
|
|
||||||
GO
|
|
||||||
|
|
||||||
IF OBJECT_ID('[dbo].[User_BumpAccountRevisionDateByCollectionId]') IS NOT NULL
|
|
||||||
BEGIN
|
|
||||||
DROP PROCEDURE [dbo].[User_BumpAccountRevisionDateByCollectionId]
|
|
||||||
END
|
|
||||||
GO
|
|
||||||
|
|
||||||
CREATE PROCEDURE [dbo].[User_BumpAccountRevisionDateByCollectionId]
|
|
||||||
@CollectionId UNIQUEIDENTIFIER,
|
|
||||||
@OrganizationId UNIQUEIDENTIFIER
|
|
||||||
AS
|
|
||||||
BEGIN
|
|
||||||
SET NOCOUNT ON
|
|
||||||
|
|
||||||
UPDATE
|
|
||||||
U
|
|
||||||
SET
|
|
||||||
U.[AccountRevisionDate] = GETUTCDATE()
|
|
||||||
FROM
|
|
||||||
[dbo].[User] U
|
|
||||||
LEFT JOIN
|
|
||||||
[dbo].[OrganizationUser] OU ON OU.[UserId] = U.[Id]
|
|
||||||
LEFT JOIN
|
|
||||||
[dbo].[CollectionUser] CU ON OU.[AccessAll] = 0 AND CU.[OrganizationUserId] = OU.[Id] AND CU.[CollectionId] = @CollectionId
|
|
||||||
LEFT JOIN
|
|
||||||
[dbo].[GroupUser] GU ON CU.[CollectionId] IS NULL AND OU.[AccessAll] = 0 AND GU.[OrganizationUserId] = OU.[Id]
|
|
||||||
LEFT JOIN
|
|
||||||
[dbo].[Group] G ON G.[Id] = GU.[GroupId]
|
|
||||||
LEFT JOIN
|
|
||||||
[dbo].[CollectionGroup] CG ON G.[AccessAll] = 0 AND CG.[GroupId] = GU.[GroupId] AND CG.[CollectionId] = @CollectionId
|
|
||||||
WHERE
|
|
||||||
OU.[Status] = 2 -- 2 = Confirmed
|
|
||||||
AND (
|
|
||||||
CU.[CollectionId] IS NOT NULL
|
|
||||||
OR CG.[CollectionId] IS NOT NULL
|
|
||||||
OR (
|
|
||||||
OU.[OrganizationId] = @OrganizationId
|
|
||||||
AND (
|
|
||||||
OU.[AccessAll] = 1
|
|
||||||
OR G.[AccessAll] = 1
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
END
|
|
||||||
GO
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user