2019-02-05 04:48:08 +02:00
|
|
|
import $ from 'cafy';
|
2019-04-07 15:50:36 +03:00
|
|
|
import { ID } from '../../../../misc/cafy-id';
|
2019-02-01 17:16:27 +02:00
|
|
|
import * as ms from 'ms';
|
2018-04-05 21:10:25 +03:00
|
|
|
import create from '../../../../services/following/create';
|
2018-11-02 06:47:44 +02:00
|
|
|
import define from '../../define';
|
2019-02-22 04:46:58 +02:00
|
|
|
import { ApiError } from '../../error';
|
2019-02-22 07:02:56 +02:00
|
|
|
import { getUser } from '../../common/getters';
|
2019-04-07 15:50:36 +03:00
|
|
|
import { Followings, Users } from '../../../../models';
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-07-16 22:36:44 +03:00
|
|
|
export const meta = {
|
2018-10-21 23:16:27 +03:00
|
|
|
stability: 'stable',
|
|
|
|
|
2018-07-16 22:36:44 +03:00
|
|
|
desc: {
|
2018-08-29 00:59:43 +03:00
|
|
|
'ja-JP': '指定したユーザーをフォローします。',
|
|
|
|
'en-US': 'Follow a user.'
|
2018-07-16 22:36:44 +03:00
|
|
|
},
|
|
|
|
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['following', 'users'],
|
|
|
|
|
2018-07-16 22:36:44 +03:00
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
|
|
|
max: 100
|
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
kind: 'write:following',
|
2018-10-21 23:16:27 +03:00
|
|
|
|
|
|
|
params: {
|
2018-11-01 20:32:24 +02:00
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
2018-10-21 23:16:27 +03:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象のユーザーのID',
|
|
|
|
'en-US': 'Target user ID'
|
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
}
|
2019-02-22 04:46:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchUser: {
|
|
|
|
message: 'No such user.',
|
|
|
|
code: 'NO_SUCH_USER',
|
|
|
|
id: 'fcd2eef9-a9b2-4c4f-8624-038099e90aa5'
|
|
|
|
},
|
|
|
|
|
|
|
|
followeeIsYourself: {
|
|
|
|
message: 'Followee is yourself.',
|
|
|
|
code: 'FOLLOWEE_IS_YOURSELF',
|
|
|
|
id: '26fbe7bb-a331-4857-af17-205b426669a9'
|
|
|
|
},
|
|
|
|
|
|
|
|
alreadyFollowing: {
|
|
|
|
message: 'You are already following that user.',
|
|
|
|
code: 'ALREADY_FOLLOWING',
|
|
|
|
id: '35387507-38c7-4cb9-9197-300b93783fa0'
|
|
|
|
},
|
|
|
|
|
|
|
|
blocking: {
|
|
|
|
message: 'You are blocking that user.',
|
|
|
|
code: 'BLOCKING',
|
|
|
|
id: '4e2206ec-aa4f-4960-b865-6c23ac38e2d9'
|
|
|
|
},
|
|
|
|
|
|
|
|
blocked: {
|
|
|
|
message: 'You are blocked by that user.',
|
|
|
|
code: 'BLOCKED',
|
|
|
|
id: 'c4ab57cc-4e41-45e9-bfd9-584f61e35ce0'
|
|
|
|
},
|
2018-10-21 23:16:27 +03:00
|
|
|
}
|
2018-07-16 22:36:44 +03:00
|
|
|
};
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps, user) => {
|
2018-10-21 23:16:27 +03:00
|
|
|
const follower = user;
|
2017-01-17 22:26:29 +02:00
|
|
|
|
2016-12-29 00:49:51 +02:00
|
|
|
// 自分自身
|
2019-04-07 15:50:36 +03:00
|
|
|
if (user.id === ps.userId) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError(meta.errors.followeeIsYourself);
|
2016-12-29 00:49:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get followee
|
2019-02-22 07:02:56 +02: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-29 00:49:51 +02:00
|
|
|
});
|
|
|
|
|
2017-02-27 09:31:33 +02:00
|
|
|
// Check if already following
|
2019-04-07 15:50:36 +03:00
|
|
|
const exist = await Followings.findOne({
|
|
|
|
followerId: follower.id,
|
|
|
|
followeeId: followee.id
|
2016-12-29 00:49:51 +02:00
|
|
|
});
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
if (exist != null) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError(meta.errors.alreadyFollowing);
|
2016-12-29 00:49:51 +02:00
|
|
|
}
|
|
|
|
|
2018-10-29 13:32:42 +02:00
|
|
|
try {
|
|
|
|
await create(follower, followee);
|
|
|
|
} catch (e) {
|
2019-02-22 04:46:58 +02:00
|
|
|
if (e.id === '710e8fb0-b8c3-4922-be49-d5d93d8e6a6e') throw new ApiError(meta.errors.blocking);
|
|
|
|
if (e.id === '3338392a-f764-498d-8855-db939dcf8c48') throw new ApiError(meta.errors.blocked);
|
|
|
|
throw e;
|
2018-10-29 13:32:42 +02:00
|
|
|
}
|
2018-04-01 13:43:26 +03:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
return await Users.pack(followee.id, user);
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|