JaBa/commands/Images/youtube-comment.js

53 lines
1.1 KiB
JavaScript
Raw Normal View History

2022-01-04 02:18:28 +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: ["ytcomment"],
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(" ");
if (user) {
text = args.slice(1).join(" ");
} else {
user = message.author;
};
if (!text) return message.error("images/phcomment:MISSING_TEXT"); // same text as phcomment
const m = await message.sendT("misc:PLEASE_WAIT", null, {
prefixEmoji: "loading"
});
const image = await canvacord.Canvas.youtube({
username: user.username,
avatar: user.displayAvatarURL({
format: "png"
}),
content: text
});
m.delete();
message.channel.send({
files: [{
attachment: image
}]
});
2022-01-04 02:18:28 +05:00
}
};
module.exports = YouTubeComment;