aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/controllers/webfinger.ts
blob: f2ba3c8266683db9ea793a1621c252021713d53f (plain) (tree)
1
2
3
4
5
6
7
8
                                  

                                                              


                                        
                                             
                                      










                                                                              

                                                                            


                                
                           


                    
                                          
                       





                             
import * as express from 'express'
import { asyncMiddleware } from '../middlewares'
import { webfingerValidator } from '../middlewares/validators'

const webfingerRouter = express.Router()

webfingerRouter.get('/.well-known/webfinger',
  asyncMiddleware(webfingerValidator),
  webfingerController
)

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

export {
  webfingerRouter
}

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

function webfingerController (req: express.Request, res: express.Response) {
  const actor = res.locals.actor

  const json = {
    subject: req.query.resource,
    aliases: [ actor.url ],
    links: [
      {
        rel: 'self',
        type: 'application/activity+json',
        href: actor.url
      }
    ]
  }

  return res.json(json).end()
}