Files
quarksBot/commands/inventory.js
T
2022-08-27 20:14:21 -07:00

578 lines
22 KiB
JavaScript

const { EmbedBuilder, ActionRowBuilder, ButtonBuilder, ButtonStyle, SelectMenuBuilder } = require('discord.js');
const { Inventory, addInventory } = require('../structures/inventory');
const action = ['ditch', 'drop', 'forget', 'throw out', 'leave', 'set down', 'let go of'];
module.exports = {
name: "inventory",
debug: false,
description: "Manage your inventory",
usage: "[command]",
permissions: {
channel: ["VIEW_CHANNEL", "SEND_MESSAGES", "EMBED_LINKS"],
member: [],
},
options: [
{
name: "view",
description: "View your inventory",
value: "view",
type: 1,
},
{
name: "wallet",
description: "View your wallet",
value: "wallet",
type: 1,
},
{
name: "add",
description: "Add item to inventory",
value: "add",
type: 2,
options: [
{
name: "firearm",
description: "Add firearm to inventory",
value: "firearm",
type: 1,
options: [
{
name: "type",
description: "Type of firearm",
value: "type",
type: 3,
required: true,
choices: [
{ name: 'Pistol', value: 'Pistol' }, { name: 'Revolver', value: 'Revolver' }, { name: 'Shotgun', value: 'Shotgun' },
{ name: 'Submachine Gun', value: 'Submachine Gun' }, { name: 'Light Machine Gun', value: 'Ligh Machine Gun' },
{ name: 'Assault Rifle', value: 'Assault Rifle' }, { name: 'Sniper Rifle', value: 'Sniper Rifle' },
]
},
{
name: "serialnumber",
description: "Firearm serial number",
value: "serialnumber",
type: 3,
required: true,
},
{
name: "owner",
description: "Firearm Owner's Full Name",
value: "owner",
type: 3,
required: true,
},
{
name: "description",
description: "Firearm description",
value: "description",
type: 3,
required: true,
}
]
},
{
name: "generic",
description: "Add a generic item to inventory",
value: "generic",
type: 1,
options: [
{
name: "name",
description: "Item name",
value: "name",
type: 3,
required: true,
},
{
name: "description",
description: "Item description",
value: "description",
type: 3,
required: true,
},
{
name: "quantity",
description: "The number of this item",
value: "quantity",
type: 4,
required: true,
}
]
}
]
},
{
name: "give",
description: "Give user item from inventory",
value: "give",
type: 1,
options: [
{
name: "user",
description: "User to give item",
value: "user",
type: 6,
required: true,
}
],
},
{
name: "drop",
description: "Drop item from inventory",
value: "drop",
type: 1,
options: [
{
name: "item-number",
description: "Item to interact with",
value: 1,
type: 4,
required: true,
}
],
},
{
name: "clear",
description: "Clear your inventory",
value: "clear",
type: 1,
}
],
SlashCommand: {
/**
*
* @param {require("../structures/QuarksBot")} client
* @param {import("discord.js").MessageCreate} message
* @param {string[]} args
* @param {*} param3
*/
run: async (client, interaction, args, { GuildDB }) => {
if (GuildDB.customChannelStatus==true&&!GuildDB.allowedChannels.includes(interaction.channel_id)) {
return interaction.send(`You are not allowed to use the bot in this channel.`);
}
let inventory = await client.dbo.collection("inventories").findOne({"inventory.userID": interaction.member.user.id}).then(inventory => inventory);
if (!inventory) {
inventory = {
userID: interaction.member.user.id,
guilds: {
[GuildDB.serverID]: {
items: [{
name: 'Wallet',
type: 'wallet',
description: '`/inventory wallet` to view wallet',
cash: 0.00,
ID: {
firstname: '',
lastname: '',
dob: ''
}
}]
}
}
}
// Register inventory for user
let newInventory = new Inventory();
newInventory.createInventory(interaction.member.user.id, GuildDB.serverID);
newInventory.save()
.catch(err => {
if (err) {
client.error(err);
const embed = new EmbedBuilder()
.setDescription(`**Internal Error:**\nUh Oh D: Its not you, its me.\nThis command has crashed\nContact the Developers\nhttps://discord.gg/YCXhvy9uZw`)
.setColor(client.config.Colors.Red)
return interaction.send({ embeds: [embed] });
}
});
} else inventory = inventory.inventory
if (!client.exists(inventory.guilds[GuildDB.serverID])) {
const success = addInventory(inventory.guilds, GuildDB.serverID, interaction.member.user.id, client);
if (!success) {
client.error(err);
const embed = new EmbedBuilder()
.setDescription(`**Internal Error:**\nUh Oh D: Its not you, its me.\nThis command has crashed\nContact the Developers\nhttps://discord.gg/YCXhvy9uZw`)
.setColor(client.config.Colors.Red)
return interaction.send({ embeds: [embed] });
}
}
if (args[0].name == 'view') {
let items = new SelectMenuBuilder()
.setCustomId(`inventorySelect-${interaction.member.user.id}`)
.setPlaceholder('Select Item to view')
.addOptions(
{
label: 'View All',
description: 'View a list of all your inventory items',
value: 'all',
}
)
for (let i = 0; i < inventory.guilds[GuildDB.serverID].items.length; i++) {
if (inventory.guilds[GuildDB.serverID].items[i].type == 'firearm') {
items.addOptions({
label: inventory.guilds[GuildDB.serverID].items[i].weaponType,
description: 'View this items description',
value: `${i}`
})
} else {
items.addOptions({
label: inventory.guilds[GuildDB.serverID].items[i].name,
description: 'View this items description',
value: `${i}`
})
}
}
const opt = new ActionRowBuilder().addComponents(items);
interaction.send({ components: [opt], flags: (1 << 6) })
client.once("interactionCreate", async MenuInteraction => {
if(!MenuInteraction.isSelectMenu()) return;
if (!MenuInteraction.customId.endsWith(MenuInteraction.member.user.id)) {
return MenuInteraction.reply({
content: "This button is not for you",
flags: (1 << 6)
})
}
if (MenuInteraction.values[0] == 'all') {
let inventoryEmbed = new EmbedBuilder()
.setColor(client.config.Colors.Default)
.setTitle('Your Inventory')
let description = `To see detials on an Item use \`/inventory view\` and select the item to view\n\n\`\`\``
for (let i = 0; i < inventory.guilds[GuildDB.serverID].items.length; i++) {
if (inventory.guilds[GuildDB.serverID].items[i].type == 'firearm') description += `${i+1}. ${inventory.guilds[GuildDB.serverID].items[i].weaponType} - ${inventory.guilds[GuildDB.serverID].items[i].description}\n`;
else description += `${i+1}. ${inventory.guilds[GuildDB.serverID].items[i].name} - ${inventory.guilds[GuildDB.serverID].items[i].description}\n`
}
description += "```"
inventoryEmbed.setDescription(description);
return MenuInteraction.update({ embeds: [inventoryEmbed], components: [], flags: (1 << 6) });
} else {
let item = inventory.guilds[GuildDB.serverID].items[MenuInteraction.values[0]];
let itemEmbed = new EmbedBuilder().setColor(client.config.Colors.Default);
if (item.type == 'wallet') {
// Display wallet
let ID = `${client.exists(item.ID.firstname) ? item.ID.firstname : '...'} ${client.exists(item.ID.lastname) ? item.ID.lastname : '...'} | ${client.exists(item.ID.dob) ? item.ID.dob : 'N/A'} | ${client.exists(item.ID.addr) ? item.ID.addr : 'N/A'}`
itemEmbed.setTitle(`Your Wallet`);
itemEmbed.addFields(
{ name: '**Cash**', value: `$${item.cash.toFixed(2)}`, inline: true },
{ name: '**ID**', value: ID, inline: true });
} else if (item.type == 'firearm') {
// Display firearm
itemEmbed.setTitle('Firearm');
itemEmbed.addFields(
{ name: 'Serial #', value: item.serial, inline: true },
{ name: 'Type', value: item.weaponType, inline: true },
{ name: 'Description', value: item.description, inline: true },
{ name: 'Owner', value: item.ownerName, inline: true }
);
} else {
// Display generic item here
itemEmbed.setTitle(`Item information`);
itemEmbed.addFields({ name: item.name, value: item.description, inline: false });
}
return MenuInteraction.update({ embeds: [itemEmbed], components: [], flags: (1 << 6) });
}
});
return;
} else if (args[0].name == 'wallet') {
// Display wallet
let item = inventory.guilds[GuildDB.serverID].items[0];
let ID = `${client.exists(item.ID.firstname) ? item.ID.firstname : '...'} ${client.exists(item.ID.lastname) ? item.ID.lastname : '...'} | ${client.exists(item.ID.dob) ? item.ID.dob : 'N/A'} | ${client.exists(item.ID.addr) ? item.ID.addr : 'N/A'}`
let walletEmbed = new EmbedBuilder()
.setTitle(`Your Wallet`)
.setColor(client.config.Colors.Default)
.addFields(
{ name: '**Cash**', value: `$${item.cash.toFixed(2)}`, inline: true },
{ name: '**ID**', value: ID, inline: true });
return interaction.send({ embeds: [walletEmbed] });
} else if (args[0].name == 'add') {
if (args[0].options[0].name == 'firearm') {
// Add firearm to inventory
const firearm = {
type: 'firearm',
weaponType: args[0].options[0].options[0].value,
serial: args[0].options[0].options[1].value,
ownerName: args[0].options[0].options[2].value,
description: args[0].options[0].options[3].value,
quantity: 1,
}
client.dbo.collection('inventories').updateOne({'inventory.userID': interaction.member.user.id}, {$push: {[`inventory.guilds.${GuildDB.serverID}.items`]: firearm}}, function(err, res) {
if (err) {
client.error(err);
const embed = new EmbedBuilder()
.setDescription(`**Internal Error:**\nUh Oh D: Its not you, its me.\nThis command has crashed\nContact the Developers\nhttps://discord.gg/YCXhvy9uZw`)
.setColor(client.config.Colors.Red)
return interaction.send({ embeds: [embed] });
}
});
let message = new EmbedBuilder()
.setTitle(`You ${actions[Math.floor(Math.random() * actions.length)]} a ${firearm.weaponType}`)
.setColor(client.config.Colors.Default);
return interaction.send({ embeds: [message] });
} else {
// Add generic item to inventory
const item = {
type: 'generic',
name: args[0].options[0].options[0].value,
description: args[0].options[0].options[1].value,
quantity: args[0].options[0].options[2].value,
}
client.dbo.collection('inventories').updateOne({'inventory.userID': interaction.member.user.id}, {$push: {[`inventory.guilds.${GuildDB.serverID}.items`]: item}}, function(err, res) {
if (err) {
client.error(err);
const embed = new EmbedBuilder()
.setDescription(`**Internal Error:**\nUh Oh D: Its not you, its me.\nThis command has crashed\nContact the Developers\nhttps://discord.gg/YCXhvy9uZw`)
.setColor(client.config.Colors.Red)
return interaction.send({ embeds: [embed] });
}
});
let message = new EmbedBuilder()
.setTitle(`You ${actions[Math.floor(Math.random() * actions.length)]} a ${item.name}`)
.setColor(client.config.Colors.Default);
return interaction.send({ embeds: [message] });
}
} else if (args[0].name == 'drop') {
// Remove Item from inventory
if (args[0].options[0].value < 1 || args[0].options[0].value > inventory.guilds[GuildDB.serverID].items.length) {
let embed = new EmbedBuilder()
.setTitle("Please provide a valid item number")
.setColor(client.config.Colors.Red)
return interaction.send({ embeds: [embed] });
}
if (args[0].options[0].value == 1) {
let embed = new EmbedBuilder()
.setTitle("Cannot Drop Wallet")
.setColor(client.config.Colors.Default);
return interaction.send({ embeds: [embed] });
}
let item = inventory.guilds[GuildDB.serverID].items[args[0].options[0].value-1];
client.dbo.collection('inventories').updateOne({'inventory.userID': interaction.member.user.id}, {$pull: {[`inventory.guilds.${GuildDB.serverID}.items`]: item}}, function(err, res) {
if (err) {
client.error(err);
const embed = new EmbedBuilder()
.setDescription(`**Internal Error:**\nUh Oh D: Its not you, its me.\nThis command has crashed\nContact the Developers\nhttps://discord.gg/YCXhvy9uZw`)
.setColor(client.config.Colors.Red)
return interaction.send({ embeds: [embed] });
}
let message = new EmbedBuilder()
.setTitle(`You ${action[Math.floor(Math.random() * actions.length)]} your ${item.name}`)
.setColor(client.config.Colors.Default);
return interaction.send({ embeds: [message] });
});
} else if (args[0].name == 'give') {
if (inventory.guilds[GuildDB.serverID].items.length == 1) {
const nsi = new EmbedBuilder()
.setDescription('**Notice:** No items to give')
.setColor(client.config.Colors.Yellow);
return interaction.send({ embeds: [nsi] });
}
let items = new SelectMenuBuilder()
.setCustomId(`inventorySelect-${interaction.member.user.id}`)
.setPlaceholder('Select Item to view')
.addOptions(
{
label: 'View All',
description: 'View a list of all your inventory items',
value: 'all',
}
)
for (let i = 1; i < inventory.guilds[GuildDB.serverID].items.length; i++) {
if (inventory.guilds[GuildDB.serverID].items[i].type == 'firearm') {
items.addOptions({
label: inventory.guilds[GuildDB.serverID].items[i].weaponType,
description: 'View this items description',
value: `${i}`
})
} else {
items.addOptions({
label: inventory.guilds[GuildDB.serverID].items[i].name,
description: 'View this items description',
value: `${i}`
})
}
}
const opt = new ActionRowBuilder().addComponents(items);
interaction.send({ components: [opt], flags: (1 << 6) })
client.once("interactionCreate", async MenuInteraction => {
if(!MenuInteraction.isSelectMenu()) return;
if (!MenuInteraction.customId.endsWith(MenuInteraction.member.user.id)) {
return MenuInteraction.reply({
content: "This button is not for you",
flags: (1 << 6)
})
}
let item = inventory.guilds[GuildDB.serverID].items[MenuInteraction.values[0]];
let targetUserID = args[0].options[1].value.replace('<@!', '').replace('>', '');
let targetUserInventory = await client.dbo.collection("inventories").findOne({"inventory.userID":targetUserID}).then(inventory => inventory);
if (!targetUserInventory) {
// Register inventory for user with item givn
let newInventory = new Inventory();
newInventory.createInventory(targetUserID, GuildDB.serverID);
newInventory.addItem(item);
newInventory.save()
.catch(err => {
if (err) {
client.error(err);
const embed = new EmbedBuilder()
.setDescription(`**Internal Error:**\nUh Oh D: Its not you, its me.\nThis command has crashed\nContact the Developers\nhttps://discord.gg/YCXhvy9uZw`)
.setColor(client.config.Colors.Red)
return MenuInteraction.update({ embeds: [embed], components: [] });
}
});
} else {
if (!client.exists(targetUserInventory.guilds[GuildDB.serverID])) {
const success = addInventory(inventory.guilds, GuildDB.serverID, targetUserID, client);
if (!success) {
client.error(err);
const embed = new EmbedBuilder()
.setDescription(`**Internal Error:**\nUh Oh D: Its not you, its me.\nThis command has crashed\nContact the Developers\nhttps://discord.gg/YCXhvy9uZw`)
.setColor(client.config.Colors.Red)
return MenuInteraction.update({ embeds: [embed], components: [] });
}
}
client.dbo.collection('inventories').updateOne({'inventory.userID': interaction.member.user.id}, {$pull: {[`inventory.guilds.${GuildDB.serverID}.items`]: item}}, function(err, res) {
if (err) {
client.error(err);
const embed = new EmbedBuilder()
.setDescription(`**Internal Error:**\nUh Oh D: Its not you, its me.\nThis command has crashed\nContact the Developers\nhttps://discord.gg/YCXhvy9uZw`)
.setColor(client.config.Colors.Red)
return MenuInteraction.update({ embeds: [embed], components: [] });
}
});
client.dbo.collection('inventories').updateOne({'inventory.userID': targetUserID}, {$push: {[`inventory.guilds.${GuildDB.serverID}.items`]: item}}, function(err, res) {
if (err) {
client.error(err);
const embed = new EmbedBuilder()
.setDescription(`**Internal Error:**\nUh Oh D: Its not you, its me.\nThis command has crashed\nContact the Developers\nhttps://discord.gg/YCXhvy9uZw`)
.setColor(client.config.Colors.Red)
return MenuInteraction.update({ embeds: [embed], components: [] });
}
});
}
let successEmbed = new EmbedBuilder()
.setTitle('Success')
.setDescription(`Successfully gave <@${targetUserID}> ${item.name}`)
.setColor('GREEN');
return MenuInteraction.update({ embeds: [successEmbed], components: [] });
});
return;
} else if (args[0].name == 'clear') {
const prompt = new EmbedBuilder()
.setTitle(`Are you sure you want to clear your inventory?`)
.setDescription('**Note:** This will not affect your wallet.')
.setColor(client.config.Colors.Default)
const opt = new ActionRowBuilder()
.addComponents(
new ButtonBuilder()
.setCustomId(`yes-${interaction.member.user.id}`)
.setLabel("Yes")
.setStyle(ButtonStyle.Danger),
new ButtonBuilder()
.setCustomId(`no-${interaction.member.user.id}`)
.setLabel("No")
.setStyle(ButtonStyle.Success)
)
interaction.send({ embeds: [prompt], components: [opt], flags: (1 << 6) });
client.once("interactionCreate", ButtonInteraction => {
if(!ButtonInteraction.isButton()) return;
const queryString = ButtonInteraction.customId;
if (!queryString.endsWith(ButtonInteraction.member.user.id)) {
return ButtonInteraction.reply({
content: "This button is not for you",
flags: (1 << 6)
})
}
let action = ''
if (queryString==`yes-${interaction.member.user.id}`) {
action = 'cleared';
const tempWallet = inventory.guilds[GuildDB.serverID].items[0];
client.dbo.collection("inventories").updateOne({"inventory.userID":inventory.userID},{$set:{[`inventory.guilds.${GuildDB.serverID}.items`]: [tempWallet]}},function(err, res) {
if (err) {
client.error(err);
const embed = new EmbedBuilder()
.setDescription(`**Internal Error:**\nUh Oh D: Its not you, its me.\nThis command has crashed\nContact the Developers\nhttps://discord.gg/YCXhvy9uZw`)
.setColor(client.config.Colors.Red)
return interaction.send({ embeds: [embed] });
}
});
} else if (queryString==`no-${interaction.member.user.id}`) action = 'kept';
const successEmbed = new EmbedBuilder()
.setColor(client.config.Colors.Green)
.setTitle(`Successfully ${action} your inventory.`)
return ButtonInteraction.update({ embeds: [successEmbed], components: [] });
});
return;
}
},
},
}