IW4M-Admin/WebfrontCore/ViewComponents/ServerListViewComponent.cs

46 lines
1.8 KiB
C#
Raw Normal View History

2018-02-21 20:29:23 -05:00
using Microsoft.AspNetCore.Mvc;
using SharedLibraryCore;
2018-04-08 02:44:42 -04:00
using SharedLibraryCore.Dtos;
2018-02-21 20:29:23 -05:00
using System.Linq;
using System.Net;
using Data.Models.Client.Stats;
using static SharedLibraryCore.Server;
2018-02-21 20:29:23 -05:00
namespace WebfrontCore.ViewComponents
{
public class ServerListViewComponent : ViewComponent
{
public IViewComponentResult Invoke(Game? game)
2018-02-21 20:29:23 -05:00
{
var servers = Program.Manager.GetServers().Where(_server => !game.HasValue ? true : _server.GameName == game);
2018-02-21 20:29:23 -05:00
var serverInfo = servers.Select(s => new ServerInfo()
{
Name = s.Hostname,
ID = s.EndPoint,
Port = s.Port,
2018-02-21 20:29:23 -05:00
Map = s.CurrentMap.Alias,
ClientCount = s.ClientNum,
MaxClients = s.MaxClients,
GameType = s.Gametype,
PlayerHistory = s.ClientHistory.ToArray(),
Players = s.GetClientsAsList()
2018-02-21 20:29:23 -05:00
.Select(p => new PlayerInfo()
{
Name = p.Name,
ClientId = p.ClientId,
Level = p.Level.ToLocalizedLevelName(),
LevelInt = (int)p.Level,
Tag = p.Tag,
ZScore = p.GetAdditionalProperty<EFClientStatistics>(IW4MAdmin.Plugins.Stats.Helpers.StatManager.CLIENT_STATS_KEY)?.ZScore
2018-02-21 20:29:23 -05:00
}).ToList(),
ChatHistory = s.ChatHistory.ToList(),
Online = !s.Throttled,
IPAddress = $"{(IPAddress.Parse(s.IP).IsInternal() ? Program.Manager.ExternalIPAddress : s.IP)}:{s.Port}",
ConnectProtocolUrl = s.EventParser.URLProtocolFormat.FormatExt(IPAddress.Parse(s.IP).IsInternal() ? Program.Manager.ExternalIPAddress : s.IP, s.Port)
2018-02-21 20:29:23 -05:00
}).ToList();
return View("_List", serverInfo);
}
}
}