2018-07-07 12:19:00 +02:00
|
|
|
import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
|
2018-04-19 05:43:25 +02:00
|
|
|
import Following from '../../../../models/following';
|
2018-06-18 02:54:53 +02:00
|
|
|
import { ILocalUser } from '../../../../models/user';
|
2018-04-19 05:43:25 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Stalk a user
|
|
|
|
*/
|
2018-07-05 19:58:29 +02:00
|
|
|
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
2018-04-19 05:43:25 +02:00
|
|
|
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: イベント
|
|
|
|
});
|