// WingsEmu // // Developed by NosWings Team using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.EntityFrameworkCore; using PhoenixLib.DAL; using PhoenixLib.Logging; using Plugin.Database.DB; using WingsAPI.Data.Families; namespace Plugin.Database.Families { public class FamilyMembershipDao : IFamilyMembershipDao { private readonly IDbContextFactory _contextFactory; private readonly IMapper _mapper; private readonly IGenericAsyncLongRepository _repository; public FamilyMembershipDao(IMapper mapper, IDbContextFactory contextFactory, IGenericAsyncLongRepository repository) { _mapper = mapper; _contextFactory = contextFactory; _repository = repository; } public async Task GetByCharacterIdAsync(long characterId) { try { await using GameContext context = _contextFactory.CreateDbContext(); DbFamilyMembership dbFamilyMembership = await context.FamilyCharacter.FirstOrDefaultAsync(c => c.CharacterId == characterId); return _mapper.Map(dbFamilyMembership); } catch (Exception e) { Log.Error("GetByCharacterIdAsync", e); return null; } } public async Task> GetByFamilyIdAsync(long familyId) { try { await using GameContext context = _contextFactory.CreateDbContext(); List familyCharacter = await context.FamilyCharacter.Where(fc => fc.FamilyId.Equals(familyId)).ToListAsync(); return _mapper.Map(familyCharacter); } catch (Exception e) { Log.Error("GetByFamilyIdAsync", e); return null; } } public async Task> GetAllAsync() => await _repository.GetAllAsync(); public async Task GetByIdAsync(long id) => await _repository.GetByIdAsync(id); public async Task> GetByIdsAsync(IEnumerable ids) => await _repository.GetByIdsAsync(ids); public async Task SaveAsync(FamilyMembershipDto obj) => await _repository.SaveAsync(obj); public async Task> SaveAsync(IReadOnlyList objs) => await _repository.SaveAsync(objs); public async Task DeleteByIdAsync(long id) { await _repository.DeleteByIdAsync(id); } public async Task DeleteByIdsAsync(IEnumerable ids) { await _repository.DeleteByIdsAsync(ids); } } }