2018-04-01 23:15:53 -05:00
|
|
|
import config from '../../../config';
|
2018-05-31 08:56:02 -05:00
|
|
|
import { IUser, isLocalUser } from '../../../models/user';
|
2018-04-01 05:43:26 -05:00
|
|
|
|
2018-10-15 02:51:23 -05:00
|
|
|
export default (follower: IUser, followee: IUser, requestId?: string) => {
|
|
|
|
const follow = {
|
|
|
|
type: 'Follow',
|
|
|
|
actor: isLocalUser(follower) ? `${config.url}/users/${follower._id}` : follower.uri,
|
|
|
|
object: isLocalUser(followee) ? `${config.url}/users/${followee._id}` : followee.uri
|
|
|
|
} as any;
|
|
|
|
|
|
|
|
if (requestId) follow.id = requestId;
|
|
|
|
|
|
|
|
return follow;
|
|
|
|
};
|