2021-11-12 04:47:04 -06:00
|
|
|
import ms from 'ms';
|
2022-02-26 20:07:39 -06:00
|
|
|
import deleteBlocking from '@/services/blocking/delete.js';
|
|
|
|
import define from '../../define.js';
|
|
|
|
import { ApiError } from '../../error.js';
|
|
|
|
import { getUser } from '../../common/getters.js';
|
|
|
|
import { Blockings, Users } from '@/models/index.js';
|
2018-10-29 06:32:42 -05:00
|
|
|
|
|
|
|
export const meta = {
|
2020-04-03 08:42:29 -05:00
|
|
|
tags: ['account'],
|
2019-02-22 20:20:58 -06:00
|
|
|
|
2018-10-29 06:32:42 -05:00
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
2021-12-09 08:58:30 -06:00
|
|
|
max: 100,
|
2018-10-29 06:32:42 -05:00
|
|
|
},
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: true,
|
2018-10-29 06:32:42 -05:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
kind: 'write:blocks',
|
2018-10-29 06:32:42 -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: '8621d8bf-c358-4303-a066-5ea78610eb3f',
|
2019-02-21 20:46:58 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
blockeeIsYourself: {
|
|
|
|
message: 'Blockee is yourself.',
|
|
|
|
code: 'BLOCKEE_IS_YOURSELF',
|
2021-12-09 08:58:30 -06:00
|
|
|
id: '06f6fac6-524b-473c-a354-e97a40ae6eac',
|
2019-02-21 20:46:58 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
notBlocking: {
|
|
|
|
message: 'You are not blocking that user.',
|
|
|
|
code: 'NOT_BLOCKING',
|
2021-12-09 08:58:30 -06:00
|
|
|
id: '291b2efa-60c6-45c0-9f6a-045c8f9b02cd',
|
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: 'UserDetailedNotMe',
|
2021-06-08 00:26:52 -05:00
|
|
|
},
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2018-10-29 06:32:42 -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) => {
|
2022-03-26 01:34:00 -05:00
|
|
|
const blocker = await Users.findOneByOrFail({ id: user.id });
|
2018-10-29 06:32:42 -05:00
|
|
|
|
|
|
|
// Check if the blockee is yourself
|
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.blockeeIsYourself);
|
2018-10-29 06:32:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get blockee
|
2019-02-21 23:02:56 -06: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 06:32:42 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
// Check not blocking
|
2022-03-26 01:34:00 -05:00
|
|
|
const exist = await Blockings.findOneBy({
|
2019-04-07 07:50:36 -05:00
|
|
|
blockerId: blocker.id,
|
2021-12-09 08:58:30 -06:00
|
|
|
blockeeId: blockee.id,
|
2018-10-29 06:32:42 -05: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.notBlocking);
|
2018-10-29 06:32:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Delete blocking
|
|
|
|
await deleteBlocking(blocker, blockee);
|
|
|
|
|
2021-03-23 21:05:37 -05:00
|
|
|
return await Users.pack(blockee.id, blocker, {
|
2021-12-09 08:58:30 -06:00
|
|
|
detail: true,
|
2020-10-30 20:19:10 -05:00
|
|
|
});
|
2019-02-21 20:46:58 -06:00
|
|
|
});
|