Convert database handler into service, fix skip issue with sound player

This commit is contained in:
Essem 2021-08-10 16:34:29 -05:00
parent 9a1fd3b6f3
commit b2c7a43baa
No known key found for this signature in database
GPG key ID: 7D497397CC3A2A8C
13 changed files with 58 additions and 25 deletions

3
app.js
View file

@ -88,7 +88,8 @@ const Admiral = new Fleet({
}, },
services: [ services: [
{ name: "prometheus", path: path.join(__dirname, "./utils/services/prometheus.js") }, { name: "prometheus", path: path.join(__dirname, "./utils/services/prometheus.js") },
{ name: "image", path: path.join(__dirname, "./utils/services/image.js")} { name: "image", path: path.join(__dirname, "./utils/services/image.js")},
{ name: "database", path: path.join(__dirname, "./utils/services/database.js")}
] ]
}); });

View file

@ -8,7 +8,7 @@ class ChannelCommand extends Command {
if (this.args.length === 0) return "You need to provide whether I should be enabled or disabled in this channel!"; if (this.args.length === 0) return "You need to provide whether I should be enabled or disabled in this channel!";
if (this.args[0] !== "disable" && this.args[0] !== "enable") return "That's not a valid option!"; if (this.args[0] !== "disable" && this.args[0] !== "enable") return "That's not a valid option!";
const guildDB = await db.getGuild(this.message.channel.guild.id); const guildDB = await db(this.ipc, "getGuild", this.message.channel.guild.id);
if (this.args[0].toLowerCase() === "disable") { if (this.args[0].toLowerCase() === "disable") {
let channel; let channel;
@ -21,7 +21,7 @@ class ChannelCommand extends Command {
channel = this.message.channel; channel = this.message.channel;
} }
await db.disableChannel(channel); await db(this.ipc, "disableChannel", channel);
return `I have been disabled in this channel. To re-enable me, just run \`${guildDB.prefix}channel enable\`.`; return `I have been disabled in this channel. To re-enable me, just run \`${guildDB.prefix}channel enable\`.`;
} else if (this.args[0].toLowerCase() === "enable") { } else if (this.args[0].toLowerCase() === "enable") {
let channel; let channel;
@ -34,7 +34,7 @@ class ChannelCommand extends Command {
channel = this.message.channel; channel = this.message.channel;
} }
await db.enableChannel(channel); await db(this.ipc, "enableChannel", channel);
return "I have been re-enabled in this channel."; return "I have been re-enabled in this channel.";
} }
} }

View file

