option to add description
This commit is contained in:
parent
e4b441e5f5
commit
2a8356d219
1 changed files with 25 additions and 4 deletions
|
@ -26,6 +26,10 @@ export default {
|
||||||
.addBooleanOption(option =>
|
.addBooleanOption(option =>
|
||||||
option.setName('compress')
|
option.setName('compress')
|
||||||
.setDescription('Compress the video?')
|
.setDescription('Compress the video?')
|
||||||
|
.setRequired(false))
|
||||||
|
.addBooleanOption(option =>
|
||||||
|
option.setName('description')
|
||||||
|
.setDescription('Include the video description?')
|
||||||
.setRequired(false)),
|
.setRequired(false)),
|
||||||
category: 'utility',
|
category: 'utility',
|
||||||
alias: ['dl'],
|
alias: ['dl'],
|
||||||
|
@ -109,22 +113,26 @@ export default {
|
||||||
await interactionMenu.deferReply({ ephemeral: false });
|
await interactionMenu.deferReply({ ephemeral: false });
|
||||||
|
|
||||||
await checkSize(url, interactionMenu.values[0], args, interaction);
|
await checkSize(url, interactionMenu.values[0], args, interaction);
|
||||||
return download(url, interactionMenu, interaction);
|
return download(url, interactionMenu, interaction, undefined, true);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const newFormat = await checkSize(url, undefined, args, interaction);
|
const newFormat = await checkSize(url, undefined, args, interaction);
|
||||||
return download(url, interaction, interaction, newFormat);
|
return download(url, interaction, interaction, newFormat, args.description);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
async function download(url, interaction, originalInteraction, format = undefined) {
|
async function download(url, interaction, originalInteraction, format = undefined, description = false) {
|
||||||
const Embed = new EmbedBuilder()
|
const Embed = new EmbedBuilder()
|
||||||
.setColor(interaction.member ? interaction.member.displayHexColor : 'Navy')
|
.setColor(interaction.member ? interaction.member.displayHexColor : 'Navy')
|
||||||
.setAuthor({ name: `Downloaded by ${interaction.user.username}`, iconURL: interaction.user.displayAvatarURL(), url: url })
|
.setAuthor({ name: `Downloaded by ${interaction.user.username}`, iconURL: interaction.user.displayAvatarURL(), url: url })
|
||||||
.setFooter({ text: `You can get the original video by clicking on the "Downloaded by ${interaction.user.username}" message!` });
|
.setFooter({ text: `You can get the original video by clicking on the "Downloaded by ${interaction.user.username}" message!` });
|
||||||
|
|
||||||
|
if (description) {
|
||||||
|
Embed.setDescription(await getVideoDescription(url));
|
||||||
|
}
|
||||||
|
|
||||||
if (interaction.customId === `downloadQuality${interaction.user.id}${originalInteraction.id}` && !format) {
|
if (interaction.customId === `downloadQuality${interaction.user.id}${originalInteraction.id}` && !format) {
|
||||||
format = interaction.values[0];
|
format = interaction.values[0];
|
||||||
if (interaction.values[1]) format += '+' + interaction.values[1];
|
if (interaction.values[1]) format += '+' + interaction.values[1];
|
||||||
|
@ -187,7 +195,6 @@ async function download(url, interaction, originalInteraction, format = undefine
|
||||||
|
|
||||||
Embed.setAuthor({ name: `${Embed.data.author.name} (${fileSize.toFixed(2)} MB)`, iconURL: Embed.data.author.icon_url, url: Embed.data.author.url });
|
Embed.setAuthor({ name: `${Embed.data.author.name} (${fileSize.toFixed(2)} MB)`, iconURL: Embed.data.author.icon_url, url: Embed.data.author.url });
|
||||||
|
|
||||||
|
|
||||||
let message = null;
|
let message = null;
|
||||||
if (interaction.isMessage && interaction.reference !== null) {
|
if (interaction.isMessage && interaction.reference !== null) {
|
||||||
const channel = client.channels.resolve(interaction.reference.channelId);
|
const channel = client.channels.resolve(interaction.reference.channelId);
|
||||||
|
@ -280,4 +287,18 @@ async function checkSize(url, format, args, interaction, tries = 0) {
|
||||||
tries++;
|
tries++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function getVideoDescription(urlArg) {
|
||||||
|
return await new Promise((resolve, reject) => {
|
||||||
|
execFile('./bin/yt-dlp', [urlArg, '--no-warnings', '-O', '%(description)s'], (err, stdout, stderr) => {
|
||||||
|
if (err) {
|
||||||
|
reject(stderr);
|
||||||
|
}
|
||||||
|
if (stderr) {
|
||||||
|
console.error(stderr);
|
||||||
|
}
|
||||||
|
resolve(stdout.slice(0, 240));
|
||||||
|
});
|
||||||
|
});
|
||||||
}
|
}
|
Loading…
Reference in a new issue