iceshrimp/src/remote/activitypub/renderer/key.ts

11 lines
337 B
TypeScript
Raw Normal View History

2018-04-02 13:15:53 +09:00
import config from '../../../config';
2018-04-02 04:15:27 +09:00
import { extractPublic } from '../../../crypto_key';
import { ILocalUser } from '../../../models/user';
2018-04-01 19:18:36 +09:00
2018-04-02 04:01:34 +09:00
export default (user: ILocalUser) => ({
2018-04-08 15:15:22 +09:00
id: `${config.url}/users/${user._id}/publickey`,
2018-04-01 19:18:36 +09:00
type: 'Key',
2018-04-08 15:15:22 +09:00
owner: `${config.url}/users/${user._id}`,
2018-04-08 03:58:11 +09:00
publicKeyPem: extractPublic(user.keypair)
2018-04-01 19:18:36 +09:00
});