mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00
Additional procs and entity tweaks
This commit is contained in:
parent
7b99e9fd96
commit
6227ff6534
@ -12,7 +12,7 @@ public class OrganizationIntegration : ITableObject<Guid>
|
|||||||
public Guid OrganizationId { get; set; }
|
public Guid OrganizationId { get; set; }
|
||||||
public IntegrationType Type { get; set; }
|
public IntegrationType Type { get; set; }
|
||||||
public string? Configuration { get; set; }
|
public string? Configuration { get; set; }
|
||||||
public DateTime CreationDate { get; set; } = DateTime.UtcNow;
|
public DateTime CreationDate { get; internal set; } = DateTime.UtcNow;
|
||||||
public DateTime RevisionDate { get; set; } = DateTime.UtcNow;
|
public DateTime RevisionDate { get; set; } = DateTime.UtcNow;
|
||||||
public void SetNewId() => Id = CoreHelpers.GenerateComb();
|
public void SetNewId() => Id = CoreHelpers.GenerateComb();
|
||||||
}
|
}
|
||||||
|
@ -13,7 +13,7 @@ public class OrganizationIntegrationConfiguration : ITableObject<Guid>
|
|||||||
public EventType EventType { get; set; }
|
public EventType EventType { get; set; }
|
||||||
public string? Configuration { get; set; }
|
public string? Configuration { get; set; }
|
||||||
public string? Template { get; set; }
|
public string? Template { get; set; }
|
||||||
public DateTime CreationDate { get; set; } = DateTime.UtcNow;
|
public DateTime CreationDate { get; internal set; } = DateTime.UtcNow;
|
||||||
public DateTime RevisionDate { get; set; } = DateTime.UtcNow;
|
public DateTime RevisionDate { get; set; } = DateTime.UtcNow;
|
||||||
public void SetNewId() => Id = CoreHelpers.GenerateComb();
|
public void SetNewId() => Id = CoreHelpers.GenerateComb();
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,7 @@ public class OrganizationIntegrationConfigurationEntityTypeConfiguration : IEnti
|
|||||||
public void Configure(EntityTypeBuilder<OrganizationIntegrationConfiguration> builder)
|
public void Configure(EntityTypeBuilder<OrganizationIntegrationConfiguration> builder)
|
||||||
{
|
{
|
||||||
builder
|
builder
|
||||||
.Property(p => p.Id)
|
.Property(oic => oic.Id)
|
||||||
.ValueGeneratedNever();
|
.ValueGeneratedNever();
|
||||||
|
|
||||||
builder.ToTable(nameof(OrganizationIntegrationConfiguration));
|
builder.ToTable(nameof(OrganizationIntegrationConfiguration));
|
||||||
|
@ -9,15 +9,15 @@ public class OrganizationIntegrationEntityTypeConfiguration : IEntityTypeConfigu
|
|||||||
public void Configure(EntityTypeBuilder<OrganizationIntegration> builder)
|
public void Configure(EntityTypeBuilder<OrganizationIntegration> builder)
|
||||||
{
|
{
|
||||||
builder
|
builder
|
||||||
.Property(p => p.Id)
|
.Property(oi => oi.Id)
|
||||||
.ValueGeneratedNever();
|
.ValueGeneratedNever();
|
||||||
|
|
||||||
builder
|
builder
|
||||||
.HasIndex(p => p.OrganizationId)
|
.HasIndex(oi => oi.OrganizationId)
|
||||||
.IsClustered(false);
|
.IsClustered(false);
|
||||||
|
|
||||||
builder
|
builder
|
||||||
.HasIndex(p => new { p.OrganizationId, p.Type })
|
.HasIndex(oi => new { oi.OrganizationId, oi.Type })
|
||||||
.IsUnique()
|
.IsUnique()
|
||||||
.IsClustered(false);
|
.IsClustered(false);
|
||||||
|
|
||||||
|
@ -199,6 +199,8 @@ public class OrganizationRepository : Repository<Core.AdminConsole.Entities.Orga
|
|||||||
.ExecuteDeleteAsync();
|
.ExecuteDeleteAsync();
|
||||||
await dbContext.ProviderOrganizations.Where(po => po.OrganizationId == organization.Id)
|
await dbContext.ProviderOrganizations.Where(po => po.OrganizationId == organization.Id)
|
||||||
.ExecuteDeleteAsync();
|
.ExecuteDeleteAsync();
|
||||||
|
await dbContext.OrganizationIntegrations.Where(oi => oi.OrganizationId == organization.Id)
|
||||||
|
.ExecuteDeleteAsync();
|
||||||
|
|
||||||
await dbContext.GroupServiceAccountAccessPolicy.Where(ap => ap.GrantedServiceAccount.OrganizationId == organization.Id)
|
await dbContext.GroupServiceAccountAccessPolicy.Where(ap => ap.GrantedServiceAccount.OrganizationId == organization.Id)
|
||||||
.ExecuteDeleteAsync();
|
.ExecuteDeleteAsync();
|
||||||
|
@ -0,0 +1,13 @@
|
|||||||
|
CREATE PROCEDURE [dbo].[OrganizationIntegrationConfiguration_ReadById]
|
||||||
|
@Id UNIQUEIDENTIFIER
|
||||||
|
AS
|
||||||
|
BEGIN
|
||||||
|
SET NOCOUNT ON
|
||||||
|
|
||||||
|
SELECT
|
||||||
|
*
|
||||||
|
FROM
|
||||||
|
[dbo].[OrganizationIntegrationConfiguration]
|
||||||
|
WHERE
|
||||||
|
[Id] = @Id
|
||||||
|
END
|
@ -0,0 +1,13 @@
|
|||||||
|
CREATE PROCEDURE [dbo].[OrganizationIntegration_ReadById]
|
||||||
|
@Id UNIQUEIDENTIFIER
|
||||||
|
AS
|
||||||
|
BEGIN
|
||||||
|
SET NOCOUNT ON
|
||||||
|
|
||||||
|
SELECT
|
||||||
|
*
|
||||||
|
FROM
|
||||||
|
[dbo].[OrganizationIntegration]
|
||||||
|
WHERE
|
||||||
|
[Id] = @Id
|
||||||
|
END
|
@ -1,12 +1,6 @@
|
|||||||
-- Configure FK to cascade on delete
|
-- Configure FK to cascade on delete
|
||||||
IF EXISTS(SELECT *
|
ALTER TABLE [dbo].[OrganizationIntegrationConfiguration] DROP FK_OrganizationIntegrationConfiguration_OrganizationIntegration;
|
||||||
FROM information_schema.table_constraints
|
ALTER TABLE [dbo].[OrganizationIntegrationConfiguration] ADD CONSTRAINT [FK_OrganizationIntegrationConfiguration_OrganizationIntegration] FOREIGN KEY ([OrganizationIntegrationId]) REFERENCES [dbo].[OrganizationIntegration] ([Id]) ON DELETE CASCADE;
|
||||||
WHERE table_name='OrganizationIntegrationConfiguration'
|
|
||||||
AND constraint_name='FK_OrganizationIntegrationConfiguration_OrganizationIntegration')
|
|
||||||
BEGIN
|
|
||||||
ALTER TABLE [dbo].[OrganizationIntegrationConfiguration] DROP FK_OrganizationIntegrationConfiguration_OrganizationIntegration;
|
|
||||||
ALTER TABLE [dbo].[OrganizationIntegrationConfiguration] ADD CONSTRAINT [FK_OrganizationIntegrationConfiguration_OrganizationIntegration] FOREIGN KEY ([OrganizationIntegrationId]) REFERENCES [dbo].[OrganizationIntegration] ([Id]) ON DELETE CASCADE;
|
|
||||||
END
|
|
||||||
GO
|
GO
|
||||||
|
|
||||||
CREATE OR ALTER PROCEDURE [dbo].[OrganizationIntegration_Create]
|
CREATE OR ALTER PROCEDURE [dbo].[OrganizationIntegration_Create]
|
||||||
@ -152,3 +146,34 @@ BEGIN
|
|||||||
WHERE
|
WHERE
|
||||||
[Id] = @Id
|
[Id] = @Id
|
||||||
END
|
END
|
||||||
|
GO
|
||||||
|
|
||||||
|
CREATE OR ALTER PROCEDURE [dbo].[OrganizationIntegration_ReadById]
|
||||||
|
@Id UNIQUEIDENTIFIER
|
||||||
|
AS
|
||||||
|
BEGIN
|
||||||
|
SET NOCOUNT ON
|
||||||
|
|
||||||
|
SELECT
|
||||||
|
*
|
||||||
|
FROM
|
||||||
|
[dbo].[OrganizationIntegration]
|
||||||
|
WHERE
|
||||||
|
[Id] = @Id
|
||||||
|
END
|
||||||
|
GO
|
||||||
|
|
||||||
|
CREATE OR ALTER PROCEDURE [dbo].[OrganizationIntegrationConfiguration_ReadById]
|
||||||
|
@Id UNIQUEIDENTIFIER
|
||||||
|
AS
|
||||||
|
BEGIN
|
||||||
|
SET NOCOUNT ON
|
||||||
|
|
||||||
|
SELECT
|
||||||
|
*
|
||||||
|
FROM
|
||||||
|
[dbo].[OrganizationIntegrationConfiguration]
|
||||||
|
WHERE
|
||||||
|
[Id] = @Id
|
||||||
|
END
|
||||||
|
GO
|
||||||
|
Loading…
x
Reference in New Issue
Block a user