PeerTube/server/middlewares/validators/webfinger.ts

43 lines
1.3 KiB
TypeScript
Raw Normal View History

2017-11-14 17:31:26 +01:00
import * as express from 'express'
2017-11-23 17:53:38 +01:00
import { query } from 'express-validator/check'
import { isWebfingerResourceValid } from '../../helpers/custom-validators/webfinger'
2017-11-14 17:31:26 +01:00
import { database as db } from '../../initializers'
2017-11-23 17:53:38 +01:00
import { checkErrors } from './utils'
import { logger } from '../../helpers/logger'
2017-11-14 17:31:26 +01:00
const webfingerValidator = [
query('resource').custom(isWebfingerResourceValid).withMessage('Should have a valid webfinger resource'),
(req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking webfinger parameters', { parameters: req.query })
checkErrors(req, res, () => {
// Remove 'acct:' from the beginning of the string
const nameWithHost = req.query.resource.substr(5)
2017-11-17 15:52:26 +01:00
const [ name ] = nameWithHost.split('@')
2017-11-14 17:31:26 +01:00
db.Account.loadLocalByName(name)
.then(account => {
if (!account) {
return res.status(404)
.send({ error: 'Account not found' })
.end()
}
res.locals.account = account
return next()
})
.catch(err => {
logger.error('Error in webfinger validator.', err)
return res.sendStatus(500)
})
})
}
]
// ---------------------------------------------------------------------------
export {
webfingerValidator
}