2019-02-05 03:48:08 +01:00
|
|
|
import $ from 'cafy';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { ID } from '../../../../misc/cafy-id';
|
2019-02-01 16:16:27 +01:00
|
|
|
import * as ms from 'ms';
|
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';
|
2019-02-22 06:02:56 +01:00
|
|
|
import { getUser } from '../../common/getters';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { Followings, Users } from '../../../../models';
|
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
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['following', 'users'],
|
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
|
|
|
max: 100
|
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
kind: 'write:following',
|
2018-10-21 22:16:27 +02:00
|
|
|
|
|
|
|
params: {
|
2018-11-01 19:32:24 +01:00
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
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
|
2019-04-07 14:50:36 +02:00
|
|
|
if (user.id === 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
|
2019-02-22 06:02:56 +01:00
|
|
|
const followee = await getUser(ps.userId).catch(e => {
|
|
|
|
if (e.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser);
|
|
|
|
throw e;
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
// Check not following
|
2019-04-07 14:50:36 +02:00
|
|
|
const exist = await Followings.findOne({
|
|
|
|
followerId: follower.id,
|
|
|
|
followeeId: followee.id
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
|
|
|
|
2019-04-07 14:50:36 +02: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-04-07 14:50:36 +02:00
|
|
|
return await Users.pack(followee.id, user);
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|