mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-14 19:29:53 +01:00
Ban database refactor (#42495) * Ban DB refactor seems to work at a basic level for PostgreSQL * New ban creation API Supports all the new functionality (multiple players/addresses/hwids/roles/rounds per ban). * Make the migration irreversible * Re-implement ban notifications The server ID check is no longer done as admins may want to place bans spanning multiple rounds irrelevant of the source server. * Fix some split query warnings * Implement migration on SQLite * More comments * Remove required from ban reason SS14.Admin changes would like this * More missing AsSplitQuery() calls * Fix missing ban type filter * Fix old CreateServerBan API with permanent time * Fix department and role ban commands with permanent time * Re-add banhits navigation property Dropped this on accident, SS14.Admin needs it. * More ban API fixes. * Don't fetch ban exemption info for role bans Not relevant, reduces query performance * Regenerate migrations * Fix adminnotes command for players that never connected Would blow up handling null player records. Not a new bug introduced by the refactor, but I ran into it. * Great shame... I accidentally committed submodule update... * Update GDPR scripts * Fix sandbox violation * Fix bans with duplicate info causing DB exceptions Most notably happened with role bans, as multiple departments may include the same role.
74 lines
2.2 KiB
C#
74 lines
2.2 KiB
C#
using System.Linq;
|
|
using Content.Server.Administration.BanList;
|
|
using Content.Server.Database;
|
|
using Content.Server.EUI;
|
|
using Content.Shared.Administration;
|
|
using Robust.Server.Player;
|
|
using Robust.Shared.Console;
|
|
|
|
namespace Content.Server.Administration.Commands;
|
|
|
|
/// <summary>
|
|
/// Lists someones active Ban Ids or opens a window to see them.
|
|
/// </summary>
|
|
[AdminCommand(AdminFlags.Ban)]
|
|
public sealed class BanListCommand : LocalizedCommands
|
|
{
|
|
[Dependency] private readonly IPlayerLocator _locator = default!;
|
|
[Dependency] private readonly IPlayerManager _playerManager = default!;
|
|
[Dependency] private readonly IServerDbManager _dbManager = default!;
|
|
[Dependency] private readonly EuiManager _eui = default!;
|
|
|
|
public override string Command => "banlist";
|
|
|
|
public override async void Execute(IConsoleShell shell, string argStr, string[] args)
|
|
{
|
|
if (args.Length != 1)
|
|
{
|
|
shell.WriteError(Help);
|
|
return;
|
|
}
|
|
|
|
var data = await _locator.LookupIdByNameOrIdAsync(args[0]);
|
|
|
|
if (data == null)
|
|
{
|
|
shell.WriteError(Loc.GetString("cmd-ban-player"));
|
|
return;
|
|
}
|
|
|
|
if (shell.Player is not { } player)
|
|
{
|
|
var bans = await _dbManager.GetBansAsync(data.LastAddress, data.UserId, data.LastLegacyHWId, data.LastModernHWIds, false);
|
|
|
|
if (bans.Count == 0)
|
|
{
|
|
shell.WriteLine(Loc.GetString("cmd-banlist-empty", ("user", data.Username)));
|
|
return;
|
|
}
|
|
|
|
foreach (var ban in bans)
|
|
{
|
|
var msg = $"{ban.Id}: {ban.Reason}";
|
|
shell.WriteLine(msg);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
var ui = new BanListEui();
|
|
_eui.OpenEui(ui, player);
|
|
await ui.ChangeBanListPlayer(data.UserId);
|
|
}
|
|
|
|
|
|
public override CompletionResult GetCompletion(IConsoleShell shell, string[] args)
|
|
{
|
|
if (args.Length != 1)
|
|
return CompletionResult.Empty;
|
|
|
|
var options = _playerManager.Sessions.Select(c => c.Name).OrderBy(c => c).ToArray();
|
|
return CompletionResult.FromHintOptions(options, Loc.GetString("cmd-banlist-hint"));
|
|
}
|
|
}
|