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

export default (object: any, note: INote) => {
	const attributedTo = `${config.url}/users/${note.userId}`;

	return {
		id: `${config.url}/notes/${note._id}/activity`,
		actor: `${config.url}/users/${note.userId}`,
		type: 'Announce',
		published: note.createdAt.toISOString(),
		to: ['https://www.w3.org/ns/activitystreams#Public'],
		cc: [attributedTo, `${attributedTo}/followers`],
		object
	};
};