9d6cbee69c
change server id fIx change log server complaining when empty read
45 lines
1.4 KiB
C#
45 lines
1.4 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
|
using SharedLibraryCore;
|
|
using SharedLibraryCore.Dtos;
|
|
using System.Linq;
|
|
|
|
namespace WebfrontCore.Controllers
|
|
{
|
|
public class ServerController : BaseController
|
|
{
|
|
[HttpGet]
|
|
[ResponseCache(NoStore = true, Duration = 0)]
|
|
public IActionResult ClientActivity(long id)
|
|
{
|
|
var s = Manager.GetServers().FirstOrDefault(s2 => s2.EndPoint == id);
|
|
|
|
if (s == null)
|
|
{
|
|
return View("Error", "Invalid server!");
|
|
}
|
|
|
|
var serverInfo = new ServerInfo()
|
|
{
|
|
Name = s.Hostname,
|
|
ID = s.EndPoint,
|
|
Port = s.GetPort(),
|
|
Map = s.CurrentMap.Alias,
|
|
ClientCount = s.ClientNum,
|
|
MaxClients = s.MaxClients,
|
|
GameType = s.Gametype,
|
|
Players = s.GetClientsAsList()
|
|
.Select(p => new PlayerInfo
|
|
{
|
|
Name = p.Name,
|
|
ClientId = p.ClientId,
|
|
Level = p.Level.ToLocalizedLevelName(),
|
|
LevelInt = (int)p.Level
|
|
}).ToList(),
|
|
ChatHistory = s.ChatHistory,
|
|
PlayerHistory = s.ClientHistory.ToArray(),
|
|
};
|
|
return PartialView("_ClientActivity", serverInfo);
|
|
}
|
|
}
|
|
}
|