68 lines
2.3 KiB
C#
68 lines
2.3 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Collections.Specialized;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
using SharedLibrary;
|
|||
|
|
|||
|
namespace StatsPlugin
|
|||
|
{
|
|||
|
public class StatsPage : HTMLPage
|
|||
|
{
|
|||
|
public override string GetContent(NameValueCollection querySet, IDictionary<string, string> headers)
|
|||
|
{
|
|||
|
StringBuilder S = new StringBuilder();
|
|||
|
S.Append(LoadHeader());
|
|||
|
|
|||
|
IFile stats = new IFile("webfront\\stats.html");
|
|||
|
S.Append(stats.GetText());
|
|||
|
stats.Close();
|
|||
|
|
|||
|
S.Append(LoadFooter());
|
|||
|
|
|||
|
return S.ToString();
|
|||
|
}
|
|||
|
|
|||
|
public override string GetName() => "Stats";
|
|||
|
public override string GetPath() => "/stats";
|
|||
|
}
|
|||
|
|
|||
|
class KillStatsJSON : IPage
|
|||
|
{
|
|||
|
public string GetName() => "Kill Stats JSON";
|
|||
|
public string GetPath() => "/_killstats";
|
|||
|
public string GetContentType() => "application/json";
|
|||
|
public bool Visible() => false;
|
|||
|
|
|||
|
public HttpResponse GetPage(NameValueCollection querySet, IDictionary<string, string> headers)
|
|||
|
{
|
|||
|
|
|||
|
int selectCount = Stats.MAX_KILLEVENTS;
|
|||
|
|
|||
|
if (querySet.Get("count") != null)
|
|||
|
selectCount = Int32.Parse(querySet.Get("count"));
|
|||
|
|
|||
|
HttpResponse resp = new HttpResponse()
|
|||
|
{
|
|||
|
contentType = GetContentType(),
|
|||
|
content = new
|
|||
|
{
|
|||
|
Servers = Stats.ManagerInstance.GetServers().Select(s => new
|
|||
|
{
|
|||
|
ServerName = s.Hostname,
|
|||
|
ServerMap = s.CurrentMap.Alias,
|
|||
|
ServerInfo = Stats.ServerStats[s.GetPort()],
|
|||
|
Minimap = MinimapConfig.Read(@"Config\minimaps.cfg").MapInfo.Where(m => m.MapName == s.CurrentMap.Name),
|
|||
|
MapKills = Stats.ServerStats[s.GetPort()].GetKillQueue().ToArray()
|
|||
|
.Skip(Math.Min(Stats.MAX_KILLEVENTS - selectCount, Stats.ServerStats[s.GetPort()].GetKillQueue().Count - selectCount))
|
|||
|
})
|
|||
|
},
|
|||
|
additionalHeaders = new Dictionary<string, string>()
|
|||
|
};
|
|||
|
return resp;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|