aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/middlewares/validators/webfinger.ts
blob: 3dbec6e4481d2af07f0428e1c9120e3913e48fd4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                  

                                                                                    

                                                     
                                                           
                                             



                                                                                                           
                                                                                      

                                                                            


                                                      
                                                                      

                                            

                                                        
                            
                                           


              
                            
                 







                                                                              
import * as express from 'express'
import { query } from 'express-validator/check'
import { isWebfingerResourceValid } from '../../helpers/custom-validators/webfinger'
import { logger } from '../../helpers/logger'
import { getHostWithPort } from '../../helpers/utils'
import { ActorModel } from '../../models/activitypub/actor'
import { areValidationErrors } from './utils'

const webfingerValidator = [
  query('resource').custom(isWebfingerResourceValid).withMessage('Should have a valid webfinger resource'),

  async (req: express.Request, res: express.Response, next: express.NextFunction) => {
    logger.debug('Checking webfinger parameters', { parameters: req.query })

    if (areValidationErrors(req, res)) return

    // Remove 'acct:' from the beginning of the string
    const nameWithHost = getHostWithPort(req.query.resource.substr(5))
    const [ name ] = nameWithHost.split('@')

    const actor = await ActorModel.loadLocalByName(name)
    if (!actor) {
      return res.status(404)
        .send({ error: 'Actor not found' })
        .end()
    }

    res.locals.actor = actor
    return next()
  }
]

// ---------------------------------------------------------------------------

export {
  webfingerValidator
}