2021-11-12 04:47:04 -06:00
|
|
|
import ms from 'ms';
|
2021-08-19 07:55:45 -05:00
|
|
|
import create from '@/services/following/create';
|
|
|
|
import define from '../../define';
|
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { getUser } from '../../common/getters';
|
|
|
|
import { Followings, Users } from '@/models/index';
|
2022-02-03 11:06:24 -06:00
|
|
|
import { IdentifiableError } from '@/misc/identifiable-error';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-07-16 14:36:44 -05:00
|
|
|
export const meta = {
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['following', 'users'],
|
|
|
|
|
2018-07-16 14:36:44 -05:00
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
2021-12-09 08:58:30 -06:00
|
|
|
max: 100,
|
2018-07-16 14:36:44 -05:00
|
|
|
},
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: true,
|
2018-07-16 14:36:44 -05:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
kind: 'write:following',
|
2018-10-21 15:16:27 -05:00
|
|
|
|
2019-02-21 20:46:58 -06:00
|
|
|
errors: {
|
|
|
|
noSuchUser: {
|
|
|
|
message: 'No such user.',
|
|
|
|
code: 'NO_SUCH_USER',
|
2021-12-09 08:58:30 -06:00
|
|
|
id: 'fcd2eef9-a9b2-4c4f-8624-038099e90aa5',
|
2019-02-21 20:46:58 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
followeeIsYourself: {
|
|
|
|
message: 'Followee is yourself.',
|
|
|
|
code: 'FOLLOWEE_IS_YOURSELF',
|
2021-12-09 08:58:30 -06:00
|
|
|
id: '26fbe7bb-a331-4857-af17-205b426669a9',
|
2019-02-21 20:46:58 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
alreadyFollowing: {
|
|
|
|
message: 'You are already following that user.',
|
|
|
|
code: 'ALREADY_FOLLOWING',
|
2021-12-09 08:58:30 -06:00
|
|
|
id: '35387507-38c7-4cb9-9197-300b93783fa0',
|
2019-02-21 20:46:58 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
blocking: {
|
|
|
|
message: 'You are blocking that user.',
|
|
|
|
code: 'BLOCKING',
|
2021-12-09 08:58:30 -06:00
|
|
|
id: '4e2206ec-aa4f-4960-b865-6c23ac38e2d9',
|
2019-02-21 20:46:58 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
blocked: {
|
|
|
|
message: 'You are blocked by that user.',
|
|
|
|
code: 'BLOCKED',
|
2021-12-09 08:58:30 -06:00
|
|
|
id: 'c4ab57cc-4e41-45e9-bfd9-584f61e35ce0',
|
2019-02-21 20:46:58 -06:00
|
|
|
},
|
2021-03-06 07:34:11 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
ref: 'UserLite',
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2018-07-16 14:36:44 -05:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['userId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-18 23:05:32 -06:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2018-10-21 15:16:27 -05:00
|
|
|
const follower = user;
|
2017-01-17 14:26:29 -06:00
|
|
|
|
2016-12-28 16:49:51 -06:00
|
|
|
// 自分自身
|
2019-04-07 07:50:36 -05:00
|
|
|
if (user.id === ps.userId) {
|
2019-02-21 20:46:58 -06:00
|
|
|
throw new ApiError(meta.errors.followeeIsYourself);
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get followee
|
2019-02-21 23:02:56 -06: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 16:49:51 -06:00
|
|
|
});
|
|
|
|
|
2017-02-27 01:31:33 -06:00
|
|
|
// Check if already following
|
2019-04-07 07:50:36 -05:00
|
|
|
const exist = await Followings.findOne({
|
|
|
|
followerId: follower.id,
|
2021-12-09 08:58:30 -06:00
|
|
|
followeeId: followee.id,
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
if (exist != null) {
|
2019-02-21 20:46:58 -06:00
|
|
|
throw new ApiError(meta.errors.alreadyFollowing);
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
|
2018-10-29 06:32:42 -05:00
|
|
|
try {
|
|
|
|
await create(follower, followee);
|
|
|
|
} catch (e) {
|
2022-02-03 11:06:24 -06:00
|
|
|
if (e instanceof IdentifiableError) {
|
|
|
|
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);
|
|
|
|
}
|
2019-02-21 20:46:58 -06:00
|
|
|
throw e;
|
2018-10-29 06:32:42 -05:00
|
|
|
}
|
2018-04-01 05:43:26 -05:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
return await Users.pack(followee.id, user);
|
2019-02-21 20:46:58 -06:00
|
|
|
});
|