diff --git a/commands/images/autocrop.js b/commands/images/autocrop.js index 657e0c4..d92a062 100644 --- a/commands/images/autocrop.js +++ b/commands/images/autocrop.js @@ -32,6 +32,10 @@ class autocropCommand extends Command { url = Attachment[0].url; } + if (!url) { + return message.channel.send('You need an image to use this command!'); + } + let loadingmsg = await message.channel.send('Processing '); @@ -46,10 +50,15 @@ class autocropCommand extends Command { .then(() => { loadingmsg.delete(); return message.channel.send({files: [output]}); + }) + .catch(error => { + console.error(error); + return message.channel.send('Oh no, an error just occured! Maybe the format of your image don\'t work?'); }); + } } diff --git a/commands/images/blur.js b/commands/images/blur.js index d38904e..6658533 100644 --- a/commands/images/blur.js +++ b/commands/images/blur.js @@ -11,6 +11,7 @@ class blurCommand extends Command { { id: 'link', type: 'string', + }, { id: 'radius', @@ -38,6 +39,10 @@ class blurCommand extends Command { url = Attachment[0].url; } + if (!url) { + return message.channel.send('You need an image to use this command!'); + } + let loadingmsg = await message.channel.send('Processing '); jimp.read({ @@ -51,10 +56,15 @@ class blurCommand extends Command { .then(() => { loadingmsg.delete(); return message.channel.send({files: [output]}); + }) + .catch(error => { + console.error(error); + return message.channel.send('Oh no, an error just occured! Maybe the format of your image don\'t work?'); }); + } } diff --git a/commands/images/gaussian.js b/commands/images/gaussian.js index 1ebb5d8..7a2c811 100644 --- a/commands/images/gaussian.js +++ b/commands/images/gaussian.js @@ -38,6 +38,10 @@ class gaussianCommand extends Command { url = Attachment[0].url; } + if (!url) { + return message.channel.send('You need an image to use this command!'); + } + let loadingmsg = await message.channel.send('Processing '); jimp.read({ @@ -51,10 +55,15 @@ class gaussianCommand extends Command { .then(() => { loadingmsg.delete(); return message.channel.send({files: [output]}); + }) + .catch(error => { + console.error(error); + return message.channel.send('Oh no, an error just occured! Maybe the format of your image don\'t work?'); }); + } } diff --git a/commands/images/jpegify.js b/commands/images/jpegify.js index 88d2126..66c3dbc 100644 --- a/commands/images/jpegify.js +++ b/commands/images/jpegify.js @@ -32,6 +32,10 @@ class jpegifyCommand extends Command { url = Attachment[0].url; } + if (!url) { + return message.channel.send('You need an image to use this command!'); + } + let loadingmsg = await message.channel.send('Processing '); jimp.read({ @@ -45,9 +49,14 @@ class jpegifyCommand extends Command { .then(() => { loadingmsg.delete(); return message.channel.send({files: [output]}); + }) + .catch(error => { + console.error(error); + return message.channel.send('Oh no, an error just occured! Maybe the format of your image don\'t work?'); }); + } } diff --git a/commands/images/mirror.js b/commands/images/mirror.js index 864db41..f366cfa 100644 --- a/commands/images/mirror.js +++ b/commands/images/mirror.js @@ -32,6 +32,10 @@ class mirrorCommand extends Command { url = Attachment[0].url; } + if (!url) { + return message.channel.send('You need an image to use this command!'); + } + let loadingmsg = await message.channel.send('Processing '); jimp.read({ @@ -45,6 +49,10 @@ class mirrorCommand extends Command { .then(() => { loadingmsg.delete(); return message.channel.send({files: [output]}); + }) + .catch(error => { + console.error(error); + return message.channel.send('Oh no, an error just occured! Maybe the format of your image don\'t work?'); }); diff --git a/commands/images/rotate.js b/commands/images/rotate.js index 07562bf..796c396 100644 --- a/commands/images/rotate.js +++ b/commands/images/rotate.js @@ -36,6 +36,10 @@ class rotateCommand extends Command { url = Attachment[0].url; } + if (!url) { + return message.channel.send('You need an image to use this command!'); + } + let loadingmsg = await message.channel.send('Processing '); jimp.read({ @@ -49,10 +53,15 @@ class rotateCommand extends Command { .then(() => { loadingmsg.delete(); return message.channel.send({files: [output]}); + }) + .catch(error => { + console.error(error); + return message.channel.send('Oh no, an error just occured! Maybe the format of your image don\'t work?'); }); + } }