using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using SharedLibraryCore; using System; using System.Linq; using System.Threading.Tasks; using WebfrontCore.Controllers; namespace IW4MAdmin.Plugins.Stats.Web.Controllers { public class StatsController : BaseController { [HttpGet] public async Task TopPlayersAsync() { ViewBag.Title = Utilities.CurrentLocalization.LocalizationIndex.Set["WEBFRONT_STATS_INDEX_TITLE"]; ViewBag.Description = Utilities.CurrentLocalization.LocalizationIndex.Set["WEBFRONT_STATS_INDEX_DESC"]; return View("Index", await Plugin.Manager.GetTopStats(0, 50)); } [HttpGet] public async Task GetTopPlayersAsync(int count, int offset) { return View("_List", await Plugin.Manager.GetTopStats(offset, count)); } [HttpGet] public async Task GetMessageAsync(int serverId, DateTime when) { var whenUpper = when.AddMinutes(5); var whenLower = when.AddMinutes(-5); using (var ctx = new SharedLibraryCore.Database.DatabaseContext(true)) { var iqMessages = from message in ctx.Set() where message.ServerId == serverId where message.TimeSent >= whenLower where message.TimeSent <= whenUpper select new SharedLibraryCore.Dtos.ChatInfo() { Message = message.Message, Name = message.Client.CurrentAlias.Name, Time = message.TimeSent }; var messages = await iqMessages.ToListAsync(); return View("_MessageContext", messages); } } [HttpGet] [Authorize] public async Task GetAutomatedPenaltyInfoAsync(int clientId) { using (var ctx = new SharedLibraryCore.Database.DatabaseContext(true)) { var penaltyInfo = await ctx.Set() .Where(s => s.ClientId == clientId) .Include(s => s.LastStrainAngle) .Include(s => s.HitOrigin) .Include(s => s.HitDestination) .Include(s => s.CurrentViewAngle) .Include(s => s.PredictedViewAngles) .OrderBy(s => s.When) .ThenBy(s => s.Hits) .ToListAsync(); return View("_PenaltyInfo", penaltyInfo); } } } }