using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using SharedLibraryCore.Database; using SharedLibraryCore.Database.Models; using System.Linq.Expressions; using SharedLibraryCore.Objects; using Microsoft.EntityFrameworkCore; using SharedLibraryCore.Dtos; namespace SharedLibraryCore.Services { public class ClientService : Interfaces.IEntityService { public async Task Create(EFClient entity) { using (var context = new DatabaseContext()) { bool hasExistingAlias = false; // get all aliases by IP var aliases = await context.Aliases .Include(a => a.Link) .Where(a => a.IPAddress == entity.IPAddress) .ToListAsync(); // see if they have a matching IP + Name but new NetworkId var existingAlias = aliases.FirstOrDefault(a => a.Name == entity.Name); // if existing alias matches link them EFAliasLink aliasLink = existingAlias?.Link; // if no exact matches find the first IP that matches aliasLink = aliasLink ?? aliases.FirstOrDefault()?.Link; // if no exact or IP matches, create new link aliasLink = aliasLink ?? new EFAliasLink() { Active = true, }; // this has to be set here because we can't evalute it properly later hasExistingAlias = existingAlias != null; // if no existing alias create new alias existingAlias = existingAlias ?? new EFAlias() { Active = true, DateAdded = DateTime.UtcNow, IPAddress = entity.IPAddress, Link = aliasLink, Name = entity.Name, }; var client = new EFClient() { Active = true, // set the level to the level of the existing client if they have the same IP + Name but new NetworkId // fixme: issues? Level = hasExistingAlias ? (await context.Clients.Where(c => c.AliasLinkId == existingAlias.LinkId) .OrderByDescending(c => c.Level) .FirstOrDefaultAsync())?.Level ?? Player.Permission.User : Player.Permission.User, FirstConnection = DateTime.UtcNow, Connections = 1, LastConnection = DateTime.UtcNow, Masked = false, NetworkId = entity.NetworkId, AliasLink = aliasLink, CurrentAlias = existingAlias, }; context.Clients.Add(client); await context.SaveChangesAsync(); return client; } } public async Task Delete(EFClient entity) { using (var context = new DatabaseContext()) { var client = context.Clients .Single(e => e.ClientId == entity.ClientId); entity.Active = false; context.Entry(entity).State = EntityState.Modified; await context.SaveChangesAsync(); return entity; } } public async Task> Find(Func e) { return await Task.Run(() => { using (var context = new DatabaseContext(true)) { return context.Clients .Include(c => c.CurrentAlias) .Include(c => c.AliasLink.Children) .Where(e).ToList(); } }); } public async Task Get(int entityID) { using (var context = new DatabaseContext(true)) { var iqClient = from client in context.Clients .Include(c => c.CurrentAlias) .Include(c => c.AliasLink.Children) .Include(c => c.Meta) where client.ClientId == entityID select new { Client = client, LinkedAccounts = (from linkedClient in context.Clients where client.AliasLinkId == linkedClient.AliasLinkId select new { linkedClient.ClientId, linkedClient.NetworkId }) }; #if DEBUG == true var clientSql = iqClient.ToSql(); #endif var foundClient = await iqClient.FirstOrDefaultAsync(); if (foundClient == null) return null; foundClient.Client.LinkedAccounts = new Dictionary(); // todo: find out the best way to do this // I'm doing this here because I don't know the best way to have multiple awaits in the query foreach (var linked in foundClient.LinkedAccounts) foundClient.Client.LinkedAccounts.Add(linked.ClientId, linked.NetworkId); return foundClient.Client; } } private static readonly Func> _getUniqueQuery = EF.CompileAsyncQuery((DatabaseContext context, long networkId) => context.Clients .Include(c => c.CurrentAlias) .Include(c => c.AliasLink.Children) .FirstOrDefault(c => c.NetworkId == networkId) ); public async Task GetUnique(long entityAttribute) { using (var context = new DatabaseContext(true)) { return await _getUniqueQuery(context, entityAttribute); } } public async Task Update(EFClient entity) { using (var context = new DatabaseContext()) { // grab the context version of the entity var client = context.Clients .Include(c => c.AliasLink) .Include(c => c.CurrentAlias) .Single(e => e.ClientId == entity.ClientId); // if their level has been changed if (entity.Level != client.Level) { // get all clients that use the same aliasId var matchingClients = context.Clients .Where(c => c.CurrentAliasId == client.CurrentAliasId) // make sure we don't select ourselves twice .Where(c => c.ClientId != entity.ClientId); // update all related clients level await matchingClients.ForEachAsync(c => { c.Level = entity.Level; }); } // their alias has been updated and not yet saved if (entity.CurrentAlias.AliasId == 0) { client.CurrentAlias = new EFAlias() { Active = true, DateAdded = DateTime.UtcNow, IPAddress = entity.CurrentAlias.IPAddress, Name = entity.CurrentAlias.Name, Link = client.AliasLink }; } else { client.CurrentAliasId = entity.CurrentAliasId; } // set remaining non-navigation properties that may have been updated client.Level = entity.Level; client.LastConnection = entity.LastConnection; client.Connections = entity.Connections; client.FirstConnection = entity.FirstConnection; client.Masked = entity.Masked; client.TotalConnectionTime = entity.TotalConnectionTime; client.Password = entity.Password; client.PasswordSalt = entity.PasswordSalt; // update in database await context.SaveChangesAsync(); // this is set so future updates don't trigger a new alias add if (entity.CurrentAlias.AliasId == 0) entity.CurrentAlias.AliasId = client.CurrentAlias.AliasId; return client; } } #region ServiceSpecific public async Task> GetOwners() { using (var context = new DatabaseContext()) return await context.Clients .Where(c => c.Level == Player.Permission.Owner) .ToListAsync(); } public async Task> GetPrivilegedClients() { using (var context = new DatabaseContext(disableTracking: true)) { var iqClients = from client in context.Clients where client.Level >= Player.Permission.Trusted where client.Active select new ClientInfo() { ClientId = client.ClientId, Name = client.CurrentAlias.Name, LinkId = client.AliasLinkId, Level = client.Level }; #if DEBUG == true var clientsSql = iqClients.ToSql(); #endif return await iqClients.ToListAsync(); } } public async Task> FindClientsByIdentifier(string identifier) { if (identifier.Length < 3) { return new List(); } identifier = identifier.ToLower(); using (var context = new DatabaseContext(disableTracking: true)) { long networkId = identifier.ConvertLong(); int ipAddress = identifier.ConvertToIP(); var iqLinkIds = (from alias in context.Aliases where alias.IPAddress == ipAddress || alias.Name.ToLower().Contains(identifier) select alias.LinkId).Distinct(); var linkIds = iqLinkIds.ToList(); var iqClients = context.Clients .Where(c => linkIds.Contains(c.AliasLinkId) || networkId == c.NetworkId) .Include(c => c.CurrentAlias) .Include(c => c.AliasLink.Children); #if DEBUG == true var iqClientsSql = iqClients.ToSql(); #endif return await iqClients.ToListAsync(); } } public async Task GetTotalClientsAsync() { using (var context = new DatabaseContext(true)) return await context.Clients .CountAsync(); } public Task CreateProxy() { throw new NotImplementedException(); } public async Task GetTotalPlayTime() { using (var context = new DatabaseContext(true)) return await context.Clients.SumAsync(c => c.TotalConnectionTime); } #endregion } }