2019-02-05 04:48:08 +02:00
|
|
|
import $ from 'cafy';
|
2021-08-19 15:55:45 +03:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
2019-02-01 17:16:27 +02:00
|
|
|
import * as ms from 'ms';
|
2021-08-19 15:55:45 +03:00
|
|
|
import create from '@/services/blocking/create';
|
|
|
|
import define from '../../define';
|
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { getUser } from '../../common/getters';
|
|
|
|
import { Blockings, NoteWatchings, Users } from '@/models/index';
|
2018-10-29 13:32:42 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2020-04-03 16:42:29 +03:00
|
|
|
tags: ['account'],
|
2019-02-23 04:20:58 +02:00
|
|
|
|
2018-10-29 13:32:42 +02:00
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
|
|
|
max: 100
|
|
|
|
},
|
|
|
|
|
2020-02-15 14:33:32 +02:00
|
|
|
requireCredential: true as const,
|
2018-10-29 13:32:42 +02:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
kind: 'write:blocks',
|
2018-10-29 13:32:42 +02:00
|
|
|
|
|
|
|
params: {
|
2018-11-01 20:32:24 +02:00
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
}
|
2019-02-22 04:46:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchUser: {
|
|
|
|
message: 'No such user.',
|
|
|
|
code: 'NO_SUCH_USER',
|
|
|
|
id: '7cc4f851-e2f1-4621-9633-ec9e1d00c01e'
|
|
|
|
},
|
|
|
|
|
|
|
|
blockeeIsYourself: {
|
|
|
|
message: 'Blockee is yourself.',
|
|
|
|
code: 'BLOCKEE_IS_YOURSELF',
|
|
|
|
id: '88b19138-f28d-42c0-8499-6a31bbd0fdc6'
|
|
|
|
},
|
|
|
|
|
|
|
|
alreadyBlocking: {
|
|
|
|
message: 'You are already blocking that user.',
|
|
|
|
code: 'ALREADY_BLOCKING',
|
|
|
|
id: '787fed64-acb9-464a-82eb-afbd745b9614'
|
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
ref: 'User'
|
2018-10-29 13:32:42 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps, user) => {
|
2021-03-24 04:05:37 +02:00
|
|
|
const blocker = await Users.findOneOrFail(user.id);
|
2018-10-29 13:32:42 +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.blockeeIsYourself);
|
2018-10-29 13:32:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get blockee
|
2019-02-22 07:02:56 +02:00
|
|
|
const blockee = await getUser(ps.userId).catch(e => {
|
|
|
|
if (e.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser);
|
|
|
|
throw e;
|
2018-10-29 13:32:42 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// Check if already blocking
|
2019-04-07 15:50:36 +03:00
|
|
|
const exist = await Blockings.findOne({
|
|
|
|
blockerId: blocker.id,
|
|
|
|
blockeeId: blockee.id
|
2018-10-29 13:32:42 +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.alreadyBlocking);
|
2018-10-29 13:32:42 +02:00
|
|
|
}
|
|
|
|
|
2021-10-22 15:01:36 +03:00
|
|
|
await create(blocker, blockee);
|
2018-10-29 13:32:42 +02:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
NoteWatchings.delete({
|
|
|
|
userId: blocker.id,
|
|
|
|
noteUserId: blockee.id
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|
2019-04-07 15:50:36 +03:00
|
|
|
|
2021-03-24 04:05:37 +02:00
|
|
|
return await Users.pack(blockee.id, blocker, {
|
2020-10-31 03:19:10 +02:00
|
|
|
detail: true
|
|
|
|
});
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|