PeerTube/server/controllers/webfinger.ts

45 lines
1.1 KiB
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import cors from 'cors'
import 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()
webfingerRouter.use(cors())
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',
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
}