galactic-bot/structure/extensions/Message.js

92 lines
2.8 KiB
JavaScript
Raw Normal View History

2020-04-08 18:08:46 +02:00
const { Structures } = require('discord.js');
2020-04-19 21:55:26 +02:00
const escapeRegex = require('escape-string-regexp');
const emojis = require('../../util/emojis.json');
2020-04-08 18:08:46 +02:00
const Message = Structures.extend('Message', (Message) => {
class ExtendedMessage extends Message {
constructor(...args) {
super(...args);
this.command = null; //Will set to command if the message induces a command.
this.args = null;
this.parameters = null;
this._pending = null;
}
2020-05-01 16:10:55 +02:00
format(index, parameters = { }) {
2020-04-19 21:55:26 +02:00
let language = this.author._settings.locale || 'en_us';
if(this.guild && this.guild._settings.locale) language = this.guild._settings.locale;
2020-05-01 16:10:55 +02:00
parameters.prefix = this.guild && this.guild._settings.prefix ? this.guild._settings.prefix : this.client._options.bot.prefix ;
2020-04-19 21:55:26 +02:00
let template = this.client.localeLoader.template(language, index); //.languages[language][index];
for (const [param, val] of Object.entries(parameters)) {
template = template.replace(new RegExp(`{${escapeRegex(param.toLowerCase())}}`, 'gi'), val);
}
return template;
}
async resolve() {
try {
const resolved = this.command.execute(this, {
params: this.parameters,
args: this.args
});
if(resolved instanceof Promise) await resolved;
return { error: false };
} catch(error) {
return { error: true, message: error.stack || error };
}
2020-04-08 18:08:46 +02:00
}
2020-04-19 21:55:26 +02:00
async embed(embed, opts = {}) {
2020-05-01 16:10:55 +02:00
if (!embed.color) embed.color = 619452;
2020-04-19 21:55:26 +02:00
let send = { content: opts.reply ? `<@${this.author.id}>` : '', embed };
this._pending = await this.channel.send(send);
return this._pending;
}
async respond(str, opts = {}) {
if(typeof str === 'string') {
if(opts.emoji) {
const emoji = emojis[opts.emoji];
if(!emoji) this.command.client.logger.warn(`Invalid emoji provided to command ${this.command.resolveable}: "${opts.emoji}".`);
str = `${emoji} ${str}`;
}
if(opts.reply) str = `<@!${this.author.id}> ${str}`;
}
this._pending = await this.channel.send(str);
return this._pending;
}
async edit(str, opts) {
if(!this.editable) return null;
if(typeof str === 'string') {
if(opts.emoji) str = `${emojis[opts.emoji]} ${str}`;
if(opts.reply) str = `<@!${this.author.id}> ${str}`;
}
return super.edit(str);
}
2020-04-08 18:08:46 +02:00
}
return ExtendedMessage;
});
module.exports = Message;