aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/webfinger.ts
blob: cc28a8909663223b94acb42e4ff8f8423ed651da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import * as express from 'express'
import { webfingerValidator } from '../middlewares/validators/webfinger'
import { AccountInstance } from '../models/account/account-interface'

const webfingerRouter = express.Router()

webfingerRouter.get('/.well-known/webfinger',
  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()
}