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

export default (follower: { id: User['id']; host: User['host']; uri: User['host'] }, followee: { id: User['id']; host: User['host']; uri: User['host'] }, 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;
};