Renamed gif to raw and fixed message, removed GOOGLE variable from .env.example

This commit is contained in:
Essem 2021-07-03 22:05:00 -05:00
parent a52b05d8b7
commit 93d2b0e5ce
No known key found for this signature in database
GPG Key ID: 2502A99EDC3F6FB9
2 changed files with 5 additions and 7 deletions

View File

@ -33,8 +33,6 @@ PROCESSING_EMOJI=
# Put Mashape/RapidAPI key here
MASHAPE=
# Put Google API key here
GOOGLE=
# Put DBL/top.gg token here
DBL=
# Put Tenor API key here (used for obtaining raw tenor GIF urls)

View File

@ -1,16 +1,16 @@
const Command = require("../../classes/command.js");
const imageDetect = require("../../utils/imagedetect.js");
class GifCommand extends Command {
class RawCommand extends Command {
async run() {
this.message.channel.sendTyping();
const image = await imageDetect(this.client, this.message);
if (image === undefined) return "You need to provide an image with a QR code to read!";
if (image === undefined) return "You need to provide an image to get a raw URL!";
return image.path;
}
static description = "Gets a direct GIF URL (useful for saving GIFs from sites like Tenor)";
static aliases = ["getgif", "giflink"];
static description = "Gets a direct image URL (useful for saving GIFs from sites like Tenor)";
static aliases = ["gif", "getgif", "giflink", "imglink", "getimg", "rawgif", "rawimg"];
}
module.exports = GifCommand;
module.exports = RawCommand;