using BiblioTech.Options; using CodexPlugin; namespace BiblioTech.Commands { public class AdminCommand : BaseCommand { private readonly ClearUserAssociationCommand clearCommand = new ClearUserAssociationCommand(); private readonly ReportCommand reportCommand = new ReportCommand(); private readonly DeployListCommand deployListCommand = new DeployListCommand(); private readonly DeployUploadCommand deployUploadCommand = new DeployUploadCommand(); private readonly DeployRemoveCommand deployRemoveCommand = new DeployRemoveCommand(); private readonly WhoIsCommand whoIsCommand = new WhoIsCommand(); public override string Name => "admin"; public override string StartingMessage => "..."; public override string Description => "Admins only."; public override CommandOption[] Options => new CommandOption[] { clearCommand, reportCommand, deployListCommand, deployUploadCommand, deployRemoveCommand, whoIsCommand, }; protected override async Task Invoke(CommandContext context) { if (!IsSenderAdmin(context.Command)) { await context.Followup("You're not an admin."); return; } if (!IsInAdminChannel(context.Command)) { await context.Followup("Please use admin commands only in the admin channel."); return; } await clearCommand.CommandHandler(context); await reportCommand.CommandHandler(context); await deployListCommand.CommandHandler(context); await deployUploadCommand.CommandHandler(context); await deployRemoveCommand.CommandHandler(context); await whoIsCommand.CommandHandler(context); } public class ClearUserAssociationCommand : SubCommandOption { private readonly UserOption userOption = new UserOption("User to clear Eth address for.", true); public ClearUserAssociationCommand() : base("clear", "Admin only. Clears current Eth address for a user, allowing them to set a new one.") { } public override CommandOption[] Options => new[] { userOption }; protected override async Task onSubCommand(CommandContext context) { var user = userOption.GetUser(context); if (user == null) { await context.AdminFollowup("Failed to get user ID"); return; } Program.UserRepo.ClearUserAssociatedAddress(user); await context.AdminFollowup("Done."); } } public class ReportCommand : SubCommandOption { private readonly UserOption userOption = new UserOption( description: "User to report history for.", isRequired: true); public ReportCommand() : base("report", "Admin only. Reports bot-interaction history for a user.") { } public override CommandOption[] Options => new[] { userOption }; protected override async Task onSubCommand(CommandContext context) { var user = userOption.GetUser(context); if (user == null) { await context.AdminFollowup("Failed to get user ID"); return; } var report = Program.UserRepo.GetInteractionReport(user); await context.AdminFollowup(string.Join(Environment.NewLine, report)); } } public class DeployListCommand : SubCommandOption { public DeployListCommand() : base("list", "Lists current deployments.") { } protected override async Task onSubCommand(CommandContext context) { var deployments = Program.DeploymentFilesMonitor.GetDeployments(); if (!deployments.Any()) { await context.AdminFollowup("No deployments available."); return; } await context.AdminFollowup($"Deployments: {string.Join(", ", deployments.Select(FormatDeployment))}"); } private string FormatDeployment(CodexDeployment deployment) { var m = deployment.Metadata; return $"'{m.Name}' ({m.StartUtc.ToString("o")})"; } } public class DeployUploadCommand : SubCommandOption { private readonly FileAttachementOption fileOption = new FileAttachementOption( name: "json", description: "Codex-deployment json to add.", isRequired: true); public DeployUploadCommand() : base("add", "Upload a new deployment JSON file.") { } public override CommandOption[] Options => new[] { fileOption }; protected override async Task onSubCommand(CommandContext context) { var file = await fileOption.Parse(context); if (file == null) return; var result = await Program.DeploymentFilesMonitor.DownloadDeployment(file); if (result) { await context.AdminFollowup("Success!"); } else { await context.AdminFollowup("That didn't work."); } } } public class DeployRemoveCommand : SubCommandOption { private readonly StringOption stringOption = new StringOption( name: "name", description: "Name of deployment to remove.", isRequired: true); public DeployRemoveCommand() : base("remove", "Removes a deployment file.") { } public override CommandOption[] Options => new[] { stringOption }; protected override async Task onSubCommand(CommandContext context) { var str = await stringOption.Parse(context); if (string.IsNullOrEmpty(str)) return; var result = Program.DeploymentFilesMonitor.DeleteDeployment(str); if (result) { await context.AdminFollowup("Success!"); } else { await context.AdminFollowup("That didn't work."); } } } 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) { await context.AdminFollowup(Program.UserRepo.GetUserReport(user)); } if (ethAddr != null) { await context.AdminFollowup(Program.UserRepo.GetUserReport(ethAddr)); } } } } }