2018-02-21 20:29:23 -05:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using SharedLibrary.Dtos;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace WebfrontCore.ViewComponents
|
|
|
|
|
{
|
|
|
|
|
public class ServerListViewComponent : ViewComponent
|
|
|
|
|
{
|
|
|
|
|
public IViewComponentResult Invoke()
|
|
|
|
|
{
|
|
|
|
|
var servers = IW4MAdmin.Program.ServerManager.GetServers();
|
|
|
|
|
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-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-04-05 00:38:45 -04:00
|
|
|
|
ChatHistory = s.ChatHistory.ToArray(),
|
|
|
|
|
Online = !s.Throttled
|
2018-02-21 20:29:23 -05:00
|
|
|
|
}).ToList();
|
|
|
|
|
return View("_List", serverInfo);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|