egirlskey/src/remote/activitypub/renderer/index.ts
2018-11-17 03:25:48 +09:00

18 lines
394 B
TypeScript

import config from '../../../config';
import * as uuid from 'uuid';
export default (x: any) => {
if (x == null) return null;
if (x !== null && typeof x === 'object' && x.id == null) {
x.id = `${config.url}/${uuid.v4()}`;
}
return Object.assign({
'@context': [
'https://www.w3.org/ns/activitystreams',
'https://w3id.org/security/v1',
{ Hashtag: 'as:Hashtag' }
]
}, x);
};