summaryrefslogtreecommitdiff
path: root/src/remote/activitypub/renderer/create.ts
blob: e1fc0515c8e34292f5e8f89617c0935b349a33aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import config from '../../../config';
import { Note } from '../../../models/entities/note';

export default (object: any, note: Note) => {
	const activity = {
		id: `${config.url}/notes/${note.id}/activity`,
		actor: `${config.url}/users/${note.userId}`,
		type: 'Create',
		published: note.createdAt.toISOString(),
		object
	} as any;

	if (object.to) activity.to = object.to;
	if (object.cc) activity.cc = object.cc;

	return activity;
};