979b1f2310
fixed discord link showing when no invite specified OpenGraph image set to absolute url more changes to killcallback and logging fixed some angle conversion stuff
49 lines
1.5 KiB
C#
49 lines
1.5 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
|
using SharedLibrary;
|
|
using SharedLibrary.Database.Models;
|
|
using SharedLibrary.Dtos;
|
|
using SharedLibrary.Services;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using WebfrontCore.ViewComponents;
|
|
|
|
namespace WebfrontCore.Controllers
|
|
{
|
|
public class PenaltyController : BaseController
|
|
{
|
|
public IActionResult List()
|
|
{
|
|
ViewBag.Description = "List of all the recent penalties (bans, kicks, warnings) on IW4MAdmin";
|
|
ViewBag.Title = "Client Penalties";
|
|
ViewBag.Keywords = "IW4MAdmin, penalties, ban, kick, warns";
|
|
|
|
return View();
|
|
}
|
|
|
|
public async Task<IActionResult> ListAsync(int offset = 0)
|
|
{
|
|
return await Task.FromResult(View("_List", offset));
|
|
}
|
|
|
|
public async Task<IActionResult> PublicAsync()
|
|
{
|
|
var penalties = await (new GenericRepository<EFPenalty>())
|
|
.FindAsync(p => p.Type == SharedLibrary.Objects.Penalty.PenaltyType.Ban && p.Active);
|
|
|
|
var penaltiesDto = penalties.Select(p => new PenaltyInfo()
|
|
{
|
|
OffenderId = p.OffenderId,
|
|
Offense = p.Offense,
|
|
PunisherId = p.PunisherId,
|
|
Type = p.Type.ToString(),
|
|
TimePunished = p.When.ToString(),
|
|
TimeRemaining = p.Expires.ToString()
|
|
}).ToList();
|
|
|
|
return Json(penaltiesDto);
|
|
}
|
|
}
|
|
}
|