2018-06-01 14:55:27 +02:00
|
|
|
import $ from 'cafy'; import ID from '../../../../../cafy-id';
|
2018-06-01 17:15:17 +02:00
|
|
|
import acceptFollowRequest from '../../../../../services/following/requests/accept';
|
2018-06-01 14:55:27 +02:00
|
|
|
import User from '../../../../../models/user';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Accept a follow request
|
|
|
|
*/
|
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
|
|
|
// Get 'followerId' parameter
|
|
|
|
const [followerId, followerIdErr] = $.type(ID).get(params.followerId);
|
|
|
|
if (followerIdErr) return rej('invalid followerId param');
|
|
|
|
|
|
|
|
// Fetch follower
|
|
|
|
const follower = await User.findOne({
|
|
|
|
_id: followerId
|
|
|
|
});
|
|
|
|
|
|
|
|
if (follower === null) {
|
|
|
|
return rej('follower not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
await acceptFollowRequest(user, follower);
|
|
|
|
|
|
|
|
// Send response
|
|
|
|
res();
|
|
|
|
});
|