2017-11-25 20:29:58 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Data.Entity;
|
|
|
|
|
|
|
|
|
|
using SharedLibrary.Database;
|
|
|
|
|
using SharedLibrary.Database.Models;
|
|
|
|
|
using System.Linq.Expressions;
|
2018-02-14 14:01:26 -05:00
|
|
|
|
using SharedLibrary.Dtos;
|
2017-11-25 20:29:58 -05:00
|
|
|
|
|
|
|
|
|
namespace SharedLibrary.Services
|
|
|
|
|
{
|
|
|
|
|
public class PenaltyService : Interfaces.IEntityService<EFPenalty>
|
|
|
|
|
{
|
|
|
|
|
public async Task<EFPenalty> Create(EFPenalty entity)
|
|
|
|
|
{
|
2017-11-29 19:35:50 -05:00
|
|
|
|
using (var context = new DatabaseContext())
|
2017-11-25 20:29:58 -05:00
|
|
|
|
{
|
|
|
|
|
entity.Offender = context.Clients.First(e => e.ClientId == entity.Offender.ClientId);
|
|
|
|
|
entity.Punisher = context.Clients.First(e => e.ClientId == entity.Punisher.ClientId);
|
|
|
|
|
entity.Link = context.AliasLinks.First(l => l.AliasLinkId == entity.Link.AliasLinkId);
|
2017-11-29 19:35:50 -05:00
|
|
|
|
|
|
|
|
|
// make bans propogate to all aliases
|
|
|
|
|
if (entity.Type == Objects.Penalty.PenaltyType.Ban)
|
|
|
|
|
{
|
2017-11-25 20:29:58 -05:00
|
|
|
|
entity.Expires = DateTime.Parse(System.Data.SqlTypes.SqlDateTime.MaxValue.ToString());
|
2017-11-29 19:35:50 -05:00
|
|
|
|
await context.Clients
|
|
|
|
|
.Where(c => c.AliasLinkId == entity.Link.AliasLinkId)
|
|
|
|
|
.ForEachAsync(c => c.Level = Objects.Player.Permission.Banned);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// make flags propogate to all aliases
|
|
|
|
|
else if (entity.Type == Objects.Penalty.PenaltyType.Flag)
|
|
|
|
|
{
|
|
|
|
|
await context.Clients
|
|
|
|
|
.Where(c => c.AliasLinkId == entity.Link.AliasLinkId)
|
|
|
|
|
.ForEachAsync(c => c.Level = Objects.Player.Permission.Flagged);
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-25 20:29:58 -05:00
|
|
|
|
context.Penalties.Add(entity);
|
|
|
|
|
await context.SaveChangesAsync();
|
|
|
|
|
return entity;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Task<EFPenalty> CreateProxy()
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Task<EFPenalty> Delete(EFPenalty entity)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<IList<EFPenalty>> Find(Func<EFPenalty, bool> expression)
|
|
|
|
|
{
|
2018-02-14 14:01:26 -05:00
|
|
|
|
return await Task.FromResult(new List<EFPenalty>());
|
|
|
|
|
// fixme: this is so slow!
|
2018-02-07 00:19:06 -05:00
|
|
|
|
return await Task.Run(() =>
|
2017-11-25 20:29:58 -05:00
|
|
|
|
{
|
2018-02-07 00:19:06 -05:00
|
|
|
|
using (var context = new DatabaseContext())
|
|
|
|
|
return context.Penalties
|
|
|
|
|
.Include(p => p.Offender)
|
|
|
|
|
.Include(p => p.Punisher)
|
|
|
|
|
.Where(expression)
|
|
|
|
|
.Where(p => p.Active)
|
|
|
|
|
.ToList();
|
|
|
|
|
});
|
2017-11-25 20:29:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Task<EFPenalty> Get(int entityID)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-10 23:33:42 -05:00
|
|
|
|
public Task<EFPenalty> GetUnique(long entityProperty)
|
2017-11-25 20:29:58 -05:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Task<EFPenalty> Update(EFPenalty entity)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<IList<EFPenalty>> GetRecentPenalties(int count, int offset)
|
|
|
|
|
{
|
2017-11-29 19:35:50 -05:00
|
|
|
|
using (var context = new DatabaseContext())
|
2017-11-25 20:29:58 -05:00
|
|
|
|
return await context.Penalties
|
2017-11-29 19:35:50 -05:00
|
|
|
|
.AsNoTracking()
|
|
|
|
|
.Include(p => p.Offender.CurrentAlias)
|
|
|
|
|
.Include(p => p.Punisher.CurrentAlias)
|
|
|
|
|
.Where(p => p.Active)
|
2017-11-25 20:29:58 -05:00
|
|
|
|
.OrderByDescending(p => p.When)
|
|
|
|
|
.Skip(offset)
|
|
|
|
|
.Take(count)
|
|
|
|
|
.ToListAsync();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<IList<EFPenalty>> GetClientPenaltiesAsync(int clientId)
|
|
|
|
|
{
|
2017-11-29 19:35:50 -05:00
|
|
|
|
using (var context = new DatabaseContext())
|
2017-11-25 20:29:58 -05:00
|
|
|
|
return await context.Penalties
|
2017-11-29 19:35:50 -05:00
|
|
|
|
.AsNoTracking()
|
|
|
|
|
.Where(p => p.OffenderId == clientId)
|
|
|
|
|
.Where(p => p.Active)
|
|
|
|
|
.Include(p => p.Offender.CurrentAlias)
|
|
|
|
|
.Include(p => p.Punisher.CurrentAlias)
|
|
|
|
|
.ToListAsync();
|
2017-11-25 20:29:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-14 14:01:26 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get a read-only copy of client penalties
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="clientI"></param>
|
|
|
|
|
/// <param name="victim">Retreive penalties for clients receiving penalties, other wise given</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public async Task<List<ProfileMeta>> ReadGetClientPenaltiesAsync(int clientId, bool victim = true)
|
|
|
|
|
{
|
|
|
|
|
using (var context = new DatabaseContext())
|
|
|
|
|
{
|
|
|
|
|
context.Configuration.LazyLoadingEnabled = false;
|
|
|
|
|
context.Configuration.ProxyCreationEnabled = false;
|
|
|
|
|
context.Configuration.AutoDetectChangesEnabled = false;
|
|
|
|
|
|
|
|
|
|
if (victim)
|
|
|
|
|
{
|
|
|
|
|
var iqPenalties = from penalty in context.Penalties.AsNoTracking()
|
|
|
|
|
where penalty.OffenderId == clientId
|
|
|
|
|
join victimClient in context.Clients.AsNoTracking()
|
|
|
|
|
on penalty.OffenderId equals victimClient.ClientId
|
|
|
|
|
join victimAlias in context.Aliases
|
|
|
|
|
on victimClient.CurrentAliasId equals victimAlias.AliasId
|
|
|
|
|
join punisherClient in context.Clients
|
|
|
|
|
on penalty.PunisherId equals punisherClient.ClientId
|
|
|
|
|
join punisherAlias in context.Aliases
|
|
|
|
|
on punisherClient.CurrentAliasId equals punisherAlias.AliasId
|
|
|
|
|
//orderby penalty.When descending
|
|
|
|
|
select new ProfileMeta()
|
|
|
|
|
{
|
|
|
|
|
Key = "Event.Penalty",
|
|
|
|
|
Value = new ProfilePenalty
|
|
|
|
|
{
|
|
|
|
|
OffenderName = victimAlias.Name,
|
|
|
|
|
OffenderId = victimClient.ClientId,
|
|
|
|
|
PunisherName = punisherAlias.Name,
|
|
|
|
|
PunisherId = penalty.PunisherId,
|
|
|
|
|
Offense = penalty.Offense,
|
|
|
|
|
Type = penalty.Type.ToString()
|
|
|
|
|
},
|
|
|
|
|
When = penalty.When
|
|
|
|
|
};
|
|
|
|
|
// fixme: is this good and fast?
|
|
|
|
|
return await iqPenalties.ToListAsync();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
var iqPenalties = from penalty in context.Penalties.AsNoTracking()
|
|
|
|
|
where penalty.PunisherId == clientId
|
|
|
|
|
join victimClient in context.Clients.AsNoTracking()
|
|
|
|
|
on penalty.OffenderId equals victimClient.ClientId
|
|
|
|
|
join victimAlias in context.Aliases
|
|
|
|
|
on victimClient.CurrentAliasId equals victimAlias.AliasId
|
|
|
|
|
join punisherClient in context.Clients
|
|
|
|
|
on penalty.PunisherId equals punisherClient.ClientId
|
|
|
|
|
join punisherAlias in context.Aliases
|
|
|
|
|
on punisherClient.CurrentAliasId equals punisherAlias.AliasId
|
|
|
|
|
//orderby penalty.When descending
|
|
|
|
|
select new ProfileMeta()
|
|
|
|
|
{
|
|
|
|
|
Key = "Event.Penalty",
|
|
|
|
|
Value = new ProfilePenalty
|
|
|
|
|
{
|
|
|
|
|
OffenderName = victimAlias.Name,
|
|
|
|
|
OffenderId = victimClient.ClientId,
|
|
|
|
|
PunisherName = punisherAlias.Name,
|
|
|
|
|
PunisherId = penalty.PunisherId,
|
|
|
|
|
Offense = penalty.Offense,
|
|
|
|
|
Type = penalty.Type.ToString()
|
|
|
|
|
},
|
|
|
|
|
When = penalty.When
|
|
|
|
|
};
|
|
|
|
|
// fixme: is this good and fast?
|
|
|
|
|
return await iqPenalties.ToListAsync();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-15 23:01:28 -05:00
|
|
|
|
public async Task<List<EFPenalty>> GetActivePenaltiesAsync(int aliasId)
|
|
|
|
|
{
|
|
|
|
|
using (var context = new DatabaseContext())
|
|
|
|
|
{
|
|
|
|
|
var iqPenalties = from link in context.AliasLinks
|
|
|
|
|
where link.AliasLinkId == aliasId
|
|
|
|
|
join penalty in context.Penalties
|
|
|
|
|
on link.AliasLinkId equals penalty.LinkId
|
|
|
|
|
where penalty.Active
|
|
|
|
|
select penalty;
|
|
|
|
|
return await iqPenalties.ToListAsync();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-25 20:29:58 -05:00
|
|
|
|
public async Task RemoveActivePenalties(int aliasLinkId)
|
|
|
|
|
{
|
2017-11-29 19:35:50 -05:00
|
|
|
|
using (var context = new DatabaseContext())
|
2017-11-25 20:29:58 -05:00
|
|
|
|
{
|
|
|
|
|
var now = DateTime.UtcNow;
|
|
|
|
|
var penalties = await context.Penalties
|
|
|
|
|
.Include(p => p.Link.Children)
|
|
|
|
|
.Where(p => p.LinkId == aliasLinkId)
|
|
|
|
|
.Where(p => p.Expires > now)
|
|
|
|
|
.ToListAsync();
|
|
|
|
|
|
|
|
|
|
penalties.ForEach(async p =>
|
|
|
|
|
{
|
|
|
|
|
p.Active = false;
|
2017-11-29 19:35:50 -05:00
|
|
|
|
// reset the player levels
|
|
|
|
|
if (p.Type == Objects.Penalty.PenaltyType.Ban)
|
|
|
|
|
await context.Clients
|
|
|
|
|
.Where(c => c.AliasLinkId == p.LinkId)
|
|
|
|
|
.ForEachAsync(c => c.Level = Objects.Player.Permission.User);
|
2017-11-25 20:29:58 -05:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
await context.SaveChangesAsync();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|