Sharkey/src/server/webfinger.ts

54 lines
1.4 KiB
TypeScript
Raw Normal View History

2018-04-05 09:54:12 +03:00
import * as express from 'express';
2018-04-02 07:15:53 +03:00
import config from '../config';
2018-04-02 07:44:32 +03:00
import parseAcct from '../acct/parse';
2018-04-01 08:12:07 +03:00
import User from '../models/user';
2018-04-08 09:25:17 +03:00
const app = express.Router();
2018-04-01 08:12:07 +03:00
2018-04-08 09:25:17 +03:00
app.get('/.well-known/webfinger', async (req, res) => {
2018-04-01 08:12:07 +03:00
if (typeof req.query.resource !== 'string') {
return res.sendStatus(400);
}
const resourceLower = req.query.resource.toLowerCase();
const webPrefix = config.url.toLowerCase() + '/@';
let acctLower;
if (resourceLower.startsWith(webPrefix)) {
acctLower = resourceLower.slice(webPrefix.length);
} else if (resourceLower.startsWith('acct:')) {
acctLower = resourceLower.slice('acct:'.length);
} else {
acctLower = resourceLower;
}
const parsedAcctLower = parseAcct(acctLower);
if (![null, config.host.toLowerCase()].includes(parsedAcctLower.host)) {
return res.sendStatus(422);
}
const user = await User.findOne({ usernameLower: parsedAcctLower.username, host: null });
if (user === null) {
return res.sendStatus(404);
}
return res.json({
subject: `acct:${user.username}@${config.host}`,
2018-04-05 09:54:12 +03:00
links: [{
rel: 'self',
type: 'application/activity+json',
2018-04-08 09:25:17 +03:00
href: `${config.url}/users/${user._id}`
2018-04-05 09:54:12 +03:00
}, {
rel: 'http://webfinger.net/rel/profile-page',
type: 'text/html',
href: `${config.url}/@${user.username}`
2018-04-08 09:25:17 +03:00
}, {
rel: 'http://ostatus.org/schema/1.0/subscribe',
template: `${config.url}/authorize-follow?acct={uri}`
2018-04-05 09:54:12 +03:00
}]
2018-04-01 08:12:07 +03:00
});
});
export default app;