Sharkey/src/server/activitypub/user.ts

61 lines
1.5 KiB
TypeScript
Raw Normal View History

2018-04-01 06:33:26 +03:00
import * as express from 'express';
2018-04-01 09:58:49 +03:00
import config from '../../conf';
import { extractPublic } from '../../crypto_key';
2018-04-01 12:12:51 +03:00
import context from '../../common/remote/activitypub/context';
2018-04-01 09:58:49 +03:00
import parseAcct from '../../common/user/parse-acct';
import User, { ILocalAccount } from '../../models/user';
const app = express();
2018-04-01 06:43:59 +03:00
app.disable('x-powered-by');
app.get('/@:user', async (req, res, next) => {
const accepted = req.accepts(['html', 'application/activity+json', 'application/ld+json']);
2018-04-01 09:58:49 +03:00
if (!(['application/activity+json', 'application/ld+json'] as Array<any>).includes(accepted)) {
return next();
}
const { username, host } = parseAcct(req.params.user);
if (host !== null) {
2018-04-01 06:33:26 +03:00
return res.sendStatus(422);
}
const user = await User.findOne({
usernameLower: username.toLowerCase(),
host: null
});
if (user === null) {
2018-04-01 06:33:26 +03:00
return res.sendStatus(404);
}
const id = `${config.url}/@${user.username}`;
if (username !== user.username) {
return res.redirect(id);
}
res.json({
2018-04-01 12:12:51 +03:00
'@context': context,
type: 'Person',
id,
2018-04-01 09:58:49 +03:00
inbox: `${id}/inbox`,
preferredUsername: user.username,
name: user.name,
summary: user.description,
icon: user.avatarId && {
type: 'Image',
url: `${config.drive_url}/${user.avatarId}`
},
image: user.bannerId && {
type: 'Image',
url: `${config.drive_url}/${user.bannerId}`
},
publicKey: {
type: 'Key',
owner: id,
publicKeyPem: extractPublic((user.account as ILocalAccount).keypair)
}
});
});
export default app;