mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 21:24:59 +05:00
b6fee7f188
Disabled memes and staff Localization changes
73 lines
No EOL
2.1 KiB
JavaScript
73 lines
No EOL
2.1 KiB
JavaScript
const { SlashCommandBuilder } = require("discord.js");
|
|
const BaseCommand = require("../../base/BaseCommand"),
|
|
fetch = require("node-fetch");
|
|
|
|
class LMGTFY extends BaseCommand {
|
|
/**
|
|
*
|
|
* @param {import("../base/JaBa")} client
|
|
*/
|
|
constructor(client) {
|
|
super({
|
|
command: new SlashCommandBuilder()
|
|
.setName("lmgtfy")
|
|
.setDescription(client.translate("fun/lmgtfy:DESCRIPTION"))
|
|
.setDescriptionLocalizations({
|
|
"uk": client.translate("fun/lmgtfy:DESCRIPTION", null, "uk-UA"),
|
|
"ru": client.translate("fun/lmgtfy:DESCRIPTION", null, "ru-RU"),
|
|
})
|
|
.setDMPermission(true)
|
|
.addStringOption(option => option.setName("query")
|
|
.setDescription(client.translate("fun/lmgtfy:QUERY"))
|
|
.setDescriptionLocalizations({
|
|
"uk": client.translate("fun/lmgtfy:QUERY", null, "uk-UA"),
|
|
"ru": client.translate("fun/lmgtfy:QUERY", null, "ru-RU"),
|
|
})
|
|
.setRequired(true))
|
|
.addBooleanOption(option => option.setName("short")
|
|
.setDescription(client.translate("fun/lmgtfy:SHORT"))
|
|
.setDescriptionLocalizations({
|
|
"uk": client.translate("fun/lmgtfy:SHORT", null, "uk-UA"),
|
|
"ru": client.translate("fun/lmgtfy:SHORT", null, "ru-RU"),
|
|
})
|
|
.setRequired(true)),
|
|
aliases: [],
|
|
dirname: __dirname,
|
|
ownerOnly: false,
|
|
});
|
|
}
|
|
/**
|
|
*
|
|
* @param {import("../../base/JaBa")} client
|
|
*/
|
|
async onLoad() {
|
|
//...
|
|
}
|
|
/**
|
|
*
|
|
* @param {import("../../base/JaBa")} client
|
|
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
|
* @param {Object} data
|
|
*/
|
|
async execute(client, interaction) {
|
|
await interaction.deferReply({ ephemeral: true });
|
|
|
|
const query = interaction.options.getString("query").replace(/[' '_]/g, "+"),
|
|
short = interaction.options.getBoolean("short"),
|
|
url = `https://letmegooglethat.com/?q=${query}`;
|
|
|
|
if (short) {
|
|
const res = await fetch(`https://is.gd/create.php?format=simple&url=${encodeURIComponent(url)}`).then(res => res.text());
|
|
|
|
interaction.editReply({
|
|
content: `<${res}>`,
|
|
});
|
|
} else {
|
|
interaction.editReply({
|
|
content: `<${url}>`,
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = LMGTFY; |