2019-02-05 11:48:08 +09:00
|
|
|
import $ from 'cafy';
|
2021-08-19 21:55:45 +09:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
2019-02-02 00:16:27 +09:00
|
|
|
import * as ms from 'ms';
|
2021-08-19 21:55:45 +09:00
|
|
|
import deleteFollowing from '@/services/following/delete';
|
|
|
|
import define from '../../define';
|
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { getUser } from '../../common/getters';
|
|
|
|
import { Followings, Users } from '@/models/index';
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2018-07-17 04:36:44 +09:00
|
|
|
export const meta = {
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['following', 'users'],
|
|
|
|
|
2018-07-17 04:36:44 +09:00
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
|
|
|
max: 100
|
|
|
|
},
|
|
|
|
|
2020-02-15 21:33:32 +09:00
|
|
|
requireCredential: true as const,
|
2018-07-17 04:36:44 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
kind: 'write:following',
|
2018-10-22 05:16:27 +09:00
|
|
|
|
|
|
|
params: {
|
2018-11-02 03:32:24 +09:00
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
}
|
2019-02-22 11:46:58 +09: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'
|
|
|
|
},
|
2021-03-06 22:34:11 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
ref: 'User'
|
2018-10-22 05:16:27 +09:00
|
|
|
}
|
2018-07-17 04:36:44 +09:00
|
|
|
};
|
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
export default define(meta, async (ps, user) => {
|
2018-10-22 05:16:27 +09:00
|
|
|
const follower = user;
|
2017-01-18 05:26:29 +09:00
|
|
|
|
2016-12-29 07:49:51 +09:00
|
|
|
// Check if the followee is yourself
|
2019-04-07 21:50:36 +09:00
|
|
|
if (user.id === ps.userId) {
|
2019-02-22 11:46:58 +09:00
|
|
|
throw new ApiError(meta.errors.followeeIsYourself);
|
2016-12-29 07:49:51 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get followee
|
2019-02-22 14:02:56 +09: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 07:49:51 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
// Check not following
|
2019-04-07 21:50:36 +09:00
|
|
|
const exist = await Followings.findOne({
|
|
|
|
followerId: follower.id,
|
|
|
|
followeeId: followee.id
|
2016-12-29 07:49:51 +09:00
|
|
|
});
|
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
if (exist == null) {
|
2019-02-22 11:46:58 +09:00
|
|
|
throw new ApiError(meta.errors.notFollowing);
|
2016-12-29 07:49:51 +09:00
|
|
|
}
|
|
|
|
|
2018-09-13 01:50:21 +09:00
|
|
|
await deleteFollowing(follower, followee);
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
return await Users.pack(followee.id, user);
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|