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.
59 lines
1.7 KiB
C#
59 lines
1.7 KiB
C#
using Content.Server.Database;
|
|
using Content.Shared.Administration;
|
|
using Robust.Shared.Console;
|
|
|
|
namespace Content.Server.Administration.Commands
|
|
{
|
|
[AdminCommand(AdminFlags.Ban)]
|
|
public sealed class PardonCommand : LocalizedCommands
|
|
{
|
|
[Dependency] private readonly IServerDbManager _dbManager = default!;
|
|
|
|
public override string Command => "pardon";
|
|
|
|
public override async void Execute(IConsoleShell shell, string argStr, string[] args)
|
|
{
|
|
var player = shell.Player;
|
|
|
|
if (args.Length != 1)
|
|
{
|
|
shell.WriteLine(Help);
|
|
return;
|
|
}
|
|
|
|
if (!int.TryParse(args[0], out var banId))
|
|
{
|
|
shell.WriteLine(Loc.GetString($"cmd-pardon-unable-to-parse", ("id", args[0]), ("help", Help)));
|
|
return;
|
|
}
|
|
|
|
var ban = await _dbManager.GetBanAsync(banId);
|
|
|
|
if (ban == null)
|
|
{
|
|
shell.WriteLine($"No ban found with id {banId}");
|
|
return;
|
|
}
|
|
|
|
if (ban.Unban != null)
|
|
{
|
|
if (ban.Unban.UnbanningAdmin != null)
|
|
{
|
|
shell.WriteLine(Loc.GetString($"cmd-pardon-already-pardoned-specific",
|
|
("admin", ban.Unban.UnbanningAdmin.Value),
|
|
("time", ban.Unban.UnbanTime)));
|
|
}
|
|
|
|
else
|
|
shell.WriteLine(Loc.GetString($"cmd-pardon-already-pardoned"));
|
|
|
|
return;
|
|
}
|
|
|
|
await _dbManager.AddUnbanAsync(new UnbanDef(banId, player?.UserId, DateTimeOffset.Now));
|
|
|
|
shell.WriteLine(Loc.GetString($"cmd-pardon-success", ("id", banId)));
|
|
}
|
|
}
|
|
}
|