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 deleteBlocking from '../../../../services/blocking/delete';
|
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': 'Unblock 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: '8621d8bf-c358-4303-a066-5ea78610eb3f'
|
|
|
|
},
|
|
|
|
|
|
|
|
blockeeIsYourself: {
|
|
|
|
message: 'Blockee is yourself.',
|
|
|
|
code: 'BLOCKEE_IS_YOURSELF',
|
|
|
|
id: '06f6fac6-524b-473c-a354-e97a40ae6eac'
|
|
|
|
},
|
|
|
|
|
|
|
|
notBlocking: {
|
|
|
|
message: 'You are not blocking that user.',
|
|
|
|
code: 'NOT_BLOCKING',
|
|
|
|
id: '291b2efa-60c6-45c0-9f6a-045c8f9b02cd'
|
|
|
|
},
|
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;
|
|
|
|
|
|
|
|
// Check if the blockee is yourself
|
|
|
|
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 not 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.notBlocking);
|
2018-10-29 13:32:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Delete blocking
|
|
|
|
await deleteBlocking(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
|
|
|
});
|
|
|
|
});
|