Added permission check to help, increase image safesearch level

This commit is contained in:
Essem 2021-07-26 14:43:10 -05:00
parent 7f0f2fb789
commit f77def1c0e
No known key found for this signature in database
GPG Key ID: 7D497397CC3A2A8C
2 changed files with 3 additions and 1 deletions

View File

@ -51,6 +51,8 @@ class HelpCommand extends Command {
}
return embed;
} else {
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!";
const pages = [];
for (const category of Object.keys(help.categories)) {
const splitPages = help.categories[category].map((item, index) => {

View File

@ -11,7 +11,7 @@ class ImageSearchCommand extends Command {
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());
const images = await fetch(`${random(searx)}/search?format=json&safesearch=2&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({