2021-08-27 08:32:44 -04:00
|
|
|
import express from 'express'
|
2019-07-25 10:23:44 -04:00
|
|
|
import { query } from 'express-validator'
|
2021-07-16 04:42:24 -04:00
|
|
|
import { HttpStatusCode } from '../../../shared/models/http/http-error-codes'
|
2018-08-16 09:25:20 -04:00
|
|
|
import { isWebfingerLocalResourceValid } from '../../helpers/custom-validators/webfinger'
|
2021-05-11 05:15:29 -04:00
|
|
|
import { getHostWithPort } from '../../helpers/express-utils'
|
2017-12-28 05:16:08 -05:00
|
|
|
import { logger } from '../../helpers/logger'
|
2021-05-11 05:15:29 -04:00
|
|
|
import { ActorModel } from '../../models/actor/actor'
|
2021-06-03 11:33:44 -04:00
|
|
|
import { areValidationErrors } from './shared'
|
2017-11-14 11:31:26 -05:00
|
|
|
|
|
|
|
const webfingerValidator = [
|
2018-08-16 09:25:20 -04:00
|
|
|
query('resource').custom(isWebfingerLocalResourceValid).withMessage('Should have a valid webfinger resource'),
|
2017-11-14 11:31:26 -05:00
|
|
|
|
2017-11-27 11:30:46 -05:00
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2017-11-14 11:31:26 -05:00
|
|
|
logger.debug('Checking webfinger parameters', { parameters: req.query })
|
|
|
|
|
2017-11-27 11:30:46 -05:00
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
// Remove 'acct:' from the beginning of the string
|
2017-12-19 08:21:14 -05:00
|
|
|
const nameWithHost = getHostWithPort(req.query.resource.substr(5))
|
2017-11-27 11:30:46 -05:00
|
|
|
const [ name ] = nameWithHost.split('@')
|
|
|
|
|
2020-01-28 08:45:17 -05:00
|
|
|
const actor = await ActorModel.loadLocalUrlByName(name)
|
2017-12-14 11:38:41 -05:00
|
|
|
if (!actor) {
|
2021-05-31 19:36:53 -04:00
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.NOT_FOUND_404,
|
|
|
|
message: 'Actor not found'
|
|
|
|
})
|
2017-11-27 11:30:46 -05:00
|
|
|
}
|
|
|
|
|
2020-01-28 08:45:17 -05:00
|
|
|
res.locals.actorUrl = actor
|
2017-11-27 11:30:46 -05:00
|
|
|
return next()
|
2017-11-14 11:31:26 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
webfingerValidator
|
|
|
|
}
|