JaBa/commands/Images/youtube-comment.js

45 lines
1.1 KiB
JavaScript
Raw Normal View History

2021-12-10 21:39:54 +05:00
const Command = require("../../base/Command.js"),
Discord = require("discord.js"),
canvacord = require("canvacord");
class YouTubeComment extends Command {
constructor (client) {
super(client, {
name: "youtube-comment",
dirname: __dirname,
enabled: true,
guildOnly: false,
aliases: [],
memberPermissions: [],
botPermissions: [ "SEND_MESSAGES", "EMBED_LINKS", "ATTACH_FILES" ],
nsfw: false,
ownerOnly: false,
cooldown: 5000
});
}
async run (message, args) {
let user = await this.client.resolveUser(args[0]);
let text = args.join(" ");
2021-12-11 01:11:50 +05:00
if (user) {
2021-12-10 21:39:54 +05:00
text = args.slice(1).join(" ");
} else {
user = message.author;
2021-12-11 01:11:50 +05:00
};
2021-12-10 21:39:54 +05:00
2021-12-11 01:11:50 +05:00
if (!text) return message.error("images/phcomment:MISSING_TEXT"); // same text as phcomment
2021-12-10 21:39:54 +05:00
2021-12-11 01:11:50 +05:00
const m = await message.sendT("misc:PLEASE_WAIT", null, { prefixEmoji: "loading" });
2021-12-10 21:39:54 +05:00
const image = await canvacord.Canvas.youtube({
username: user.username,
avatar: user.displayAvatarURL({ format: "png" }),
content: text
});
const attachment = new Discord.MessageAttachment(image, "ytb-comment.png");
m.delete();
message.channel.send(attachment);
}
2021-12-11 01:11:50 +05:00
};
2021-12-10 21:39:54 +05:00
module.exports = YouTubeComment;