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;
|
2022-06-04 10:58:30 -04:00
|
|
|
|
using Data.Models;
|
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
|
|
|
|
{
|
2023-04-04 23:10:37 -04:00
|
|
|
|
var matchingServer = Manager.GetServers().FirstOrDefault(server => server.EndPoint == id);
|
2018-11-27 19:31:48 -05:00
|
|
|
|
|
2023-04-04 23:10:37 -04:00
|
|
|
|
if (matchingServer == 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
|
|
|
|
{
|
2023-04-04 23:10:37 -04:00
|
|
|
|
Name = matchingServer.Hostname,
|
|
|
|
|
ID = matchingServer.EndPoint,
|
|
|
|
|
Port = matchingServer.ListenPort,
|
|
|
|
|
Map = matchingServer.CurrentMap?.Alias,
|
|
|
|
|
Game = (Reference.Game)matchingServer.GameName,
|
|
|
|
|
ClientCount = matchingServer.ClientNum,
|
|
|
|
|
MaxClients = matchingServer.MaxClients,
|
|
|
|
|
GameType = matchingServer.GametypeName,
|
|
|
|
|
Players = matchingServer.GetClientsAsList()
|
|
|
|
|
.Select(client => new PlayerInfo
|
2022-01-22 13:49:12 -05:00
|
|
|
|
{
|
2023-04-04 23:10:37 -04:00
|
|
|
|
Name = client.Name,
|
|
|
|
|
ClientId = client.ClientId,
|
|
|
|
|
Level = client.Level.ToLocalizedLevelName(),
|
|
|
|
|
LevelInt = (int)client.Level,
|
|
|
|
|
ZScore = client.GetAdditionalProperty<EFClientStatistics>(StatManager
|
2022-01-22 13:49:12 -05:00
|
|
|
|
.CLIENT_STATS_KEY)?.ZScore
|
|
|
|
|
}).ToList(),
|
2023-04-04 23:10:37 -04:00
|
|
|
|
ChatHistory = matchingServer.ChatHistory.ToList(),
|
|
|
|
|
ClientHistory = matchingServer.ClientHistory,
|
|
|
|
|
IsPasswordProtected = !string.IsNullOrEmpty(matchingServer.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-20 09:39:16 -04:00
|
|
|
|
return View(ProjectScoreboard(Manager.GetServers(), null, true));
|
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-20 09:39:16 -04:00
|
|
|
|
bool down)
|
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(),
|
2022-04-20 09:39:16 -04:00
|
|
|
|
ClientInfo = 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-20 09:39:16 -04:00
|
|
|
|
.ToList()
|
2022-01-22 13:49:12 -05:00
|
|
|
|
}).ToList();
|
|
|
|
|
}
|
2018-02-21 20:29:23 -05:00
|
|
|
|
}
|
|
|
|
|
}
|