2019-02-05 03:48:08 +01:00
|
|
|
import $ from 'cafy';
|
|
|
|
import ID, { transform } from '../../../../misc/cafy-id';
|
2019-02-01 16:16:27 +01:00
|
|
|
import * as ms from 'ms';
|
2018-11-02 05:47:44 +01:00
|
|
|
import User, { pack } from '../../../../models/user';
|
2018-03-29 13:32:18 +02:00
|
|
|
import Following from '../../../../models/following';
|
2018-04-10 14:47:56 +02:00
|
|
|
import deleteFollowing from '../../../../services/following/delete';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../define';
|
2019-02-22 03:46:58 +01:00
|
|
|
import { ApiError } from '../../error';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
export const meta = {
|
2018-10-21 22:16:27 +02:00
|
|
|
stability: 'stable',
|
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '指定したユーザーのフォローを解除します。',
|
|
|
|
'en-US': 'Unfollow a user.'
|
2018-07-16 21:36:44 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
|
|
|
max: 100
|
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
2018-10-21 22:16:27 +02:00
|
|
|
kind: 'following-write',
|
|
|
|
|
|
|
|
params: {
|
2018-11-01 19:32:24 +01:00
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
transform: transform,
|
2018-10-21 22:16:27 +02:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象のユーザーのID',
|
|
|
|
'en-US': 'Target user ID'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
}
|
2019-02-22 03:46:58 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchUser: {
|
|
|
|
message: 'No such user.',
|
|
|
|
code: 'NO_SUCH_USER',
|
|
|
|
id: '5b12c78d-2b28-4dca-99d2-f56139b42ff8'
|
|
|
|
},
|
|
|
|
|
|
|
|
followeeIsYourself: {
|
|
|
|
message: 'Followee is yourself.',
|
|
|
|
code: 'FOLLOWEE_IS_YOURSELF',
|
|
|
|
id: 'd9e400b9-36b0-4808-b1d8-79e707f1296c'
|
|
|
|
},
|
|
|
|
|
|
|
|
notFollowing: {
|
|
|
|
message: 'You are not following that user.',
|
|
|
|
code: 'NOT_FOLLOWING',
|
|
|
|
id: '5dbf82f5-c92b-40b1-87d1-6c8c0741fd09'
|
|
|
|
},
|
2018-10-21 22:16:27 +02:00
|
|
|
}
|
2018-07-16 21:36:44 +02:00
|
|
|
};
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps, user) => {
|
2018-10-21 22:16:27 +02:00
|
|
|
const follower = user;
|
2017-01-17 21:26:29 +01:00
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
// Check if the followee is yourself
|
2018-10-21 22:16:27 +02:00
|
|
|
if (user._id.equals(ps.userId)) {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new ApiError(meta.errors.followeeIsYourself);
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get followee
|
|
|
|
const followee = await User.findOne({
|
2018-10-21 22:16:27 +02:00
|
|
|
_id: ps.userId
|
2017-02-22 05:08:33 +01:00
|
|
|
}, {
|
|
|
|
fields: {
|
|
|
|
data: false,
|
2018-04-07 20:58:11 +02:00
|
|
|
'profile': false
|
2017-02-22 05:08:33 +01:00
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
if (followee === null) {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new ApiError(meta.errors.noSuchUser);
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check not following
|
|
|
|
const exist = await Following.findOne({
|
2018-03-29 07:48:47 +02:00
|
|
|
followerId: follower._id,
|
2018-04-02 14:57:36 +02:00
|
|
|
followeeId: followee._id
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
if (exist === null) {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new ApiError(meta.errors.notFollowing);
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
2018-09-12 18:50:21 +02:00
|
|
|
await deleteFollowing(follower, followee);
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
return await pack(followee._id, user);
|
|
|
|
});
|