2018-02-21 19:29:23 -06:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
2018-04-08 01:44:42 -05:00
|
|
|
|
using SharedLibraryCore.Dtos;
|
2018-02-21 19:29:23 -06:00
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
namespace WebfrontCore.ViewComponents
|
|
|
|
|
{
|
|
|
|
|
public class ServerListViewComponent : ViewComponent
|
|
|
|
|
{
|
|
|
|
|
public IViewComponentResult Invoke()
|
|
|
|
|
{
|
2018-04-08 13:48:40 -05:00
|
|
|
|
var servers = Program.Manager.GetServers();
|
2018-02-21 19:29:23 -06:00
|
|
|
|
var serverInfo = servers.Select(s => new ServerInfo()
|
|
|
|
|
{
|
|
|
|
|
Name = s.Hostname,
|
|
|
|
|
ID = s.GetHashCode(),
|
|
|
|
|
Port = s.GetPort(),
|
|
|
|
|
Map = s.CurrentMap.Alias,
|
|
|
|
|
ClientCount = s.ClientNum,
|
|
|
|
|
MaxClients = s.MaxClients,
|
|
|
|
|
GameType = s.Gametype,
|
|
|
|
|
PlayerHistory = s.PlayerHistory.ToArray(),
|
|
|
|
|
Players = s.Players.Where(p => p != null)
|
|
|
|
|
.Select(p => new PlayerInfo()
|
|
|
|
|
{
|
|
|
|
|
Name = p.Name,
|
2018-03-28 23:40:57 -05:00
|
|
|
|
ClientId = p.ClientId,
|
2018-04-02 00:25:06 -05:00
|
|
|
|
Level = p.Level.ToString(),
|
|
|
|
|
LevelInt = (int)p.Level
|
2018-02-21 19:29:23 -06:00
|
|
|
|
}).ToList(),
|
2018-04-04 23:38:45 -05:00
|
|
|
|
ChatHistory = s.ChatHistory.ToArray(),
|
|
|
|
|
Online = !s.Throttled
|
2018-02-21 19:29:23 -06:00
|
|
|
|
}).ToList();
|
|
|
|
|
return View("_List", serverInfo);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|