using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using AutoMapper; using Bit.Core.Entities.Provider; using Bit.Core.Enums.Provider; using Bit.Core.Models.Data; using Bit.Core.Repositories; using Bit.Infrastructure.EntityFramework.Repositories.Queries; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; namespace Bit.Infrastructure.EntityFramework.Repositories { public class ProviderUserRepository : Repository, IProviderUserRepository { public ProviderUserRepository(IServiceScopeFactory serviceScopeFactory, IMapper mapper) : base(serviceScopeFactory, mapper, (DatabaseContext context) => context.ProviderUsers) { } public async Task GetCountByProviderAsync(Guid providerId, string email, bool onlyRegisteredUsers) { using (var scope = ServiceScopeFactory.CreateScope()) { var dbContext = GetDatabaseContext(scope); var query = from pu in dbContext.ProviderUsers join u in dbContext.Users on pu.UserId equals u.Id into u_g from u in u_g.DefaultIfEmpty() where pu.ProviderId == providerId && ((!onlyRegisteredUsers && (pu.Email == email || u.Email == email)) || (onlyRegisteredUsers && u.Email == email)) select new { pu, u }; return await query.CountAsync(); } } public async Task> GetManyAsync(IEnumerable ids) { using (var scope = ServiceScopeFactory.CreateScope()) { var dbContext = GetDatabaseContext(scope); var query = dbContext.ProviderUsers.Where(item => ids.Contains(item.Id)); return await query.ToArrayAsync(); } } public async Task> GetManyByProviderAsync(Guid providerId, ProviderUserType? type = null) { using (var scope = ServiceScopeFactory.CreateScope()) { var dbContext = GetDatabaseContext(scope); var query = dbContext.ProviderUsers.Where(pu => pu.ProviderId.Equals(providerId) && (type != null && pu.Type.Equals(type))); return await query.ToArrayAsync(); } } public async Task DeleteManyAsync(IEnumerable providerUserIds) { using (var scope = ServiceScopeFactory.CreateScope()) { var dbContext = GetDatabaseContext(scope); await UserBumpAccountRevisionDateByProviderUserIds(providerUserIds.ToArray()); var entities = dbContext.ProviderUsers.Where(pu => providerUserIds.Contains(pu.Id)); dbContext.ProviderUsers.RemoveRange(entities); await dbContext.SaveChangesAsync(); } } public async Task> GetManyByUserAsync(Guid userId) { using (var scope = ServiceScopeFactory.CreateScope()) { var dbContext = GetDatabaseContext(scope); var query = from pu in dbContext.ProviderUsers where pu.UserId == userId select pu; return await query.ToArrayAsync(); } } public async Task GetByProviderUserAsync(Guid providerId, Guid userId) { using (var scope = ServiceScopeFactory.CreateScope()) { var dbContext = GetDatabaseContext(scope); var query = from pu in dbContext.ProviderUsers where pu.UserId == userId && pu.ProviderId == providerId select pu; return await query.FirstOrDefaultAsync(); } } public async Task> GetManyDetailsByProviderAsync(Guid providerId) { using (var scope = ServiceScopeFactory.CreateScope()) { var dbContext = GetDatabaseContext(scope); var view = from pu in dbContext.ProviderUsers join u in dbContext.Users on pu.UserId equals u.Id into u_g from u in u_g.DefaultIfEmpty() select new { pu, u }; var data = await view.Where(e => e.pu.ProviderId == providerId).Select(e => new ProviderUserUserDetails { Id = e.pu.Id, UserId = e.pu.UserId, ProviderId = e.pu.ProviderId, Name = e.u.Name, Email = e.u.Email ?? e.pu.Email, Status = e.pu.Status, Type = e.pu.Type, Permissions = e.pu.Permissions, }).ToArrayAsync(); return data; } } public async Task> GetManyDetailsByUserAsync(Guid userId, ProviderUserStatusType? status = null) { using (var scope = ServiceScopeFactory.CreateScope()) { var dbContext = GetDatabaseContext(scope); var query = new ProviderUserProviderDetailsReadByUserIdStatusQuery(userId, status); var data = await query.Run(dbContext).ToArrayAsync(); return data; } } public async Task> GetManyPublicKeysByProviderUserAsync(Guid providerId, IEnumerable Ids) { using (var scope = ServiceScopeFactory.CreateScope()) { var dbContext = GetDatabaseContext(scope); var query = new UserReadPublicKeysByProviderUserIdsQuery(providerId, Ids); var data = await query.Run(dbContext).ToListAsync(); return data; } } public async Task> GetManyOrganizationDetailsByUserAsync(Guid userId, ProviderUserStatusType? status = null) { using (var scope = ServiceScopeFactory.CreateScope()) { var dbContext = GetDatabaseContext(scope); var view = new ProviderUserOrganizationDetailsViewQuery(); var query = from ou in view.Run(dbContext) where ou.UserId == userId && (status == null || ou.Status == status) select ou; var organizationUsers = await query.ToListAsync(); return organizationUsers; } } public async Task GetCountByOnlyOwnerAsync(Guid userId) { var query = new ProviderUserReadCountByOnlyOwnerQuery(userId); return await GetCountFromQuery(query); } } }