Compare commits

...

3 Commits

Author SHA1 Message Date
Skylar Grant 93626ff8e5 /save is broken, /edit still needs work 2023-08-08 17:16:05 -04:00
Skylar Grant 3df83d3890 Base for /edit strain 2023-08-08 17:04:39 -04:00
Skylar Grant 32ba973d6a Add description field 2023-08-08 16:51:22 -04:00
5 changed files with 124 additions and 40 deletions

View File

@ -56,7 +56,9 @@ module.exports = {
this.name = ""; this.name = "";
this.type = ""; this.type = "";
this.effects = ""; this.effects = "";
this.flavor = "";
this.rating = "0.0"; this.rating = "0.0";
this.description = "";
} }
// Initial Strain configuration // Initial Strain configuration
@ -67,7 +69,8 @@ module.exports = {
details: { details: {
type: String, type: String,
effects: String, effects: String,
rating: String rating: String,
description: String
} }
*/ */
@ -80,7 +83,9 @@ module.exports = {
this.name = typeof name === 'string' ? name : this.name; this.name = typeof name === 'string' ? name : this.name;
this.type = typeof details.type === 'string' ? details.type : this.type; this.type = typeof details.type === 'string' ? details.type : this.type;
this.effects = typeof details.effects === 'string' ? details.effects : this.effects; this.effects = typeof details.effects === 'string' ? details.effects : this.effects;
this.flavor = typeof details.flavor === 'string' ? details.flavor : this.flavor;
this.rating = typeof details.rating === 'string' ? details.rating : this.rating; this.rating = typeof details.rating === 'string' ? details.rating : this.rating;
this.description = typeof details.description === 'string' ? details.description : this.description;
return this; // For chaining return this; // For chaining

View File

@ -45,7 +45,7 @@ const dotCommandFiles = fs.readdirSync('./dot-commands/').filter(file => file.en
// MySQL database connection // MySQL database connection
const mysql = require('mysql'); const mysql = require('mysql');
const { GifData, PastaData } = require('./CustomModules/NodBot'); const { GifData, PastaData, StrainData } = require('./CustomModules/NodBot');
const db = new mysql.createPool({ const db = new mysql.createPool({
connectionLimit: 10, connectionLimit: 10,
host: dbHost, host: dbHost,
@ -151,11 +151,18 @@ const functions = {
if (!client.strains) client.strains = new Discord.Collection(); if (!client.strains) client.strains = new Discord.Collection();
client.strains.clear(); client.strains.clear();
for (const row of rows) { for (const row of rows) {
const strain = { const strainData = new StrainData().setInfo(
id: row.id, row.strain,
name: row.strain, {
}; type: row.type,
client.strains.set(strain.name, strain); effects: row.effects,
rating: row.rating,
description: row.description,
flavor: row.flavor
},
row.id
);
client.strains.set(strainData.name, strainData);
// if (isDev) console.log(strain) // if (isDev) console.log(strain)
} }
if (isDev) console.log('Strains Collection Built'); if (isDev) console.log('Strains Collection Built');
@ -470,14 +477,8 @@ const functions = {
functions.download.medicalAdvice(client); functions.download.medicalAdvice(client);
}); });
}, },
strain(interaction) { strain(interaction, strainData) {
const strain = db.escape(interaction.options.getString('name')); const strainQuery = `INSERT INTO strains (strain, type, effects, description, flavor, rating) VALUES (${db.escape(strainData.name)}, ${db.escape(strainData.type)}, ${db.escape(strainData.effects)}, ${db.escape(strainData.description)}, ${db.escape(strainData.flavor)}, ${db.escape(strainData.rating)}) ON DUPLICATE KEY UPDATE strain=${db.escape(strainData.strain)}, type=${db.escape(strainData.type)}, effects=${db.escape(strainData.effects)}, description=${db.escape(strainData.description)}, flavor=${db.escape(strainData.flavor)}, rating=${db.escape(strainData.rating)}`;
const type = db.escape(interaction.options.getString('type'));
const effects = db.escape(( interaction.options.getString('effects') || 'Unkown' ));
const description = db.escape(( interaction.options.getString('description') || 'Unknown' ));
const flavor = db.escape(( interaction.options.getString('flavor') || 'Unknown' ));
const rating = db.escape(( interaction.options.getString('rating') || '3' ));
const strainQuery = `INSERT INTO strains (strain, type, effects, description, flavor, rating) VALUES (${strain}, ${type}, ${effects}, ${description}, ${flavor}, ${rating}) ON DUPLICATE KEY UPDATE strain=${db.escape(strain)}, type=${db.escape(type)}, effects=${db.escape(effects)}, description=${db.escape(description)}, flavor=${db.escape(flavor)}, rating=${db.escape(rating)}`;
console.log(strainQuery); console.log(strainQuery);
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
db.query(strainQuery, (err, rows, fields) => { db.query(strainQuery, (err, rows, fields) => {
@ -495,16 +496,16 @@ const functions = {
} }
}, },
download: { download: {
requests(client) { async requests(client) {
const query = 'SELECT * FROM requests WHERE status = \'Active\' ORDER BY id DESC'; const query = 'SELECT * FROM requests WHERE status = \'Active\' ORDER BY id DESC';
db.query(query, (err, rows, fields) => { await db.query(query, (err, rows, fields) => {
if (err) throw err; if (err) throw err;
functions.collections.requests(rows, client); functions.collections.requests(rows, client);
}); });
}, },
pastas(client) { async pastas(client) {
const query = 'SELECT * FROM pastas ORDER BY id ASC'; const query = 'SELECT * FROM pastas ORDER BY id ASC';
db.query(query, (err, rows, fields) => { await db.query(query, (err, rows, fields) => {
if (err) throw err; if (err) throw err;
functions.collections.pastas(rows, client); functions.collections.pastas(rows, client);
}); });
@ -516,16 +517,16 @@ const functions = {
functions.collections.gifs(rows, client); functions.collections.gifs(rows, client);
}); });
}, },
joints(client) { async joints(client) {
const query = 'SELECT * FROM joints ORDER BY id ASC'; const query = 'SELECT * FROM joints ORDER BY id ASC';
db.query(query, (err, rows, fields) => { await db.query(query, (err, rows, fields) => {
if (err) throw err; if (err) throw err;
functions.collections.joints(rows, client); functions.collections.joints(rows, client);
}); });
}, },
strain(strainName, interaction) { async strain(strainName, interaction) {
const query = `SELECT id, strain, type, effects, description, flavor, rating FROM strains WHERE strain = ${db.escape(strainName)}`; const query = `SELECT id, strain, type, effects, description, flavor, rating FROM strains WHERE strain = ${db.escape(strainName)}`;
db.query(query, (err, rows, fields) => { await db.query(query, (err, rows, fields) => {
if (rows != undefined) { if (rows != undefined) {
const strainInfo = { const strainInfo = {
id: `${rows[0].id}`, id: `${rows[0].id}`,
@ -540,16 +541,16 @@ const functions = {
} }
}); });
}, },
strains(client) { async strains(client) {
const query = 'SELECT id, strain FROM strains'; const query = 'SELECT * FROM strains';
db.query(query, (err, rows, fields) => { await db.query(query, (err, rows, fields) => {
if (err) throw err; if (err) throw err;
functions.collections.strains(rows, client); functions.collections.strains(rows, client);
}); });
}, },
medicalAdvice(client) { async medicalAdvice(client) {
const query = 'SELECT * FROM medical_advice ORDER BY id ASC'; const query = 'SELECT * FROM medical_advice ORDER BY id ASC';
db.query(query, (err, rows, fields) => { await db.query(query, (err, rows, fields) => {
if (err) throw err; if (err) throw err;
functions.collections.medicalAdvice(rows, client); functions.collections.medicalAdvice(rows, client);
}); });

24
main.js
View File

@ -30,18 +30,18 @@ const strings = require('./strings.json');
const { GifData } = require('./CustomModules/NodBot.js'); const { GifData } = require('./CustomModules/NodBot.js');
const isDev = process.env.isDev; const isDev = process.env.isDev;
client.once('ready', () => { client.once('ready', async () => {
fn.collections.slashCommands(client); fn.collections.slashCommands(client);
fn.collections.dotCommands(client); fn.collections.dotCommands(client);
fn.collections.setvalidCommands(client); fn.collections.setvalidCommands(client);
fn.download.gifs(client); await fn.download.gifs(client);
fn.download.pastas(client); await fn.download.pastas(client);
fn.download.joints(client); await fn.download.joints(client);
fn.download.requests(client); await fn.download.requests(client);
fn.download.strains(client); await fn.download.strains(client);
fn.download.medicalAdvice(client); await fn.download.medicalAdvice(client);
console.log('Ready!'); console.log('Ready!');
client.channels.fetch(statusChannelId).then(channel => { await client.channels.fetch(statusChannelId).then(channel => {
channel.send(`${new Date().toISOString()} -- <@${process.env.ownerId}>\nStartup Sequence Complete`); channel.send(`${new Date().toISOString()} -- <@${process.env.ownerId}>\nStartup Sequence Complete`);
}); });
}); });
@ -203,6 +203,14 @@ client.on('interactionCreate', async interaction => {
pastaChoices.map(choice => ({ name: choice, value: choice })) pastaChoices.map(choice => ({ name: choice, value: choice }))
); );
break; break;
case "strain":
//TODO
const strainQuery = interaction.options.getFocused();
const strainChoices = fn.weed.strain.lookup(strainQuery, interaction.client);
await interaction.respond(
strainChoices.map(choice => ({ name: choice, value: choice }))
);
break;
default: default:
break; break;

View File

@ -8,7 +8,7 @@ const tenor = require('tenorjs').client({
const { SlashCommandBuilder } = require('@discordjs/builders'); const { SlashCommandBuilder } = require('@discordjs/builders');
const { MessageActionRow, MessageButton } = require('discord.js'); const { MessageActionRow, MessageButton } = require('discord.js');
const { GifData, PastaData } = require('../CustomModules/NodBot'); const { GifData, PastaData, StrainData } = require('../CustomModules/NodBot');
const fn = require('../functions.js'); const fn = require('../functions.js');
const strings = require('../strings.json'); const strings = require('../strings.json');
const { emoji } = strings; const { emoji } = strings;
@ -54,6 +54,54 @@ module.exports = {
.setDescription('The new content of the copypasta') .setDescription('The new content of the copypasta')
.setRequired(true) .setRequired(true)
) )
)
// Strain
.addSubcommand(subcommand =>
subcommand
.setName('strain')
.setDescription('Edit a strain\'s data')
.addStringOption(option =>
option
.setName('name')
.setDescription('Name of the strain')
.setRequired(true)
.setAutocomplete(true)
)
.addStringOption(option =>
option
.setName('type')
.setDescription('Indica/Sativa/Hybrid')
.setRequired(false)
.addChoices(
{ name: "Indica", value: "Indica" },
{ name: "Hybrid", value: "Hybrid" },
{ name: "Sativa", value: "Sativa" }
)
)
.addStringOption(option =>
option
.setName('effects')
.setDescription('What effects does the strain produce?')
.setRequired(false)
)
.addStringOption(option =>
option
.setName('flavor')
.setDescription('Flavor Profile')
.setRequired(false)
)
.addStringOption(option =>
option
.setName('rating')
.setDescription('Star rating of the strain on Leaf.ly')
.setRequired(false)
)
.addStringOption(option =>
option
.setName('description')
.setDescription('Summary of the strain')
.setRequired(false)
)
), ),
async execute(interaction) { async execute(interaction) {
await interaction.deferReply({ ephemeral: true }); await interaction.deferReply({ ephemeral: true });
@ -82,6 +130,7 @@ module.exports = {
// Strain // Strain
case "strain": case "strain":
//TODO //TODO
await this.editStrain(interaction);
break; break;
break; break;
// Default // Default
@ -106,5 +155,16 @@ module.exports = {
await fn.upload.pasta(pastaData, interaction.client); await fn.upload.pasta(pastaData, interaction.client);
await fn.download.gifs(interaction.client); await fn.download.gifs(interaction.client);
await interaction.editReply(`I've updated ${name}.pasta`); await interaction.editReply(`I've updated ${name}.pasta`);
},
async editStrain(interaction) {
const details = {
type: interaction.options.getString('type'),
effects: interaction.options.getString('effects'),
flavor: interaction.options.getString('flavor'),
rating: interaction.options.getString('rating'),
description: interaction.options.getString('description')
};
const strainData = new StrainData().setInfo(interaction.options.getString('name'), details);
await fn.upload.strain(interaction);
} }
}; };

View File

@ -10,7 +10,7 @@ const { SlashCommandBuilder } = require('@discordjs/builders');
const { MessageActionRow, MessageButton } = require('discord.js'); const { MessageActionRow, MessageButton } = require('discord.js');
const fn = require('../functions.js'); const fn = require('../functions.js');
const strings = require('../strings.json'); const strings = require('../strings.json');
const { GifData } = require('../CustomModules/NodBot.js'); const { GifData, StrainData } = require('../CustomModules/NodBot.js');
const { emoji } = strings; const { emoji } = strings;
module.exports = { module.exports = {
@ -213,7 +213,17 @@ module.exports = {
// Strain // Strain
case "strain": case "strain":
//TODO //TODO
fn.upload.strain(interaction).then(res => { const strainData = new StrainData().setInfo(
interaction.options.getString('name'),
{
type: interaction.options.getString('type'),
effects: interaction.options.getString('effects'),
flavor: interaction.options.getString('flavor'),
rating: interaction.options.getString('rating'),
description: interaction.options.getString('description')
}
);
fn.upload.strain(interaction, strainData).then(res => {
interaction.editReply({ interaction.editReply({
content: `The strain information has been saved. (${interaction.options.getString('name')})`, content: `The strain information has been saved. (${interaction.options.getString('name')})`,
ephemeral: true ephemeral: true