2020-03-11 08:46:03 +01:00
|
|
|
import * as cors from 'cors'
|
2017-11-14 17:31:26 +01:00
|
|
|
import * as express from 'express'
|
2021-01-14 14:13:23 +01:00
|
|
|
import { WEBSERVER } from '@server/initializers/constants'
|
2017-12-12 17:53:50 +01:00
|
|
|
import { asyncMiddleware } from '../middlewares'
|
|
|
|
import { webfingerValidator } from '../middlewares/validators'
|
2017-11-14 17:31:26 +01:00
|
|
|
|
|
|
|
const webfingerRouter = express.Router()
|
|
|
|
|
2020-03-11 08:46:03 +01:00
|
|
|
webfingerRouter.use(cors())
|
|
|
|
|
2017-11-15 10:10:41 +01:00
|
|
|
webfingerRouter.get('/.well-known/webfinger',
|
2017-11-27 17:30:46 +01:00
|
|
|
asyncMiddleware(webfingerValidator),
|
2017-11-14 17:31:26 +01:00
|
|
|
webfingerController
|
|
|
|
)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
webfingerRouter
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2019-03-19 10:35:15 +01:00
|
|
|
function webfingerController (req: express.Request, res: express.Response) {
|
2020-01-28 14:45:17 +01:00
|
|
|
const actor = res.locals.actorUrl
|
2017-11-14 17:31:26 +01:00
|
|
|
|
|
|
|
const json = {
|
|
|
|
subject: req.query.resource,
|
2017-12-14 17:38:41 +01:00
|
|
|
aliases: [ actor.url ],
|
2017-11-14 17:31:26 +01:00
|
|
|
links: [
|
|
|
|
{
|
|
|
|
rel: 'self',
|
2017-11-29 11:34:44 +01:00
|
|
|
type: 'application/activity+json',
|
2017-12-14 17:38:41 +01:00
|
|
|
href: actor.url
|
2021-01-14 14:13:23 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
rel: 'http://ostatus.org/schema/1.0/subscribe',
|
|
|
|
template: WEBSERVER.URL + '/remote-interaction?uri={uri}'
|
2017-11-14 17:31:26 +01:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2020-01-28 14:45:17 +01:00
|
|
|
return res.json(json)
|
2017-11-14 17:31:26 +01:00
|
|
|
}
|