43 lines
No EOL
1.8 KiB
JavaScript
43 lines
No EOL
1.8 KiB
JavaScript
const paginator = require("../../utils/pagination/pagination.js");
|
|
const { searx } = require("../../servers.json");
|
|
const { random } = require("../../utils/misc.js");
|
|
const fetch = require("node-fetch");
|
|
const Command = require("../../classes/command.js");
|
|
|
|
class ImageSearchCommand extends Command {
|
|
async run() {
|
|
if (this.message.channel.guild && !this.message.channel.permissionsOf(this.client.user.id).has("addReactions")) return "I don't have the `Add Reactions` permission!";
|
|
if (this.message.channel.guild && !this.message.channel.permissionsOf(this.client.user.id).has("embedLinks")) return "I don't have the `Embed Links` permission!";
|
|
if (this.args.length === 0) return "You need to provide something to search for!";
|
|
await this.message.channel.sendTyping();
|
|
const embeds = [];
|
|
const images = await fetch(`${random(searx)}/search?format=json&safesearch=1&categories=images&q=!goi%20!bii%20!ddi%20${encodeURIComponent(this.args.join(" "))}`).then(res => res.json());
|
|
if (images.results.length === 0) return "I couldn't find any results!";
|
|
for (const [i, value] of images.results.entries()) {
|
|
embeds.push({
|
|
"embed": {
|
|
"title": "Search Results",
|
|
"color": 16711680,
|
|
"footer": {
|
|
"text": `Page ${i + 1} of ${images.results.length}`
|
|
},
|
|
"description": `[${value.title}](${encodeURI(value.img_src)})`,
|
|
"image": {
|
|
"url": encodeURI(value.img_src)
|
|
},
|
|
"author": {
|
|
"name": this.message.author.username,
|
|
"icon_url": this.message.author.avatarURL
|
|
}
|
|
}
|
|
});
|
|
}
|
|
return paginator(this.client, this.message, embeds);
|
|
}
|
|
|
|
static description = "Searches for images across the web";
|
|
static aliases = ["im", "photo", "img"];
|
|
static arguments = ["[query]"];
|
|
}
|
|
|
|
module.exports = ImageSearchCommand; |