2018-12-01 13:17:53 -05:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
2018-04-08 02:44:42 -04:00
|
|
|
|
using SharedLibraryCore.Database;
|
|
|
|
|
using SharedLibraryCore.Database.Models;
|
|
|
|
|
using SharedLibraryCore.Dtos;
|
2018-12-01 13:17:53 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Linq.Expressions;
|
|
|
|
|
using System.Threading.Tasks;
|
2017-11-25 20:29:58 -05:00
|
|
|
|
|
2018-04-08 02:44:42 -04:00
|
|
|
|
namespace SharedLibraryCore.Services
|
2017-11-25 20:29:58 -05:00
|
|
|
|
{
|
|
|
|
|
public class PenaltyService : Interfaces.IEntityService<EFPenalty>
|
|
|
|
|
{
|
2020-04-21 18:34:00 -04:00
|
|
|
|
public virtual async Task<EFPenalty> Create(EFPenalty newEntity)
|
2017-11-25 20:29:58 -05:00
|
|
|
|
{
|
2017-11-29 19:35:50 -05:00
|
|
|
|
using (var context = new DatabaseContext())
|
2017-11-25 20:29:58 -05:00
|
|
|
|
{
|
2019-04-02 21:20:37 -04:00
|
|
|
|
var penalty = new EFPenalty()
|
2017-11-29 19:35:50 -05:00
|
|
|
|
{
|
2019-04-02 21:20:37 -04:00
|
|
|
|
Active = true,
|
|
|
|
|
OffenderId = newEntity.Offender.ClientId,
|
|
|
|
|
PunisherId = newEntity.Punisher.ClientId,
|
|
|
|
|
LinkId = newEntity.Link.AliasLinkId,
|
|
|
|
|
Type = newEntity.Type,
|
|
|
|
|
Expires = newEntity.Expires,
|
|
|
|
|
Offense = newEntity.Offense,
|
|
|
|
|
When = DateTime.UtcNow,
|
2019-08-08 16:30:06 -04:00
|
|
|
|
AutomatedOffense = newEntity.AutomatedOffense ?? newEntity.Punisher.AdministeredPenalties?.FirstOrDefault()?.AutomatedOffense,
|
2019-04-02 21:20:37 -04:00
|
|
|
|
IsEvadedOffense = newEntity.IsEvadedOffense
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
context.Penalties.Add(penalty);
|
2017-11-25 20:29:58 -05:00
|
|
|
|
await context.SaveChangesAsync();
|
|
|
|
|
}
|
2019-04-02 21:20:37 -04:00
|
|
|
|
|
|
|
|
|
return newEntity;
|
2017-11-25 20:29:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Task<EFPenalty> Delete(EFPenalty entity)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<IList<EFPenalty>> Find(Func<EFPenalty, bool> expression)
|
|
|
|
|
{
|
2018-04-05 00:38:45 -04:00
|
|
|
|
throw await Task.FromResult(new Exception());
|
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();
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-12 14:13:59 -05:00
|
|
|
|
public async Task<IList<PenaltyInfo>> GetRecentPenalties(int count, int offset, EFPenalty.PenaltyType showOnly = EFPenalty.PenaltyType.Any, bool ignoreAutomated = true)
|
2019-03-29 22:56:56 -04:00
|
|
|
|
{
|
2019-03-31 20:56:31 -04:00
|
|
|
|
using (var context = new DatabaseContext(true))
|
2019-03-29 22:56:56 -04:00
|
|
|
|
{
|
2019-03-31 20:56:31 -04:00
|
|
|
|
var iqPenalties = context.Penalties
|
2019-05-29 17:55:35 -04:00
|
|
|
|
.Where(p => showOnly == EFPenalty.PenaltyType.Any ? p.Type != EFPenalty.PenaltyType.Any : p.Type == showOnly)
|
2020-02-12 14:13:59 -05:00
|
|
|
|
.Where(_penalty => ignoreAutomated ? _penalty.PunisherId != 1 : true)
|
2019-03-31 20:56:31 -04:00
|
|
|
|
.OrderByDescending(p => p.When)
|
2019-03-29 22:56:56 -04:00
|
|
|
|
.Skip(offset)
|
2019-03-31 20:56:31 -04:00
|
|
|
|
.Take(count)
|
|
|
|
|
.Select(_penalty => new PenaltyInfo()
|
|
|
|
|
{
|
|
|
|
|
Id = _penalty.PenaltyId,
|
|
|
|
|
Offense = _penalty.Offense,
|
|
|
|
|
AutomatedOffense = _penalty.AutomatedOffense,
|
|
|
|
|
OffenderId = _penalty.OffenderId,
|
|
|
|
|
OffenderName = _penalty.Offender.CurrentAlias.Name,
|
|
|
|
|
PunisherId = _penalty.PunisherId,
|
|
|
|
|
PunisherName = _penalty.Punisher.CurrentAlias.Name,
|
|
|
|
|
PunisherLevel = _penalty.Punisher.Level,
|
|
|
|
|
PenaltyType = _penalty.Type,
|
|
|
|
|
Expires = _penalty.Expires,
|
|
|
|
|
TimePunished = _penalty.When,
|
|
|
|
|
IsEvade = _penalty.IsEvadedOffense
|
|
|
|
|
});
|
|
|
|
|
|
2019-03-29 22:56:56 -04:00
|
|
|
|
return await iqPenalties.ToListAsync();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-14 14:01:26 -05:00
|
|
|
|
/// <summary>
|
2019-03-31 20:56:31 -04:00
|
|
|
|
/// retrieves penalty information for meta service
|
2018-02-14 14:01:26 -05:00
|
|
|
|
/// </summary>
|
2019-03-31 20:56:31 -04:00
|
|
|
|
/// <param name="clientId">database id of the client</param>
|
|
|
|
|
/// <param name="count">how many items to retrieve</param>
|
|
|
|
|
/// <param name="offset">not used</param>
|
|
|
|
|
/// <param name="startAt">retreive penalties older than this</param>
|
2018-02-14 14:01:26 -05:00
|
|
|
|
/// <returns></returns>
|
2019-03-31 20:56:31 -04:00
|
|
|
|
public async Task<IList<PenaltyInfo>> GetClientPenaltyForMetaAsync(int clientId, int count, int offset, DateTime? startAt)
|
2018-02-14 14:01:26 -05:00
|
|
|
|
{
|
2019-06-28 17:57:01 -04:00
|
|
|
|
var linkedPenaltyType = Utilities.LinkedPenaltyTypes();
|
|
|
|
|
|
2019-03-31 20:56:31 -04:00
|
|
|
|
using (var ctx = new DatabaseContext(true))
|
2018-02-14 14:01:26 -05:00
|
|
|
|
{
|
2019-06-27 21:06:30 -04:00
|
|
|
|
var linkId = await ctx.Clients.AsNoTracking()
|
|
|
|
|
.Where(_penalty => _penalty.ClientId == clientId)
|
|
|
|
|
.Select(_penalty => _penalty.AliasLinkId)
|
|
|
|
|
.FirstOrDefaultAsync();
|
|
|
|
|
|
2019-03-31 20:56:31 -04:00
|
|
|
|
var iqPenalties = ctx.Penalties.AsNoTracking()
|
2019-06-28 17:57:01 -04:00
|
|
|
|
.Where(_penalty => _penalty.OffenderId == clientId || _penalty.PunisherId == clientId || (linkedPenaltyType.Contains(_penalty.Type) && _penalty.LinkId == linkId))
|
2019-06-27 21:06:30 -04:00
|
|
|
|
.Where(_penalty => _penalty.When <= startAt)
|
2019-03-31 20:56:31 -04:00
|
|
|
|
.OrderByDescending(_penalty => _penalty.When)
|
|
|
|
|
.Skip(offset)
|
|
|
|
|
.Take(count)
|
|
|
|
|
.Select(_penalty => new PenaltyInfo()
|
2018-04-13 02:32:30 -04:00
|
|
|
|
{
|
2019-03-31 20:56:31 -04:00
|
|
|
|
Id = _penalty.PenaltyId,
|
|
|
|
|
Offense = _penalty.Offense,
|
|
|
|
|
AutomatedOffense = _penalty.AutomatedOffense,
|
|
|
|
|
OffenderId = _penalty.OffenderId,
|
|
|
|
|
OffenderName = _penalty.Offender.CurrentAlias.Name,
|
|
|
|
|
PunisherId = _penalty.PunisherId,
|
|
|
|
|
PunisherName = _penalty.Punisher.CurrentAlias.Name,
|
|
|
|
|
PunisherLevel = _penalty.Punisher.Level,
|
|
|
|
|
PenaltyType = _penalty.Type,
|
|
|
|
|
Expires = _penalty.Expires,
|
|
|
|
|
TimePunished = _penalty.When,
|
|
|
|
|
IsEvade = _penalty.IsEvadedOffense
|
2018-04-28 17:39:45 -04:00
|
|
|
|
});
|
2018-04-26 20:19:42 -04:00
|
|
|
|
|
2019-06-28 17:57:01 -04:00
|
|
|
|
return await iqPenalties.Distinct().ToListAsync();
|
2018-02-14 14:01:26 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-05 14:34:03 -04:00
|
|
|
|
public async Task<List<EFPenalty>> GetActivePenaltiesAsync(int linkId, int? ip = null, bool includePunisherName = false)
|
2018-02-15 23:01:28 -05:00
|
|
|
|
{
|
2018-09-02 17:59:27 -04:00
|
|
|
|
var now = DateTime.UtcNow;
|
|
|
|
|
|
2019-06-24 19:32:14 -04:00
|
|
|
|
Expression<Func<EFPenalty, bool>> filter = (p) => (new EFPenalty.PenaltyType[]
|
2018-12-01 13:17:53 -05:00
|
|
|
|
{
|
2019-05-29 17:55:35 -04:00
|
|
|
|
EFPenalty.PenaltyType.TempBan,
|
2019-06-25 19:01:47 -04:00
|
|
|
|
EFPenalty.PenaltyType.Ban,
|
|
|
|
|
EFPenalty.PenaltyType.Flag
|
2018-12-01 13:17:53 -05:00
|
|
|
|
}.Contains(p.Type) &&
|
|
|
|
|
p.Active &&
|
2019-06-25 19:01:47 -04:00
|
|
|
|
(p.Expires == null || p.Expires > now));
|
2018-12-01 13:17:53 -05:00
|
|
|
|
|
2018-09-12 20:53:11 -04:00
|
|
|
|
using (var context = new DatabaseContext(true))
|
2018-02-15 23:01:28 -05:00
|
|
|
|
{
|
2018-12-01 13:17:53 -05:00
|
|
|
|
var iqLinkPenalties = context.Penalties
|
|
|
|
|
.Where(p => p.LinkId == linkId)
|
|
|
|
|
.Where(filter);
|
|
|
|
|
|
|
|
|
|
var iqIPPenalties = context.Aliases
|
2019-06-27 21:06:30 -04:00
|
|
|
|
.Where(a => a.IPAddress != null && a.IPAddress == ip)
|
2018-12-01 13:17:53 -05:00
|
|
|
|
.SelectMany(a => a.Link.ReceivedPenalties)
|
|
|
|
|
.Where(filter);
|
|
|
|
|
|
2018-12-29 13:43:40 -05:00
|
|
|
|
var activePenalties = (await iqLinkPenalties.ToListAsync())
|
|
|
|
|
.Union(await iqIPPenalties.ToListAsync())
|
|
|
|
|
.Distinct();
|
|
|
|
|
|
2018-09-12 20:53:11 -04:00
|
|
|
|
// this is a bit more performant in memory (ordering)
|
2018-12-01 13:17:53 -05:00
|
|
|
|
return activePenalties.OrderByDescending(p => p.When).ToList();
|
2018-02-15 23:01:28 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-21 18:34:00 -04:00
|
|
|
|
public virtual async Task RemoveActivePenalties(int aliasLinkId)
|
2017-11-25 20:29:58 -05:00
|
|
|
|
{
|
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;
|
2019-06-27 21:06:30 -04:00
|
|
|
|
await context.Penalties
|
2017-11-25 20:29:58 -05:00
|
|
|
|
.Where(p => p.LinkId == aliasLinkId)
|
2019-06-27 21:06:30 -04:00
|
|
|
|
.Where(p => p.Expires > now || p.Expires == null)
|
|
|
|
|
.ForEachAsync(p =>
|
|
|
|
|
{
|
|
|
|
|
p.Active = false;
|
|
|
|
|
p.Expires = now;
|
|
|
|
|
});
|
2017-11-25 20:29:58 -05:00
|
|
|
|
|
|
|
|
|
await context.SaveChangesAsync();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|