2019-10-13 16:54:07 +02:00
|
|
|
const { Command } = require('discord-akairo');
|
|
|
|
const jimp = require('jimp');
|
|
|
|
const os = require('os');
|
|
|
|
|
|
|
|
class autocropCommand extends Command {
|
|
|
|
constructor() {
|
|
|
|
super('autocrop', {
|
|
|
|
aliases: ['autocrop', 'crop'],
|
|
|
|
category: 'images',
|
2019-11-09 12:04:01 +01:00
|
|
|
clientPermissions: ['SEND_MESSAGES', 'ATTACH_FILES'],
|
2019-10-13 16:54:07 +02:00
|
|
|
args: [
|
|
|
|
{
|
|
|
|
id: 'link',
|
|
|
|
type: 'string',
|
|
|
|
}
|
|
|
|
],
|
|
|
|
description: {
|
|
|
|
content: 'autocrop image border of the same color',
|
|
|
|
usage: '[link to image]',
|
|
|
|
examples: ['']
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async exec(message, args) {
|
|
|
|
let output = `${os.tmpdir()}/cropped${message.id}.jpg`;
|
|
|
|
|
|
|
|
|
|
|
|
let Attachment = (message.attachments).array();
|
|
|
|
let url = args.link;
|
|
|
|
// Get attachment link
|
|
|
|
if (Attachment[0] && !args.link) {
|
|
|
|
url = Attachment[0].url;
|
|
|
|
}
|
|
|
|
|
2019-10-13 21:59:17 +02:00
|
|
|
if (!url) {
|
|
|
|
return message.channel.send('You need an image to use this command!');
|
|
|
|
}
|
|
|
|
|
2019-10-13 18:15:56 +02:00
|
|
|
let loadingmsg = await message.channel.send('Processing <a:loadingmin:527579785212329984>');
|
|
|
|
|
2019-10-13 16:54:07 +02:00
|
|
|
|
|
|
|
jimp.read({
|
|
|
|
url: url
|
|
|
|
})
|
|
|
|
.then(image => {
|
|
|
|
return image
|
|
|
|
.autocrop()
|
|
|
|
.write(output);
|
|
|
|
})
|
|
|
|
.then(() => {
|
2019-10-13 18:15:56 +02:00
|
|
|
loadingmsg.delete();
|
2019-10-13 16:54:07 +02:00
|
|
|
return message.channel.send({files: [output]});
|
2019-10-13 21:59:17 +02:00
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
return message.channel.send('Oh no, an error just occured! Maybe the format of your image don\'t work?');
|
2019-10-13 16:54:07 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-10-13 21:59:17 +02:00
|
|
|
|
2019-10-13 16:54:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = autocropCommand;
|