mrmBot-Matrix/classes/command.js

61 lines
1.7 KiB
JavaScript
Raw Normal View History

class Command {
2022-03-22 20:43:26 +00:00
constructor(client, cluster, worker, ipc, options) {
this.client = client;
this.cluster = cluster;
2021-07-05 04:15:27 +00:00
this.worker = worker;
this.ipc = ipc;
2022-03-22 20:43:26 +00:00
this.type = options.type;
this.args = options.args;
if (options.type === "classic") {
this.message = options.message;
this.channel = options.message.channel;
this.author = options.message.author;
2022-03-22 20:43:26 +00:00
this.content = options.content;
this.specialArgs = options.specialArgs;
this.reference = {
messageReference: {
channelID: this.channel.id,
2022-03-22 20:43:26 +00:00
messageID: this.message.id,
guildID: this.channel.guild ? this.channel.guild.id : undefined,
2022-03-22 20:43:26 +00:00
failIfNotExists: false
},
allowedMentions: {
repliedUser: false
}
};
} else if (options.type === "application") {
2022-03-22 20:43:26 +00:00
this.interaction = options.interaction;
this.channel = options.interaction.channel;
this.author = options.interaction.guildID ? options.interaction.member : options.interaction.user;
if (options.interaction.data.options) {
this.specialArgs = this.options = options.interaction.data.options.reduce((obj, item) => {
obj[item.name] = item.value;
return obj;
}, {});
} else {
this.specialArgs = this.options = {};
}
2022-03-22 20:43:26 +00:00
}
}
async run() {
return "It works!";
}
2022-03-22 20:43:26 +00:00
async acknowledge() {
if (this.type === "classic") {
await this.client.sendChannelTyping(this.channel.id);
2022-03-22 20:43:26 +00:00
} else {
await this.interaction.acknowledge();
}
}
static description = "No description found";
static aliases = [];
static arguments = [];
static flags = [];
static requires = [];
2022-03-22 20:43:26 +00:00
static slashAllowed = true;
}
export default Command;