2023-07-27 00:31:52 -05:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2021-11-12 04:47:04 -06:00
|
|
|
import ms from 'ms';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2022-09-20 15:33:11 -05:00
|
|
|
import type { UsersRepository, BlockingsRepository } from '@/models/index.js';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
|
|
|
import { UserBlockingService } from '@/core/UserBlockingService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-09-23 17:15:16 -05:00
|
|
|
import { GetterService } from '@/server/api/GetterService.js';
|
2023-07-18 21:27:50 -05:00
|
|
|
import { ApiError } from '../../error.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-09-17 13:27:08 -05:00
|
|
|
@Injectable()
|
2023-08-17 07:20:58 -05:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 13:27:08 -05:00
|
|
|
constructor(
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
@Inject(DI.blockingsRepository)
|
|
|
|
private blockingsRepository: BlockingsRepository,
|
|
|
|
|
|
|
|
private userEntityService: UserEntityService,
|
|
|
|
private getterService: GetterService,
|
|
|
|
private userBlockingService: UserBlockingService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const blocker = await this.usersRepository.findOneByOrFail({ id: me.id });
|
|
|
|
|
|
|
|
// Check if the blockee is yourself
|
|
|
|
if (me.id === ps.userId) {
|
|
|
|
throw new ApiError(meta.errors.blockeeIsYourself);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get blockee
|
|
|
|
const blockee = await this.getterService.getUser(ps.userId).catch(err => {
|
|
|
|
if (err.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser);
|
|
|
|
throw err;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Check not blocking
|
2023-07-11 00:58:58 -05:00
|
|
|
const exist = await this.blockingsRepository.exist({
|
|
|
|
where: {
|
|
|
|
blockerId: blocker.id,
|
|
|
|
blockeeId: blockee.id,
|
2023-07-18 21:27:50 -05:00
|
|
|
},
|
2022-09-17 13:27:08 -05:00
|
|
|
});
|
|
|
|
|
2023-07-11 00:58:58 -05:00
|
|
|
if (!exist) {
|
2022-09-17 13:27:08 -05:00
|
|
|
throw new ApiError(meta.errors.notBlocking);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete blocking
|
|
|
|
await this.userBlockingService.unblock(blocker, blockee);
|
|
|
|
|
|
|
|
return await this.userEntityService.pack(blockee.id, blocker, {
|
|
|
|
detail: true,
|
|
|
|
});
|
|
|
|
});
|
2018-10-29 06:32:42 -05:00
|
|
|
}
|
2022-09-17 13:27:08 -05:00
|
|
|
}
|