galactic-bot/structure/extensions/Guild.js

180 lines
5.6 KiB
JavaScript
Raw Normal View History

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.
this._permissions = null; //internal cache, should always match database.
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() {
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;
if(!this._settings) this._settings = { guildId: this.id, ...this.client.defaultConfig } ;
2020-04-19 10:27:13 +02:00
return this._settings;
}
2020-04-19 10:27:13 +02:00
2020-05-07 17:08:07 +02:00
//Fetch and cache perms
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 };
return this._permissions;
2020-04-19 10:27:13 +02:00
}
2020-04-19 12:12:10 +02:00
/* Settings Wrapper */
async _deleteSettings() { //Delete whole entry - remove
try {
await this.client.transactionHandler.send({
provider: 'mongodb',
request: {
type: 'remove',
collection: 'guilds',
query: {
guildId: this.id
}
}
});
this._settings = this.client.defaultConfig;
this._storageLog(`Database Delete (guild:${this.id}).`);
} catch(error) {
this._storageError(error);
}
}
async _updateSettings(data) { //Update property (upsert true) - updateOne
try {
await this.client.transactionHandler.send({
provider: 'mongodb',
request: {
type: 'updateOne',
collection: 'guilds',
query: {
guildId: this.id
},
data
}
});
this._settings = {
...this._settings,
...data
};
this._storageLog(`Database Update (guild:${this.id}).`);
} catch(error) {
this._storageError(error);
}
}
async _dbRemoveProperty(value) { //Remove property
if(this.client.defaultConfig[value]) {
await this._updateSettings(this.client.defaultConfig[value]);
return undefined;
}
try {
await this.client.transactionHandler.send({
provider: 'mongodb',
request: {
type: 'removeProperty',
collection: 'guilds',
query: {
guildId: this.id
},
data: [
value
]
}
});
delete this._settings[value];
this._storageLog(`Database Remove (guild:${this.id}).`);
} catch(error) {
this._storageError(error);
}
}
/* Language Formatting */
2020-04-19 12:15:38 +02:00
format(key, parameters = {}) {
2020-04-19 21:54:50 +02:00
2020-05-07 17:08:07 +02:00
const language = this._settings.locale || 'en_us'; //this._settings.language or something idk
2020-04-19 12:12:10 +02:00
let value = this.client.localeLoader.languages[language][key];
for(const [param, val] of Object.entries(parameters)) {
value = value.replace(new RegExp(`{${escapeRegex(param.toLowerCase())}}`, 'gi'), val);
}
return value;
2020-04-19 21:54:50 +02:00
2020-04-19 12:12:10 +02:00
}
/* Resolver Shortcuts */
2020-04-11 10:06:39 +02:00
async resolveMembers(members, strict = false) {
return await this.client.resolver.resolveMembers(members, this, strict);
}
async resolveMember(member, strict) {
let [ result ] = await this.resolveMembers([ member ], strict);
return result;
2020-04-11 10:06:39 +02:00
}
async resolveChannels(channels, strict = false) {
return await this.client.resolver.resolveChannels(channels, this, strict);
}
async resolveChannel(channel, strict) {
let [ result ] = await this.resolveMembers([ channel ], strict);
return result;
}
2020-04-11 10:06:39 +02:00
async resolveRoles(roles, strict = false) {
return await this.client.resolver.resolveRoles(roles, this, strict);
}
async resolveRole(role, strict) {
let [ result ] = await this.resolveRoles([ role ], strict);
return result;
}
/* Logging */
_storageLog(log) {
2020-05-07 17:08:07 +02:00
this.client.logger.debug(log);
}
_storageError(error) {
2020-05-07 17:08:07 +02:00
this.client.logger.error(`Database Error (guild:${this.id}) : \n${error.stack || error}`);
}
get prefix() {
return this._settings.prefix;
}
2020-04-08 18:08:46 +02:00
}
return ExtendedGuild;
});
module.exports = Guild;