]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/middlewares/validators/webfinger.ts
Add beautiful loading bar
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / webfinger.ts
CommitLineData
350e31d6 1import * as express from 'express'
8d468a16
C
2import { query } from 'express-validator/check'
3import { isWebfingerResourceValid } from '../../helpers/custom-validators/webfinger'
8d468a16 4import { logger } from '../../helpers/logger'
a2431b7d
C
5import { database as db } from '../../initializers'
6import { areValidationErrors } from './utils'
350e31d6
C
7
8const webfingerValidator = [
9 query('resource').custom(isWebfingerResourceValid).withMessage('Should have a valid webfinger resource'),
10
a2431b7d 11 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
350e31d6
C
12 logger.debug('Checking webfinger parameters', { parameters: req.query })
13
a2431b7d
C
14 if (areValidationErrors(req, res)) return
15
16 // Remove 'acct:' from the beginning of the string
17 const nameWithHost = req.query.resource.substr(5)
18 const [ name ] = nameWithHost.split('@')
19
20 const account = await db.Account.loadLocalByName(name)
21 if (!account) {
22 return res.status(404)
23 .send({ error: 'Account not found' })
24 .end()
25 }
26
27 res.locals.account = account
28 return next()
350e31d6
C
29 }
30]
31
32// ---------------------------------------------------------------------------
33
34export {
35 webfingerValidator
36}