| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- using Content.Server.Administration;
- using Content.Server.Commands;
- using Content.Shared.Administration;
- using Content.Shared.Alert;
- using Robust.Shared.Console;
- 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;
- if (player?.AttachedEntity == null)
- {
- shell.WriteLine("You cannot run this from the server or without an attached entity.");
- return;
- }
- 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;
- }
- short? severity1 = sevint == -1 ? null : sevint;
- alertsSystem.ShowAlert(attachedEntity, alert.ID, severity1, null);
- }
- }
- }
|