2019-02-05 04:48:08 +02:00
|
|
|
import $ from 'cafy';
|
|
|
|
import ID, { transform } from '../../../../misc/cafy-id';
|
2019-02-01 17:16:27 +02:00
|
|
|
import * as ms from 'ms';
|
2019-02-22 07:06:17 +02:00
|
|
|
import { pack } from '../../../../models/user';
|
2018-10-29 13:32:42 +02:00
|
|
|
import Blocking from '../../../../models/blocking';
|
|
|
|
import create from '../../../../services/blocking/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';
|
2018-10-29 13:32:42 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
stability: 'stable',
|
|
|
|
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定したユーザーをブロックします。',
|
|
|
|
'en-US': 'Block a user.'
|
|
|
|
},
|
|
|
|
|
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
|
|
|
max: 100
|
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
|
|
|
kind: 'following-write',
|
|
|
|
|
|
|
|
params: {
|
2018-11-01 20:32:24 +02:00
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
transform: transform,
|
2018-10-29 13:32:42 +02: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: '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'
|
|
|
|
},
|
2018-10-29 13:32:42 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps, user) => {
|
2018-10-29 13:32:42 +02:00
|
|
|
const blocker = user;
|
|
|
|
|
|
|
|
// 自分自身
|
|
|
|
if (user._id.equals(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
|
|
|
|
const exist = await Blocking.findOne({
|
|
|
|
blockerId: blocker._id,
|
|
|
|
blockeeId: blockee._id
|
|
|
|
});
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
// Create blocking
|
|
|
|
await create(blocker, blockee);
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
return await pack(blockee._id, user, {
|
2018-10-31 04:24:36 +02:00
|
|
|
detail: true
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|
|
|
|
});
|