mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-22 22:49:28 -07:00
Add AP proxy endpoint
This commit is contained in:
parent
c992b4fe28
commit
007282ef22
1 changed files with 22 additions and 0 deletions
|
@ -246,4 +246,26 @@ router.get(
|
|||
}
|
||||
)
|
||||
|
||||
// ActivityPub route
|
||||
router.get(
|
||||
'/get/activitypub',
|
||||
query('username').isString(),
|
||||
query('domain').isFQDN(),
|
||||
async (req, res) => {
|
||||
const errors = validationResult(req)
|
||||
if (!errors.isEmpty()) {
|
||||
return res.status(400).json({ errors: errors.array() })
|
||||
}
|
||||
|
||||
fetcher.activitypub
|
||||
.fn(req.query, opts)
|
||||
.then((data) => {
|
||||
return res.status(200).send(data)
|
||||
})
|
||||
.catch((err) => {
|
||||
return res.status(400).json({ errors: err.message ? err.message : err })
|
||||
})
|
||||
}
|
||||
)
|
||||
|
||||
module.exports = router
|
||||
|
|
Loading…
Reference in a new issue