2021-12-23 22:36:13 -05:00
|
|
|
import { Message } from 'eris';
|
|
|
|
import axios, { AxiosResponse } from 'axios';
|
|
|
|
import { Command, Client } from '../class';
|
|
|
|
|
|
|
|
export default class PGP_Upload extends Command {
|
|
|
|
constructor(client: Client) {
|
|
|
|
super(client);
|
|
|
|
this.name = 'upload';
|
|
|
|
this.aliases = ['add', 'link', 'connect'];
|
|
|
|
this.description = 'Uploads your PGP public key as a file to our database for authenticity and identity verification.';
|
|
|
|
this.usage = `${this.client.config.prefix}pgp ${this.name}`;
|
|
|
|
this.permissions = 0;
|
|
|
|
this.guildOnly = true;
|
|
|
|
this.enabled = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async run(message: Message) {
|
|
|
|
if (!message.attachments.length) return this.error(message.channel, 'Please upload your PGP public key as an attachment.');
|
2022-03-01 12:18:21 -05:00
|
|
|
if (!await this.client.db.mongo.Member.exists({ userID: message.author.id })) {
|
|
|
|
await this.client.db.mongo.Member.create({ userID: message.author.id });
|
2021-12-23 22:36:13 -05:00
|
|
|
}
|
|
|
|
const [pgpAttachment] = message.attachments;
|
|
|
|
const pgpReq: AxiosResponse<string> = await axios(pgpAttachment.url);
|
|
|
|
const pgp = pgpReq.data;
|
|
|
|
try {
|
|
|
|
await axios.post('https://certapi.libraryofcode.org/pgp', pgp);
|
|
|
|
} catch {
|
|
|
|
return this.error(message.channel, 'Unable to parse your PGP public key.');
|
|
|
|
}
|
2022-03-01 12:18:21 -05:00
|
|
|
await this.client.db.mongo.Member.updateOne({ userID: message.author.id }, { pgp });
|
2021-12-23 22:36:13 -05:00
|
|
|
this.success(message.channel, 'PGP public key successfully uploaded to your account.');
|
|
|
|
}
|
|
|
|
}
|