PeerTube/server/core/middlewares/validators/webfinger.ts

38 lines
1.1 KiB
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import express from 'express'
2019-07-25 16:23:44 +02:00
import { query } from 'express-validator'
import { HttpStatusCode } from '@peertube/peertube-models'
import { isWebfingerLocalResourceValid } from '../../helpers/custom-validators/webfinger.js'
import { getHostWithPort } from '../../helpers/express-utils.js'
import { ActorModel } from '../../models/actor/actor.js'
import { areValidationErrors } from './shared/index.js'
2017-11-14 17:31:26 +01:00
const webfingerValidator = [
query('resource')
.custom(isWebfingerLocalResourceValid),
2017-11-14 17:31:26 +01:00
2017-11-27 17:30:46 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
if (areValidationErrors(req, res)) return
// Remove 'acct:' from the beginning of the string
2017-12-19 14:21:14 +01:00
const nameWithHost = getHostWithPort(req.query.resource.substr(5))
2017-11-27 17:30:46 +01:00
const [ name ] = nameWithHost.split('@')
2020-01-28 14:45:17 +01:00
const actor = await ActorModel.loadLocalUrlByName(name)
2017-12-14 17:38:41 +01:00
if (!actor) {
return res.fail({
status: HttpStatusCode.NOT_FOUND_404,
message: 'Actor not found'
})
2017-11-27 17:30:46 +01:00
}
2020-01-28 14:45:17 +01:00
res.locals.actorUrl = actor
2017-11-27 17:30:46 +01:00
return next()
2017-11-14 17:31:26 +01:00
}
]
// ---------------------------------------------------------------------------
export {
webfingerValidator
}