2022-01-24 11:01:17 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2022-01-22 13:49:12 -05:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
2018-08-03 22:11:58 -04:00
|
|
|
|
using SharedLibraryCore;
|
2018-04-08 02:44:42 -04:00
|
|
|
|
using SharedLibraryCore.Dtos;
|
2019-12-02 16:52:36 -05:00
|
|
|
|
using SharedLibraryCore.Interfaces;
|
2018-02-21 20:29:23 -05:00
|
|
|
|
using System.Linq;
|
2021-06-30 10:57:07 -04:00
|
|
|
|
using Data.Models.Client.Stats;
|
2022-01-22 13:49:12 -05:00
|
|
|
|
using IW4MAdmin.Plugins.Stats.Helpers;
|
|
|
|
|
using WebfrontCore.ViewModels;
|
2018-02-21 20:29:23 -05:00
|
|
|
|
|
|
|
|
|
namespace WebfrontCore.Controllers
|
|
|
|
|
{
|
2018-03-06 02:22:19 -05:00
|
|
|
|
public class ServerController : BaseController
|
2018-02-21 20:29:23 -05:00
|
|
|
|
{
|
2022-01-22 13:49:12 -05:00
|
|
|
|
public ServerController(IManager manager) : base(manager)
|
2019-12-02 16:52:36 -05:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-21 20:29:23 -05:00
|
|
|
|
[HttpGet]
|
2018-02-22 01:06:21 -05:00
|
|
|
|
[ResponseCache(NoStore = true, Duration = 0)]
|
2018-11-27 19:31:48 -05:00
|
|
|
|
public IActionResult ClientActivity(long id)
|
2018-02-21 20:29:23 -05:00
|
|
|
|
{
|
2019-04-06 22:48:49 -04:00
|
|
|
|
var s = Manager.GetServers().FirstOrDefault(_server => _server.EndPoint == id);
|
2018-11-27 19:31:48 -05:00
|
|
|
|
|
2018-02-21 20:29:23 -05:00
|
|
|
|
if (s == null)
|
2018-11-27 19:31:48 -05:00
|
|
|
|
{
|
2020-02-01 13:27:14 -05:00
|
|
|
|
return NotFound();
|
2018-11-27 19:31:48 -05:00
|
|
|
|
}
|
2018-02-21 20:29:23 -05:00
|
|
|
|
|
2022-04-19 19:43:58 -04:00
|
|
|
|
var serverInfo = new ServerInfo
|
2018-02-21 20:29:23 -05:00
|
|
|
|
{
|
|
|
|
|
Name = s.Hostname,
|
2018-11-27 19:31:48 -05:00
|
|
|
|
ID = s.EndPoint,
|
2019-05-31 11:17:01 -04:00
|
|
|
|
Port = s.Port,
|
2018-02-21 20:29:23 -05:00
|
|
|
|
Map = s.CurrentMap.Alias,
|
2021-08-31 19:21:40 -04:00
|
|
|
|
ClientCount = s.Clients.Count(client => client != null),
|
2018-02-21 20:29:23 -05:00
|
|
|
|
MaxClients = s.MaxClients,
|
2022-01-22 13:49:12 -05:00
|
|
|
|
GameType = s.GametypeName,
|
2018-11-05 22:01:29 -05:00
|
|
|
|
Players = s.GetClientsAsList()
|
2022-01-22 13:49:12 -05:00
|
|
|
|
.Select(p => new PlayerInfo
|
|
|
|
|
{
|
|
|
|
|
Name = p.Name,
|
|
|
|
|
ClientId = p.ClientId,
|
|
|
|
|
Level = p.Level.ToLocalizedLevelName(),
|
|
|
|
|
LevelInt = (int) p.Level,
|
2022-04-19 19:43:58 -04:00
|
|
|
|
ZScore = p.GetAdditionalProperty<EFClientStatistics>(StatManager
|
2022-01-22 13:49:12 -05:00
|
|
|
|
.CLIENT_STATS_KEY)?.ZScore
|
|
|
|
|
}).ToList(),
|
2019-01-26 21:33:37 -05:00
|
|
|
|
ChatHistory = s.ChatHistory.ToList(),
|
2022-03-29 17:42:53 -04:00
|
|
|
|
ClientHistory = s.ClientHistory,
|
2020-08-20 11:38:11 -04:00
|
|
|
|
IsPasswordProtected = !string.IsNullOrEmpty(s.GamePassword)
|
2018-02-21 20:29:23 -05:00
|
|
|
|
};
|
|
|
|
|
return PartialView("_ClientActivity", serverInfo);
|
|
|
|
|
}
|
2022-01-22 13:49:12 -05:00
|
|
|
|
|
|
|
|
|
[HttpGet]
|
2022-04-19 19:43:58 -04:00
|
|
|
|
public ActionResult Scoreboard(string serverId)
|
2022-01-22 13:49:12 -05:00
|
|
|
|
{
|
|
|
|
|
ViewBag.Title = Localization["WEBFRONT_TITLE_SCOREBOARD"];
|
2022-04-19 19:43:58 -04:00
|
|
|
|
ViewBag.SelectedServerId = string.IsNullOrEmpty(serverId) ? Manager.GetServers().FirstOrDefault()?.ToString() : serverId;
|
2022-01-22 13:49:12 -05:00
|
|
|
|
|
2022-04-19 19:43:58 -04:00
|
|
|
|
return View(ProjectScoreboard(Manager.GetServers(), null, true, false));
|
2022-01-22 13:49:12 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[HttpGet("[controller]/{id}/scoreboard")]
|
2022-04-19 19:43:58 -04:00
|
|
|
|
public ActionResult Scoreboard(string id, [FromQuery]string order = null, [FromQuery] bool down = true)
|
2022-01-22 13:49:12 -05:00
|
|
|
|
{
|
2022-04-19 19:43:58 -04:00
|
|
|
|
|
|
|
|
|
var server = Manager.GetServers().FirstOrDefault(srv => srv.ToString() == id);
|
2022-01-22 13:49:12 -05:00
|
|
|
|
|
|
|
|
|
if (server == null)
|
|
|
|
|
{
|
|
|
|
|
return NotFound();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-19 19:43:58 -04:00
|
|
|
|
ViewBag.SelectedServerId = id;
|
2022-01-24 10:56:48 -05:00
|
|
|
|
return View("_Scoreboard", ProjectScoreboard(new[] {server}, order, down).First());
|
2022-01-22 13:49:12 -05:00
|
|
|
|
}
|
|
|
|
|
|
2022-01-24 10:56:48 -05:00
|
|
|
|
private static IEnumerable<ScoreboardInfo> ProjectScoreboard(IEnumerable<Server> servers, string order,
|
2022-04-19 19:43:58 -04:00
|
|
|
|
bool down, bool includeDetails = true)
|
2022-01-22 13:49:12 -05:00
|
|
|
|
{
|
2022-04-19 19:43:58 -04:00
|
|
|
|
return servers.Select((server, index) => new ScoreboardInfo
|
2022-01-22 13:49:12 -05:00
|
|
|
|
{
|
2022-01-24 10:56:48 -05:00
|
|
|
|
OrderByKey = order,
|
|
|
|
|
ShouldOrderDescending = down,
|
2022-01-22 13:49:12 -05:00
|
|
|
|
MapName = server.CurrentMap.ToString(),
|
|
|
|
|
ServerName = server.Hostname,
|
2022-04-19 19:43:58 -04:00
|
|
|
|
ServerId = server.ToString(),
|
|
|
|
|
ClientInfo = index == 0 && !includeDetails || includeDetails ? server.GetClientsAsList().Select(client =>
|
2022-01-22 13:49:12 -05:00
|
|
|
|
new
|
|
|
|
|
{
|
|
|
|
|
stats = client.GetAdditionalProperty<EFClientStatistics>(StatManager.CLIENT_STATS_KEY),
|
|
|
|
|
client
|
|
|
|
|
})
|
|
|
|
|
.Select(clientData => new ClientScoreboardInfo
|
|
|
|
|
{
|
|
|
|
|
ClientName = clientData.client.Name,
|
|
|
|
|
ClientId = clientData.client.ClientId,
|
2022-01-24 15:05:50 -05:00
|
|
|
|
Score = Math.Max(clientData.client.Score, clientData.stats?.RoundScore ?? 0),
|
2022-01-22 13:49:12 -05:00
|
|
|
|
Ping = clientData.client.Ping,
|
|
|
|
|
Kills = clientData.stats?.MatchData?.Kills,
|
|
|
|
|
Deaths = clientData.stats?.MatchData?.Deaths,
|
|
|
|
|
ScorePerMinute = clientData.stats?.SessionSPM,
|
2022-01-24 10:56:48 -05:00
|
|
|
|
Kdr = clientData.stats?.MatchData?.Kdr,
|
2022-03-28 19:23:11 -04:00
|
|
|
|
ZScore = clientData.stats?.ZScore == null || clientData.stats.ZScore == 0 ? null : clientData.stats.ZScore,
|
2022-03-25 14:16:41 -04:00
|
|
|
|
Team = clientData.client.Team
|
2022-01-22 13:49:12 -05:00
|
|
|
|
})
|
2022-04-19 19:43:58 -04:00
|
|
|
|
.ToList() : new List<ClientScoreboardInfo>()
|
2022-01-22 13:49:12 -05:00
|
|
|
|
}).ToList();
|
|
|
|
|
}
|
2018-02-21 20:29:23 -05:00
|
|
|
|
}
|
|
|
|
|
}
|