egirlskey/src/server/webfinger.ts

74 lines
1.7 KiB
TypeScript
Raw Normal View History

2018-04-18 10:24:09 +00:00
import * as mongo from 'mongodb';
2018-04-12 15:51:55 +00:00
import * as Router from 'koa-router';
2018-04-05 06:54:12 +00:00
2018-04-02 04:15:53 +00:00
import config from '../config';
2018-07-07 10:19:00 +00:00
import parseAcct from '../misc/acct/parse';
2018-04-18 10:24:09 +00:00
import User, { IUser } from '../models/user';
2018-04-01 05:12:07 +00:00
2018-04-12 15:51:55 +00:00
// Init router
const router = new Router();
2018-04-01 05:12:07 +00:00
2018-04-12 15:51:55 +00:00
router.get('/.well-known/webfinger', async ctx => {
if (typeof ctx.query.resource !== 'string') {
ctx.status = 400;
return;
2018-04-01 05:12:07 +00:00
}
2018-04-12 15:51:55 +00:00
const resourceLower = ctx.query.resource.toLowerCase();
2018-04-01 05:12:07 +00:00
let acctLower;
2018-04-18 10:24:09 +00:00
let id;
2018-04-01 05:12:07 +00:00
2018-04-18 10:24:09 +00:00
if (resourceLower.startsWith(config.url.toLowerCase() + '/@')) {
acctLower = resourceLower.split('/').pop();
} else if (resourceLower.startsWith(config.url.toLowerCase() + '/users/')) {
id = new mongo.ObjectID(resourceLower.split('/').pop());
2018-04-01 05:12:07 +00:00
} else if (resourceLower.startsWith('acct:')) {
acctLower = resourceLower.slice('acct:'.length);
} else {
acctLower = resourceLower;
}
2018-04-18 10:24:09 +00:00
let user: IUser;
if (acctLower) {
const parsedAcctLower = parseAcct(acctLower);
if (![null, config.host.toLowerCase()].includes(parsedAcctLower.host)) {
ctx.status = 422;
return;
}
2018-04-01 05:12:07 +00:00
2018-04-18 10:24:09 +00:00
user = await User.findOne({
usernameLower: parsedAcctLower.username,
host: null
});
} else {
user = await User.findOne({
_id: id,
host: null
});
}
2018-04-12 15:51:55 +00:00
2018-04-01 05:12:07 +00:00
if (user === null) {
2018-04-12 15:51:55 +00:00
ctx.status = 404;
return;
2018-04-01 05:12:07 +00:00
}
2018-04-12 15:51:55 +00:00
ctx.body = {
2018-04-01 05:12:07 +00:00
subject: `acct:${user.username}@${config.host}`,
2018-04-05 06:54:12 +00:00
links: [{
rel: 'self',
type: 'application/activity+json',
2018-04-08 06:25:17 +00:00
href: `${config.url}/users/${user._id}`
2018-04-05 06:54:12 +00:00
}, {
rel: 'http://webfinger.net/rel/profile-page',
type: 'text/html',
href: `${config.url}/@${user.username}`
2018-04-08 06:25:17 +00:00
}, {
rel: 'http://ostatus.org/schema/1.0/subscribe',
template: `${config.url}/authorize-follow?acct={uri}`
2018-04-05 06:54:12 +00:00
}]
2018-04-12 15:51:55 +00:00
};
2018-04-01 05:12:07 +00:00
});
2018-04-12 15:51:55 +00:00
export default router;