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




                                                                        
                                             
                                      


























                                                                                                        
import * as express from 'express'
import { asyncMiddleware } from '../middlewares/async'
import { webfingerValidator } from '../middlewares/validators/webfinger'
import { AccountInstance } from '../models/account/account-interface'

const webfingerRouter = express.Router()

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

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

export {
  webfingerRouter
}

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

function webfingerController (req: express.Request, res: express.Response, next: express.NextFunction) {
  const account: AccountInstance = res.locals.account

  const json = {
    subject: req.query.resource,
    aliases: [ account.url ],
    links: [
      {
        rel: 'self',
        href: account.url
      }
    ]
  }

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