IW4M-Admin/WebfrontCore/Controllers/PenaltyController.cs

49 lines
1.5 KiB
C#
Raw Normal View History

2018-02-21 20:29:23 -05:00
using Microsoft.AspNetCore.Mvc;
using SharedLibrary;
using SharedLibrary.Database.Models;
2018-02-21 20:29:23 -05:00
using SharedLibrary.Dtos;
using SharedLibrary.Services;
2018-02-21 20:29:23 -05:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using WebfrontCore.ViewComponents;
namespace WebfrontCore.Controllers
{
2018-03-06 02:22:19 -05:00
public class PenaltyController : BaseController
2018-02-21 20:29:23 -05:00
{
2018-03-06 02:22:19 -05:00
public IActionResult List()
2018-02-21 20:29:23 -05:00
{
ViewBag.Description = "List of all the recent penalties (bans, kicks, warnings) on IW4MAdmin";
ViewBag.Title = "Client Penalties";
ViewBag.Keywords = "IW4MAdmin, penalties, ban, kick, warns";
2018-02-21 20:29:23 -05:00
return View();
}
public async Task<IActionResult> ListAsync(int offset = 0)
{
return 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);
}
2018-02-21 20:29:23 -05:00
}
}