2020-04-19 12:12:10 +02:00
|
|
|
const escapeRegex = require('escape-string-regexp');
|
2020-04-08 18:08:46 +02:00
|
|
|
const { Structures } = require('discord.js');
|
|
|
|
|
|
|
|
const Guild = Structures.extend('Guild', (Guild) => {
|
|
|
|
|
|
|
|
class ExtendedGuild extends Guild {
|
|
|
|
|
|
|
|
constructor(...args) {
|
|
|
|
|
|
|
|
super(...args);
|
|
|
|
|
|
|
|
this._settings = null; //internal cache of current guild's settings; should ALWAYS stay the same as database.
|
2020-05-07 01:26:16 +02:00
|
|
|
this._permissions = null; //internal cache, should always match database.
|
2020-05-24 23:43:47 +02:00
|
|
|
this.callbacks = [];
|
2020-04-08 18:08:46 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-05-07 17:08:07 +02:00
|
|
|
//Fetch and cache settings
|
2020-04-19 10:27:13 +02:00
|
|
|
async settings() {
|
2020-05-08 08:50:54 +02:00
|
|
|
if(!this._settings) this._settings = this.client.transactionHandler.send({ provider: 'mongodb', request: { collection: 'guilds', type: 'findOne', query: { guildId: this.id } } });
|
|
|
|
if(this._settings instanceof Promise) this._settings = await this._settings || null;
|
2020-05-21 12:47:58 +02:00
|
|
|
if(!this._settings) this._settings = { guildId: this.id, ...this.client.defaultConfig };
|
2020-04-19 10:27:13 +02:00
|
|
|
return this._settings;
|
2020-05-07 01:26:16 +02:00
|
|
|
}
|
2020-04-19 10:27:13 +02:00
|
|
|
|
2020-05-07 17:08:07 +02:00
|
|
|
//Fetch and cache perms
|
2020-05-08 08:50:54 +02:00
|
|
|
async permissions() {
|
|
|
|
if(!this._permissions) this._permissions = this.client.transactionHandler.send({ provider: 'mongodb', request: { collection: 'permissions', type: 'findOne', query: { guildId: this.id } } });
|
|
|
|
if(this._permissions instanceof Promise) this._permissions = await this._permissions || null;
|
|
|
|
if(!this._permissions) this._permissions = { guildId: this.id };
|
2020-05-07 01:26:16 +02:00
|
|
|
return this._permissions;
|
2020-04-19 10:27:13 +02:00
|
|
|
}
|
2020-04-19 12:12:10 +02:00
|
|
|
|
2020-05-07 01:26:16 +02:00
|
|
|
/* Settings Wrapper */
|
2020-05-06 01:40:46 +02:00
|
|
|
|
2020-05-17 15:27:35 +02:00
|
|
|
async _deleteSettings() { //Delete whole entry - remove
|
2020-05-06 01:40:46 +02:00
|
|
|
try {
|
|
|
|
await this.client.transactionHandler.send({
|
|
|
|
provider: 'mongodb',
|
|
|
|
request: {
|
|
|
|
type: 'remove',
|
2020-05-17 15:27:35 +02:00
|
|
|
collection: 'guilds',
|
2020-05-06 01:40:46 +02:00
|
|
|
query: {
|
|
|
|
guildId: this.id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
this._settings = this.client.defaultConfig;
|
|
|
|
this._storageLog(`Database Delete (guild:${this.id}).`);
|
|
|
|
} catch(error) {
|
|
|
|
this._storageError(error);
|
|
|
|
}
|
2020-05-21 12:47:58 +02:00
|
|
|
return true;
|
2020-05-06 01:40:46 +02:00
|
|
|
}
|
|
|
|
|
2020-05-17 15:27:35 +02:00
|
|
|
async _updateSettings(data) { //Update property (upsert true) - updateOne
|
2020-05-06 01:40:46 +02:00
|
|
|
try {
|
|
|
|
await this.client.transactionHandler.send({
|
|
|
|
provider: 'mongodb',
|
|
|
|
request: {
|
|
|
|
type: 'updateOne',
|
2020-05-17 15:27:35 +02:00
|
|
|
collection: 'guilds',
|
2020-05-06 01:40:46 +02:00
|
|
|
query: {
|
|
|
|
guildId: this.id
|
|
|
|
},
|
|
|
|
data
|
|
|
|
}
|
|
|
|
});
|
2020-05-17 15:27:35 +02:00
|
|
|
this._settings = {
|
|
|
|
...this._settings,
|
2020-05-06 01:40:46 +02:00
|
|
|
...data
|
|
|
|
};
|
|
|
|
this._storageLog(`Database Update (guild:${this.id}).`);
|
|
|
|
} catch(error) {
|
|
|
|
this._storageError(error);
|
|
|
|
}
|
2020-05-21 12:47:58 +02:00
|
|
|
return true;
|
2020-05-06 01:40:46 +02:00
|
|
|
}
|
|
|
|
|
2020-05-21 12:47:58 +02:00
|
|
|
async _removeSettings(value) { //Remove property
|
2020-05-17 15:27:35 +02:00
|
|
|
if(this.client.defaultConfig[value]) {
|
2020-05-24 00:12:37 +02:00
|
|
|
await this._updateSettings({ [value]: this.client.defaultConfig[value] });
|
2020-05-06 01:40:46 +02:00
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
await this.client.transactionHandler.send({
|
|
|
|
provider: 'mongodb',
|
|
|
|
request: {
|
|
|
|
type: 'removeProperty',
|
2020-05-17 15:27:35 +02:00
|
|
|
collection: 'guilds',
|
2020-05-06 01:40:46 +02:00
|
|
|
query: {
|
|
|
|
guildId: this.id
|
|
|
|
},
|
|
|
|
data: [
|
|
|
|
value
|
|
|
|
]
|
|
|
|
}
|
|
|
|
});
|
|
|
|
this._storageLog(`Database Remove (guild:${this.id}).`);
|
2020-05-21 12:47:58 +02:00
|
|
|
delete this._settings[value];
|
2020-05-06 01:40:46 +02:00
|
|
|
} catch(error) {
|
|
|
|
this._storageError(error);
|
|
|
|
}
|
2020-05-21 12:47:58 +02:00
|
|
|
return true;
|
2020-05-17 15:27:35 +02:00
|
|
|
}
|
2020-05-06 01:40:46 +02:00
|
|
|
|
|
|
|
/* Language Formatting */
|
|
|
|
|
2020-05-24 23:43:47 +02:00
|
|
|
format(index, parameters = {}, code = false) {
|
2020-04-19 21:54:50 +02:00
|
|
|
|
2020-05-24 23:43:47 +02:00
|
|
|
let language = 'en_us';
|
|
|
|
if (this._settings.locale) language = this._settings.locale;
|
2020-04-19 12:12:10 +02:00
|
|
|
|
2020-05-24 23:43:47 +02:00
|
|
|
parameters.prefix = this.prefix;
|
|
|
|
let template = this.client.localeLoader.template(language, index);
|
|
|
|
|
|
|
|
if (!template) {
|
|
|
|
return `**Missing language index \`${language} [${index}]\` in languages. Contact a bot developer about this.**`;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const [param, val] of Object.entries(parameters)) {
|
|
|
|
template = template.replace(new RegExp(`{${escapeRegex(param.toLowerCase())}}`, 'giu'), val);
|
2020-04-19 12:12:10 +02:00
|
|
|
}
|
2020-05-24 23:43:47 +02:00
|
|
|
|
|
|
|
if (code) {
|
|
|
|
try {
|
|
|
|
// eslint-disable-next-line no-eval
|
|
|
|
template = eval(template);
|
|
|
|
} catch (error) {
|
|
|
|
this.client.logger.error(`Error in locale ${language}:${index} while executing code.\n${error.stack || error}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return template;
|
2020-04-19 21:54:50 +02:00
|
|
|
|
2020-04-19 12:12:10 +02:00
|
|
|
}
|
|
|
|
|
2020-05-06 01:40:46 +02:00
|
|
|
/* Resolver Shortcuts */
|
|
|
|
|
2020-04-11 10:06:39 +02:00
|
|
|
async resolveMembers(members, strict = false) {
|
|
|
|
|
2020-05-21 12:47:58 +02:00
|
|
|
return this.client.resolver.resolveMembers(members, this, strict);
|
2020-04-17 17:23:13 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
async resolveMember(member, strict) {
|
|
|
|
|
2020-05-24 05:50:35 +02:00
|
|
|
return this.client.resolver.resolveMembers(member, this, strict);
|
2020-04-17 17:23:13 +02:00
|
|
|
|
2020-04-11 10:06:39 +02:00
|
|
|
}
|
|
|
|
|
2020-05-22 22:13:47 +02:00
|
|
|
resolveChannels(channels, strict = false) {
|
2020-04-11 10:06:39 +02:00
|
|
|
|
2020-05-21 12:47:58 +02:00
|
|
|
return this.client.resolver.resolveChannels(channels, this, strict);
|
2020-04-11 10:06:39 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-05-22 22:13:47 +02:00
|
|
|
resolveChannel(channel, strict) {
|
2020-04-17 17:23:13 +02:00
|
|
|
|
2020-05-22 22:13:47 +02:00
|
|
|
return this.client.resolver.resolveChannel(channel, this, strict);
|
2020-04-17 17:23:13 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-04-11 10:06:39 +02:00
|
|
|
async resolveRoles(roles, strict = false) {
|
|
|
|
|
2020-05-24 05:50:35 +02:00
|
|
|
return this.client.resolver.resolveRoles(roles, this, strict);
|
2020-04-11 10:06:39 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-04-17 17:23:13 +02:00
|
|
|
async resolveRole(role, strict) {
|
2020-05-22 22:13:47 +02:00
|
|
|
|
2020-05-24 05:50:35 +02:00
|
|
|
return this.client.resolver.resolveRole(role, this, strict);
|
2020-04-17 17:23:13 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-05-06 01:40:46 +02:00
|
|
|
|
|
|
|
/* Logging */
|
|
|
|
|
|
|
|
_storageLog(log) {
|
2020-05-07 17:08:07 +02:00
|
|
|
this.client.logger.debug(log);
|
2020-05-06 01:40:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_storageError(error) {
|
2020-05-07 17:08:07 +02:00
|
|
|
this.client.logger.error(`Database Error (guild:${this.id}) : \n${error.stack || error}`);
|
2020-05-06 01:40:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
get prefix() {
|
2020-05-24 05:50:35 +02:00
|
|
|
return this._settings.prefix
|
|
|
|
|| this.client._options.bot.prefix;
|
2020-05-06 01:40:46 +02:00
|
|
|
}
|
2020-05-25 13:13:34 +02:00
|
|
|
|
|
|
|
get premium() { //GUILD SETTINGS MUST BE FETCHED
|
|
|
|
return this._settings.premium;
|
|
|
|
}
|
2020-05-06 01:40:46 +02:00
|
|
|
|
2020-04-08 18:08:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return ExtendedGuild;
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = Guild;
|