1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-11 23:58:08 -05:00

update live radar plugin to IPluginV2

This commit is contained in:
RaidMax
2023-02-11 20:46:08 -06:00
parent 803624e214
commit 52cee026c1
8 changed files with 586 additions and 583 deletions

View File

@ -1,26 +1,24 @@
using LiveRadar.Configuration;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc;
using SharedLibraryCore;
using SharedLibraryCore.Dtos;
using SharedLibraryCore.Interfaces;
using System.Linq;
using System.Threading.Tasks;
using IW4MAdmin.Plugins.LiveRadar.Configuration;
using Microsoft.AspNetCore.Http;
namespace LiveRadar.Web.Controllers
namespace IW4MAdmin.Plugins.LiveRadar.Web.Controllers
{
public class RadarController : BaseController
{
private readonly IManager _manager;
private static LiveRadarConfiguration _config;
private readonly IConfigurationHandler<LiveRadarConfiguration> _configurationHandler;
private readonly LiveRadarConfiguration _config;
public RadarController(IManager manager, IConfigurationHandlerFactory configurationHandlerFactory) :
public RadarController(IManager manager, LiveRadarConfiguration config) :
base(manager)
{
_manager = manager;
_configurationHandler =
configurationHandlerFactory.GetConfigurationHandler<LiveRadarConfiguration>("LiveRadarConfiguration");
_config = config;
}
[HttpGet]
@ -32,8 +30,8 @@ namespace LiveRadar.Web.Controllers
.Select(server => new ServerInfo
{
Name = server.Hostname,
IPAddress = server.IP,
Port = server.Port
IPAddress = server.ListenAddress,
Port = server.ListenPort
});
ViewBag.Title = Utilities.CurrentLocalization.LocalizationIndex["WEBFRONT_RADAR_TITLE"];
@ -56,12 +54,6 @@ namespace LiveRadar.Web.Controllers
return NotFound();
}
if (_config == null)
{
await _configurationHandler.BuildAsync();
_config = _configurationHandler.Configuration() ?? new LiveRadarConfiguration();
}
var map = _config.Maps.FirstOrDefault(map => map.Name == server.CurrentMap.Name);
if (map == null)