2018-11-01 13:32:24 -05:00
|
|
|
import $ from 'cafy'; import ID, { transform } from '../../../../misc/cafy-id';
|
2018-04-18 22:43:25 -05:00
|
|
|
import Following from '../../../../models/following';
|
2018-11-01 23:47:44 -05:00
|
|
|
import define from '../../define';
|
2018-04-18 22:43:25 -05:00
|
|
|
|
2018-07-16 14:36:44 -05:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 16:59:43 -05:00
|
|
|
'ja-JP': '指定したユーザーのストーキングをやめます。',
|
|
|
|
'en-US': 'Unstalk a user.'
|
2018-07-16 14:36:44 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
kind: 'following-write',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
transform: transform,
|
2018-11-03 08:49:36 -05:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象のユーザーのID',
|
|
|
|
'en-US': 'Target user ID'
|
|
|
|
}
|
2018-11-01 13:32:24 -05:00
|
|
|
}
|
|
|
|
}
|
2018-07-16 14:36:44 -05:00
|
|
|
};
|
|
|
|
|
2018-11-01 23:47:44 -05:00
|
|
|
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
|
2018-11-01 13:32:24 -05:00
|
|
|
const follower = user;
|
2018-04-18 22:43:25 -05:00
|
|
|
|
|
|
|
// Fetch following
|
|
|
|
const following = await Following.findOne({
|
|
|
|
followerId: follower._id,
|
2018-11-01 13:32:24 -05:00
|
|
|
followeeId: ps.userId
|
2018-04-18 22:43:25 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
if (following === null) {
|
|
|
|
return rej('following not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stalk
|
|
|
|
await Following.update({ _id: following._id }, {
|
|
|
|
$set: {
|
|
|
|
stalk: false
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
res();
|
|
|
|
|
|
|
|
// TODO: イベント
|
2018-11-01 23:47:44 -05:00
|
|
|
}));
|