forked from engineering/cloudservices
FINALLY
parent
198aea79f6
commit
dee2e6a820
|
@ -36,7 +36,7 @@ export default class Parseall extends Command {
|
||||||
const parsed: ({ status: 'fulfilled', value: Certificate } | { status: 'rejected', reason: Error })[] = await Promise.allSettled(files.map((c) => parseCertificate(this.client, c)));
|
const parsed: ({ status: 'fulfilled', value: Certificate } | { status: 'rejected', reason: Error })[] = await Promise.allSettled(files.map((c) => parseCertificate(this.client, c)));
|
||||||
|
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
const final: string[] = await Promise.allSettled(search.map(async (a) => {
|
const final: {status: 'fulfilled', value: string}[] = await Promise.allSettled(search.map(async (a) => {
|
||||||
const result = parsed[search.findIndex((acc) => acc === a)];
|
const result = parsed[search.findIndex((acc) => acc === a)];
|
||||||
if (result.status === 'rejected') {
|
if (result.status === 'rejected') {
|
||||||
if (result.reason.message.includes('no such file or directory') || result.reason.message.includes('File doesn\'t exist.')) return `${this.client.stores.emojis.error} **${a.username}** Unable to locate certificate`;
|
if (result.reason.message.includes('no such file or directory') || result.reason.message.includes('File doesn\'t exist.')) return `${this.client.stores.emojis.error} **${a.username}** Unable to locate certificate`;
|
||||||
|
@ -59,9 +59,8 @@ export default class Parseall extends Command {
|
||||||
if (notAfter < new Date()) return `${this.client.stores.emojis.error} **${a.username}** Expired ${time} ago`;
|
if (notAfter < new Date()) return `${this.client.stores.emojis.error} **${a.username}** Expired ${time} ago`;
|
||||||
return `${this.client.stores.emojis.success} **${a.username}** Expires in ${time}`;
|
return `${this.client.stores.emojis.success} **${a.username}** Expires in ${time}`;
|
||||||
}));
|
}));
|
||||||
this.client.signale.info(final);
|
|
||||||
|
|
||||||
if (final.join('\n').length < 2048) embed.setDescription(final.join('\n'));
|
if (final.map((a) => a.value).join('\n').length < 2048) embed.setDescription(final.join('\n'));
|
||||||
else {
|
else {
|
||||||
const split = this.client.util.splitString(final.join('\n'), 1024);
|
const split = this.client.util.splitString(final.join('\n'), 1024);
|
||||||
split.forEach((s) => embed.addField('\u200B', s));
|
split.forEach((s) => embed.addField('\u200B', s));
|
||||||
|
|
Loading…
Reference in New Issue