a07ce112b0
several css tweaks changed administratorIPs to PrivilegedClients added time step references to profile page
52 lines
1.7 KiB
C#
52 lines
1.7 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
|
using SharedLibrary;
|
|
using SharedLibrary.Dtos;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebfrontCore.ViewComponents
|
|
{
|
|
public class PenaltyListViewComponent : ViewComponent
|
|
{
|
|
public async Task<IViewComponentResult> InvokeAsync(int offset)
|
|
{
|
|
int ip = HttpContext.Connection.RemoteIpAddress
|
|
.ToString().ConvertToIP();
|
|
|
|
bool authed = false;
|
|
|
|
try
|
|
{
|
|
var a = IW4MAdmin.ApplicationManager.GetInstance()
|
|
.PrivilegedClients[HttpContext.Connection.RemoteIpAddress.ToString().ConvertToIP()];
|
|
}
|
|
|
|
catch (KeyNotFoundException)
|
|
{
|
|
|
|
}
|
|
|
|
var penalties = await IW4MAdmin.ApplicationManager.GetInstance().GetPenaltyService().GetRecentPenalties(15, offset);
|
|
var penaltiesDto = penalties.Select(p => new PenaltyInfo()
|
|
{
|
|
OffenderId = p.OffenderId,
|
|
OffenderName = p.Offender.Name,
|
|
PunisherId = p.PunisherId,
|
|
PunisherName = p.Punisher.Name,
|
|
PunisherLevel = p.Punisher.Level.ToString(),
|
|
Offense = p.Offense,
|
|
Type = p.Type.ToString(),
|
|
TimePunished = Utilities.GetTimePassed(p.When, false),
|
|
TimeRemaining = DateTime.UtcNow > p.Expires ? "" : Utilities.TimeSpanText(p.Expires - DateTime.UtcNow),
|
|
Sensitive = p.Type == SharedLibrary.Objects.Penalty.PenaltyType.Flag
|
|
});
|
|
|
|
penaltiesDto = authed ? penaltiesDto.ToList() : penaltiesDto.Where(p => !p.Sensitive).ToList();
|
|
|
|
return View("_List", penaltiesDto);
|
|
}
|
|
}
|
|
}
|