Files

60 lines
2.1 KiB
C#
Raw Permalink Normal View History

using Content.Server.Administration;
2021-06-09 22:19:39 +02:00
using Content.Server.Commands;
using Content.Shared.Administration;
using Content.Shared.Alert;
using Robust.Shared.Console;
2021-06-09 22:19:39 +02:00
namespace Content.Server.Alert.Commands
{
[AdminCommand(AdminFlags.Debug)]
public sealed class ShowAlert : IConsoleCommand
{
[Dependency] private readonly IEntityManager _e = default!;
public string Command => "showalert";
public string Description => "Shows an alert for a player, defaulting to current player";
public string Help => "showalert <alertType> <severity, -1 if no severity> <name or userID, omit for current player>";
public void Execute(IConsoleShell shell, string argStr, string[] args)
{
var player = shell.Player;
2021-12-06 15:34:46 +01:00
if (player?.AttachedEntity == null)
{
2021-12-06 15:34:46 +01:00
shell.WriteLine("You cannot run this from the server or without an attached entity.");
return;
}
2021-12-06 15:34:46 +01:00
var attachedEntity = player.AttachedEntity.Value;
if (args.Length > 2)
{
var target = args[2];
if (!CommandUtils.TryGetAttachedEntityByUsernameOrId(shell, target, player, out attachedEntity)) return;
}
if (!_e.TryGetComponent(attachedEntity, out AlertsComponent? alertsComponent))
{
shell.WriteLine("user has no alerts component");
return;
}
var alertType = args[0];
var severity = args[1];
var alertsSystem = _e.System<AlertsSystem>();
if (!alertsSystem.TryGet(alertType, out var alert))
{
shell.WriteLine("unrecognized alertType " + alertType);
return;
}
if (!short.TryParse(severity, out var sevint))
{
shell.WriteLine("invalid severity " + sevint);
return;
}
2022-01-05 00:19:23 -08:00
short? severity1 = sevint == -1 ? null : sevint;
alertsSystem.ShowAlert(attachedEntity, alert.ID, severity1, null);
}
}
}