misskey/src/common/remote/activitypub/renderer/key.ts

11 lines
352 B
TypeScript
Raw Normal View History

2018-04-01 12:18:36 +02:00
import config from '../../../../conf';
import { extractPublic } from '../../../../crypto_key';
2018-04-01 21:01:34 +02:00
import { ILocalUser } from '../../../../models/user';
2018-04-01 12:18:36 +02:00
2018-04-01 21:01:34 +02:00
export default (user: ILocalUser) => ({
id: `${config.url}/@${user.username}/publickey`,
2018-04-01 12:18:36 +02:00
type: 'Key',
2018-04-01 21:01:34 +02:00
owner: `${config.url}/@${user.username}`,
publicKeyPem: extractPublic(user.account.keypair)
2018-04-01 12:18:36 +02:00
});