Files
2025-11-02 16:20:51 -05:00

51 lines
1.4 KiB
JavaScript

const Argument = require('../framework/ArgumentType');
const fileTypeRe = /\.(jpe?g|png|gif|jfif|bmp|webp)(\?.+)?$/i;
const request = require('node-superfetch');
const validURL = require('valid-url');
const logos = require('../assets/json/logos');
const logoKeys = Object.keys(logos);
module.exports = class ImageArgument extends Argument {
constructor(client) {
super(client, 'image');
}
async validate(value, msg, arg) {
const attachment = msg.attachments.first();
if (attachment) {
if (attachment.size > arg.maxAttachmentSize) {
const displaySize = Math.floor(arg.maxAttachmentSize / 1000000);
return `Image size is above ${displaySize} MB.`;
}
if (!fileTypeRe.test(attachment.name)) return 'Provided attachment is not an image.';
return true;
}
if (fileTypeRe.test(value.toLowerCase())) {
if (!validURL.isWebUri(value)) return 'Provided URL is not valid.';
try {
await request.get(value);
return true;
} catch {
return 'Provided URL is not valid.';
}
}
return false;
}
parse(value, msg) {
const attachment = msg.attachments.first();
if (attachment) return attachment.url;
if (fileTypeRe.test(value.toLowerCase())) return value;
return null;
}
isEmpty(value, msg) {
if (msg.attachments.size) return false;
return !value;
}
example() {
return `<${logos[logoKeys[Math.floor(Math.random() * logoKeys.length)]]}>`;
}
};