fix banking db calls, add permission check for settings command
This commit is contained in:
8 files changed
+77
-49
No files matched your search
+12
-12
@@ -111,7 +111,7 @@ module.exports = {
|
|||||||
return interaction.send(`You are not allowed to use the bot in this channel.`);
|
return interaction.send(`You are not allowed to use the bot in this channel.`);
|
||||||
}
|
}
|
||||||
|
|
||||||
let banking = await client.dbo.collection("banking").findOne({"account.userID": interaction.member.user.id}).then(banking => banking);
|
let banking = await client.dbo.collection("banks").findOne({"account.userID": interaction.member.user.id}).then(banking => banking);
|
||||||
|
|
||||||
if (!banking) {
|
if (!banking) {
|
||||||
banking = {
|
banking = {
|
||||||
@@ -198,7 +198,7 @@ module.exports = {
|
|||||||
newBalance = banking.guilds[guildDB.serverID].account.balance + args[0].options[0].value;
|
newBalance = banking.guilds[guildDB.serverID].account.balance + args[0].options[0].value;
|
||||||
newCash = Math.abs(banking.guilds[guildDB.serverID].account.cash.toFixed(2) - args[0].options[0].value);
|
newCash = Math.abs(banking.guilds[guildDB.serverID].account.cash.toFixed(2) - args[0].options[0].value);
|
||||||
|
|
||||||
client.dbo.collection("banking").updateOne({"account.userID":interaction.member.user.id},{$set:{[`banking.guilds.${guildDB.serverID}.account.balance`]:newBalance,[`banking.guilds.${guildDB.serverID}.account.cash`]:newCash}}, function(err, res) {
|
client.dbo.collection("banks").updateOne({"account.userID":interaction.member.user.id},{$set:{[`banking.guilds.${guildDB.serverID}.account.balance`]:newBalance,[`banking.guilds.${guildDB.serverID}.account.cash`]:newCash}}, function(err, res) {
|
||||||
if (err) {
|
if (err) {
|
||||||
client.log(err);
|
client.log(err);
|
||||||
const embed = new MessageEmbed()
|
const embed = new MessageEmbed()
|
||||||
@@ -239,7 +239,7 @@ module.exports = {
|
|||||||
newBalance = banking.guilds[guildDB.serverID].account.balance - args[0].options[0].value;
|
newBalance = banking.guilds[guildDB.serverID].account.balance - args[0].options[0].value;
|
||||||
newCash = banking.guilds[guildDB.serverID].account.cash + args[0].options[0].value;
|
newCash = banking.guilds[guildDB.serverID].account.cash + args[0].options[0].value;
|
||||||
|
|
||||||
client.dbo.collection("banking").updateOne({"account.userID":interaction.member.user.id},{$set:{[`banking.guilds.${guildDB.serverID}.account.balance`]:newBalance,[`banking.guilds.${guildDB.serverID}.account.cash`]:newCash}}, function(err, res) {
|
client.dbo.collection("banks").updateOne({"account.userID":interaction.member.user.id},{$set:{[`banking.guilds.${guildDB.serverID}.account.balance`]:newBalance,[`banking.guilds.${guildDB.serverID}.account.cash`]:newCash}}, function(err, res) {
|
||||||
if (err) {
|
if (err) {
|
||||||
client.log(err);
|
client.log(err);
|
||||||
const embed = new MessageEmbed()
|
const embed = new MessageEmbed()
|
||||||
@@ -276,7 +276,7 @@ module.exports = {
|
|||||||
// Show target users balance
|
// Show target users balance
|
||||||
|
|
||||||
let targetUserID = args[0].options[0].value.replace('<@!', '').replace('>', '');
|
let targetUserID = args[0].options[0].value.replace('<@!', '').replace('>', '');
|
||||||
let targetUserBanking = await client.dbo.collection("banking").findOne({"account.userID": targetUserID}).then(banking => banking);
|
let targetUserBanking = await client.dbo.collection("banks").findOne({"account.userID": targetUserID}).then(banking => banking);
|
||||||
|
|
||||||
if (!targetUserBanking) {
|
if (!targetUserBanking) {
|
||||||
banking = {
|
banking = {
|
||||||
@@ -353,7 +353,7 @@ module.exports = {
|
|||||||
|
|
||||||
newCash = banking.guilds[guildDB.serverID].account.cash - args[0].options[1].value;
|
newCash = banking.guilds[guildDB.serverID].account.cash - args[0].options[1].value;
|
||||||
|
|
||||||
client.dbo.collection("banking").updateOne({"account.userID":interaction.member.user.id},{$set:{[`banking.guilds.${guildDB.serverID}.account.cash`]:newCash}}, function(err, res) {
|
client.dbo.collection("banks").updateOne({"account.userID":interaction.member.user.id},{$set:{[`banking.guilds.${guildDB.serverID}.account.cash`]:newCash}}, function(err, res) {
|
||||||
if (err) {
|
if (err) {
|
||||||
client.log(err);
|
client.log(err);
|
||||||
const embed = new MessageEmbed()
|
const embed = new MessageEmbed()
|
||||||
@@ -423,7 +423,7 @@ module.exports = {
|
|||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
let targetUserBanking = await client.dbo.collection("banking").findOne({"account.userID": targetUserID}).then(banking => banking);
|
let targetUserBanking = await client.dbo.collection("banks").findOne({"account.userID": targetUserID}).then(banking => banking);
|
||||||
|
|
||||||
if (!targetUserBanking) {
|
if (!targetUserBanking) {
|
||||||
targetUserBanking = {
|
targetUserBanking = {
|
||||||
@@ -434,7 +434,7 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
client.dbo.collection("banking").insertOne(targetUserBanking, function(err, res) {
|
client.dbo.collection("banks").insertOne(targetUserBanking, function(err, res) {
|
||||||
if (err) {
|
if (err) {
|
||||||
client.log(err);
|
client.log(err);
|
||||||
const embed = new MessageEmbed()
|
const embed = new MessageEmbed()
|
||||||
@@ -447,7 +447,7 @@ module.exports = {
|
|||||||
} else {
|
} else {
|
||||||
let newTargetCash = targetUserBanking.account.cash + args[0].options[1].value;
|
let newTargetCash = targetUserBanking.account.cash + args[0].options[1].value;
|
||||||
|
|
||||||
client.dbo.collection("banking").updateOne({"account.userID": targetUserID}, {$set: {[`banking.guilds.${guildDB.serverID}.account.cash`]: newTargetCash}}, function(err, res) {
|
client.dbo.collection("banks").updateOne({"account.userID": targetUserID}, {$set: {[`banking.guilds.${guildDB.serverID}.account.cash`]: newTargetCash}}, function(err, res) {
|
||||||
if (err) {
|
if (err) {
|
||||||
client.log(err);
|
client.log(err);
|
||||||
const embed = new MessageEmbed()
|
const embed = new MessageEmbed()
|
||||||
@@ -479,7 +479,7 @@ module.exports = {
|
|||||||
|
|
||||||
newBalance = banking.guilds[guildDB.serverID].account.balance - args[0].options[1].value;
|
newBalance = banking.guilds[guildDB.serverID].account.balance - args[0].options[1].value;
|
||||||
|
|
||||||
client.dbo.collection("banking").updateOne({"account.userID":interaction.member.user.id},{$set:{[`banking.guilds.${guildDB.serverID}.account.balance`]:newBalance}}, function(err, res) {
|
client.dbo.collection("banks").updateOne({"account.userID":interaction.member.user.id},{$set:{[`banking.guilds.${guildDB.serverID}.account.balance`]:newBalance}}, function(err, res) {
|
||||||
if (err) {
|
if (err) {
|
||||||
client.log(err);
|
client.log(err);
|
||||||
const embed = new MessageEmbed()
|
const embed = new MessageEmbed()
|
||||||
@@ -491,7 +491,7 @@ module.exports = {
|
|||||||
});
|
});
|
||||||
|
|
||||||
let targetUserID = args[0].options[0].value.replace('<@!', '').replace('>', '');
|
let targetUserID = args[0].options[0].value.replace('<@!', '').replace('>', '');
|
||||||
let targetUserBanking = await client.dbo.collection("banking").findOne({"account.userID": targetUserID}).then(banking => banking);
|
let targetUserBanking = await client.dbo.collection("banks").findOne({"account.userID": targetUserID}).then(banking => banking);
|
||||||
|
|
||||||
if (!targetUserBanking) {
|
if (!targetUserBanking) {
|
||||||
targetUserBanking = {
|
targetUserBanking = {
|
||||||
@@ -502,7 +502,7 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
client.dbo.collection("banking").insertOne(targetUserBanking, function(err, res) {
|
client.dbo.collection("banks").insertOne(targetUserBanking, function(err, res) {
|
||||||
if (err) {
|
if (err) {
|
||||||
client.log(err);
|
client.log(err);
|
||||||
const embed = new MessageEmbed()
|
const embed = new MessageEmbed()
|
||||||
@@ -515,7 +515,7 @@ module.exports = {
|
|||||||
} else {
|
} else {
|
||||||
let newTargetBalance = targetUserBanking.account.balance + args[0].options[1].value;
|
let newTargetBalance = targetUserBanking.account.balance + args[0].options[1].value;
|
||||||
|
|
||||||
client.dbo.collection("banking").updateOne({"account.userID":targetUserID},{$set:{[`banking.guilds.${guildDB.serverID}.account.balance`]:newTargetBalance}}, function(err, res) {
|
client.dbo.collection("banks").updateOne({"account.userID":targetUserID},{$set:{[`banking.guilds.${guildDB.serverID}.account.balance`]:newTargetBalance}}, function(err, res) {
|
||||||
if (err) {
|
if (err) {
|
||||||
client.log(err);
|
client.log(err);
|
||||||
const embed = new MessageEmbed()
|
const embed = new MessageEmbed()
|
||||||
|
|||||||
+2
-2
@@ -56,7 +56,7 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const targetUserID = args[0].options[0].value.replace('<@!', '').replace('>', '');
|
const targetUserID = args[0].options[0].value.replace('<@!', '').replace('>', '');
|
||||||
let banking = await client.dbo.collection("banking").findOne({"account.userID": targetUserID}).then(banking => banking);
|
let banking = await client.dbo.collection("banks").findOne({"account.userID": targetUserID}).then(banking => banking);
|
||||||
|
|
||||||
if (!banking) {
|
if (!banking) {
|
||||||
banking = {
|
banking = {
|
||||||
@@ -102,7 +102,7 @@ module.exports = {
|
|||||||
|
|
||||||
const newTargetBalance = banking.guilds[guildDB.serverID].account.balance - args[0].options[1].value;
|
const newTargetBalance = banking.guilds[guildDB.serverID].account.balance - args[0].options[1].value;
|
||||||
|
|
||||||
client.dbo.collection("banking").updateOne({"account.userID":targetUserID},{$set:{[`banking.guilds.${guildDB.serverID}.account.balance`]:newTargetBalance}}, function(err, res) {
|
client.dbo.collection("banks").updateOne({"account.userID":targetUserID},{$set:{[`banking.guilds.${guildDB.serverID}.account.balance`]:newTargetBalance}}, function(err, res) {
|
||||||
if (err) {
|
if (err) {
|
||||||
client.log(err);
|
client.log(err);
|
||||||
const embed = new MessageEmbed()
|
const embed = new MessageEmbed()
|
||||||
|
|||||||
+3
-3
@@ -69,7 +69,7 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let targetUserID = args[0].options[0].value.replace('<@!', '').replace('>', '');
|
let targetUserID = args[0].options[0].value.replace('<@!', '').replace('>', '');
|
||||||
let banking = await client.dbo.collection("banking").findOne({"account.userID": targetUserID}).then(banking => banking);
|
let banking = await client.dbo.collection("banks").findOne({"account.userID": targetUserID}).then(banking => banking);
|
||||||
|
|
||||||
if (!banking) {
|
if (!banking) {
|
||||||
banking = {
|
banking = {
|
||||||
@@ -118,7 +118,7 @@ module.exports = {
|
|||||||
|
|
||||||
let newBalance = banking.guilds[guildDB.serverID].account.balance + args[0].options[1].value;
|
let newBalance = banking.guilds[guildDB.serverID].account.balance + args[0].options[1].value;
|
||||||
|
|
||||||
client.dbo.collection("banking").updateOne({"account.userID":targetUserID},{$set:{[`banking.guilds.${guildDB.serverID}.account.balance`]:newBalance}}, function(err, res) {
|
client.dbo.collection("banks").updateOne({"account.userID":targetUserID},{$set:{[`banking.guilds.${guildDB.serverID}.account.balance`]:newBalance}}, function(err, res) {
|
||||||
if (err) {
|
if (err) {
|
||||||
client.log(err);
|
client.log(err);
|
||||||
const embed = new MessageEmbed()
|
const embed = new MessageEmbed()
|
||||||
@@ -140,7 +140,7 @@ module.exports = {
|
|||||||
|
|
||||||
let newBalance = banking.guilds[guildDB.serverID].account.balance - args[0].options[1].value;
|
let newBalance = banking.guilds[guildDB.serverID].account.balance - args[0].options[1].value;
|
||||||
|
|
||||||
client.dbo.collection("banking").updateOne({"account.userID":targetUserID},{$set:{[`banking.guilds.${guildDB.serverID}.account.balance`]:newBalance}}, function(err, res) {
|
client.dbo.collection("banks").updateOne({"account.userID":targetUserID},{$set:{[`banking.guilds.${guildDB.serverID}.account.balance`]:newBalance}}, function(err, res) {
|
||||||
if (err) {
|
if (err) {
|
||||||
client.log(err);
|
client.log(err);
|
||||||
const embed = new MessageEmbed()
|
const embed = new MessageEmbed()
|
||||||
|
|||||||
+21
-5
@@ -1,4 +1,5 @@
|
|||||||
const { MessageEmbed, MessageActionRow, MessageButton } = require('discord.js');
|
const { MessageEmbed, MessageActionRow, MessageButton } = require('discord.js');
|
||||||
|
const bitfieldCalculator = require('discord-bitfield-calculator');
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
name: "settings",
|
name: "settings",
|
||||||
@@ -322,18 +323,33 @@ module.exports = {
|
|||||||
return interaction.send(`You are not allowed to use the bot in this channel.`);
|
return interaction.send(`You are not allowed to use the bot in this channel.`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const permissions = bitfieldCalculator.permissions(interaction.member.permissions);
|
||||||
|
|
||||||
|
let canUseCommand = false;
|
||||||
|
|
||||||
|
if (permissions.includes("MANAGE_GUILD")) {
|
||||||
|
canUseCommand = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (client.exists(GuildDB.botAdmin) && interaction.member.roles.includes(GuildDB.botAdmin)) {
|
||||||
|
canUseCommand = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!canUseCommand) {
|
||||||
|
return interaction.send('You don\'t have the permissions to use this command.');
|
||||||
|
}
|
||||||
|
|
||||||
if (args[0].name == 'allowed_channels') {
|
if (args[0].name == 'allowed_channels') {
|
||||||
const channelid = args[0].options[0].options[0].value;
|
const channelid = args[0].options[0].options[0].value;
|
||||||
|
|
||||||
if (args[0].options[0].value == 'add') {
|
if (args[0].options[0].name == 'add') {
|
||||||
const channel = client.channels.cache.get(channelid);
|
const channel = client.channels.cache.get(channelid);
|
||||||
|
|
||||||
const errorEmbed = new MessageEmbed().setColor("RED")
|
const errorEmbed = new MessageEmbed().setColor("RED")
|
||||||
let error = false;
|
let error = false;
|
||||||
|
|
||||||
if (!channel) errorEmbed.setDescription(`**Error Notice:** Cannot find that channel.`);
|
if (!channel) {error=true;errorEmbed.setDescription(`**Error Notice:** Cannot find that channel.`);}
|
||||||
if (channel.type=="voice") errorEmbed.setDescriptions(`**Error Notice:** Cannot add voice channel to allowed channels.`);
|
if (channel.type=="voice") {error=true;errorEmbed.setDescriptions(`**Error Notice:** Cannot add voice channel to allowed channels.`);}
|
||||||
if (channel.deleted) errorEmbed.setDescription(`**Error Notice":** Cannot add deleted channel to allowed channels.`);
|
|
||||||
if (error) return interaction.send({ embeds: [errorEmbed] });
|
if (error) return interaction.send({ embeds: [errorEmbed] });
|
||||||
|
|
||||||
client.dbo.collection("guilds").updateOne({"server.serverID":GuildDB.serverID}, {$push:{"server.allowedChannels": channelid}}, function (err, res) {
|
client.dbo.collection("guilds").updateOne({"server.serverID":GuildDB.serverID}, {$push:{"server.allowedChannels": channelid}}, function (err, res) {
|
||||||
@@ -409,7 +425,7 @@ module.exports = {
|
|||||||
return ButtonInteraction.update({ content: '', embeds: [successEmbed], components: [] });
|
return ButtonInteraction.update({ content: '', embeds: [successEmbed], components: [] });
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
} else console.log('exception?');
|
||||||
|
|
||||||
} else if (args[0].name == 'action_channel') {
|
} else if (args[0].name == 'action_channel') {
|
||||||
if (args[0].options[0].name=='set') {
|
if (args[0].options[0].name=='set') {
|
||||||
|
|||||||
+2
-2
@@ -74,7 +74,7 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let banking = await client.dbo.collection("banking").findOne({"account.userID": interaction.member.user.id}).then(banking => banking);
|
let banking = await client.dbo.collection("banks").findOne({"account.userID": interaction.member.user.id}).then(banking => banking);
|
||||||
|
|
||||||
if (!banking) {
|
if (!banking) {
|
||||||
banking = {
|
banking = {
|
||||||
@@ -127,7 +127,7 @@ module.exports = {
|
|||||||
earned = workPays[highestPayIndex]
|
earned = workPays[highestPayIndex]
|
||||||
newBalance = banking.guilds[guildDB.serverID].account.balance + earned
|
newBalance = banking.guilds[guildDB.serverID].account.balance + earned
|
||||||
|
|
||||||
client.dbo.collection("banking").updateOne({"account.userID":interaction.member.user.id},{$set:{[`banking.guilds.${guildDB.serverID}.account.balance`]:newBalance}}, function(err, res) {
|
client.dbo.collection("banks").updateOne({"account.userID":interaction.member.user.id},{$set:{[`banking.guilds.${guildDB.serverID}.account.balance`]:newBalance}}, function(err, res) {
|
||||||
if (err) {
|
if (err) {
|
||||||
client.log(err);
|
client.log(err);
|
||||||
const embed = new MessageEmbed()
|
const embed = new MessageEmbed()
|
||||||
|
|||||||
Generated
+35
-24
@@ -10,6 +10,7 @@
|
|||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"colors": "^1.4.0",
|
"colors": "^1.4.0",
|
||||||
|
"discord-bitfield-calculator": "^1.0.0",
|
||||||
"discord.js": "^13.8.1",
|
"discord.js": "^13.8.1",
|
||||||
"mongodb": "^4.7.0",
|
"mongodb": "^4.7.0",
|
||||||
"mongoose": "^6.4.2",
|
"mongoose": "^6.4.2",
|
||||||
@@ -166,9 +167,9 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/bson": {
|
"node_modules/bson": {
|
||||||
"version": "4.6.4",
|
"version": "4.7.0",
|
||||||
"resolved": "https://registry.npmjs.org/bson/-/bson-4.6.4.tgz",
|
"resolved": "https://registry.npmjs.org/bson/-/bson-4.7.0.tgz",
|
||||||
"integrity": "sha512-TdQ3FzguAu5HKPPlr0kYQCyrYUYh8tFM+CMTpxjNzVzxeiJY00Rtuj3LXLHSgiGvmaWlZ8PE+4KyM2thqE38pQ==",
|
"integrity": "sha512-VrlEE4vuiO1WTpfof4VmaVolCVYkYTgB9iWgYNOrVlnifpME/06fhFRmONgBhClD5pFC1t9ZWqFUQEQAzY43bA==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"buffer": "^5.6.0"
|
"buffer": "^5.6.0"
|
||||||
},
|
},
|
||||||
@@ -300,6 +301,11 @@
|
|||||||
"resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.33.5.tgz",
|
"resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.33.5.tgz",
|
||||||
"integrity": "sha512-dvO5M52v7m7Dy96+XUnzXNsQ/0npsYpU6dL205kAtEDueswoz3aU3bh1UMoK4cQmcGtB1YRyLKqp+DXi05lzFg=="
|
"integrity": "sha512-dvO5M52v7m7Dy96+XUnzXNsQ/0npsYpU6dL205kAtEDueswoz3aU3bh1UMoK4cQmcGtB1YRyLKqp+DXi05lzFg=="
|
||||||
},
|
},
|
||||||
|
"node_modules/discord-bitfield-calculator": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/discord-bitfield-calculator/-/discord-bitfield-calculator-1.0.0.tgz",
|
||||||
|
"integrity": "sha512-I1istpckG90n/kTId2OGFLz4Bm1uaJUXx6B7CsazMo3MvoQHOsLk0OWzIRlQnOyGynr8A/q9b+6Eo+Ep0UUaCA=="
|
||||||
|
},
|
||||||
"node_modules/discord.js": {
|
"node_modules/discord.js": {
|
||||||
"version": "13.8.1",
|
"version": "13.8.1",
|
||||||
"resolved": "https://registry.npmjs.org/discord.js/-/discord.js-13.8.1.tgz",
|
"resolved": "https://registry.npmjs.org/discord.js/-/discord.js-13.8.1.tgz",
|
||||||
@@ -446,11 +452,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/mongodb": {
|
"node_modules/mongodb": {
|
||||||
"version": "4.7.0",
|
"version": "4.8.1",
|
||||||
"resolved": "https://registry.npmjs.org/mongodb/-/mongodb-4.7.0.tgz",
|
"resolved": "https://registry.npmjs.org/mongodb/-/mongodb-4.8.1.tgz",
|
||||||
"integrity": "sha512-HhVar6hsUeMAVlIbwQwWtV36iyjKd9qdhY+s4wcU8K6TOj4Q331iiMy+FoPuxEntDIijTYWivwFJkLv8q/ZgvA==",
|
"integrity": "sha512-/NyiM3Ox9AwP5zrfT9TXjRKDJbXlLaUDQ9Rg//2lbg8D2A8GXV0VidYYnA/gfdK6uwbnL4FnAflH7FbGw3TS7w==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bson": "^4.6.3",
|
"bson": "^4.6.5",
|
||||||
"denque": "^2.0.1",
|
"denque": "^2.0.1",
|
||||||
"mongodb-connection-string-url": "^2.5.2",
|
"mongodb-connection-string-url": "^2.5.2",
|
||||||
"socks": "^2.6.2"
|
"socks": "^2.6.2"
|
||||||
@@ -472,13 +478,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/mongoose": {
|
"node_modules/mongoose": {
|
||||||
"version": "6.4.2",
|
"version": "6.5.2",
|
||||||
"resolved": "https://registry.npmjs.org/mongoose/-/mongoose-6.4.2.tgz",
|
"resolved": "https://registry.npmjs.org/mongoose/-/mongoose-6.5.2.tgz",
|
||||||
"integrity": "sha512-VRotms+XC42vPlS3Tr2GTg0qkppHzWob62sUjdC22ir8aqWVrbCsHjEuMsL6zZlKSIj8zNBODm9hRV+RHRiLRQ==",
|
"integrity": "sha512-3CFDrSLtK2qjM1pZeZpLTUyqPRkc11Iuh74ZrwS4IwEJ3K2PqGnmyPLw7ex4Kzu37ujIMp3MAuiBlUjfrcb6hw==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bson": "^4.6.2",
|
"bson": "^4.6.5",
|
||||||
"kareem": "2.4.1",
|
"kareem": "2.4.1",
|
||||||
"mongodb": "4.7.0",
|
"mongodb": "4.8.1",
|
||||||
"mpath": "0.9.0",
|
"mpath": "0.9.0",
|
||||||
"mquery": "4.0.3",
|
"mquery": "4.0.3",
|
||||||
"ms": "2.1.3",
|
"ms": "2.1.3",
|
||||||
@@ -905,9 +911,9 @@
|
|||||||
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
|
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
|
||||||
},
|
},
|
||||||
"bson": {
|
"bson": {
|
||||||
"version": "4.6.4",
|
"version": "4.7.0",
|
||||||
"resolved": "https://registry.npmjs.org/bson/-/bson-4.6.4.tgz",
|
"resolved": "https://registry.npmjs.org/bson/-/bson-4.7.0.tgz",
|
||||||
"integrity": "sha512-TdQ3FzguAu5HKPPlr0kYQCyrYUYh8tFM+CMTpxjNzVzxeiJY00Rtuj3LXLHSgiGvmaWlZ8PE+4KyM2thqE38pQ==",
|
"integrity": "sha512-VrlEE4vuiO1WTpfof4VmaVolCVYkYTgB9iWgYNOrVlnifpME/06fhFRmONgBhClD5pFC1t9ZWqFUQEQAzY43bA==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"buffer": "^5.6.0"
|
"buffer": "^5.6.0"
|
||||||
}
|
}
|
||||||
@@ -1004,6 +1010,11 @@
|
|||||||
"resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.33.5.tgz",
|
"resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.33.5.tgz",
|
||||||
"integrity": "sha512-dvO5M52v7m7Dy96+XUnzXNsQ/0npsYpU6dL205kAtEDueswoz3aU3bh1UMoK4cQmcGtB1YRyLKqp+DXi05lzFg=="
|
"integrity": "sha512-dvO5M52v7m7Dy96+XUnzXNsQ/0npsYpU6dL205kAtEDueswoz3aU3bh1UMoK4cQmcGtB1YRyLKqp+DXi05lzFg=="
|
||||||
},
|
},
|
||||||
|
"discord-bitfield-calculator": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/discord-bitfield-calculator/-/discord-bitfield-calculator-1.0.0.tgz",
|
||||||
|
"integrity": "sha512-I1istpckG90n/kTId2OGFLz4Bm1uaJUXx6B7CsazMo3MvoQHOsLk0OWzIRlQnOyGynr8A/q9b+6Eo+Ep0UUaCA=="
|
||||||
|
},
|
||||||
"discord.js": {
|
"discord.js": {
|
||||||
"version": "13.8.1",
|
"version": "13.8.1",
|
||||||
"resolved": "https://registry.npmjs.org/discord.js/-/discord.js-13.8.1.tgz",
|
"resolved": "https://registry.npmjs.org/discord.js/-/discord.js-13.8.1.tgz",
|
||||||
@@ -1117,11 +1128,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mongodb": {
|
"mongodb": {
|
||||||
"version": "4.7.0",
|
"version": "4.8.1",
|
||||||
"resolved": "https://registry.npmjs.org/mongodb/-/mongodb-4.7.0.tgz",
|
"resolved": "https://registry.npmjs.org/mongodb/-/mongodb-4.8.1.tgz",
|
||||||
"integrity": "sha512-HhVar6hsUeMAVlIbwQwWtV36iyjKd9qdhY+s4wcU8K6TOj4Q331iiMy+FoPuxEntDIijTYWivwFJkLv8q/ZgvA==",
|
"integrity": "sha512-/NyiM3Ox9AwP5zrfT9TXjRKDJbXlLaUDQ9Rg//2lbg8D2A8GXV0VidYYnA/gfdK6uwbnL4FnAflH7FbGw3TS7w==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"bson": "^4.6.3",
|
"bson": "^4.6.5",
|
||||||
"denque": "^2.0.1",
|
"denque": "^2.0.1",
|
||||||
"mongodb-connection-string-url": "^2.5.2",
|
"mongodb-connection-string-url": "^2.5.2",
|
||||||
"saslprep": "^1.0.3",
|
"saslprep": "^1.0.3",
|
||||||
@@ -1138,13 +1149,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mongoose": {
|
"mongoose": {
|
||||||
"version": "6.4.2",
|
"version": "6.5.2",
|
||||||
"resolved": "https://registry.npmjs.org/mongoose/-/mongoose-6.4.2.tgz",
|
"resolved": "https://registry.npmjs.org/mongoose/-/mongoose-6.5.2.tgz",
|
||||||
"integrity": "sha512-VRotms+XC42vPlS3Tr2GTg0qkppHzWob62sUjdC22ir8aqWVrbCsHjEuMsL6zZlKSIj8zNBODm9hRV+RHRiLRQ==",
|
"integrity": "sha512-3CFDrSLtK2qjM1pZeZpLTUyqPRkc11Iuh74ZrwS4IwEJ3K2PqGnmyPLw7ex4Kzu37ujIMp3MAuiBlUjfrcb6hw==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"bson": "^4.6.2",
|
"bson": "^4.6.5",
|
||||||
"kareem": "2.4.1",
|
"kareem": "2.4.1",
|
||||||
"mongodb": "4.7.0",
|
"mongodb": "4.8.1",
|
||||||
"mpath": "0.9.0",
|
"mpath": "0.9.0",
|
||||||
"mquery": "4.0.3",
|
"mquery": "4.0.3",
|
||||||
"ms": "2.1.3",
|
"ms": "2.1.3",
|
||||||
|
|||||||
@@ -15,6 +15,7 @@
|
|||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"colors": "^1.4.0",
|
"colors": "^1.4.0",
|
||||||
|
"discord-bitfield-calculator": "^1.0.0",
|
||||||
"discord.js": "^13.8.1",
|
"discord.js": "^13.8.1",
|
||||||
"mongodb": "^4.7.0",
|
"mongodb": "^4.7.0",
|
||||||
"mongoose": "^6.4.2",
|
"mongoose": "^6.4.2",
|
||||||
|
|||||||
+1
-1
@@ -29,7 +29,7 @@ function addBank(guilds, guildID, userID, client, startingBalance) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
client.dbo.collection("banking").updateOne({"banking.userID":userID}, {$set: {"banking.guilds": updatedGuilds}}, function(err, res) {
|
client.dbo.collection("banks").updateOne({"banking.userID":userID}, {$set: {"banking.guilds": updatedGuilds}}, function(err, res) {
|
||||||
if (err) return false
|
if (err) return false
|
||||||
})
|
})
|
||||||
return true
|
return true
|
||||||
|
|||||||
Reference in new issue
Block a user