Update well-known.ts

This commit is contained in:
Acid Chicken (硫酸鶏) 2019-11-12 23:46:35 +09:00 committed by GitHub
parent 44ab428803
commit 631ddc0efd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

@ -24,6 +24,9 @@ const jrd = 'application/jrd+json';
const xrd = 'application/xrd+xml';
router.get('/.well-known/host-meta', async ctx => {
ctx.set('Access-Control-Allow-Methods', 'GET');
ctx.set('Access-Control-Allow-Origin', '*');
ctx.set('Access-Control-Max-Age', '31536000');
ctx.set('Content-Type', xrd);
ctx.body = XRD({ element: 'Link', attributes: {
type: xrd,
@ -32,6 +35,9 @@ router.get('/.well-known/host-meta', async ctx => {
});
router.get('/.well-known/host-meta.json', async ctx => {
ctx.set('Access-Control-Allow-Methods', 'GET');
ctx.set('Access-Control-Allow-Origin', '*');
ctx.set('Access-Control-Max-Age', '31536000');
ctx.set('Content-Type', jrd);
ctx.body = {
links: [{
@ -43,10 +49,17 @@ router.get('/.well-known/host-meta.json', async ctx => {
});
router.get('/.well-known/nodeinfo', async ctx => {
ctx.set('Access-Control-Allow-Methods', 'GET');
ctx.set('Access-Control-Allow-Origin', '*');
ctx.set('Access-Control-Max-Age', '31536000');
ctx.body = { links };
});
router.get(webFingerPath, async ctx => {
ctx.set('Access-Control-Allow-Methods', 'GET');
ctx.set('Access-Control-Allow-Origin', '*');
ctx.set('Access-Control-Max-Age', '31536000');
const fromId = (id: User['id']): Record<string, any> => ({
id,
host: null