Noi
1149f2800d
Moved modules into the assembly itself to simplify development of further features and reduce complexity in building this project. Additionally, many small adjustments were made, including: - Add documentation to most public methods that had it missing - Minor style updates - Updated readme to reflect near-completion of this rewrite - Remove any last remaining references to old project name Kerobot - Update dependencies
54 lines
No EOL
2.1 KiB
C#
54 lines
No EOL
2.1 KiB
C#
using RegexBot.Common;
|
|
|
|
namespace RegexBot.Modules.ModCommands.Commands;
|
|
class Unban : CommandConfig {
|
|
private readonly string _usage;
|
|
|
|
protected override string DefaultUsageMsg => _usage;
|
|
|
|
// No configuration.
|
|
// TODO bring in some options from BanKick. Particularly custom success msg.
|
|
// TODO when ModLogs fully implemented, add a reason?
|
|
public Unban(ModCommands module, JObject config) : base(module, config) {
|
|
_usage = $"{Command} `user or user ID`\n"
|
|
+ "Unbans the given user, allowing them to rejoin the server.";
|
|
}
|
|
|
|
// Usage: (command) (user query)
|
|
public override async Task Invoke(SocketGuild g, SocketMessage msg) {
|
|
var line = msg.Content.Split(new char[] { ' ' }, 3, StringSplitOptions.RemoveEmptyEntries);
|
|
string targetstr;
|
|
if (line.Length < 2) {
|
|
await SendUsageMessageAsync(msg.Channel, null);
|
|
return;
|
|
}
|
|
targetstr = line[1];
|
|
|
|
ulong targetId;
|
|
string targetDisplay;
|
|
var query = Module.Bot.EcQueryUser(targetstr);
|
|
if (query != null) {
|
|
targetId = (ulong)query.UserId;
|
|
targetDisplay = $"{query.Username}#{query.Discriminator}";
|
|
} else {
|
|
if (!ulong.TryParse(targetstr, out targetId)) {
|
|
await SendUsageMessageAsync(msg.Channel, TargetNotFound);
|
|
return;
|
|
}
|
|
targetDisplay = $"with ID {targetId}";
|
|
}
|
|
|
|
// Do the action
|
|
try {
|
|
await g.RemoveBanAsync(targetId);
|
|
await msg.Channel.SendMessageAsync($":white_check_mark: Unbanned user **{targetDisplay}**.");
|
|
} catch (Discord.Net.HttpException ex) {
|
|
const string FailPrefix = ":x: **Could not unban:** ";
|
|
if (ex.HttpCode == System.Net.HttpStatusCode.Forbidden)
|
|
await msg.Channel.SendMessageAsync(FailPrefix + Messages.ForbiddenGenericError);
|
|
else if (ex.HttpCode == System.Net.HttpStatusCode.NotFound)
|
|
await msg.Channel.SendMessageAsync(FailPrefix + "The specified user does not exist or is not in the ban list.");
|
|
else throw;
|
|
}
|
|
}
|
|
} |