@ -6,7 +6,7 @@ class CountCommand extends Command {
async run() { async run() {
if (this.message.channel.guild && !this.message.channel.permissionsOf(this.client.user.id).has("addReactions")) return "I don't have the `Add Reactions` permission!"; if (this.message.channel.guild && !this.message.channel.permissionsOf(this.client.user.id).has("addReactions")) return "I don't have the `Add Reactions` permission!";
if (this.message.channel.guild && !this.message.channel.permissionsOf(this.client.user.id).has("embedLinks")) return "I don't have the `Embed Links` permission!"; if (this.message.channel.guild && !this.message.channel.permissionsOf(this.client.user.id).has("embedLinks")) return "I don't have the `Embed Links` permission!";
const counts = await database.getCounts(); const counts = await database(this.ipc, "getCounts");
const countArray = []; const countArray = [];
for (const entry of Object.entries(counts)) { for (const entry of Object.entries(counts)) {
countArray.push(entry); countArray.push(entry);

View file

@ -8,13 +8,13 @@ const Command = require("../../classes/command.js");
class HelpCommand extends Command { class HelpCommand extends Command {
async run() { async run() {
const { prefix } = this.message.channel.guild ? await database.getGuild(this.message.channel.guild.id) : "N/A"; const { prefix } = this.message.channel.guild ? await database(this.ipc, "getGuild", this.message.channel.guild.id) : "N/A";
const commands = collections.commands; const commands = collections.commands;
const aliases = collections.aliases; const aliases = collections.aliases;
if (this.args.length !== 0 && (commands.has(this.args[0].toLowerCase()) || aliases.has(this.args[0].toLowerCase()))) { if (this.args.length !== 0 && (commands.has(this.args[0].toLowerCase()) || aliases.has(this.args[0].toLowerCase()))) {
const command = aliases.has(this.args[0].toLowerCase()) ? collections.aliases.get(this.args[0].toLowerCase()) : this.args[0].toLowerCase(); const command = aliases.has(this.args[0].toLowerCase()) ? collections.aliases.get(this.args[0].toLowerCase()) : this.args[0].toLowerCase();
const info = collections.info.get(command); const info = collections.info.get(command);
const counts = await database.getCounts(); const counts = await database(this.ipc, "getCounts");
const embed = { const embed = {
"embed": { "embed": {
"author": { "author": {

View file

@ -4,10 +4,10 @@ const Command = require("../../classes/command.js");
class PrefixCommand extends Command { class PrefixCommand extends Command {
async run() { async run() {
if (!this.message.channel.guild) return "This command only works in servers!"; if (!this.message.channel.guild) return "This command only works in servers!";
const guild = await database.getGuild(this.message.channel.guild.id); const guild = await database(this.ipc, "getGuild", this.message.channel.guild.id);
if (this.args.length !== 0) { if (this.args.length !== 0) {
if (!this.message.member.permissions.has("administrator") && this.message.member.id !== process.env.OWNER) return "You need to be an administrator to change the bot prefix!"; if (!this.message.member.permissions.has("administrator") && this.message.member.id !== process.env.OWNER) return "You need to be an administrator to change the bot prefix!";
await database.setPrefix(this.args[0], this.message.channel.guild); await database(this.ipc, "setPrefix", this.args[0], this.message.channel.guild);
return `The prefix has been changed to ${this.args[0]}.`; return `The prefix has been changed to ${this.args[0]}.`;
} else { } else {
return `The current prefix is \`${guild.prefix}\`.`; return `The current prefix is \`${guild.prefix}\`.`;

View file

@ -7,7 +7,7 @@ class TagsCommand extends Command {
// todo: find a way to split this into subcommands // todo: find a way to split this into subcommands
async run() { async run() {
if (!this.message.channel.guild) return "This command only works in servers!"; if (!this.message.channel.guild) return "This command only works in servers!";
const guild = await database.getGuild(this.message.channel.guild.id); const guild = await database(this.ipc, "getGuild", this.message.channel.guild.id);
if ((guild.tagsDisabled || guild.tags_disabled) && this.args[0].toLowerCase() !== ("enable" || "disable")) return; if ((guild.tagsDisabled || guild.tags_disabled) && this.args[0].toLowerCase() !== ("enable" || "disable")) return;
if (this.args.length === 0) return "You need to provide the name of the tag you want to view!"; if (this.args.length === 0) return "You need to provide the name of the tag you want to view!";
@ -27,7 +27,7 @@ class TagsCommand extends Command {
if (this.args[1] === undefined) return "You need to provide the name of the tag you want to delete!"; if (this.args[1] === undefined) return "You need to provide the name of the tag you want to delete!";
if (!tags[this.args[1].toLowerCase()]) return "This tag doesn't exist!"; if (!tags[this.args[1].toLowerCase()]) return "This tag doesn't exist!";
if (tags[this.args[1].toLowerCase()].author !== this.message.author.id && !this.message.member.permissions.has("manageMessages") && this.message.author.id !== process.env.OWNER) return "You don't own this tag!"; if (tags[this.args[1].toLowerCase()].author !== this.message.author.id && !this.message.member.permissions.has("manageMessages") && this.message.author.id !== process.env.OWNER) return "You don't own this tag!";
await database.removeTag(this.args[1].toLowerCase(), this.message.channel.guild); await database(this.ipc, "removeTag", this.args[1].toLowerCase(), this.message.channel.guild);
return `The tag \`${this.args[1].toLowerCase()}\` has been deleted!`; return `The tag \`${this.args[1].toLowerCase()}\` has been deleted!`;
case "edit": case "edit":
if (this.args[1] === undefined) return "You need to provide the name of the tag you want to edit!"; if (this.args[1] === undefined) return "You need to provide the name of the tag you want to edit!";
@ -75,7 +75,7 @@ class TagsCommand extends Command {
case "enable": case "enable":
case "disable": case "disable":
if (!this.message.member.permissions.has("manageMessages") && this.message.author.id !== process.env.OWNER) return "You don't have permission to disable tags!"; if (!this.message.member.permissions.has("manageMessages") && this.message.author.id !== process.env.OWNER) return "You don't have permission to disable tags!";
var toggleResult = await database.toggleTags(this.message.channel.guild); var toggleResult = await database(this.ipc, "toggleTags", this.message.channel.guild);
return `Tags for this guild have been ${toggleResult ? "disabled" : "enabled"}. To ${toggleResult ? "enable" : "disable"} them again, run ${guild.prefix}tags ${toggleResult ? "enable" : "disable"}.`; return `Tags for this guild have been ${toggleResult ? "disabled" : "enabled"}. To ${toggleResult ? "enable" : "disable"} them again, run ${guild.prefix}tags ${toggleResult ? "enable" : "disable"}.`;
default: default:
if (!tags[this.args[0].toLowerCase()]) return "This tag doesn't exist!"; if (!tags[this.args[0].toLowerCase()]) return "This tag doesn't exist!";
@ -86,11 +86,11 @@ class TagsCommand extends Command {
async setTag(content, name, message) { async setTag(content, name, message) {
if ((!content || content.length === 0) && message.attachments.length === 0) return "You need to provide the content of the tag!"; if ((!content || content.length === 0) && message.attachments.length === 0) return "You need to provide the content of the tag!";
if (message.attachments.length !== 0 && content) { if (message.attachments.length !== 0 && content) {
await database.setTag(name, { content: `${content} ${message.attachments[0].url}`, author: message.author.id }, message.channel.guild); await database(this.ipc, "setTag", name, { content: `${content} ${message.attachments[0].url}`, author: message.author.id }, message.channel.guild);
} else if (message.attachments.length !== 0) { } else if (message.attachments.length !== 0) {
await database.setTag(name, { content: message.attachments[0].url, author: message.author.id }, message.channel.guild); await database(this.ipc, "setTag", name, { content: message.attachments[0].url, author: message.author.id }, message.channel.guild);
} else { } else {
await database.setTag(name, { content: content, author: message.author.id }, message.channel.guild); await database(this.ipc, "setTag", name, { content: content, author: message.author.id }, message.channel.guild);
} }
return; return;
} }

View file

@ -4,5 +4,5 @@ const logger = require("../utils/logger.js");
// run when the bot is added to a guild // run when the bot is added to a guild
module.exports = async (client, cluster, worker, ipc, guild) => { module.exports = async (client, cluster, worker, ipc, guild) => {
logger.log(`[GUILD JOIN] ${guild.name} (${guild.id}) added the bot.`); logger.log(`[GUILD JOIN] ${guild.name} (${guild.id}) added the bot.`);
await db.addGuild(guild); await db(ipc, "addGuild", guild);
}; };

View file

@ -20,9 +20,9 @@ module.exports = async (client, cluster, worker, ipc, message) => {
if (cachedPrefix) { if (cachedPrefix) {
prefixCandidate = cachedPrefix; prefixCandidate = cachedPrefix;
} else { } else {
let guildDB = await database.getGuild(message.channel.guild.id); let guildDB = await database(ipc, "getGuild", message.channel.guild.id);
if (!guildDB) { if (!guildDB) {
guildDB = await database.fixGuild(message.channel.guild); guildDB = await database(ipc, "fixGuild", message.channel.guild);
} }
prefixCandidate = guildDB.prefix; prefixCandidate = guildDB.prefix;
collections.prefixCache.set(message.channel.guild.id, guildDB.prefix); collections.prefixCache.set(message.channel.guild.id, guildDB.prefix);
@ -64,7 +64,7 @@ module.exports = async (client, cluster, worker, ipc, message) => {
const disabled = collections.disabledCache.get(message.channel.guild.id); const disabled = collections.disabledCache.get(message.channel.guild.id);
if (disabled.includes(message.channel.id) && command != "channel") return; if (disabled.includes(message.channel.id) && command != "channel") return;
} else if (message.channel.guild) { } else if (message.channel.guild) {
const guildDB = await database.getGuild(message.channel.guild.id); const guildDB = await database(ipc, "getGuild", message.channel.guild.id);
collections.disabledCache.set(message.channel.guild.id, guildDB.disabled); collections.disabledCache.set(message.channel.guild.id, guildDB.disabled);
if (guildDB.disabled.includes(message.channel.id) && command !== "channel") return; if (guildDB.disabled.includes(message.channel.id) && command !== "channel") return;
} }
@ -88,7 +88,7 @@ module.exports = async (client, cluster, worker, ipc, message) => {
} }
}; };
try { try {
await database.addCount(collections.aliases.has(command) ? collections.aliases.get(command) : command); await database(ipc, "addCount", collections.aliases.has(command) ? collections.aliases.get(command) : command);
const startTime = new Date(); const startTime = new Date();
// eslint-disable-next-line no-unused-vars // eslint-disable-next-line no-unused-vars
const commandClass = new cmd(client, cluster, worker, ipc, message, parsed._, message.content.substring(prefix.length).trim().replace(command, "").trim(), (({ _, ...o }) => o)(parsed)); // we also provide the message content as a parameter for cases where we need more accuracy const commandClass = new cmd(client, cluster, worker, ipc, message, parsed._, message.content.substring(prefix.length).trim().replace(command, "").trim(), (({ _, ...o }) => o)(parsed)); // we also provide the message content as a parameter for cases where we need more accuracy

View file

@ -100,7 +100,7 @@ class Shard extends BaseClusterWorker {
// connect to lavalink // connect to lavalink
if (!sound.status && !sound.connected) sound.connect(this.bot); if (!sound.status && !sound.connected) sound.connect(this.bot);
database.setup(); database(this.ipc, "setup");
this.activityChanger(); this.activityChanger();
@ -136,7 +136,7 @@ class Shard extends BaseClusterWorker {
for (const command in collections.commands) { for (const command in collections.commands) {
handler.unload(command); handler.unload(command);
} }
require("./utils/database.js").stop(); database(this.ipc, "stop");
done(); done();
} }

View file

@ -1,3 +1,5 @@
// wrapper for the database drivers in ./database/ // wrapper for the database service
module.exports = require(`./database/${process.env.DB ? process.env.DB.split("://")[0] : "dummy"}.js`); module.exports = async (ipc, name, ...args) => {
return ipc.command("database", { name, args }, true);
};

View file

@ -0,0 +1,29 @@
// service wrapper for the database drivers in ../database/
const { BaseServiceWorker } = require("eris-fleet");
const database = require(`../database/${process.env.DB ? process.env.DB.split("://")[0] : "dummy"}.js`);
class DatabaseWorker extends BaseServiceWorker {
constructor(setup) {
super(setup);
this.serviceReady();
}
async handleCommand(data) {
try {
if (database[data.name]) {
return await database[data.name](...data.args);
} else {
throw "Unknown query";
}
} catch (err) {
return { err: typeof err === "string" ? err : err.message };
}
}
shutdown(done) {
database.stop().then(() => done);
}
}
module.exports = DatabaseWorker;

View file

@ -34,7 +34,7 @@ esmbot_connected_workers ${servers.length}
res.write(`esmbot_max_jobs{worker="${i}"} ${w.max}\n`); res.write(`esmbot_max_jobs{worker="${i}"} ${w.max}\n`);
} }
} }
const counts = await database.getCounts(); const counts = await database(this.ipc, "getCounts");
for (const [i, w] of Object.entries(counts)) { for (const [i, w] of Object.entries(counts)) {
res.write(`esmbot_command_count{command="${i}"} ${w}\n`); res.write(`esmbot_command_count{command="${i}"} ${w}\n`);
} }

View file

@ -89,6 +89,7 @@ exports.play = async (client, sound, message, music = false) => {
}; };
exports.nextSong = async (client, message, connection, track, info, music, voiceChannel, loop = false, inQueue = false, lastTrack = null) => { exports.nextSong = async (client, message, connection, track, info, music, voiceChannel, loop = false, inQueue = false, lastTrack = null) => {
this.skipVotes.set(this.message.channel.guild.id, { count: 0, ids: [] });
const parts = Math.floor((0 / info.length) * 10); const parts = Math.floor((0 / info.length) * 10);
let playingMessage; let playingMessage;
if (!music && this.players.get(voiceChannel.guild.id)) { if (!music && this.players.get(voiceChannel.guild.id)) {