Add easy way to configure role command
This commit is contained in:
parent
ae1b5f237c
commit
55f6ce8265
2 changed files with 109 additions and 4 deletions
8
data/roleConfig.txt
Normal file
8
data/roleConfig.txt
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
USAGE: config <add|remove> <Role Name>
|
||||||
|
|
||||||
|
===[ EXAMPLE ]===
|
||||||
|
To add a role:
|
||||||
|
- config add role-name
|
||||||
|
|
||||||
|
To remove a role:
|
||||||
|
- config remove role-name
|
|
@ -5,7 +5,7 @@ import { Command } from "../type/command";
|
||||||
import { ICommandContext } from "../contracts/ICommandContext";
|
import { ICommandContext } from "../contracts/ICommandContext";
|
||||||
import ICommandReturnContext from "../contracts/ICommandReturnContext";
|
import ICommandReturnContext from "../contracts/ICommandReturnContext";
|
||||||
import SettingsHelper from "../helpers/SettingsHelper";
|
import SettingsHelper from "../helpers/SettingsHelper";
|
||||||
|
import { readFileSync } from "fs";
|
||||||
export default class Role extends Command {
|
export default class Role extends Command {
|
||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
|
@ -16,7 +16,21 @@ export default class Role extends Command {
|
||||||
public override async execute(context: ICommandContext) {
|
public override async execute(context: ICommandContext) {
|
||||||
if (!context.message.guild) return;
|
if (!context.message.guild) return;
|
||||||
|
|
||||||
const roles = await SettingsHelper.GetSetting("role.assignable", context.message.guild.id);
|
switch (context.args[0]) {
|
||||||
|
case "config":
|
||||||
|
await this.UseConfig(context);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
await this.UseDefault(context);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======
|
||||||
|
// Default
|
||||||
|
// =======
|
||||||
|
|
||||||
|
private async UseDefault(context: ICommandContext) {
|
||||||
|
const roles = await SettingsHelper.GetSetting("role.assignable", context.message.guild!.id);
|
||||||
|
|
||||||
if (!roles) {
|
if (!roles) {
|
||||||
const errorEmbed = new ErrorEmbed(context, "Unable to find any assignable roles");
|
const errorEmbed = new ErrorEmbed(context, "Unable to find any assignable roles");
|
||||||
|
@ -28,7 +42,7 @@ export default class Role extends Command {
|
||||||
const rolesArray = roles.split(",");
|
const rolesArray = roles.split(",");
|
||||||
|
|
||||||
if (context.args.length == 0) {
|
if (context.args.length == 0) {
|
||||||
await this.SendRolesList(context, rolesArray, context.message.guild.id);
|
await this.SendRolesList(context, rolesArray, context.message.guild!.id);
|
||||||
} else {
|
} else {
|
||||||
await this.ToggleRole(context, rolesArray);
|
await this.ToggleRole(context, rolesArray);
|
||||||
}
|
}
|
||||||
|
@ -109,4 +123,87 @@ export default class Role extends Command {
|
||||||
embeds: [embed]
|
embeds: [embed]
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ======
|
||||||
|
// Config
|
||||||
|
// ======
|
||||||
|
|
||||||
|
private async UseConfig(context: ICommandContext) {
|
||||||
|
const moderatorRole = await SettingsHelper.GetSetting("role.moderator", context.message.guild!.id);
|
||||||
|
|
||||||
|
if (!context.message.member?.roles.cache.find(x => x.name == moderatorRole)) {
|
||||||
|
const errorEmbed = new ErrorEmbed(context, "Sorry, you must be a moderator to be able to configure this command");
|
||||||
|
errorEmbed.SendToCurrentChannel();
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (context.args[1]) {
|
||||||
|
case "add":
|
||||||
|
await this.AddRoleConfig(context);
|
||||||
|
break;
|
||||||
|
case "remove":
|
||||||
|
await this.RemoveRoleConfig(context);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
this.SendConfigHelp(context);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private SendConfigHelp(context: ICommandContext) {
|
||||||
|
const helpText = readFileSync(`${process.cwd()}/data/roleConfig.txt`).toString();
|
||||||
|
|
||||||
|
const embed = new PublicEmbed(context, "Configure Role Command", helpText);
|
||||||
|
embed.SendToCurrentChannel();
|
||||||
|
}
|
||||||
|
|
||||||
|
private async AddRoleConfig(context: ICommandContext) {
|
||||||
|
const role = context.message.guild!.roles.cache.find(x => x.name == context.args[2]);
|
||||||
|
|
||||||
|
if (!role) {
|
||||||
|
this.SendConfigHelp(context);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
let setting = await SettingsHelper.GetSetting("role.assignable", context.message.guild!.id) || "";
|
||||||
|
|
||||||
|
const settingArray = setting.split(",");
|
||||||
|
|
||||||
|
settingArray.push(role.name);
|
||||||
|
|
||||||
|
setting = settingArray.join(",");
|
||||||
|
|
||||||
|
await SettingsHelper.SetSetting("role.assignable", context.message.guild!.id, setting);
|
||||||
|
|
||||||
|
const embed = new PublicEmbed(context, "", "Added new assignable role");
|
||||||
|
embed.SendToCurrentChannel();
|
||||||
|
}
|
||||||
|
|
||||||
|
private async RemoveRoleConfig(context: ICommandContext) {
|
||||||
|
const role = context.message.guild!.roles.cache.find(x => x.name == context.args[2]);
|
||||||
|
|
||||||
|
if (!role) {
|
||||||
|
this.SendConfigHelp(context);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
let setting = await SettingsHelper.GetSetting("role.assignable", context.message.guild!.id);
|
||||||
|
|
||||||
|
if (!setting) return;
|
||||||
|
|
||||||
|
const settingArray = setting.split(",");
|
||||||
|
|
||||||
|
const index = settingArray.findIndex(x => x == context.args[2]);
|
||||||
|
|
||||||
|
if (index == -1) return;
|
||||||
|
|
||||||
|
settingArray.splice(index, 1);
|
||||||
|
|
||||||
|
setting = settingArray.join(",");
|
||||||
|
|
||||||
|
await SettingsHelper.SetSetting("role.assignable", context.message.guild!.id, setting);
|
||||||
|
|
||||||
|
const embed = new PublicEmbed(context, "", "Removed assignable role");
|
||||||
|
embed.SendToCurrentChannel();
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue