diff options
author | Minteck <contact@minteck.org> | 2022-03-06 15:31:09 +0100 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-03-06 15:31:09 +0100 |
commit | 6c074197976a113f98ebd05a35ffb0590e3702fe (patch) | |
tree | ad614a71dde8735040c9b9f69483f2f55c991497 /commands/pony.js | |
parent | 03053a8c0762657621abd7c03b5edf77073912d5 (diff) | |
download | ponyfind-6c074197976a113f98ebd05a35ffb0590e3702fe.tar.gz ponyfind-6c074197976a113f98ebd05a35ffb0590e3702fe.tar.bz2 ponyfind-6c074197976a113f98ebd05a35ffb0590e3702fe.zip |
Fix: resolves #17
Diffstat (limited to 'commands/pony.js')
-rwxr-xr-x[-rw-r--r--] | commands/pony.js | 322 |
1 files changed, 161 insertions, 161 deletions
diff --git a/commands/pony.js b/commands/pony.js index 3b853d5..b783334 100644..100755 --- a/commands/pony.js +++ b/commands/pony.js @@ -1,162 +1,162 @@ -/* - * MIT License - * - * Copyright (c) 2022- Minteck - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - * - */ - -const fs = require('fs'); -const {MessageActionRow, MessageButton, MessageSelectMenu, MessageEmbed} = require('discord.js'); - -const admin = fs.readFileSync("./config/admin.txt").toString().trim(); -const list = Object.keys(JSON.parse(fs.readFileSync("./data/data.json").toString())); - -const getResult = require('../modules/result'); -const getEmbed = require('../modules/embed'); -const getPixel = require("../modules/pixel"); -const getPublic = require('../modules/public'); - -const official = fs.readFileSync("./config/official.txt").toString().replace(/\r\n/g, "\n").split("\n"); -const fpserver = fs.readFileSync("./config/fpserver.txt").toString().trim(); - -module.exports = async (interaction) => { - query = interaction.options.getString('query').toLowerCase(); - result = getResult(query); - - if (result.results.length > 0 && getEmbed(result.results[0], interaction.user.id, interaction.guild ? interaction.guild.id : 0) !== false) { - if (statsQueries[result.results[0]] !== undefined) { - if (!statsQueries[result.results[0]].includes(query)) { - statsQueries[result.results[0]].push(query); - } - } else { - statsQueries[result.results[0]] = [ query ]; - } - fs.writeFile("./stats/queries.json", JSON.stringify(statsQueries), () => {}); - if (result.results[0].toLowerCase().trim() === query.toLowerCase().trim()) { - keys = [null, result.results[0]]; - if (statsPonies[keys[1]] !== undefined) { - statsPonies[keys[1]]++; - } else { - statsPonies[keys[1]] = 1; - } - fs.writeFile("./stats/ponies.json", JSON.stringify(statsPonies), () => {}); - if (interaction.guild) { - row = new MessageActionRow() - .addComponents( - getPublic(interaction, keys), - new MessageButton() - .setLabel(l("Read More", "Lire plus", interaction.user.id, interaction.guild ? interaction.guild.id : 0)) - .setStyle("LINK") - .setURL("https://mlp.fandom.com/wiki/" + encodeURI(keys[1])), - new MessageButton() - .setCustomId("pony.pixel|" + keys[1]) - .setLabel("Pixel Art") - .setDisabled(!fs.existsSync("./pixel/" + keys[1].toLowerCase())) - .setStyle("SECONDARY"), - new MessageButton() - .setCustomId("result.report|" + keys[1]) - .setLabel(l("Report an issue", "Signaler un problème", interaction.user.id, interaction.guild ? interaction.guild.id : 0)) - .setStyle("DANGER") - ) - } else { - row = new MessageActionRow() - .addComponents( - new MessageButton() - .setLabel(l("Read More", "Lire plus", interaction.user.id, interaction.guild ? interaction.guild.id : 0)) - .setStyle("LINK") - .setURL("https://mlp.fandom.com/wiki/" + encodeURI(keys[1])), - new MessageButton() - .setCustomId("pony.pixel|" + keys[1]) - .setLabel("Pixel Art") - .setDisabled(!fs.existsSync("./pixel/" + keys[1].toLowerCase())) - .setStyle("SECONDARY"), - new MessageButton() - .setCustomId("result.report|" + keys[1]) - .setLabel(l("Report an issue", "Signaler un problème", interaction.user.id, interaction.guild ? interaction.guild.id : 0)) - .setStyle("DANGER") - ) - } - await interaction.reply({ - ephemeral: interaction.guild !== null, - embeds: [ - getEmbed(keys[1], interaction.user.id, interaction.guild ? interaction.guild.id : 0, false, interaction.user, interaction.member, interaction.guild) - ], - components: [ - row - ] - }); - } else { - await interaction.reply({ - ephemeral: interaction.guild !== null, - embeds: [ - new MessageEmbed() - .setColor('#d6dc28') - .setTitle(l("Results for", "Résultats pour", interaction.user.id, interaction.guild ? interaction.guild.id : 0) + " \"" + query + "\"") - .setDescription(l("Here are the 3 first results corresponding to your query.", "Voici les 3 premiers résultats correspondants à votre recherche.", interaction.user.id, interaction.guild ? interaction.guild.id : 0)) - ], - components: [ - new MessageActionRow() - .addComponents( - new MessageButton() - .setCustomId("pony.display|" + result.first[0]) - .setLabel(result.first[0]) - .setStyle("PRIMARY"), - new MessageButton() - .setCustomId("pony.display|" + result.first[1]) - .setLabel(result.first[1]) - .setStyle("PRIMARY"), - new MessageButton() - .setCustomId("pony.display|" + result.first[2]) - .setLabel(result.first[2]) - .setStyle("PRIMARY"), - new MessageButton() - .setCustomId("result.report|" + query) - .setLabel(l("Report an issue", "Signaler un problème", interaction.user.id, interaction.guild ? interaction.guild.id : 0)) - .setStyle("DANGER") - ) - ] - }); - } - } else { - await interaction.reply({ - ephemeral: interaction.guild !== null, - embeds: [ - new MessageEmbed() - .setColor('#dc2828') - .setTitle(l("Results for", "Résultats pour", interaction.user.id, interaction.guild ? interaction.guild.id : 0) + " \"" + query + "\"") - .setDescription(l("No results found. Please try with other keywords.", "Aucun résultat trouvé. Essayez avec d'autres mots clés.", interaction.user.id, interaction.guild ? interaction.guild.id : 0)) - ], - components: [ - new MessageActionRow() - .addComponents( - new MessageButton() - .setCustomId("result.suggest|" + query) - .setLabel(l("Suggest a missing pony", "Proposer un poney manquant", interaction.user.id, interaction.guild ? interaction.guild.id : 0)) - .setStyle("SECONDARY"), - new MessageButton() - .setCustomId("result.report|" + query) - .setLabel(l("Report an issue", "Signaler un problème", interaction.user.id, interaction.guild ? interaction.guild.id : 0)) - .setStyle("DANGER") - ) - ] - }); - } +/*
+ * MIT License
+ *
+ * Copyright (c) 2022- Minteck
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ *
+ */
+
+const fs = require('fs');
+const {MessageActionRow, MessageButton, MessageSelectMenu, MessageEmbed} = require('discord.js');
+
+const admin = fs.readFileSync("./config/admin.txt").toString().trim();
+const list = Object.keys(JSON.parse(fs.readFileSync("./data/data.json").toString()));
+
+const getResult = require('../modules/result');
+const getEmbed = require('../modules/embed');
+const getPixel = require("../modules/pixel");
+const getPublic = require('../modules/public');
+
+const official = fs.readFileSync("./config/official.txt").toString().replace(/\r\n/g, "\n").split("\n");
+const fpserver = fs.readFileSync("./config/fpserver.txt").toString().trim();
+
+module.exports = async (interaction) => {
+ query = interaction.options.getString('query').toLowerCase();
+ result = getResult(query);
+
+ if (result.results.length > 0 && getEmbed(result.results[0], interaction.user.id, interaction.guild ? interaction.guild.id : 0) !== false) {
+ if (statsQueries[result.results[0]] !== undefined) {
+ if (!statsQueries[result.results[0]].includes(query)) {
+ statsQueries[result.results[0]].push(query);
+ }
+ } else {
+ statsQueries[result.results[0]] = [ query ];
+ }
+ fs.writeFile("./stats/queries.json", JSON.stringify(statsQueries), () => {});
+ if (result.results[0].toLowerCase().trim() === query.toLowerCase().trim()) {
+ keys = [null, result.results[0]];
+ if (statsPonies[keys[1]] !== undefined) {
+ statsPonies[keys[1]]++;
+ } else {
+ statsPonies[keys[1]] = 1;
+ }
+ fs.writeFile("./stats/ponies.json", JSON.stringify(statsPonies), () => {});
+ if (interaction.guild) {
+ row = new MessageActionRow()
+ .addComponents(
+ getPublic(interaction, keys),
+ new MessageButton()
+ .setLabel(l("Read More", "Lire plus", interaction.user.id, interaction.guild ? interaction.guild.id : 0))
+ .setStyle("LINK")
+ .setURL("https://mlp.fandom.com/wiki/" + encodeURI(keys[1])),
+ new MessageButton()
+ .setCustomId("pony.pixel|" + keys[1])
+ .setLabel("Pixel Art")
+ .setDisabled(!fs.existsSync("./pixel/" + keys[1].toLowerCase()))
+ .setStyle("SECONDARY"),
+ new MessageButton()
+ .setCustomId("result.report|" + keys[1])
+ .setLabel(l("Report an issue", "Signaler un problème", interaction.user.id, interaction.guild ? interaction.guild.id : 0))
+ .setStyle("DANGER")
+ )
+ } else {
+ row = new MessageActionRow()
+ .addComponents(
+ new MessageButton()
+ .setLabel(l("Read More", "Lire plus", interaction.user.id, interaction.guild ? interaction.guild.id : 0))
+ .setStyle("LINK")
+ .setURL("https://mlp.fandom.com/wiki/" + encodeURI(keys[1])),
+ new MessageButton()
+ .setCustomId("pony.pixel|" + keys[1])
+ .setLabel("Pixel Art")
+ .setDisabled(!fs.existsSync("./pixel/" + keys[1].toLowerCase()))
+ .setStyle("SECONDARY"),
+ new MessageButton()
+ .setCustomId("result.report|" + keys[1])
+ .setLabel(l("Report an issue", "Signaler un problème", interaction.user.id, interaction.guild ? interaction.guild.id : 0))
+ .setStyle("DANGER")
+ )
+ }
+ await interaction.reply({
+ ephemeral: interaction.guild !== null,
+ embeds: [
+ getEmbed(keys[1], interaction.user.id, interaction.guild ? interaction.guild.id : 0, false, interaction.user, interaction.member, interaction.guild)
+ ],
+ components: [
+ row
+ ]
+ });
+ } else {
+ await interaction.reply({
+ ephemeral: interaction.guild !== null,
+ embeds: [
+ new MessageEmbed()
+ .setColor('#d6dc28')
+ .setTitle(l("Results for", "Résultats pour", interaction.user.id, interaction.guild ? interaction.guild.id : 0) + " \"" + query + "\"")
+ .setDescription(l("Here are the 3 first results corresponding to your query.", "Voici les 3 premiers résultats correspondants à votre recherche.", interaction.user.id, interaction.guild ? interaction.guild.id : 0))
+ ],
+ components: [
+ new MessageActionRow()
+ .addComponents(
+ new MessageButton()
+ .setCustomId("pony.display|" + result.first[0])
+ .setLabel(result.first[0])
+ .setStyle("PRIMARY"),
+ new MessageButton()
+ .setCustomId("pony.display|" + result.first[1])
+ .setLabel(result.first[1])
+ .setStyle("PRIMARY"),
+ new MessageButton()
+ .setCustomId("pony.display|" + result.first[2])
+ .setLabel(result.first[2])
+ .setStyle("PRIMARY"),
+ new MessageButton()
+ .setCustomId("result.report|" + query)
+ .setLabel(l("Report an issue", "Signaler un problème", interaction.user.id, interaction.guild ? interaction.guild.id : 0))
+ .setStyle("DANGER")
+ )
+ ]
+ });
+ }
+ } else {
+ await interaction.reply({
+ ephemeral: interaction.guild !== null,
+ embeds: [
+ new MessageEmbed()
+ .setColor('#dc2828')
+ .setTitle(l("Results for", "Résultats pour", interaction.user.id, interaction.guild ? interaction.guild.id : 0) + " \"" + query + "\"")
+ .setDescription(l("No results found. Please try with other keywords.", "Aucun résultat trouvé. Essayez avec d'autres mots clés.", interaction.user.id, interaction.guild ? interaction.guild.id : 0))
+ ],
+ components: [
+ new MessageActionRow()
+ .addComponents(
+ new MessageButton()
+ .setCustomId("result.suggest|" + query)
+ .setLabel(l("Suggest a missing pony", "Proposer un poney manquant", interaction.user.id, interaction.guild ? interaction.guild.id : 0))
+ .setStyle("SECONDARY"),
+ new MessageButton()
+ .setCustomId("result.report|" + query)
+ .setLabel(l("Report an issue", "Signaler un problème", interaction.user.id, interaction.guild ? interaction.guild.id : 0))
+ .setStyle("DANGER")
+ )
+ ]
+ });
+ }
}
\ No newline at end of file |