1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

feat : EF is functional

This commit is contained in:
Ike Kottlowski 2025-03-24 13:10:33 -04:00
parent 83c155746a
commit 45a9d067e4
No known key found for this signature in database
GPG Key ID: C86308E3DCA6D76F
3 changed files with 30 additions and 12 deletions

View File

@ -0,0 +1,17 @@
using AutoMapper;
using Bit.Infrastructure.EntityFramework.Models;
namespace Bit.Infrastructure.EntityFramework.Auth.Models;
public class OpaqueKeyExchangeCredential : Core.Auth.Entities.OpaqueKeyExchangeCredential
{
public virtual User User { get; set; }
}
public class OpaqueKeyExchangeCredentialMapperProfile : Profile
{
public OpaqueKeyExchangeCredentialMapperProfile()
{
CreateMap<Core.Auth.Entities.OpaqueKeyExchangeCredential, OpaqueKeyExchangeCredential>().ReverseMap();
}
}

View File

@ -1,27 +1,28 @@
using AutoMapper; using AutoMapper;
using Bit.Core.Auth.Entities;
using Bit.Core.Auth.Models.Data; using Bit.Core.Auth.Models.Data;
using Bit.Core.Auth.Repositories; using Bit.Core.Auth.Repositories;
using Bit.Core.KeyManagement.UserKey; using Bit.Core.KeyManagement.UserKey;
using Bit.Infrastructure.EntityFramework.Auth.Models;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
namespace Bit.Infrastructure.EntityFramework.Repositories; namespace Bit.Infrastructure.EntityFramework.Repositories;
public class OpaqueKeyExchangeCredentialRepository : Repository<OpaqueKeyExchangeCredential, OpaqueKeyExchangeCredential, Guid>, IOpaqueKeyExchangeCredentialRepository public class OpaqueKeyExchangeCredentialRepository
: Repository<Core.Auth.Entities.OpaqueKeyExchangeCredential, OpaqueKeyExchangeCredential, Guid>,
IOpaqueKeyExchangeCredentialRepository
{ {
public OpaqueKeyExchangeCredentialRepository(IServiceScopeFactory serviceScopeFactory, IMapper mapper) : base(serviceScopeFactory, mapper, (DatabaseContext context) => context.OpaqueKeyExchangeCredentials) public OpaqueKeyExchangeCredentialRepository(IServiceScopeFactory serviceScopeFactory, IMapper mapper)
: base(serviceScopeFactory, mapper, (DatabaseContext context) => context.OpaqueKeyExchangeCredentials)
{ {
} }
public async Task<OpaqueKeyExchangeCredential> GetByUserIdAsync(Guid userId) public async Task<Core.Auth.Entities.OpaqueKeyExchangeCredential> GetByUserIdAsync(Guid userId)
{ {
using (var scope = ServiceScopeFactory.CreateScope()) using var scope = ServiceScopeFactory.CreateScope();
{ var dbContext = GetDatabaseContext(scope);
var dbContext = GetDatabaseContext(scope); var opaqueConfig = await GetDbSet(dbContext).SingleOrDefaultAsync(sc => sc.UserId == userId);
var opaqueConfig = await GetDbSet(dbContext).SingleOrDefaultAsync(sc => sc.UserId == userId); return Mapper.Map<Core.Auth.Entities.OpaqueKeyExchangeCredential>(opaqueConfig);
return Mapper.Map<OpaqueKeyExchangeCredential>(opaqueConfig);
}
} }
public UpdateEncryptedDataForKeyRotation UpdateKeysForRotationAsync(Guid userId, IEnumerable<OpaqueKeyExchangeRotateKeyData> credentials) public UpdateEncryptedDataForKeyRotation UpdateKeysForRotationAsync(Guid userId, IEnumerable<OpaqueKeyExchangeRotateKeyData> credentials)
{ {

View File

@ -51,7 +51,7 @@ public class DatabaseContext : DbContext
public DbSet<Group> Groups { get; set; } public DbSet<Group> Groups { get; set; }
public DbSet<GroupUser> GroupUsers { get; set; } public DbSet<GroupUser> GroupUsers { get; set; }
public DbSet<Installation> Installations { get; set; } public DbSet<Installation> Installations { get; set; }
public DbSet<Core.Auth.Entities.OpaqueKeyExchangeCredential> OpaqueKeyExchangeCredentials { get; set; } public DbSet<OpaqueKeyExchangeCredential> OpaqueKeyExchangeCredentials { get; set; }
public DbSet<Organization> Organizations { get; set; } public DbSet<Organization> Organizations { get; set; }
public DbSet<OrganizationApiKey> OrganizationApiKeys { get; set; } public DbSet<OrganizationApiKey> OrganizationApiKeys { get; set; }
public DbSet<OrganizationSponsorship> OrganizationSponsorships { get; set; } public DbSet<OrganizationSponsorship> OrganizationSponsorships { get; set; }
@ -107,7 +107,7 @@ public class DatabaseContext : DbContext
var eSsoConfig = builder.Entity<SsoConfig>(); var eSsoConfig = builder.Entity<SsoConfig>();
var eTaxRate = builder.Entity<TaxRate>(); var eTaxRate = builder.Entity<TaxRate>();
var eUser = builder.Entity<User>(); var eUser = builder.Entity<User>();
var eOpaqueCredential = builder.Entity<Core.Auth.Entities.OpaqueKeyExchangeCredential>(); var eOpaqueCredential = builder.Entity<OpaqueKeyExchangeCredential>();
var eOrganizationApiKey = builder.Entity<OrganizationApiKey>(); var eOrganizationApiKey = builder.Entity<OrganizationApiKey>();
var eOrganizationConnection = builder.Entity<OrganizationConnection>(); var eOrganizationConnection = builder.Entity<OrganizationConnection>();
var eOrganizationDomain = builder.Entity<OrganizationDomain>(); var eOrganizationDomain = builder.Entity<OrganizationDomain>();