eslint fix
This commit is contained in:
parent
6ce2faf21b
commit
6983ea58b7
5 changed files with 37 additions and 37 deletions
|
@ -33,20 +33,20 @@ export default {
|
|||
const body = { type:command, uid: userid, reason: reason };
|
||||
Blacklists.create(body);
|
||||
if (command === 'guild') {
|
||||
let guildid = userid;
|
||||
const guildid = userid;
|
||||
await client.guilds.fetch(guildid);
|
||||
const guild =client.guilds.resolve(guildid).name;
|
||||
|
||||
return interaction.editReply(`The guild ${guild} (${guildid}) has been blacklisted with the following reason \`${reason}\``);
|
||||
const guild = client.guilds.resolve(guildid).name;
|
||||
|
||||
return interaction.editReply(`The guild ${guild} (${guildid}) has been blacklisted with the following reason \`${reason}\``);
|
||||
|
||||
}
|
||||
else {
|
||||
let user = userid;
|
||||
await client.users.fetch(userid);
|
||||
user = client.users.resolve(userid).username;
|
||||
|
||||
|
||||
return interaction.editReply(`${user} (${userid}) has been blacklisted from ${command} with the following reason \`${reason}\``);
|
||||
|
||||
|
||||
return interaction.editReply(`${user} (${userid}) has been blacklisted from ${command} with the following reason \`${reason}\``);
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
|
|
@ -196,7 +196,7 @@ async function download(url, interaction, originalInteraction, format = undefine
|
|||
if (!interaction.doAutocrop) {
|
||||
const bannedFormats = ['hevc'];
|
||||
const codec = await utils.getVideoCodec(output);
|
||||
|
||||
|
||||
if (bannedFormats.includes(codec)) {
|
||||
const oldOutput = output;
|
||||
output = `${os.tmpdir()}/264${file}`;
|
||||
|
|
|
@ -48,7 +48,7 @@ export default {
|
|||
quality = 100;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (args.fps) {
|
||||
if (args.fps <= 0) {
|
||||
args.fps = 1;
|
||||
|
|
|
@ -12,9 +12,9 @@ export default {
|
|||
const client = interaction.client;
|
||||
if (interaction.type !== InteractionType.ApplicationCommand) return;
|
||||
|
||||
const globalBlacklist = await db.Blacklists.findOne({ where: { type:'global', uid:interaction.user.id } })
|
||||
const globalBlacklist = await db.Blacklists.findOne({ where: { type:'global', uid:interaction.user.id } });
|
||||
const commandBlacklist = await db.Blacklists.findOne({ where: { type:interaction.commandName, uid:interaction.user.id } });
|
||||
|
||||
|
||||
if (interaction.guild) {
|
||||
const serverBlacklist = await db.Blacklists.findOne({ where: { type:'guild', uid:interaction.guild.id } });
|
||||
if (serverBlacklist) {
|
||||
|
@ -38,12 +38,12 @@ export default {
|
|||
|
||||
if (!command) return;
|
||||
|
||||
const isOptOut = await db.optout.findOne({ where: { userID: interaction.user.id } });
|
||||
let isOptOut = await db.optout.findOne({ where: { userID: interaction.user.id } });
|
||||
|
||||
if (commandName === 'optout') {
|
||||
isOptOut = true
|
||||
isOptOut = true;
|
||||
}
|
||||
|
||||
|
||||
const timestamp = new Date();
|
||||
console.log(`[${timestamp.toISOString()}] \x1b[33m${ isOptOut ? 'A user' : `${userTag} (${userID})`}\x1b[0m launched command \x1b[33m${commandName}\x1b[0m using slash`);
|
||||
|
||||
|
|
|
@ -139,35 +139,35 @@ async function getMaxFileSize(guild) {
|
|||
async function autoCrop(input, output) {
|
||||
return await new Promise((resolve, reject) => {
|
||||
let ffprobeInput = input;
|
||||
if (process.platform === 'win32') {
|
||||
if (process.platform === 'win32') {
|
||||
// ffprobe 'movie=' options does not like windows absolute path
|
||||
ffprobeInput = input.replace(/\\/g, '/').replace(/\:/g, '\\\\:');
|
||||
}
|
||||
|
||||
execFile('ffprobe',
|
||||
execFile('ffprobe',
|
||||
['-f', 'lavfi', '-i', `movie=${ffprobeInput},cropdetect`, '-show_entries',
|
||||
'packet_tags=lavfi.cropdetect.w,lavfi.cropdetect.h,lavfi.cropdetect.x,lavfi.cropdetect.y',
|
||||
'-read_intervals', '%+#10', '-hide_banner', '-print_format', 'json'], async (err, stdout, stderr) => {
|
||||
if (err) {
|
||||
reject(stderr);
|
||||
}
|
||||
if (stderr) {
|
||||
console.error(stderr);
|
||||
}
|
||||
const packets = JSON.parse(stdout).packets;
|
||||
|
||||
for (let i = 0; i < packets.length; i++) {
|
||||
const element = packets[i];
|
||||
|
||||
if (element.tags) {
|
||||
const cropdetect = element.tags;
|
||||
await ffmpeg(['-i', input, '-vf', `crop=${cropdetect['lavfi.cropdetect.w']}:${cropdetect['lavfi.cropdetect.h']}:${cropdetect['lavfi.cropdetect.x']}:${cropdetect['lavfi.cropdetect.y']}`, '-vcodec', 'libx264', '-acodec', 'aac', output])
|
||||
break;
|
||||
'packet_tags=lavfi.cropdetect.w,lavfi.cropdetect.h,lavfi.cropdetect.x,lavfi.cropdetect.y',
|
||||
'-read_intervals', '%+#10', '-hide_banner', '-print_format', 'json'], async (err, stdout, stderr) => {
|
||||
if (err) {
|
||||
reject(stderr);
|
||||
}
|
||||
}
|
||||
if (stderr) {
|
||||
console.error(stderr);
|
||||
}
|
||||
const packets = JSON.parse(stdout).packets;
|
||||
|
||||
console.log(NODE_ENV === 'development' ? stdout : null);
|
||||
resolve();
|
||||
});
|
||||
for (let i = 0; i < packets.length; i++) {
|
||||
const element = packets[i];
|
||||
|
||||
if (element.tags) {
|
||||
const cropdetect = element.tags;
|
||||
await ffmpeg(['-i', input, '-vf', `crop=${cropdetect['lavfi.cropdetect.w']}:${cropdetect['lavfi.cropdetect.h']}:${cropdetect['lavfi.cropdetect.x']}:${cropdetect['lavfi.cropdetect.y']}`, '-vcodec', 'libx264', '-acodec', 'aac', output]);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
console.log(NODE_ENV === 'development' ? stdout : null);
|
||||
resolve();
|
||||
});
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue