summaryrefslogtreecommitdiff
path: root/src/remote/activitypub/renderer/follow.ts
blob: 400b15ec7bedba180bbccd5821232ad3c41f62b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import config from '../../../config';
import { User } from '../../../models/entities/user';
import { Users } from '../../../models';

export default (follower: User, followee: User, requestId?: string) => {
	const follow = {
		type: 'Follow',
		actor: Users.isLocalUser(follower) ? `${config.url}/users/${follower.id}` : follower.uri,
		object: Users.isLocalUser(followee) ? `${config.url}/users/${followee.id}` : followee.uri
	} as any;

	if (requestId) follow.id = requestId;

	return follow;
};