final update
This commit is contained in:
39
Website/LOC.Website.Web/Controllers/ServerController.cs
Normal file
39
Website/LOC.Website.Web/Controllers/ServerController.cs
Normal file
@ -0,0 +1,39 @@
|
||||
namespace LOC.Website.Web.Controllers
|
||||
{
|
||||
using System.Web.Mvc;
|
||||
using Common.Models;
|
||||
using Core.Model.GameServer;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
public class ServerController : Controller
|
||||
{
|
||||
private readonly IServerAdministrator _serverAdministrator;
|
||||
|
||||
public ServerController(IServerAdministrator serverAdministrator)
|
||||
{
|
||||
_serverAdministrator = serverAdministrator;
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public void Start(Server server)
|
||||
{
|
||||
_serverAdministrator.Started(server);
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public ActionResult GetFilteredWords()
|
||||
{
|
||||
var json = JsonConvert.SerializeObject(_serverAdministrator.GetFilteredWords());
|
||||
return Content(json, "application/json");
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public ActionResult CheckForUpdates(ServerHistory server)
|
||||
{
|
||||
_serverAdministrator.UpdateServerStatus(server);
|
||||
var serverUpdates = _serverAdministrator.GetServerUpdates(server.ServerId);
|
||||
var json = JsonConvert.SerializeObject(serverUpdates);
|
||||
return Content(json, "application/json");
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user