Moved database driver-specific code to their own files
This commit is contained in:
parent
d47c7cacbb
commit
5fa5f21289
6 changed files with 249 additions and 251 deletions
2
app.js
2
app.js
|
@ -61,7 +61,7 @@ async function init() {
|
||||||
client.disconnect();
|
client.disconnect();
|
||||||
const db = require("./utils/database.js");
|
const db = require("./utils/database.js");
|
||||||
if (process.env.DB_DRIVER=== "mongo") {
|
if (process.env.DB_DRIVER=== "mongo") {
|
||||||
db.connection.close(() => {
|
db.connection.disconnect(() => {
|
||||||
process.exit(0);
|
process.exit(0);
|
||||||
});
|
});
|
||||||
} else if (process.env.DB_DRIVER=== "postgres") {
|
} else if (process.env.DB_DRIVER=== "postgres") {
|
||||||
|
|
|
@ -15,7 +15,7 @@ module.exports = async () => {
|
||||||
// connect to lavalink
|
// connect to lavalink
|
||||||
if (!soundPlayer.status && !soundPlayer.connected) await soundPlayer.connect();
|
if (!soundPlayer.status && !soundPlayer.connected) await soundPlayer.connect();
|
||||||
|
|
||||||
await database.handleCounts();
|
await database.setup();
|
||||||
|
|
||||||
// generate docs
|
// generate docs
|
||||||
if (helpGenerator && first) await helpGenerator(process.env.OUTPUT);
|
if (helpGenerator && first) await helpGenerator(process.env.OUTPUT);
|
||||||
|
|
|
@ -1,10 +1,7 @@
|
||||||
require("dotenv").config();
|
require("dotenv").config();
|
||||||
const { Pool } = require("pg");
|
const { Pool } = require("pg");
|
||||||
const pool = new Pool({
|
const pool = new Pool({
|
||||||
user: "esmbot",
|
connectionString: process.env.DB
|
||||||
host: "localhost",
|
|
||||||
database: "esmbot",
|
|
||||||
port: 5432
|
|
||||||
});
|
});
|
||||||
const mongoose = require("mongoose");
|
const mongoose = require("mongoose");
|
||||||
mongoose.connect(process.env.MONGO, { poolSize: 10, bufferMaxEntries: 0, useNewUrlParser: true, useUnifiedTopology: true });
|
mongoose.connect(process.env.MONGO, { poolSize: 10, bufferMaxEntries: 0, useNewUrlParser: true, useUnifiedTopology: true });
|
||||||
|
|
|
@ -1,246 +1,3 @@
|
||||||
// database stuff
|
// wrapper for the database drivers in ./database/
|
||||||
const logger = require("./logger.js");
|
|
||||||
const collections = require("../utils/collections.js");
|
|
||||||
const misc = require("./misc.js");
|
|
||||||
|
|
||||||
if (process.env.DB_DRIVER=== "mongo") {
|
module.exports = require(`./database/${process.env.DB_DRIVER}.js`);
|
||||||
const mongoose = require("mongoose");
|
|
||||||
mongoose.connect(process.env.DB, {
|
|
||||||
poolSize: 10,
|
|
||||||
bufferMaxEntries: 0,
|
|
||||||
useNewUrlParser: true,
|
|
||||||
useUnifiedTopology: true,
|
|
||||||
});
|
|
||||||
const guildSchema = new mongoose.Schema({
|
|
||||||
id: String,
|
|
||||||
tags: Map,
|
|
||||||
prefix: String,
|
|
||||||
disabled: [String],
|
|
||||||
tagsDisabled: Boolean
|
|
||||||
});
|
|
||||||
const Guild = mongoose.model("Guild", guildSchema);
|
|
||||||
|
|
||||||
const globalSchema = new mongoose.Schema({
|
|
||||||
cmdCounts: Map,
|
|
||||||
});
|
|
||||||
const Global = mongoose.model("Global", globalSchema);
|
|
||||||
|
|
||||||
exports.guilds = Guild;
|
|
||||||
exports.global = Global;
|
|
||||||
exports.connection = mongoose.connection;
|
|
||||||
} else if (process.env.DB_DRIVER=== "postgres") {
|
|
||||||
const { Pool } = require("pg");
|
|
||||||
const pool = new Pool({
|
|
||||||
connectionString: process.env.DB
|
|
||||||
});
|
|
||||||
exports.connection = pool;
|
|
||||||
}
|
|
||||||
|
|
||||||
exports.getGuild = async (query) => {
|
|
||||||
if (process.env.DB_DRIVER=== "mongo") {
|
|
||||||
return await this.guilds.findOne({ id: query });
|
|
||||||
} else if (process.env.DB_DRIVER=== "postgres") {
|
|
||||||
return (await this.connection.query("SELECT * FROM guilds WHERE guild_id = $1", [query])).rows[0];
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
exports.setPrefix = async (prefix, guild) => {
|
|
||||||
if (process.env.DB_DRIVER=== "mongo") {
|
|
||||||
const guildDB = await this.getGuild(guild.id);
|
|
||||||
guildDB.prefix = prefix;
|
|
||||||
await guildDB.save();
|
|
||||||
collections.prefixCache.set(guild.id, prefix);
|
|
||||||
} else if (process.env.DB_DRIVER=== "postgres") {
|
|
||||||
await this.connection.query("UPDATE guilds SET prefix = $1 WHERE guild_id = $2", [prefix, guild.id]);
|
|
||||||
collections.prefixCache.set(guild.id, prefix);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
exports.setTag = async (name, content, guild) => {
|
|
||||||
if (process.env.DB_DRIVER=== "mongo") {
|
|
||||||
const guildDB = await this.getGuild(guild.id);
|
|
||||||
guildDB.tags[name] = content;
|
|
||||||
await guildDB.save();
|
|
||||||
} else if (process.env.DB_DRIVER=== "postgres") {
|
|
||||||
const guildDB = await this.getGuild(guild.id);
|
|
||||||
guildDB.tags[name] = content;
|
|
||||||
await this.connection.query("UPDATE guilds SET tags = $1 WHERE guild_id = $2", [guildDB.tags, guild.id]);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
exports.removeTag = async (name, guild) => {
|
|
||||||
if (process.env.DB_DRIVER=== "mongo") {
|
|
||||||
const guildDB = await this.getGuild(guild.id);
|
|
||||||
delete guildDB.tags[name];
|
|
||||||
await guildDB.save();
|
|
||||||
} else if (process.env.DB_DRIVER=== "postgres") {
|
|
||||||
const guildDB = await this.getGuild(guild.id);
|
|
||||||
delete guildDB.tags[name];
|
|
||||||
await this.connection.query("UPDATE guilds SET tags = $1 WHERE guild_id = $2", [guildDB.tags, guild.id]);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
exports.toggleTags = async (guild) => {
|
|
||||||
if (process.env.DB_DRIVER=== "mongo") {
|
|
||||||
const guildDB = await this.getGuild(guild.id);
|
|
||||||
guildDB.tagsDisabled = !guildDB.tagsDisabled;
|
|
||||||
await guildDB.save();
|
|
||||||
return guildDB.tagsDisabled;
|
|
||||||
} else if (process.env.DB_DRIVER=== "postgres") {
|
|
||||||
const guildDB = await this.getGuild(guild.id);
|
|
||||||
guildDB.tags_disabled = !guildDB.tags_disabled;
|
|
||||||
await this.connection.query("UPDATE guilds SET tags_disabled = $1 WHERE guild_id = $2", [guildDB.tags_disabled, guild.id]);
|
|
||||||
return guildDB.tags_disabled;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
exports.disableChannel = async (channel) => {
|
|
||||||
if (process.env.DB_DRIVER=== "mongo") {
|
|
||||||
const guildDB = await this.getGuild(channel.guild.id);
|
|
||||||
guildDB.disabled.push(channel.id);
|
|
||||||
await guildDB.save();
|
|
||||||
collections.disabledCache.set(channel.guild.id, guildDB.disabled);
|
|
||||||
} else if (process.env.DB_DRIVER=== "postgres") {
|
|
||||||
const guildDB = await this.getGuild(channel.guild.id);
|
|
||||||
await this.connection.query("UPDATE guilds SET disabled = $1 WHERE guild_id = $2", [[...guildDB.disabled, channel.id], channel.guild.id]);
|
|
||||||
collections.disabledCache.set(channel.guild.id, guildDB.disabled);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
exports.enableChannel = async (channel) => {
|
|
||||||
if (process.env.DB_DRIVER=== "mongo") {
|
|
||||||
const guildDB = await this.getGuild(channel.guild.id);
|
|
||||||
guildDB.disabled = guildDB.disabled.filter(item => item !== channel.id);
|
|
||||||
await guildDB.save();
|
|
||||||
collections.disabledCache.set(channel.guild.id, guildDB.disabled);
|
|
||||||
} else if (process.env.DB_DRIVER=== "postgres") {
|
|
||||||
const guildDB = await this.getGuild(channel.guild.id);
|
|
||||||
const newDisabled = guildDB.disabled.filter(item => item !== channel.id);
|
|
||||||
await this.connection.query("UPDATE guilds SET disabled = $1 WHERE guild_id = $2", [newDisabled, channel.guild.id]);
|
|
||||||
collections.disabledCache.set(channel.guild.id, guildDB.disabled);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
exports.getCounts = async () => {
|
|
||||||
if (process.env.DB_DRIVER=== "mongo") {
|
|
||||||
return [...(await this.global.findOne({})).cmdCounts.entries()];
|
|
||||||
} else if (process.env.DB_DRIVER=== "postgres") {
|
|
||||||
const counts = await this.connection.query("SELECT * FROM counts");
|
|
||||||
const countArray = [];
|
|
||||||
for (const { command, count } of counts.rows) {
|
|
||||||
countArray.push([command, count]);
|
|
||||||
}
|
|
||||||
return countArray;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
exports.addCount = async (command) => {
|
|
||||||
if (process.env.DB_DRIVER=== "mongo") {
|
|
||||||
const global = await this.global.findOne({});
|
|
||||||
const count = global.cmdCounts.get(command);
|
|
||||||
global.cmdCounts.set(command, parseInt(count) + 1);
|
|
||||||
await global.save();
|
|
||||||
} else if (process.env.DB_DRIVER=== "postgres") {
|
|
||||||
const count = await this.connection.query("SELECT * FROM counts WHERE command = $1", [command]);
|
|
||||||
await this.connection.query("UPDATE counts SET count = $1 WHERE command = $2", [count.rows[0].count + 1, command]);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
exports.addGuild = async (guild) => {
|
|
||||||
if (process.env.DB_DRIVER=== "mongo") {
|
|
||||||
const guildDB = new this.guilds({
|
|
||||||
id: guild.id,
|
|
||||||
tags: misc.tagDefaults,
|
|
||||||
prefix: process.env.PREFIX,
|
|
||||||
disabled: [],
|
|
||||||
tagsDisabled: false
|
|
||||||
});
|
|
||||||
await guildDB.save();
|
|
||||||
return guildDB;
|
|
||||||
} else if (process.env.DB_DRIVER=== "postgres") {
|
|
||||||
await this.connection.query("INSERT INTO guilds (guild_id, tags, prefix, warns, disabled, tags_disabled) VALUES ($1, $2, $3, $4, $5, $6)", [guild.id, misc.tagDefaults, process.env.PREFIX, {}, [], false]);
|
|
||||||
return await this.getGuild(guild.id);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
exports.fixGuild = async (guild) => {
|
|
||||||
if (process.env.DB_DRIVER=== "mongo") {
|
|
||||||
const guildDB = await this.guilds.findOne({ id: guild.id });
|
|
||||||
if (!guildDB) {
|
|
||||||
logger.log(`Registering guild database entry for guild ${guild.id}...`);
|
|
||||||
return await this.addGuild(guild);
|
|
||||||
} else {
|
|
||||||
if (!guildDB.disabled && guildDB.disabledChannels) {
|
|
||||||
guildDB.set("disabled", guildDB.disabledChannels);
|
|
||||||
guildDB.set("disabledChannels", undefined);
|
|
||||||
await guildDB.save();
|
|
||||||
return guildDB;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if (process.env.DB_DRIVER=== "postgres") {
|
|
||||||
const guildDB = await this.connection.query("SELECT * FROM guilds WHERE guild_id = $1", [guild.id]);
|
|
||||||
if (guildDB.rows.length === 0) {
|
|
||||||
logger.log(`Registering guild database entry for guild ${guild.id}...`);
|
|
||||||
return await this.addGuild(guild);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
exports.handleCounts = async () => {
|
|
||||||
if (process.env.DB_DRIVER=== "mongo") {
|
|
||||||
const global = await this.global.findOne({});
|
|
||||||
if (!global) {
|
|
||||||
const countObject = {};
|
|
||||||
for (const command of collections.commands.keys()) {
|
|
||||||
countObject[command] = 0;
|
|
||||||
}
|
|
||||||
const newGlobal = new this.global({
|
|
||||||
cmdCounts: countObject
|
|
||||||
});
|
|
||||||
await newGlobal.save();
|
|
||||||
} else {
|
|
||||||
const exists = [];
|
|
||||||
for (const command of collections.commands.keys()) {
|
|
||||||
if (!global.cmdCounts.has(command)) {
|
|
||||||
global.cmdCounts.set(command, 0);
|
|
||||||
}
|
|
||||||
exists.push(command);
|
|
||||||
}
|
|
||||||
|
|
||||||
for (const command of global.cmdCounts.keys()) {
|
|
||||||
if (!exists.includes(command)) {
|
|
||||||
global.cmdCounts.set(command, undefined);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
await global.save();
|
|
||||||
}
|
|
||||||
} else if (process.env.DB_DRIVER=== "postgres") {
|
|
||||||
let counts;
|
|
||||||
try {
|
|
||||||
counts = await this.connection.query("SELECT * FROM counts");
|
|
||||||
} catch {
|
|
||||||
counts = { rows: [] };
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!counts.rows[0]) {
|
|
||||||
for (const command of collections.commands.keys()) {
|
|
||||||
await this.connection.query("INSERT INTO counts (command, count) VALUES ($1, $2)", [command, 0]);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
const exists = [];
|
|
||||||
for (const command of collections.commands.keys()) {
|
|
||||||
const count = await this.connection.query("SELECT * FROM counts WHERE command = $1", [command]);
|
|
||||||
if (!count.rows[0]) {
|
|
||||||
await this.connection.query("INSERT INTO counts (command, count) VALUES ($1, $2)", [command, 0]);
|
|
||||||
}
|
|
||||||
exists.push(command);
|
|
||||||
}
|
|
||||||
|
|
||||||
for (const { command } of counts.rows) {
|
|
||||||
if (!exists.includes(command)) {
|
|
||||||
await this.connection.query("DELETE FROM counts WHERE command = $1", [command]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
137
utils/database/mongo.js
Normal file
137
utils/database/mongo.js
Normal file
|
@ -0,0 +1,137 @@
|
||||||
|
const collections = require("../collections.js");
|
||||||
|
const logger = require("../logger.js");
|
||||||
|
const misc = require("../misc.js");
|
||||||
|
|
||||||
|
const mongoose = require("mongoose");
|
||||||
|
mongoose.connect(process.env.DB, {
|
||||||
|
poolSize: 10,
|
||||||
|
bufferMaxEntries: 0,
|
||||||
|
useNewUrlParser: true,
|
||||||
|
useUnifiedTopology: true,
|
||||||
|
});
|
||||||
|
const guildSchema = new mongoose.Schema({
|
||||||
|
id: String,
|
||||||
|
tags: Map,
|
||||||
|
prefix: String,
|
||||||
|
disabled: [String],
|
||||||
|
tagsDisabled: Boolean
|
||||||
|
});
|
||||||
|
const Guild = mongoose.model("Guild", guildSchema);
|
||||||
|
|
||||||
|
const globalSchema = new mongoose.Schema({
|
||||||
|
cmdCounts: Map,
|
||||||
|
});
|
||||||
|
const Global = mongoose.model("Global", globalSchema);
|
||||||
|
|
||||||
|
exports.connection = mongoose.connection;
|
||||||
|
|
||||||
|
exports.getGuild = async (query) => {
|
||||||
|
return await Guild.findOne({ id: query });
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.setPrefix = async (prefix, guild) => {
|
||||||
|
const guildDB = await this.getGuild(guild.id);
|
||||||
|
guildDB.prefix = prefix;
|
||||||
|
await guildDB.save();
|
||||||
|
collections.prefixCache.set(guild.id, prefix);
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.setTag = async (name, content, guild) => {
|
||||||
|
const guildDB = await this.getGuild(guild.id);
|
||||||
|
guildDB.tags[name] = content;
|
||||||
|
await guildDB.save();
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.removeTag = async (name, guild) => {
|
||||||
|
const guildDB = await this.getGuild(guild.id);
|
||||||
|
delete guildDB.tags[name];
|
||||||
|
await guildDB.save();
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.toggleTags = async (guild) => {
|
||||||
|
const guildDB = await this.getGuild(guild.id);
|
||||||
|
guildDB.tagsDisabled = !guildDB.tagsDisabled;
|
||||||
|
await guildDB.save();
|
||||||
|
return guildDB.tagsDisabled;
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.disableChannel = async (channel) => {
|
||||||
|
const guildDB = await this.getGuild(channel.guild.id);
|
||||||
|
guildDB.disabled.push(channel.id);
|
||||||
|
await guildDB.save();
|
||||||
|
collections.disabledCache.set(channel.guild.id, guildDB.disabled);
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.enableChannel = async (channel) => {
|
||||||
|
const guildDB = await this.getGuild(channel.guild.id);
|
||||||
|
guildDB.disabled = guildDB.disabled.filter(item => item !== channel.id);
|
||||||
|
await guildDB.save();
|
||||||
|
collections.disabledCache.set(channel.guild.id, guildDB.disabled);
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.getCounts = async () => {
|
||||||
|
return [...(await Global.findOne({})).cmdCounts.entries()];
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.addCount = async (command) => {
|
||||||
|
const global = await Global.findOne({});
|
||||||
|
const count = global.cmdCounts.get(command);
|
||||||
|
global.cmdCounts.set(command, parseInt(count) + 1);
|
||||||
|
await global.save();
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.addGuild = async (guild) => {
|
||||||
|
const guildDB = new Guild({
|
||||||
|
id: guild.id,
|
||||||
|
tags: misc.tagDefaults,
|
||||||
|
prefix: process.env.PREFIX,
|
||||||
|
disabled: [],
|
||||||
|
tagsDisabled: false
|
||||||
|
});
|
||||||
|
await guildDB.save();
|
||||||
|
return guildDB;
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.fixGuild = async (guild) => {
|
||||||
|
const guildDB = await Guild.findOne({ id: guild.id });
|
||||||
|
if (!guildDB) {
|
||||||
|
logger.log(`Registering guild database entry for guild ${guild.id}...`);
|
||||||
|
return await this.addGuild(guild);
|
||||||
|
} else {
|
||||||
|
if (!guildDB.disabled && guildDB.disabledChannels) {
|
||||||
|
guildDB.set("disabled", guildDB.disabledChannels);
|
||||||
|
guildDB.set("disabledChannels", undefined);
|
||||||
|
await guildDB.save();
|
||||||
|
return guildDB;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.setup = async () => {
|
||||||
|
const global = await Global.findOne({});
|
||||||
|
if (!global) {
|
||||||
|
const countObject = {};
|
||||||
|
for (const command of collections.commands.keys()) {
|
||||||
|
countObject[command] = 0;
|
||||||
|
}
|
||||||
|
const newGlobal = new Global({
|
||||||
|
cmdCounts: countObject
|
||||||
|
});
|
||||||
|
await newGlobal.save();
|
||||||
|
} else {
|
||||||
|
const exists = [];
|
||||||
|
for (const command of collections.commands.keys()) {
|
||||||
|
if (!global.cmdCounts.has(command)) {
|
||||||
|
global.cmdCounts.set(command, 0);
|
||||||
|
}
|
||||||
|
exists.push(command);
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const command of global.cmdCounts.keys()) {
|
||||||
|
if (!exists.includes(command)) {
|
||||||
|
global.cmdCounts.set(command, undefined);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
await global.save();
|
||||||
|
}
|
||||||
|
};
|
107
utils/database/postgres.js
Normal file
107
utils/database/postgres.js
Normal file
|
@ -0,0 +1,107 @@
|
||||||
|
const collections = require("../collections.js");
|
||||||
|
const logger = require("../logger.js");
|
||||||
|
const misc = require("../misc.js");
|
||||||
|
|
||||||
|
const { Pool } = require("pg");
|
||||||
|
const pool = new Pool({
|
||||||
|
connectionString: process.env.DB
|
||||||
|
});
|
||||||
|
const connection = pool;
|
||||||
|
|
||||||
|
exports.getGuild = async (query) => {
|
||||||
|
return (await connection.query("SELECT * FROM guilds WHERE guild_id = $1", [query])).rows[0];
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.setPrefix = async (prefix, guild) => {
|
||||||
|
await connection.query("UPDATE guilds SET prefix = $1 WHERE guild_id = $2", [prefix, guild.id]);
|
||||||
|
collections.prefixCache.set(guild.id, prefix);
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.setTag = async (name, content, guild) => {
|
||||||
|
const guildDB = await this.getGuild(guild.id);
|
||||||
|
guildDB.tags[name] = content;
|
||||||
|
await connection.query("UPDATE guilds SET tags = $1 WHERE guild_id = $2", [guildDB.tags, guild.id]);
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.removeTag = async (name, guild) => {
|
||||||
|
const guildDB = await this.getGuild(guild.id);
|
||||||
|
delete guildDB.tags[name];
|
||||||
|
await connection.query("UPDATE guilds SET tags = $1 WHERE guild_id = $2", [guildDB.tags, guild.id]);
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.toggleTags = async (guild) => {
|
||||||
|
const guildDB = await this.getGuild(guild.id);
|
||||||
|
guildDB.tags_disabled = !guildDB.tags_disabled;
|
||||||
|
await connection.query("UPDATE guilds SET tags_disabled = $1 WHERE guild_id = $2", [guildDB.tags_disabled, guild.id]);
|
||||||
|
return guildDB.tags_disabled;
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.disableChannel = async (channel) => {
|
||||||
|
const guildDB = await this.getGuild(channel.guild.id);
|
||||||
|
await connection.query("UPDATE guilds SET disabled = $1 WHERE guild_id = $2", [[...guildDB.disabled, channel.id], channel.guild.id]);
|
||||||
|
collections.disabledCache.set(channel.guild.id, guildDB.disabled);
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.enableChannel = async (channel) => {
|
||||||
|
const guildDB = await this.getGuild(channel.guild.id);
|
||||||
|
const newDisabled = guildDB.disabled.filter(item => item !== channel.id);
|
||||||
|
await connection.query("UPDATE guilds SET disabled = $1 WHERE guild_id = $2", [newDisabled, channel.guild.id]);
|
||||||
|
collections.disabledCache.set(channel.guild.id, guildDB.disabled);
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.getCounts = async () => {
|
||||||
|
const counts = await connection.query("SELECT * FROM counts");
|
||||||
|
const countArray = [];
|
||||||
|
for (const { command, count } of counts.rows) {
|
||||||
|
countArray.push([command, count]);
|
||||||
|
}
|
||||||
|
return countArray;
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.addCount = async (command) => {
|
||||||
|
const count = await connection.query("SELECT * FROM counts WHERE command = $1", [command]);
|
||||||
|
await connection.query("UPDATE counts SET count = $1 WHERE command = $2", [count.rows[0].count + 1, command]);
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.addGuild = async (guild) => {
|
||||||
|
await connection.query("INSERT INTO guilds (guild_id, tags, prefix, warns, disabled, tags_disabled) VALUES ($1, $2, $3, $4, $5, $6)", [guild.id, misc.tagDefaults, process.env.PREFIX, {}, [], false]);
|
||||||
|
return await this.getGuild(guild.id);
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.fixGuild = async (guild) => {
|
||||||
|
const guildDB = await connection.query("SELECT * FROM guilds WHERE guild_id = $1", [guild.id]);
|
||||||
|
if (guildDB.rows.length === 0) {
|
||||||
|
logger.log(`Registering guild database entry for guild ${guild.id}...`);
|
||||||
|
return await this.addGuild(guild);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.setup = async () => {
|
||||||
|
let counts;
|
||||||
|
try {
|
||||||
|
counts = await connection.query("SELECT * FROM counts");
|
||||||
|
} catch {
|
||||||
|
counts = { rows: [] };
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!counts.rows[0]) {
|
||||||
|
for (const command of collections.commands.keys()) {
|
||||||
|
await connection.query("INSERT INTO counts (command, count) VALUES ($1, $2)", [command, 0]);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
const exists = [];
|
||||||
|
for (const command of collections.commands.keys()) {
|
||||||
|
const count = await connection.query("SELECT * FROM counts WHERE command = $1", [command]);
|
||||||
|
if (!count.rows[0]) {
|
||||||
|
await connection.query("INSERT INTO counts (command, count) VALUES ($1, $2)", [command, 0]);
|
||||||
|
}
|
||||||
|
exists.push(command);
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const { command } of counts.rows) {
|
||||||
|
if (!exists.includes(command)) {
|
||||||
|
await connection.query("DELETE FROM counts WHERE command = $1", [command]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
Loading…
Reference in a new issue