2018-03-27 00:54:20 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2020-12-31 19:48:58 -05:00
|
|
|
|
using System.Globalization;
|
2018-03-27 00:54:20 -04:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
2019-02-16 16:04:40 -05:00
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
2018-03-27 00:54:20 -04:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
2018-04-08 02:44:42 -04:00
|
|
|
|
using SharedLibraryCore;
|
2020-08-04 18:26:16 -04:00
|
|
|
|
using SharedLibraryCore.Commands;
|
2020-07-31 21:40:03 -04:00
|
|
|
|
using SharedLibraryCore.Configuration;
|
2019-12-02 16:52:36 -05:00
|
|
|
|
using SharedLibraryCore.Interfaces;
|
2018-03-27 00:54:20 -04:00
|
|
|
|
using WebfrontCore.ViewModels;
|
2018-11-05 22:01:29 -05:00
|
|
|
|
using static SharedLibraryCore.Database.Models.EFClient;
|
2018-03-27 00:54:20 -04:00
|
|
|
|
|
|
|
|
|
namespace WebfrontCore.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class ActionController : BaseController
|
|
|
|
|
{
|
2020-07-31 21:40:03 -04:00
|
|
|
|
private readonly ApplicationConfiguration _appConfig;
|
2020-08-04 18:26:16 -04:00
|
|
|
|
private readonly string _banCommandName;
|
|
|
|
|
private readonly string _tempbanCommandName;
|
|
|
|
|
private readonly string _unbanCommandName;
|
|
|
|
|
private readonly string _sayCommandName;
|
|
|
|
|
private readonly string _kickCommandName;
|
|
|
|
|
private readonly string _flagCommandName;
|
|
|
|
|
private readonly string _unflagCommandName;
|
2020-08-06 09:48:14 -04:00
|
|
|
|
private readonly string _setLevelCommandName;
|
2020-08-04 18:26:16 -04:00
|
|
|
|
|
2020-12-31 19:48:58 -05:00
|
|
|
|
public ActionController(IManager manager, IEnumerable<IManagerCommand> registeredCommands,
|
|
|
|
|
ApplicationConfiguration appConfig) : base(manager)
|
2019-12-02 16:52:36 -05:00
|
|
|
|
{
|
2020-12-31 19:48:58 -05:00
|
|
|
|
_appConfig = appConfig;
|
2020-08-04 18:26:16 -04:00
|
|
|
|
|
|
|
|
|
foreach (var cmd in registeredCommands)
|
|
|
|
|
{
|
|
|
|
|
var type = cmd.GetType().Name;
|
|
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
|
{
|
|
|
|
|
case nameof(BanCommand):
|
|
|
|
|
_banCommandName = cmd.Name;
|
|
|
|
|
break;
|
|
|
|
|
case nameof(TempBanCommand):
|
|
|
|
|
_tempbanCommandName = cmd.Name;
|
|
|
|
|
break;
|
|
|
|
|
case nameof(UnbanCommand):
|
|
|
|
|
_unbanCommandName = cmd.Name;
|
|
|
|
|
break;
|
|
|
|
|
case nameof(SayCommand):
|
|
|
|
|
_sayCommandName = cmd.Name;
|
|
|
|
|
break;
|
|
|
|
|
case nameof(KickCommand):
|
|
|
|
|
_kickCommandName = cmd.Name;
|
|
|
|
|
break;
|
|
|
|
|
case nameof(FlagClientCommand):
|
|
|
|
|
_flagCommandName = cmd.Name;
|
|
|
|
|
break;
|
|
|
|
|
case nameof(UnflagClientCommand):
|
|
|
|
|
_unflagCommandName = cmd.Name;
|
|
|
|
|
break;
|
2020-08-06 09:48:14 -04:00
|
|
|
|
case nameof(SetLevelCommand):
|
|
|
|
|
_setLevelCommandName = cmd.Name;
|
|
|
|
|
break;
|
2020-08-04 18:26:16 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-12-02 16:52:36 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-27 00:54:20 -04:00
|
|
|
|
public IActionResult BanForm()
|
|
|
|
|
{
|
|
|
|
|
var info = new ActionInfo()
|
|
|
|
|
{
|
2018-05-05 16:36:26 -04:00
|
|
|
|
ActionButtonLabel = Localization["WEBFRONT_ACTION_BAN_NAME"],
|
2018-03-27 00:54:20 -04:00
|
|
|
|
Name = "Ban",
|
|
|
|
|
Inputs = new List<InputInfo>()
|
|
|
|
|
{
|
|
|
|
|
new InputInfo()
|
|
|
|
|
{
|
2020-12-31 19:48:58 -05:00
|
|
|
|
Name = "Reason",
|
|
|
|
|
Label = Localization["WEBFRONT_ACTION_LABEL_REASON"],
|
2018-09-02 17:59:27 -04:00
|
|
|
|
},
|
|
|
|
|
new InputInfo()
|
|
|
|
|
{
|
2020-12-31 19:48:58 -05:00
|
|
|
|
Name = "PresetReason",
|
|
|
|
|
Type = "select",
|
|
|
|
|
Label = Localization["WEBFRONT_ACTION_LABEL_PRESET_REASON"],
|
|
|
|
|
Values = GetPresetPenaltyReasons()
|
|
|
|
|
},
|
|
|
|
|
new InputInfo()
|
|
|
|
|
{
|
|
|
|
|
Name = "Duration",
|
|
|
|
|
Label = Localization["WEBFRONT_ACTION_LABEL_DURATION"],
|
|
|
|
|
Type = "select",
|
|
|
|
|
Values = _appConfig.BanDurations
|
|
|
|
|
.Select((item, index) => new
|
|
|
|
|
{
|
|
|
|
|
Id = (index + 1).ToString(),
|
|
|
|
|
Value = item.HumanizeForCurrentCulture()
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
.Append(new
|
|
|
|
|
{
|
|
|
|
|
Id = (_appConfig.BanDurations.Length + 1).ToString(),
|
|
|
|
|
Value = Localization["WEBFRONT_ACTION_SELECTION_PERMANENT"]
|
|
|
|
|
}).ToDictionary(duration => duration.Id, duration => duration.Value),
|
2018-03-27 00:54:20 -04:00
|
|
|
|
}
|
|
|
|
|
},
|
2019-08-04 18:06:07 -04:00
|
|
|
|
Action = "BanAsync",
|
|
|
|
|
ShouldRefresh = true
|
2018-03-27 00:54:20 -04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return View("_ActionForm", info);
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-31 19:48:58 -05:00
|
|
|
|
public async Task<IActionResult> BanAsync(int targetId, string reason, int duration, string presetReason = null)
|
2018-03-27 00:54:20 -04:00
|
|
|
|
{
|
2020-12-31 19:48:58 -05:00
|
|
|
|
var fallthroughReason = presetReason ?? reason;
|
|
|
|
|
string command;
|
|
|
|
|
// permanent
|
|
|
|
|
if (duration > _appConfig.BanDurations.Length)
|
2018-09-02 17:59:27 -04:00
|
|
|
|
{
|
2020-12-31 19:48:58 -05:00
|
|
|
|
command = $"{_appConfig.CommandPrefix}{_banCommandName} @{targetId} {fallthroughReason}";
|
|
|
|
|
}
|
|
|
|
|
// temporary ban
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
var durationSpan = _appConfig.BanDurations[duration - 1];
|
|
|
|
|
var durationValue = durationSpan.TotalHours.ToString(CultureInfo.InvariantCulture) +
|
|
|
|
|
Localization["GLOBAL_TIME_HOURS"][0];
|
|
|
|
|
command =
|
|
|
|
|
$"{_appConfig.CommandPrefix}{_tempbanCommandName} @{targetId} {durationValue} {fallthroughReason}";
|
2018-09-02 17:59:27 -04:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-27 00:54:20 -04:00
|
|
|
|
var server = Manager.GetServers().First();
|
|
|
|
|
|
|
|
|
|
return await Task.FromResult(RedirectToAction("ExecuteAsync", "Console", new
|
|
|
|
|
{
|
2018-11-27 19:31:48 -05:00
|
|
|
|
serverId = server.EndPoint,
|
2018-09-02 17:59:27 -04:00
|
|
|
|
command
|
2018-03-27 00:54:20 -04:00
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IActionResult UnbanForm()
|
|
|
|
|
{
|
|
|
|
|
var info = new ActionInfo()
|
|
|
|
|
{
|
2018-05-05 16:36:26 -04:00
|
|
|
|
ActionButtonLabel = Localization["WEBFRONT_ACTION_UNBAN_NAME"],
|
2018-03-27 00:54:20 -04:00
|
|
|
|
Name = "Unban",
|
|
|
|
|
Inputs = new List<InputInfo>()
|
|
|
|
|
{
|
|
|
|
|
new InputInfo()
|
|
|
|
|
{
|
2020-12-31 19:48:58 -05:00
|
|
|
|
Name = "Reason",
|
|
|
|
|
Label = Localization["WEBFRONT_ACTION_LABEL_REASON"],
|
2018-03-27 00:54:20 -04:00
|
|
|
|
}
|
|
|
|
|
},
|
2019-08-04 18:06:07 -04:00
|
|
|
|
Action = "UnbanAsync",
|
|
|
|
|
ShouldRefresh = true
|
2018-03-27 00:54:20 -04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return View("_ActionForm", info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<IActionResult> UnbanAsync(int targetId, string Reason)
|
|
|
|
|
{
|
|
|
|
|
var server = Manager.GetServers().First();
|
|
|
|
|
|
|
|
|
|
return await Task.FromResult(RedirectToAction("ExecuteAsync", "Console", new
|
|
|
|
|
{
|
2018-11-27 19:31:48 -05:00
|
|
|
|
serverId = server.EndPoint,
|
2020-08-04 18:26:16 -04:00
|
|
|
|
command = $"{_appConfig.CommandPrefix}{_unbanCommandName} @{targetId} {Reason}"
|
2018-03-27 00:54:20 -04:00
|
|
|
|
}));
|
|
|
|
|
}
|
2018-04-04 15:38:34 -04:00
|
|
|
|
|
|
|
|
|
public IActionResult LoginForm()
|
|
|
|
|
{
|
|
|
|
|
var login = new ActionInfo()
|
|
|
|
|
{
|
2018-05-05 16:36:26 -04:00
|
|
|
|
ActionButtonLabel = Localization["WEBFRONT_ACTION_LOGIN_NAME"],
|
2018-04-04 15:38:34 -04:00
|
|
|
|
Name = "Login",
|
|
|
|
|
Inputs = new List<InputInfo>()
|
|
|
|
|
{
|
|
|
|
|
new InputInfo()
|
|
|
|
|
{
|
2018-04-05 18:50:04 -04:00
|
|
|
|
Name = "clientId",
|
2018-05-05 18:52:04 -04:00
|
|
|
|
Label = Localization["WEBFRONT_ACTION_LABEL_ID"]
|
2018-04-04 15:38:34 -04:00
|
|
|
|
},
|
|
|
|
|
new InputInfo()
|
|
|
|
|
{
|
|
|
|
|
Name = "Password",
|
2018-05-05 18:52:04 -04:00
|
|
|
|
Label = Localization["WEBFRONT_ACTION_LABEL_PASSWORD"],
|
2018-04-04 15:38:34 -04:00
|
|
|
|
Type = "password",
|
|
|
|
|
}
|
|
|
|
|
},
|
2018-04-05 18:50:04 -04:00
|
|
|
|
Action = "LoginAsync"
|
2018-04-04 15:38:34 -04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return View("_ActionForm", login);
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-05 18:50:04 -04:00
|
|
|
|
public async Task<IActionResult> LoginAsync(int clientId, string password)
|
2018-04-04 15:38:34 -04:00
|
|
|
|
{
|
2020-12-31 19:48:58 -05:00
|
|
|
|
return await Task.FromResult(RedirectToAction("LoginAsync", "Account", new {clientId, password}));
|
2018-04-04 15:38:34 -04:00
|
|
|
|
}
|
2018-09-02 17:59:27 -04:00
|
|
|
|
|
|
|
|
|
public IActionResult EditForm()
|
|
|
|
|
{
|
|
|
|
|
var info = new ActionInfo()
|
|
|
|
|
{
|
|
|
|
|
ActionButtonLabel = Localization["WEBFRONT_ACTION_LABEL_EDIT"],
|
|
|
|
|
Name = "Edit",
|
|
|
|
|
Inputs = new List<InputInfo>()
|
|
|
|
|
{
|
|
|
|
|
new InputInfo()
|
|
|
|
|
{
|
2020-12-31 19:48:58 -05:00
|
|
|
|
Name = "level",
|
|
|
|
|
Label = Localization["WEBFRONT_PROFILE_LEVEL"],
|
|
|
|
|
Type = "select",
|
2018-09-02 17:59:27 -04:00
|
|
|
|
Values = Enum.GetValues(typeof(Permission)).OfType<Permission>()
|
|
|
|
|
.Where(p => p <= Client.Level)
|
|
|
|
|
.Where(p => p != Permission.Banned)
|
2018-11-27 19:31:48 -05:00
|
|
|
|
.Where(p => p != Permission.Flagged)
|
2020-12-31 19:48:58 -05:00
|
|
|
|
.ToDictionary(p => p.ToString(), p => p.ToLocalizedLevelName())
|
2018-09-02 17:59:27 -04:00
|
|
|
|
},
|
|
|
|
|
},
|
2019-08-04 18:06:07 -04:00
|
|
|
|
Action = "EditAsync",
|
|
|
|
|
ShouldRefresh = true
|
2018-09-02 17:59:27 -04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return View("_ActionForm", info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<IActionResult> EditAsync(int targetId, string level)
|
|
|
|
|
{
|
|
|
|
|
var server = Manager.GetServers().First();
|
|
|
|
|
|
|
|
|
|
return await Task.FromResult(RedirectToAction("ExecuteAsync", "Console", new
|
|
|
|
|
{
|
2018-11-27 19:31:48 -05:00
|
|
|
|
serverId = server.EndPoint,
|
2020-08-06 09:48:14 -04:00
|
|
|
|
command = $"{_appConfig.CommandPrefix}{_setLevelCommandName} @{targetId} {level}"
|
2018-09-02 17:59:27 -04:00
|
|
|
|
}));
|
|
|
|
|
}
|
2019-02-16 16:04:40 -05:00
|
|
|
|
|
2019-02-26 22:25:27 -05:00
|
|
|
|
public IActionResult GenerateLoginTokenForm()
|
2019-02-16 16:04:40 -05:00
|
|
|
|
{
|
|
|
|
|
var info = new ActionInfo()
|
|
|
|
|
{
|
2020-08-17 22:21:11 -04:00
|
|
|
|
ActionButtonLabel = Localization["WEBFRONT_ACTION_LABEL_GENERATE_TOKEN"],
|
2019-02-16 16:04:40 -05:00
|
|
|
|
Name = "GenerateLoginToken",
|
|
|
|
|
Action = "GenerateLoginTokenAsync",
|
|
|
|
|
Inputs = new List<InputInfo>()
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return View("_ActionForm", info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Authorize]
|
|
|
|
|
public string GenerateLoginTokenAsync()
|
|
|
|
|
{
|
|
|
|
|
var state = Manager.TokenAuthenticator.GenerateNextToken(Client.NetworkId);
|
2020-12-31 19:48:58 -05:00
|
|
|
|
return string.Format(Utilities.CurrentLocalization.LocalizationIndex["COMMANDS_GENERATETOKEN_SUCCESS"],
|
|
|
|
|
state.Token,
|
|
|
|
|
$"{state.RemainingTime} {Utilities.CurrentLocalization.LocalizationIndex["GLOBAL_MINUTES"]}",
|
|
|
|
|
Client.ClientId);
|
2019-02-16 16:04:40 -05:00
|
|
|
|
}
|
2019-07-13 21:45:25 -04:00
|
|
|
|
|
|
|
|
|
public IActionResult ChatForm(long id)
|
|
|
|
|
{
|
|
|
|
|
var info = new ActionInfo()
|
|
|
|
|
{
|
|
|
|
|
ActionButtonLabel = Localization["WEBFRONT_ACTION_LABEL_SUBMIT_MESSAGE"],
|
|
|
|
|
Name = "Chat",
|
|
|
|
|
Inputs = new List<InputInfo>
|
|
|
|
|
{
|
|
|
|
|
new InputInfo()
|
|
|
|
|
{
|
|
|
|
|
Name = "message",
|
|
|
|
|
Type = "text",
|
|
|
|
|
Label = Localization["WEBFRONT_ACTION_LABEL_MESSAGE"]
|
|
|
|
|
},
|
|
|
|
|
new InputInfo()
|
|
|
|
|
{
|
|
|
|
|
Name = "id",
|
|
|
|
|
Value = id.ToString(),
|
|
|
|
|
Type = "hidden"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
Action = "ChatAsync"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return View("_ActionForm", info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<IActionResult> ChatAsync(long id, string message)
|
|
|
|
|
{
|
|
|
|
|
var server = Manager.GetServers().First(_server => _server.EndPoint == id);
|
|
|
|
|
|
2019-08-04 21:38:55 -04:00
|
|
|
|
server.ChatHistory.Add(new SharedLibraryCore.Dtos.ChatInfo()
|
|
|
|
|
{
|
|
|
|
|
ClientId = Client.ClientId,
|
|
|
|
|
Message = message,
|
|
|
|
|
Name = Client.Name,
|
|
|
|
|
ServerGame = server.GameName,
|
|
|
|
|
Time = DateTime.Now
|
|
|
|
|
});
|
|
|
|
|
|
2019-07-13 21:45:25 -04:00
|
|
|
|
return await Task.FromResult(RedirectToAction("ExecuteAsync", "Console", new
|
|
|
|
|
{
|
|
|
|
|
serverId = server.EndPoint,
|
2020-08-04 18:26:16 -04:00
|
|
|
|
command = $"{_appConfig.CommandPrefix}{_sayCommandName} {message}"
|
2019-07-13 21:45:25 -04:00
|
|
|
|
}));
|
|
|
|
|
}
|
2019-07-16 16:27:19 -04:00
|
|
|
|
|
|
|
|
|
public async Task<IActionResult> RecentClientsForm()
|
|
|
|
|
{
|
|
|
|
|
var clients = await Manager.GetClientService().GetRecentClients();
|
|
|
|
|
return View("~/Views/Shared/Components/Client/_RecentClients.cshtml", clients);
|
|
|
|
|
}
|
2019-08-04 18:06:07 -04:00
|
|
|
|
|
|
|
|
|
public IActionResult FlagForm()
|
|
|
|
|
{
|
|
|
|
|
var info = new ActionInfo()
|
|
|
|
|
{
|
|
|
|
|
ActionButtonLabel = Localization["WEBFRONT_ACTION_FLAG_NAME"],
|
|
|
|
|
Name = "Flag",
|
|
|
|
|
Inputs = new List<InputInfo>()
|
|
|
|
|
{
|
|
|
|
|
new InputInfo()
|
|
|
|
|
{
|
2020-12-31 19:48:58 -05:00
|
|
|
|
Name = "reason",
|
|
|
|
|
Label = Localization["WEBFRONT_ACTION_LABEL_REASON"],
|
|
|
|
|
},
|
|
|
|
|
new InputInfo()
|
|
|
|
|
{
|
|
|
|
|
Name = "PresetReason",
|
|
|
|
|
Type = "select",
|
|
|
|
|
Label = Localization["WEBFRONT_ACTION_LABEL_PRESET_REASON"],
|
|
|
|
|
Values = GetPresetPenaltyReasons()
|
|
|
|
|
},
|
2019-08-04 18:06:07 -04:00
|
|
|
|
},
|
|
|
|
|
Action = "FlagAsync",
|
|
|
|
|
ShouldRefresh = true
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return View("_ActionForm", info);
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-31 19:48:58 -05:00
|
|
|
|
public async Task<IActionResult> FlagAsync(int targetId, string reason, string presetReason = null)
|
2019-08-04 18:06:07 -04:00
|
|
|
|
{
|
|
|
|
|
var server = Manager.GetServers().First();
|
|
|
|
|
|
|
|
|
|
return await Task.FromResult(RedirectToAction("ExecuteAsync", "Console", new
|
|
|
|
|
{
|
|
|
|
|
serverId = server.EndPoint,
|
2020-12-31 19:48:58 -05:00
|
|
|
|
command = $"{_appConfig.CommandPrefix}{_flagCommandName} @{targetId} {presetReason ?? reason}"
|
2019-08-04 18:06:07 -04:00
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IActionResult UnflagForm()
|
|
|
|
|
{
|
|
|
|
|
var info = new ActionInfo()
|
|
|
|
|
{
|
|
|
|
|
ActionButtonLabel = Localization["WEBFRONT_ACTION_UNFLAG_NAME"],
|
|
|
|
|
Name = "Unflag",
|
|
|
|
|
Inputs = new List<InputInfo>()
|
|
|
|
|
{
|
|
|
|
|
new InputInfo()
|
|
|
|
|
{
|
2020-12-31 19:48:58 -05:00
|
|
|
|
Name = "reason",
|
|
|
|
|
Label = Localization["WEBFRONT_ACTION_LABEL_REASON"],
|
2019-08-04 18:06:07 -04:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
Action = "UnflagAsync",
|
|
|
|
|
ShouldRefresh = true
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return View("_ActionForm", info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<IActionResult> UnflagAsync(int targetId, string reason)
|
|
|
|
|
{
|
|
|
|
|
var server = Manager.GetServers().First();
|
|
|
|
|
|
|
|
|
|
return await Task.FromResult(RedirectToAction("ExecuteAsync", "Console", new
|
|
|
|
|
{
|
|
|
|
|
serverId = server.EndPoint,
|
2020-08-04 18:26:16 -04:00
|
|
|
|
command = $"{_appConfig.CommandPrefix}{_unflagCommandName} @{targetId} {reason}"
|
2019-08-04 18:06:07 -04:00
|
|
|
|
}));
|
|
|
|
|
}
|
2020-07-14 15:13:40 -04:00
|
|
|
|
|
|
|
|
|
public IActionResult KickForm(int id)
|
|
|
|
|
{
|
|
|
|
|
var info = new ActionInfo()
|
|
|
|
|
{
|
|
|
|
|
ActionButtonLabel = Localization["WEBFRONT_ACTION_KICK_NAME"],
|
|
|
|
|
Name = "Kick",
|
|
|
|
|
Inputs = new List<InputInfo>()
|
|
|
|
|
{
|
|
|
|
|
new InputInfo()
|
|
|
|
|
{
|
2020-12-31 19:48:58 -05:00
|
|
|
|
Name = "reason",
|
|
|
|
|
Label = Localization["WEBFRONT_ACTION_LABEL_REASON"],
|
|
|
|
|
},
|
|
|
|
|
new InputInfo()
|
|
|
|
|
{
|
|
|
|
|
Name = "PresetReason",
|
|
|
|
|
Type = "select",
|
|
|
|
|
Label = Localization["WEBFRONT_ACTION_LABEL_PRESET_REASON"],
|
|
|
|
|
Values = GetPresetPenaltyReasons()
|
2020-07-14 15:13:40 -04:00
|
|
|
|
},
|
|
|
|
|
new InputInfo()
|
|
|
|
|
{
|
|
|
|
|
Name = "targetId",
|
|
|
|
|
Type = "hidden",
|
|
|
|
|
Value = id.ToString()
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
Action = "KickAsync",
|
|
|
|
|
ShouldRefresh = true
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return View("_ActionForm", info);
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-31 19:48:58 -05:00
|
|
|
|
public async Task<IActionResult> KickAsync(int targetId, string reason, string presetReason = null)
|
2020-07-14 15:13:40 -04:00
|
|
|
|
{
|
|
|
|
|
var client = Manager.GetActiveClients().FirstOrDefault(_client => _client.ClientId == targetId);
|
|
|
|
|
|
|
|
|
|
if (client == null)
|
|
|
|
|
{
|
|
|
|
|
return BadRequest(Localization["WEBFRONT_ACTION_KICK_DISCONNECT"]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return await Task.FromResult(RedirectToAction("ExecuteAsync", "Console", new
|
|
|
|
|
{
|
|
|
|
|
serverId = client.CurrentServer.EndPoint,
|
2020-12-31 19:48:58 -05:00
|
|
|
|
command = $"{_appConfig.CommandPrefix}{_kickCommandName} {client.ClientNumber} {presetReason ?? reason}"
|
2020-07-14 15:13:40 -04:00
|
|
|
|
}));
|
|
|
|
|
}
|
2020-12-31 19:48:58 -05:00
|
|
|
|
|
|
|
|
|
private Dictionary<string, string> GetPresetPenaltyReasons() => _appConfig.PresetPenaltyReasons.Values
|
|
|
|
|
.Concat(_appConfig.GlobalRules)
|
|
|
|
|
.Concat(_appConfig.Servers.SelectMany(server => server.Rules))
|
|
|
|
|
.Distinct()
|
|
|
|
|
.Select((value, index) => new
|
|
|
|
|
{
|
|
|
|
|
Value = value
|
|
|
|
|
})
|
|
|
|
|
// this is used for the default empty optional value
|
|
|
|
|
.Prepend(new
|
|
|
|
|
{
|
|
|
|
|
Value = ""
|
|
|
|
|
})
|
|
|
|
|
.ToDictionary(item => item.Value, item => item.Value);
|
2018-03-27 00:54:20 -04:00
|
|
|
|
}
|
2020-12-31 19:48:58 -05:00
|
|
|
|
}
|