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

                                                              


                                        

                           
                                             
                                      










                                                                              
                                                                            
                                   


                                
                           


                    
                                          
                       



                                                                 



       
                       
 
import * as cors from 'cors'
import * as express from 'express'
import { WEBSERVER } from '@server/initializers/constants'
import { asyncMiddleware } from '../middlewares'
import { webfingerValidator } from '../middlewares/validators'

const webfingerRouter = express.Router()

webfingerRouter.use(cors())

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

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

export {
  webfingerRouter
}

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

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

  const json = {
    subject: req.query.resource,
    aliases: [ actor.url ],
    links: [
      {
        rel: 'self',
        type: 'application/activity+json',
        href: actor.url
      },
      {
        rel: 'http://ostatus.org/schema/1.0/subscribe',
        template: WEBSERVER.URL + '/remote-interaction?uri={uri}'
      }
    ]
  }

  return res.json(json)
}