2023-10-24 13:25:45 +00:00
|
|
|
|
using BiblioTech.Options;
|
2023-10-24 12:07:15 +00:00
|
|
|
|
|
|
|
|
|
namespace BiblioTech.Commands
|
|
|
|
|
{
|
2023-10-24 13:25:45 +00:00
|
|
|
|
public class AdminCommand : BaseCommand
|
2023-10-24 12:07:15 +00:00
|
|
|
|
{
|
2023-10-25 09:25:27 +00:00
|
|
|
|
private readonly ClearUserAssociationCommand clearCommand = new ClearUserAssociationCommand();
|
|
|
|
|
private readonly ReportCommand reportCommand = new ReportCommand();
|
|
|
|
|
private readonly WhoIsCommand whoIsCommand = new WhoIsCommand();
|
2023-11-21 08:38:58 +00:00
|
|
|
|
private readonly AddSprCommand addSprCommand;
|
|
|
|
|
private readonly ClearSprsCommand clearSprsCommand;
|
|
|
|
|
private readonly GetSprCommand getSprCommand;
|
2023-10-29 08:25:50 +00:00
|
|
|
|
|
2023-12-11 10:01:12 +00:00
|
|
|
|
public AdminCommand(SprCommand sprCommand)
|
2023-10-29 08:25:50 +00:00
|
|
|
|
{
|
2023-11-21 08:38:58 +00:00
|
|
|
|
addSprCommand = new AddSprCommand(sprCommand);
|
|
|
|
|
clearSprsCommand = new ClearSprsCommand(sprCommand);
|
|
|
|
|
getSprCommand = new GetSprCommand(sprCommand);
|
2023-10-29 08:25:50 +00:00
|
|
|
|
}
|
2023-10-24 13:25:45 +00:00
|
|
|
|
|
|
|
|
|
public override string Name => "admin";
|
|
|
|
|
public override string StartingMessage => "...";
|
|
|
|
|
public override string Description => "Admins only.";
|
2023-10-24 12:07:15 +00:00
|
|
|
|
|
2023-10-24 13:25:45 +00:00
|
|
|
|
public override CommandOption[] Options => new CommandOption[]
|
2023-10-24 12:07:15 +00:00
|
|
|
|
{
|
2023-10-24 13:25:45 +00:00
|
|
|
|
clearCommand,
|
|
|
|
|
reportCommand,
|
2023-10-25 09:25:27 +00:00
|
|
|
|
whoIsCommand,
|
2023-11-21 08:38:58 +00:00
|
|
|
|
addSprCommand,
|
|
|
|
|
clearSprsCommand,
|
|
|
|
|
getSprCommand
|
2023-10-24 13:25:45 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
protected override async Task Invoke(CommandContext context)
|
|
|
|
|
{
|
|
|
|
|
if (!IsSenderAdmin(context.Command))
|
2023-10-24 12:07:15 +00:00
|
|
|
|
{
|
2023-10-25 08:54:26 +00:00
|
|
|
|
await context.Followup("You're not an admin.");
|
2023-10-24 13:25:45 +00:00
|
|
|
|
return;
|
2023-10-24 12:07:15 +00:00
|
|
|
|
}
|
2023-10-24 13:25:45 +00:00
|
|
|
|
|
2023-10-25 08:38:21 +00:00
|
|
|
|
if (!IsInAdminChannel(context.Command))
|
|
|
|
|
{
|
2023-10-25 08:54:26 +00:00
|
|
|
|
await context.Followup("Please use admin commands only in the admin channel.");
|
2023-10-25 08:38:21 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-24 13:25:45 +00:00
|
|
|
|
await clearCommand.CommandHandler(context);
|
|
|
|
|
await reportCommand.CommandHandler(context);
|
2023-10-25 09:25:27 +00:00
|
|
|
|
await whoIsCommand.CommandHandler(context);
|
2023-11-21 08:38:58 +00:00
|
|
|
|
await addSprCommand.CommandHandler(context);
|
|
|
|
|
await clearSprsCommand.CommandHandler(context);
|
2023-12-11 10:19:05 +00:00
|
|
|
|
await getSprCommand.CommandHandler(context);
|
2023-10-24 12:07:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-24 13:25:45 +00:00
|
|
|
|
public class ClearUserAssociationCommand : SubCommandOption
|
|
|
|
|
{
|
2023-10-25 09:25:27 +00:00
|
|
|
|
private readonly UserOption userOption = new UserOption("User to clear Eth address for.", true);
|
2023-10-24 13:25:45 +00:00
|
|
|
|
|
|
|
|
|
public ClearUserAssociationCommand()
|
|
|
|
|
: base("clear", "Admin only. Clears current Eth address for a user, allowing them to set a new one.")
|
|
|
|
|
{
|
|
|
|
|
}
|
2023-10-24 12:07:15 +00:00
|
|
|
|
|
2023-10-25 09:25:27 +00:00
|
|
|
|
public override CommandOption[] Options => new[] { userOption };
|
2023-10-24 12:07:15 +00:00
|
|
|
|
|
2023-10-24 13:25:45 +00:00
|
|
|
|
protected override async Task onSubCommand(CommandContext context)
|
|
|
|
|
{
|
2023-10-25 09:25:27 +00:00
|
|
|
|
var user = userOption.GetUser(context);
|
|
|
|
|
if (user == null)
|
2023-10-24 13:25:45 +00:00
|
|
|
|
{
|
2023-11-02 14:04:53 +00:00
|
|
|
|
await context.Followup("Failed to get user ID");
|
2023-10-24 13:25:45 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-25 09:25:27 +00:00
|
|
|
|
Program.UserRepo.ClearUserAssociatedAddress(user);
|
2023-11-02 14:04:53 +00:00
|
|
|
|
await context.Followup("Done.");
|
2023-10-24 13:25:45 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class ReportCommand : SubCommandOption
|
2023-10-24 12:07:15 +00:00
|
|
|
|
{
|
2023-10-25 09:25:27 +00:00
|
|
|
|
private readonly UserOption userOption = new UserOption(
|
2023-10-24 13:25:45 +00:00
|
|
|
|
description: "User to report history for.",
|
|
|
|
|
isRequired: true);
|
|
|
|
|
|
|
|
|
|
public ReportCommand()
|
|
|
|
|
: base("report", "Admin only. Reports bot-interaction history for a user.")
|
|
|
|
|
{
|
|
|
|
|
}
|
2023-10-24 12:07:15 +00:00
|
|
|
|
|
2023-10-25 09:25:27 +00:00
|
|
|
|
public override CommandOption[] Options => new[] { userOption };
|
2023-10-24 13:25:45 +00:00
|
|
|
|
|
|
|
|
|
protected override async Task onSubCommand(CommandContext context)
|
|
|
|
|
{
|
2023-10-25 09:25:27 +00:00
|
|
|
|
var user = userOption.GetUser(context);
|
|
|
|
|
if (user == null)
|
2023-10-24 13:25:45 +00:00
|
|
|
|
{
|
2023-11-02 14:04:53 +00:00
|
|
|
|
await context.Followup("Failed to get user ID");
|
2023-10-24 13:25:45 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-09 09:13:34 +00:00
|
|
|
|
var report = Program.UserRepo.GetInteractionReport(user);
|
2023-11-08 12:33:48 +00:00
|
|
|
|
await context.Followup(report);
|
2023-10-24 13:25:45 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-25 09:25:27 +00:00
|
|
|
|
public class WhoIsCommand : SubCommandOption
|
|
|
|
|
{
|
|
|
|
|
private readonly UserOption userOption = new UserOption("User", isRequired: false);
|
|
|
|
|
private readonly EthAddressOption ethAddressOption = new EthAddressOption(isRequired: false);
|
|
|
|
|
|
|
|
|
|
public WhoIsCommand()
|
|
|
|
|
: base(name: "whois",
|
|
|
|
|
description: "Fetches info about a user or ethAddress in the testnet.")
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override CommandOption[] Options => new CommandOption[]
|
|
|
|
|
{
|
|
|
|
|
userOption,
|
|
|
|
|
ethAddressOption
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
protected override async Task onSubCommand(CommandContext context)
|
|
|
|
|
{
|
|
|
|
|
var user = userOption.GetUser(context);
|
|
|
|
|
var ethAddr = await ethAddressOption.Parse(context);
|
|
|
|
|
|
|
|
|
|
if (user != null)
|
|
|
|
|
{
|
2023-11-02 14:04:53 +00:00
|
|
|
|
await context.Followup(Program.UserRepo.GetUserReport(user));
|
2023-10-25 09:25:27 +00:00
|
|
|
|
}
|
|
|
|
|
if (ethAddr != null)
|
|
|
|
|
{
|
2023-11-02 14:04:53 +00:00
|
|
|
|
await context.Followup(Program.UserRepo.GetUserReport(ethAddr));
|
2023-10-25 09:25:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-10-29 08:25:50 +00:00
|
|
|
|
|
2023-11-21 08:38:58 +00:00
|
|
|
|
public class AddSprCommand : SubCommandOption
|
|
|
|
|
{
|
|
|
|
|
private readonly SprCommand sprCommand;
|
|
|
|
|
private readonly StringOption stringOption = new StringOption("spr", "Codex SPR", true);
|
|
|
|
|
|
|
|
|
|
public AddSprCommand(SprCommand sprCommand)
|
|
|
|
|
: base(name: "addspr",
|
|
|
|
|
description: "Adds a Codex SPR, to be given to users with '/boot'.")
|
|
|
|
|
{
|
|
|
|
|
this.sprCommand = sprCommand;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override CommandOption[] Options => new[] { stringOption };
|
|
|
|
|
|
|
|
|
|
protected override async Task onSubCommand(CommandContext context)
|
|
|
|
|
{
|
|
|
|
|
var spr = await stringOption.Parse(context);
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(spr) )
|
|
|
|
|
{
|
|
|
|
|
sprCommand.Add(spr);
|
|
|
|
|
await context.Followup("A-OK!");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
await context.Followup("SPR is null or empty.");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class ClearSprsCommand : SubCommandOption
|
|
|
|
|
{
|
|
|
|
|
private readonly SprCommand sprCommand;
|
|
|
|
|
private readonly StringOption stringOption = new StringOption("areyousure", "set to 'true' if you are.", true);
|
|
|
|
|
|
|
|
|
|
public ClearSprsCommand(SprCommand sprCommand)
|
|
|
|
|
: base(name: "clearsprs",
|
|
|
|
|
description: "Clears all Codex SPRs in the bot. Users won't be able to use '/boot' till new ones are added.")
|
|
|
|
|
{
|
|
|
|
|
this.sprCommand = sprCommand;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override CommandOption[] Options => new[] { stringOption };
|
|
|
|
|
|
|
|
|
|
protected override async Task onSubCommand(CommandContext context)
|
|
|
|
|
{
|
|
|
|
|
var areyousure = await stringOption.Parse(context);
|
|
|
|
|
|
|
|
|
|
if (areyousure != "true") return;
|
|
|
|
|
|
|
|
|
|
sprCommand.Clear();
|
|
|
|
|
await context.Followup("Cleared all SPRs.");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class GetSprCommand: SubCommandOption
|
|
|
|
|
{
|
|
|
|
|
private readonly SprCommand sprCommand;
|
|
|
|
|
|
|
|
|
|
public GetSprCommand(SprCommand sprCommand)
|
|
|
|
|
: base(name: "getsprs",
|
|
|
|
|
description: "Shows all Codex SPRs in the bot.")
|
|
|
|
|
{
|
|
|
|
|
this.sprCommand = sprCommand;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override async Task onSubCommand(CommandContext context)
|
|
|
|
|
{
|
|
|
|
|
await context.Followup("SPRs: " + string.Join(", ", sprCommand.Get().Select(s => $"'{s}'")));
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-10-24 12:07:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|