2019-02-05 02:42:55 -06:00
|
|
|
import * as Router from 'koa-router';
|
|
|
|
|
|
|
|
import config from '../config';
|
|
|
|
import parseAcct from '../misc/acct/parse';
|
|
|
|
import Acct from '../misc/acct/type';
|
|
|
|
import { links } from './nodeinfo';
|
2019-02-20 01:13:43 -06:00
|
|
|
import { escapeAttribute, escapeValue } from '../prelude/xml';
|
2019-04-07 07:50:36 -05:00
|
|
|
import { Users } from '../models';
|
|
|
|
import { User } from '../models/entities/user';
|
2019-02-05 02:42:55 -06:00
|
|
|
|
|
|
|
// Init router
|
|
|
|
const router = new Router();
|
|
|
|
|
2019-02-20 01:13:43 -06:00
|
|
|
const XRD = (...x: { element: string, value?: string, attributes?: Record<string, string> }[]) =>
|
|
|
|
`<?xml version="1.0" encoding="UTF-8"?><XRD xmlns="http://docs.oasis-open.org/ns/xri/xrd-1.0">${x.map(({ element, value, attributes }) =>
|
|
|
|
`<${
|
|
|
|
Object.entries(typeof attributes === 'object' && attributes || {}).reduce((a, [k, v]) => `${a} ${k}="${escapeAttribute(v)}"`, element)
|
|
|
|
}${
|
|
|
|
typeof value === 'string' ? `>${escapeValue(value)}</${element}` : '/'
|
|
|
|
}>`).reduce((a, c) => a + c, '')}</XRD>`;
|
|
|
|
|
2019-02-05 02:42:55 -06:00
|
|
|
const webFingerPath = '/.well-known/webfinger';
|
2019-02-20 01:13:43 -06:00
|
|
|
const jrd = 'application/jrd+json';
|
|
|
|
const xrd = 'application/xrd+xml';
|
2019-02-05 02:42:55 -06:00
|
|
|
|
|
|
|
router.get('/.well-known/host-meta', async ctx => {
|
2019-02-20 01:13:43 -06:00
|
|
|
ctx.set('Content-Type', xrd);
|
|
|
|
ctx.body = XRD({ element: 'Link', attributes: {
|
|
|
|
type: xrd,
|
|
|
|
template: `${config.url}${webFingerPath}?resource={uri}`
|
|
|
|
}});
|
2019-02-05 02:42:55 -06:00
|
|
|
});
|
|
|
|
|
|
|
|
router.get('/.well-known/host-meta.json', async ctx => {
|
2019-02-20 01:13:43 -06:00
|
|
|
ctx.set('Content-Type', jrd);
|
2019-02-05 02:42:55 -06:00
|
|
|
ctx.body = {
|
|
|
|
links: [{
|
|
|
|
rel: 'lrdd',
|
2019-02-20 01:13:43 -06:00
|
|
|
type: jrd,
|
2019-02-05 02:42:55 -06:00
|
|
|
template: `${config.url}${webFingerPath}?resource={uri}`
|
|
|
|
}]
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
router.get('/.well-known/nodeinfo', async ctx => {
|
|
|
|
ctx.body = { links };
|
|
|
|
});
|
|
|
|
|
|
|
|
router.get(webFingerPath, async ctx => {
|
2019-04-07 07:50:36 -05:00
|
|
|
const fromId = (id: User['id']): Record<string, any> => ({
|
|
|
|
id,
|
|
|
|
host: null
|
|
|
|
});
|
|
|
|
|
2019-02-05 02:42:55 -06:00
|
|
|
const generateQuery = (resource: string) =>
|
|
|
|
resource.startsWith(`${config.url.toLowerCase()}/users/`) ?
|
2019-04-12 11:43:22 -05:00
|
|
|
fromId(resource.split('/').pop()!) :
|
2019-02-05 02:42:55 -06:00
|
|
|
fromAcct(parseAcct(
|
2019-04-12 11:43:22 -05:00
|
|
|
resource.startsWith(`${config.url.toLowerCase()}/@`) ? resource.split('/').pop()! :
|
2019-02-05 02:42:55 -06:00
|
|
|
resource.startsWith('acct:') ? resource.slice('acct:'.length) :
|
|
|
|
resource));
|
|
|
|
|
|
|
|
const fromAcct = (acct: Acct): Record<string, any> | number =>
|
|
|
|
!acct.host || acct.host === config.host.toLowerCase() ? {
|
|
|
|
usernameLower: acct.username,
|
|
|
|
host: null
|
|
|
|
} : 422;
|
|
|
|
|
|
|
|
if (typeof ctx.query.resource !== 'string') {
|
|
|
|
ctx.status = 400;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const query = generateQuery(ctx.query.resource.toLowerCase());
|
|
|
|
|
|
|
|
if (typeof query === 'number') {
|
|
|
|
ctx.status = query;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
const user = await Users.findOne(query);
|
2019-02-05 02:42:55 -06:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
if (user == null) {
|
2019-02-05 02:42:55 -06:00
|
|
|
ctx.status = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-02-20 01:13:43 -06:00
|
|
|
const subject = `acct:${user.username}@${config.host}`;
|
|
|
|
const self = {
|
|
|
|
rel: 'self',
|
|
|
|
type: 'application/activity+json',
|
2019-04-07 07:50:36 -05:00
|
|
|
href: `${config.url}/users/${user.id}`
|
2019-02-05 02:42:55 -06:00
|
|
|
};
|
2019-02-20 01:13:43 -06:00
|
|
|
const profilePage = {
|
|
|
|
rel: 'http://webfinger.net/rel/profile-page',
|
|
|
|
type: 'text/html',
|
|
|
|
href: `${config.url}/@${user.username}`
|
|
|
|
};
|
|
|
|
const subscribe = {
|
|
|
|
rel: 'http://ostatus.org/schema/1.0/subscribe',
|
|
|
|
template: `${config.url}/authorize-follow?acct={uri}`
|
|
|
|
};
|
|
|
|
|
|
|
|
if (ctx.accepts(jrd, xrd) === xrd) {
|
|
|
|
ctx.body = XRD(
|
|
|
|
{ element: 'Subject', value: subject },
|
|
|
|
{ element: 'Link', attributes: self },
|
|
|
|
{ element: 'Link', attributes: profilePage },
|
|
|
|
{ element: 'Link', attributes: subscribe });
|
|
|
|
ctx.type = xrd;
|
|
|
|
} else {
|
|
|
|
ctx.body = {
|
|
|
|
subject,
|
|
|
|
links: [self, profilePage, subscribe]
|
|
|
|
};
|
|
|
|
ctx.type = jrd;
|
|
|
|
}
|
2019-02-05 02:42:55 -06:00
|
|
|
|
2019-02-20 01:13:43 -06:00
|
|
|
ctx.vary('Accept');
|
2019-02-05 02:42:55 -06:00
|
|
|
ctx.set('Cache-Control', 'public, max-age=180');
|
|
|
|
});
|
|
|
|
|
|
|
|
// Return 404 for other .well-known
|
|
|
|
router.all('/.well-known/*', async ctx => {
|
|
|
|
ctx.status = 404;
|
|
|
|
});
|
|
|
|
|
|
|
|
export default router;
|