yumechi-no-kuni/src/remote/activitypub/renderer/key.ts

11 lines
337 B
TypeScript
Raw Normal View History

2018-04-01 23:15:53 -05:00
import config from '../../../config';
2018-04-01 14:15:27 -05:00
import { extractPublic } from '../../../crypto_key';
import { ILocalUser } from '../../../models/user';
2018-04-01 05:18:36 -05:00
2018-04-01 14:01:34 -05:00
export default (user: ILocalUser) => ({
id: `${config.url}/@${user.username}/publickey`,
2018-04-01 05:18:36 -05:00
type: 'Key',
2018-04-01 14:01:34 -05:00
owner: `${config.url}/@${user.username}`,
2018-04-07 13:58:11 -05:00
publicKeyPem: extractPublic(user.keypair)
2018-04-01 05:18:36 -05:00
});