2020-03-11 03:46:03 -04:00
|
|
|
import * as cors from 'cors'
|
2017-11-14 11:31:26 -05:00
|
|
|
import * as express from 'express'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { asyncMiddleware } from '../middlewares'
|
|
|
|
import { webfingerValidator } from '../middlewares/validators'
|
2017-11-14 11:31:26 -05:00
|
|
|
|
|
|
|
const webfingerRouter = express.Router()
|
|
|
|
|
2020-03-11 03:46:03 -04:00
|
|
|
webfingerRouter.use(cors())
|
|
|
|
|
2017-11-15 04:10:41 -05:00
|
|
|
webfingerRouter.get('/.well-known/webfinger',
|
2017-11-27 11:30:46 -05:00
|
|
|
asyncMiddleware(webfingerValidator),
|
2017-11-14 11:31:26 -05:00
|
|
|
webfingerController
|
|
|
|
)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
webfingerRouter
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2019-03-19 05:35:15 -04:00
|
|
|
function webfingerController (req: express.Request, res: express.Response) {
|
2020-01-28 08:45:17 -05:00
|
|
|
const actor = res.locals.actorUrl
|
2017-11-14 11:31:26 -05:00
|
|
|
|
|
|
|
const json = {
|
|
|
|
subject: req.query.resource,
|
2017-12-14 11:38:41 -05:00
|
|
|
aliases: [ actor.url ],
|
2017-11-14 11:31:26 -05:00
|
|
|
links: [
|
|
|
|
{
|
|
|
|
rel: 'self',
|
2017-11-29 05:34:44 -05:00
|
|
|
type: 'application/activity+json',
|
2017-12-14 11:38:41 -05:00
|
|
|
href: actor.url
|
2017-11-14 11:31:26 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2020-01-28 08:45:17 -05:00
|
|
|
return res.json(json)
|
2017-11-14 11:31:26 -05:00
|
|
|
}
|