2021-11-12 10:47:04 +00:00
|
|
|
import ms from 'ms';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2022-09-20 20:33:11 +00:00
|
|
|
import type { UsersRepository, BlockingsRepository } from '@/models/index.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
|
|
|
import { UserBlockingService } from '@/core/UserBlockingService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-09-23 22:15:16 +00:00
|
|
|
import { GetterService } from '@/server/api/GetterService.js';
|
2023-01-14 06:59:15 +00:00
|
|
|
import { ApiError } from '../../error.js';
|
2018-10-29 11:32:42 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2020-04-03 13:42:29 +00:00
|
|
|
tags: ['account'],
|
2019-02-23 02:20:58 +00:00
|
|
|
|
2018-10-29 11:32:42 +00:00
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
2023-01-14 06:59:15 +00:00
|
|
|
max: 20,
|
2018-10-29 11:32:42 +00:00
|
|
|
},
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2018-10-29 11:32:42 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
kind: 'write:blocks',
|
2018-10-29 11:32:42 +00:00
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
errors: {
|
|
|
|
noSuchUser: {
|
|
|
|
message: 'No such user.',
|
|
|
|
code: 'NO_SUCH_USER',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: '7cc4f851-e2f1-4621-9633-ec9e1d00c01e',
|
2019-02-22 02:46:58 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
blockeeIsYourself: {
|
|
|
|
message: 'Blockee is yourself.',
|
|
|
|
code: 'BLOCKEE_IS_YOURSELF',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: '88b19138-f28d-42c0-8499-6a31bbd0fdc6',
|
2019-02-22 02:46:58 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
alreadyBlocking: {
|
|
|
|
message: 'You are already blocking that user.',
|
|
|
|
code: 'ALREADY_BLOCKING',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: '787fed64-acb9-464a-82eb-afbd745b9614',
|
2019-02-22 02:46:58 +00:00
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
ref: 'UserDetailedNotMe',
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2018-10-29 11:32:42 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['userId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 18:27:08 +00:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
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 });
|
|
|
|
|
|
|
|
// 自分自身
|
|
|
|
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 if already blocking
|
|
|
|
const exist = await this.blockingsRepository.findOneBy({
|
|
|
|
blockerId: blocker.id,
|
|
|
|
blockeeId: blockee.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (exist != null) {
|
|
|
|
throw new ApiError(meta.errors.alreadyBlocking);
|
|
|
|
}
|
|
|
|
|
|
|
|
await this.userBlockingService.block(blocker, blockee);
|
|
|
|
|
|
|
|
return await this.userEntityService.pack(blockee.id, blocker, {
|
|
|
|
detail: true,
|
|
|
|
});
|
|
|
|
});
|
2018-10-29 11:32:42 +00:00
|
|
|
}
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|