2018-02-21 20:29:23 -05:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
2018-04-08 02:44:42 -04:00
|
|
|
|
using SharedLibraryCore.Dtos;
|
2018-02-21 20:29:23 -05:00
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
namespace WebfrontCore.ViewComponents
|
|
|
|
|
{
|
|
|
|
|
public class ServerListViewComponent : ViewComponent
|
|
|
|
|
{
|
|
|
|
|
public IViewComponentResult Invoke()
|
|
|
|
|
{
|
2018-04-08 14:48:40 -04:00
|
|
|
|
var servers = Program.Manager.GetServers();
|
2018-02-21 20:29:23 -05: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(),
|
2018-05-14 13:55:10 -04:00
|
|
|
|
Players = s.GetPlayersAsList()
|
2018-02-21 20:29:23 -05:00
|
|
|
|
.Select(p => new PlayerInfo()
|
|
|
|
|
{
|
|
|
|
|
Name = p.Name,
|
2018-03-29 00:40:57 -04:00
|
|
|
|
ClientId = p.ClientId,
|
2018-04-02 01:25:06 -04:00
|
|
|
|
Level = p.Level.ToString(),
|
|
|
|
|
LevelInt = (int)p.Level
|
2018-02-21 20:29:23 -05:00
|
|
|
|
}).ToList(),
|
2018-05-14 13:55:10 -04:00
|
|
|
|
ChatHistory = s.ChatHistory,
|
2018-04-05 00:38:45 -04:00
|
|
|
|
Online = !s.Throttled
|
2018-02-21 20:29:23 -05:00
|
|
|
|
}).ToList();
|
|
|
|
|
return View("_List", serverInfo);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|