mirror of
https://github.com/bitwarden/server.git
synced 2025-04-21 04:55:08 -05:00
Merge pull request #785 from bitwarden/sso-config
DB support for SSO config
This commit is contained in:
commit
2daca941f3
@ -69,7 +69,10 @@
|
|||||||
<Folder Include="dbo\User Defined Types\" />
|
<Folder Include="dbo\User Defined Types\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Build Include="dbo\Stored Procedures\SsoConfig_ReadByIdentifier.sql" />
|
||||||
|
<Build Include="dbo\Stored Procedures\SsoConfig_ReadByOrganizationId.sql" />
|
||||||
<Build Include="dbo\Tables\Grant.sql" />
|
<Build Include="dbo\Tables\Grant.sql" />
|
||||||
|
<Build Include="dbo\Tables\SsoConfig.sql" />
|
||||||
<Build Include="dbo\Tables\User.sql" />
|
<Build Include="dbo\Tables\User.sql" />
|
||||||
<Build Include="dbo\Tables\U2f.sql" />
|
<Build Include="dbo\Tables\U2f.sql" />
|
||||||
<Build Include="dbo\Tables\Device.sql" />
|
<Build Include="dbo\Tables\Device.sql" />
|
||||||
@ -84,6 +87,7 @@
|
|||||||
<Build Include="dbo\Tables\OrganizationUser.sql" />
|
<Build Include="dbo\Tables\OrganizationUser.sql" />
|
||||||
<Build Include="dbo\Tables\Organization.sql" />
|
<Build Include="dbo\Tables\Organization.sql" />
|
||||||
<Build Include="dbo\Views\GrantView.sql" />
|
<Build Include="dbo\Views\GrantView.sql" />
|
||||||
|
<Build Include="dbo\Views\SsoConfigView.sql" />
|
||||||
<Build Include="dbo\Views\UserView.sql" />
|
<Build Include="dbo\Views\UserView.sql" />
|
||||||
<Build Include="dbo\Views\U2fView.sql" />
|
<Build Include="dbo\Views\U2fView.sql" />
|
||||||
<Build Include="dbo\Views\CipherView.sql" />
|
<Build Include="dbo\Views\CipherView.sql" />
|
||||||
|
13
src/Sql/dbo/Stored Procedures/SsoConfig_ReadByIdentifier.sql
Normal file
13
src/Sql/dbo/Stored Procedures/SsoConfig_ReadByIdentifier.sql
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
CREATE PROCEDURE [dbo].[SsoConfig_ReadByIdentifier]
|
||||||
|
@Identifier NVARCHAR(50)
|
||||||
|
AS
|
||||||
|
BEGIN
|
||||||
|
SET NOCOUNT ON
|
||||||
|
|
||||||
|
SELECT TOP 1
|
||||||
|
*
|
||||||
|
FROM
|
||||||
|
[dbo].[SsoConfigView]
|
||||||
|
WHERE
|
||||||
|
[Identifier] = @Identifier
|
||||||
|
END
|
@ -0,0 +1,13 @@
|
|||||||
|
CREATE PROCEDURE [dbo].[SsoConfig_ReadByOrganizationId]
|
||||||
|
@OrganizationId UNIQUEIDENTIFIER
|
||||||
|
AS
|
||||||
|
BEGIN
|
||||||
|
SET NOCOUNT ON
|
||||||
|
|
||||||
|
SELECT TOP 1
|
||||||
|
*
|
||||||
|
FROM
|
||||||
|
[dbo].[SsoConfigView]
|
||||||
|
WHERE
|
||||||
|
[OrganizationId] = @OrganizationId
|
||||||
|
END
|
8
src/Sql/dbo/Tables/SsoConfig.sql
Normal file
8
src/Sql/dbo/Tables/SsoConfig.sql
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
CREATE TABLE [dbo].[SsoConfig] (
|
||||||
|
[OrganizationId] UNIQUEIDENTIFIER NULL,
|
||||||
|
[Identifier] NVARCHAR (50) NULL,
|
||||||
|
[Data] NVARCHAR (MAX) NULL,
|
||||||
|
[CreationDate] DATETIME2 (7) NOT NULL,
|
||||||
|
[RevisionDate] DATETIME2 (7) NOT NULL,
|
||||||
|
CONSTRAINT [FK_SsoConfig_Organization] FOREIGN KEY ([OrganizationId]) REFERENCES [dbo].[Organization] ([Id])
|
||||||
|
);
|
6
src/Sql/dbo/Views/SsoConfigView.sql
Normal file
6
src/Sql/dbo/Views/SsoConfigView.sql
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
CREATE VIEW [dbo].[SsoConfigView]
|
||||||
|
AS
|
||||||
|
SELECT
|
||||||
|
*
|
||||||
|
FROM
|
||||||
|
[dbo].[SsoConfig]
|
68
util/Migrator/DbScripts/2020-06-16_00_OrgSso.sql
Normal file
68
util/Migrator/DbScripts/2020-06-16_00_OrgSso.sql
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
IF OBJECT_ID('[dbo].[SsoConfig]') IS NULL
|
||||||
|
BEGIN
|
||||||
|
CREATE TABLE [dbo].[SsoConfig] (
|
||||||
|
[OrganizationId] UNIQUEIDENTIFIER NULL,
|
||||||
|
[Identifier] NVARCHAR (50) NULL,
|
||||||
|
[Data] NVARCHAR (MAX) NULL,
|
||||||
|
[CreationDate] DATETIME2 (7) NOT NULL,
|
||||||
|
[RevisionDate] DATETIME2 (7) NOT NULL,
|
||||||
|
CONSTRAINT [FK_SsoConfig_Organization] FOREIGN KEY ([OrganizationId]) REFERENCES [dbo].[Organization] ([Id])
|
||||||
|
);
|
||||||
|
END
|
||||||
|
GO
|
||||||
|
|
||||||
|
IF EXISTS(SELECT * FROM sys.views WHERE [Name] = 'SsoConfig')
|
||||||
|
BEGIN
|
||||||
|
DROP VIEW [dbo].[SsoConfigView]
|
||||||
|
END
|
||||||
|
GO
|
||||||
|
|
||||||
|
CREATE VIEW [dbo].[SsoConfigView]
|
||||||
|
AS
|
||||||
|
SELECT
|
||||||
|
*
|
||||||
|
FROM
|
||||||
|
[dbo].[SsoConfig]
|
||||||
|
GO
|
||||||
|
|
||||||
|
IF OBJECT_ID('[dbo].[SsoConfig_ReadByIdentifier]') IS NOT NULL
|
||||||
|
BEGIN
|
||||||
|
DROP PROCEDURE [dbo].[SsoConfig_ReadByIdentifier]
|
||||||
|
END
|
||||||
|
GO
|
||||||
|
|
||||||
|
CREATE PROCEDURE [dbo].[SsoConfig_ReadByIdentifier]
|
||||||
|
@Identifier NVARCHAR(50)
|
||||||
|
AS
|
||||||
|
BEGIN
|
||||||
|
SET NOCOUNT ON
|
||||||
|
|
||||||
|
SELECT TOP 1
|
||||||
|
*
|
||||||
|
FROM
|
||||||
|
[dbo].[SsoConfigView]
|
||||||
|
WHERE
|
||||||
|
[Identifier] = @Identifier
|
||||||
|
END
|
||||||
|
GO
|
||||||
|
|
||||||
|
IF OBJECT_ID('[dbo].[SsoConfig_ReadByOrganizationId]') IS NOT NULL
|
||||||
|
BEGIN
|
||||||
|
DROP PROCEDURE [dbo].[SsoConfig_ReadByOrganizationId]
|
||||||
|
END
|
||||||
|
GO
|
||||||
|
|
||||||
|
CREATE PROCEDURE [dbo].[SsoConfig_ReadByOrganizationId]
|
||||||
|
@OrganizationId UNIQUEIDENTIFIER
|
||||||
|
AS
|
||||||
|
BEGIN
|
||||||
|
SET NOCOUNT ON
|
||||||
|
|
||||||
|
SELECT TOP 1
|
||||||
|
*
|
||||||
|
FROM
|
||||||
|
[dbo].[SsoConfigView]
|
||||||
|
WHERE
|
||||||
|
[OrganizationId] = @OrganizationId
|
||||||
|
END
|
||||||
|
GO
|
Loading…
x
Reference in New Issue
Block a user