Diagnosis

merge-requests/4/head
Bsian 2020-01-04 15:34:21 +00:00
parent 3a40a6cc2b
commit 198aea79f6
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
1 changed files with 4 additions and 3 deletions

View File

@ -35,8 +35,9 @@ export default class Parseall extends Command {
// @ts-ignore // @ts-ignore
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)));
const final = search.map(async (a) => { // @ts-ignore
const result = await parsed[search.findIndex((acc) => acc === a)]; const final: string[] = await Promise.allSettled(search.map(async (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`;
if (result.reason.message.includes('panic: Certificate PEM Encode == nil')) return `${this.client.stores.emojis.error} **${a.username}** Invalid certificate`; if (result.reason.message.includes('panic: Certificate PEM Encode == nil')) return `${this.client.stores.emojis.error} **${a.username}** Invalid certificate`;
@ -57,7 +58,7 @@ 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); this.client.signale.info(final);
if (final.join('\n').length < 2048) embed.setDescription(final.join('\n')); if (final.join('\n').length < 2048) embed.setDescription(final.join('\n'));