mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
Merge branch 'brant/add-dapper-repository-organization-integrations' into brant/PM-17562-Slack-Event-Posting
This commit is contained in:
commit
b0f33d7de2
@ -0,0 +1,33 @@
|
|||||||
|
using AutoMapper;
|
||||||
|
using Bit.Core.Enums;
|
||||||
|
using Bit.Core.Models.Data.Organizations;
|
||||||
|
using Bit.Core.Repositories;
|
||||||
|
using Bit.Infrastructure.EntityFramework.AdminConsole.Models;
|
||||||
|
using Bit.Infrastructure.EntityFramework.Repositories;
|
||||||
|
using Bit.Infrastructure.EntityFramework.Repositories.Queries;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
|
|
||||||
|
namespace Bit.Infrastructure.EntityFramework.AdminConsole.Repositories;
|
||||||
|
|
||||||
|
public class OrganizationIntegrationConfigurationRepository : Repository<Core.AdminConsole.Entities.OrganizationIntegrationConfiguration, OrganizationIntegrationConfiguration, Guid>, IOrganizationIntegrationConfigurationRepository
|
||||||
|
{
|
||||||
|
public OrganizationIntegrationConfigurationRepository(IServiceScopeFactory serviceScopeFactory, IMapper mapper)
|
||||||
|
: base(serviceScopeFactory, mapper, context => context.OrganizationIntegrationConfigurations)
|
||||||
|
{ }
|
||||||
|
|
||||||
|
public async Task<List<OrganizationIntegrationConfigurationDetails>> GetConfigurationsAsync(
|
||||||
|
Guid organizationId,
|
||||||
|
IntegrationType integrationType,
|
||||||
|
EventType eventType)
|
||||||
|
{
|
||||||
|
using (var scope = ServiceScopeFactory.CreateScope())
|
||||||
|
{
|
||||||
|
var dbContext = GetDatabaseContext(scope);
|
||||||
|
var query = new OrganizationIntegrationConfigurationDetailsReadManyByEventTypeOrganizationIdIntegrationTypeQuery(
|
||||||
|
organizationId, eventType, integrationType
|
||||||
|
);
|
||||||
|
return await query.Run(dbContext).ToListAsync();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
using AutoMapper;
|
||||||
|
using Bit.Core.Repositories;
|
||||||
|
using Bit.Infrastructure.EntityFramework.AdminConsole.Models;
|
||||||
|
using Bit.Infrastructure.EntityFramework.Repositories;
|
||||||
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
|
|
||||||
|
namespace Bit.Infrastructure.EntityFramework.AdminConsole.Repositories;
|
||||||
|
|
||||||
|
public class OrganizationIntegrationRepository : Repository<Core.AdminConsole.Entities.OrganizationIntegration, OrganizationIntegration, Guid>, IOrganizationIntegrationRepository
|
||||||
|
{
|
||||||
|
public OrganizationIntegrationRepository(IServiceScopeFactory serviceScopeFactory, IMapper mapper)
|
||||||
|
: base(serviceScopeFactory, mapper, (DatabaseContext context) => context.OrganizationIntegrations)
|
||||||
|
{ }
|
||||||
|
}
|
@ -0,0 +1,39 @@
|
|||||||
|
using Bit.Core.Enums;
|
||||||
|
using Bit.Core.Models.Data.Organizations;
|
||||||
|
|
||||||
|
namespace Bit.Infrastructure.EntityFramework.Repositories.Queries;
|
||||||
|
|
||||||
|
public class OrganizationIntegrationConfigurationDetailsReadManyByEventTypeOrganizationIdIntegrationTypeQuery : IQuery<OrganizationIntegrationConfigurationDetails>
|
||||||
|
{
|
||||||
|
private readonly Guid _organizationId;
|
||||||
|
private readonly EventType _eventType;
|
||||||
|
private readonly IntegrationType _integrationType;
|
||||||
|
|
||||||
|
public OrganizationIntegrationConfigurationDetailsReadManyByEventTypeOrganizationIdIntegrationTypeQuery(Guid organizationId, EventType eventType, IntegrationType integrationType)
|
||||||
|
{
|
||||||
|
_organizationId = organizationId;
|
||||||
|
_eventType = eventType;
|
||||||
|
_integrationType = integrationType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public IQueryable<OrganizationIntegrationConfigurationDetails> Run(DatabaseContext dbContext)
|
||||||
|
{
|
||||||
|
var query = from oic in dbContext.OrganizationIntegrationConfigurations
|
||||||
|
join oi in dbContext.OrganizationIntegrations on oic.OrganizationIntegrationId equals oi.Id into oioic
|
||||||
|
from oi in dbContext.OrganizationIntegrations
|
||||||
|
where oi.OrganizationId == _organizationId &&
|
||||||
|
oi.Type == _integrationType &&
|
||||||
|
oic.EventType == _eventType
|
||||||
|
select new OrganizationIntegrationConfigurationDetails()
|
||||||
|
{
|
||||||
|
Id = oic.Id,
|
||||||
|
OrganizationIntegrationId = oic.OrganizationIntegrationId,
|
||||||
|
IntegrationType = oi.Type,
|
||||||
|
EventType = oic.EventType,
|
||||||
|
Configuration = oic.Configuration,
|
||||||
|
IntegrationConfiguration = oi.Configuration,
|
||||||
|
Template = oic.Template
|
||||||
|
};
|
||||||
|
return query;
|
||||||
|
}
|
||||||
|
}
|
@ -78,6 +78,8 @@ public static class EntityFrameworkServiceCollectionExtensions
|
|||||||
services.AddSingleton<IMaintenanceRepository, MaintenanceRepository>();
|
services.AddSingleton<IMaintenanceRepository, MaintenanceRepository>();
|
||||||
services.AddSingleton<IOrganizationApiKeyRepository, OrganizationApiKeyRepository>();
|
services.AddSingleton<IOrganizationApiKeyRepository, OrganizationApiKeyRepository>();
|
||||||
services.AddSingleton<IOrganizationConnectionRepository, OrganizationConnectionRepository>();
|
services.AddSingleton<IOrganizationConnectionRepository, OrganizationConnectionRepository>();
|
||||||
|
services.AddSingleton<IOrganizationIntegrationRepository, OrganizationIntegrationRepository>();
|
||||||
|
services.AddSingleton<IOrganizationIntegrationConfigurationRepository, OrganizationIntegrationConfigurationRepository>();
|
||||||
services.AddSingleton<IOrganizationRepository, OrganizationRepository>();
|
services.AddSingleton<IOrganizationRepository, OrganizationRepository>();
|
||||||
services.AddSingleton<IOrganizationSponsorshipRepository, OrganizationSponsorshipRepository>();
|
services.AddSingleton<IOrganizationSponsorshipRepository, OrganizationSponsorshipRepository>();
|
||||||
services.AddSingleton<IOrganizationUserRepository, OrganizationUserRepository>();
|
services.AddSingleton<IOrganizationUserRepository, OrganizationUserRepository>();
|
||||||
|
@ -55,6 +55,8 @@ public class DatabaseContext : DbContext
|
|||||||
public DbSet<OrganizationApiKey> OrganizationApiKeys { get; set; }
|
public DbSet<OrganizationApiKey> OrganizationApiKeys { get; set; }
|
||||||
public DbSet<OrganizationSponsorship> OrganizationSponsorships { get; set; }
|
public DbSet<OrganizationSponsorship> OrganizationSponsorships { get; set; }
|
||||||
public DbSet<OrganizationConnection> OrganizationConnections { get; set; }
|
public DbSet<OrganizationConnection> OrganizationConnections { get; set; }
|
||||||
|
public DbSet<OrganizationIntegration> OrganizationIntegrations { get; set; }
|
||||||
|
public DbSet<OrganizationIntegrationConfiguration> OrganizationIntegrationConfigurations { get; set; }
|
||||||
public DbSet<OrganizationUser> OrganizationUsers { get; set; }
|
public DbSet<OrganizationUser> OrganizationUsers { get; set; }
|
||||||
public DbSet<Policy> Policies { get; set; }
|
public DbSet<Policy> Policies { get; set; }
|
||||||
public DbSet<Provider> Providers { get; set; }
|
public DbSet<Provider> Providers { get; set; }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user