2018-04-24 11:13:06 +02:00
|
|
|
import $ from 'cafy'; import ID from '../../../../cafy-id';
|
2018-04-19 05:43:25 +02:00
|
|
|
import Following from '../../../../models/following';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stalk a user
|
|
|
|
*/
|
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
|
|
|
const follower = user;
|
|
|
|
|
|
|
|
// Get 'userId' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [userId, userIdErr] = $.type(ID).get(params.userId);
|
2018-04-19 05:43:25 +02:00
|
|
|
if (userIdErr) return rej('invalid userId param');
|
|
|
|
|
|
|
|
// Fetch following
|
|
|
|
const following = await Following.findOne({
|
|
|
|
followerId: follower._id,
|
|
|
|
followeeId: userId
|
|
|
|
});
|
|
|
|
|
|
|
|
if (following === null) {
|
|
|
|
return rej('following not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stalk
|
|
|
|
await Following.update({ _id: following._id }, {
|
|
|
|
$set: {
|
|
|
|
stalk: true
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Send response
|
|
|
|
res();
|
|
|
|
|
|
|
|
// TODO: イベント
|
|
|
|
});
|