add endpoint for pgp /pgp/:userID

master
Matthew 2021-07-02 22:34:40 -04:00
parent fc03ce6b66
commit 86994430c2
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 10 additions and 0 deletions

View File

@ -29,5 +29,15 @@ export default class Keys extends Route {
message: memberDoc.x509,
});
});
this.router.get('/pgp/:userID', async (req, res) => {
const memberDoc = await this.server.client.db.Member.findOne({ userID: req.params.userID }).lean().exec();
const member = this.mainGuild.members.get(req.params.userID);
if (!member || !memberDoc || !memberDoc?.pgp) return res.status(404).json({ code: this.constants.codes.NOT_FOUND, message: this.constants.messages.NOT_FOUND });
return res.status(200).json({
code: this.constants.codes.SUCCESS,
message: memberDoc.pgp,
});
});
}
}