]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/middlewares/validators/webfinger.ts
d50e6527fe4ac7ab3d9764c6372e90b96df91163
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / webfinger.ts
1 import * as express from 'express'
2 import { query } from 'express-validator'
3 import { isWebfingerLocalResourceValid } from '../../helpers/custom-validators/webfinger'
4 import { logger } from '../../helpers/logger'
5 import { ActorModel } from '../../models/activitypub/actor'
6 import { areValidationErrors } from './utils'
7 import { getHostWithPort } from '../../helpers/express-utils'
8
9 const webfingerValidator = [
10 query('resource').custom(isWebfingerLocalResourceValid).withMessage('Should have a valid webfinger resource'),
11
12 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
13 logger.debug('Checking webfinger parameters', { parameters: req.query })
14
15 if (areValidationErrors(req, res)) return
16
17 // Remove 'acct:' from the beginning of the string
18 const nameWithHost = getHostWithPort(req.query.resource.substr(5))
19 const [ name ] = nameWithHost.split('@')
20
21 // FIXME: we don't need the full actor
22 const actor = await ActorModel.loadLocalByName(name)
23 if (!actor) {
24 return res.status(404)
25 .send({ error: 'Actor not found' })
26 .end()
27 }
28
29 res.locals.actorFull = actor
30 return next()
31 }
32 ]
33
34 // ---------------------------------------------------------------------------
35
36 export {
37 webfingerValidator
38 }