Sharkey/src/remote/activitypub/renderer/follow.ts

9 lines
347 B
TypeScript
Raw Normal View History

2018-04-02 07:15:53 +03:00
import config from '../../../config';
2018-05-31 16:56:02 +03:00
import { IUser, isLocalUser } from '../../../models/user';
2018-04-01 13:43:26 +03:00
2018-05-31 16:56:02 +03:00
export default (follower: IUser, followee: IUser) => ({
2018-04-01 13:43:26 +03:00
type: 'Follow',
2018-05-31 16:56:02 +03:00
actor: isLocalUser(follower) ? `${config.url}/users/${follower._id}` : follower.uri,
object: isLocalUser(followee) ? `${config.url}/users/${followee._id}` : followee.uri
2018-04-01 13:43:26 +03:00
});