This commit is contained in:
tamaina 2023-06-04 17:22:53 +00:00
parent 1e2178b717
commit 64bbfc2107
3 changed files with 59 additions and 57 deletions

View file

@ -29,7 +29,7 @@ export default class extends Endpoint<'auth/accept'> {
.findOneBy({ token: ps.token }); .findOneBy({ token: ps.token });
if (session == null) { if (session == null) {
throw new ApiError(meta.errors.noSuchSession); throw new ApiError(this.meta.errors.noSuchSession);
} }
const accessToken = secureRndstr(32, true); const accessToken = secureRndstr(32, true);

View file

@ -8,56 +8,10 @@ import { DI } from '@/di-symbols.js';
import { GetterService } from '@/server/api/GetterService.js'; import { GetterService } from '@/server/api/GetterService.js';
import { ApiError } from '../../error.js'; import { ApiError } from '../../error.js';
export const meta = {
tags: ['account'],
limit: {
duration: ms('1hour'),
max: 20,
},
requireCredential: true,
kind: 'write:blocks',
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',
},
},
res: {
type: 'object',
optional: false, nullable: false,
ref: 'UserDetailedNotMe',
},
} as const;
export const paramDef = {
type: 'object',
properties: {
userId: { type: 'string', format: 'misskey:id' },
},
required: ['userId'],
} as const;
// eslint-disable-next-line import/no-default-export // eslint-disable-next-line import/no-default-export
@Injectable() @Injectable()
export default class extends Endpoint<typeof meta, typeof paramDef> { export default class extends Endpoint<'blocking/create'> {
name = 'blocking/create' as const;
constructor( constructor(
@Inject(DI.usersRepository) @Inject(DI.usersRepository)
private usersRepository: UsersRepository, private usersRepository: UsersRepository,
@ -69,17 +23,17 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
private getterService: GetterService, private getterService: GetterService,
private userBlockingService: UserBlockingService, private userBlockingService: UserBlockingService,
) { ) {
super(meta, paramDef, async (ps, me) => { super(async (ps, me) => {
const blocker = await this.usersRepository.findOneByOrFail({ id: me.id }); const blocker = await this.usersRepository.findOneByOrFail({ id: me.id });
// 自分自身 // 自分自身
if (me.id === ps.userId) { if (me.id === ps.userId) {
throw new ApiError(meta.errors.blockeeIsYourself); throw new ApiError(this.meta.errors.blockeeIsYourself);
} }
// Get blockee // Get blockee
const blockee = await this.getterService.getUser(ps.userId).catch(err => { const blockee = await this.getterService.getUser(ps.userId).catch(err => {
if (err.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser); if (err.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(this.meta.errors.noSuchUser);
throw err; throw err;
}); });
@ -90,7 +44,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
}); });
if (exist != null) { if (exist != null) {
throw new ApiError(meta.errors.alreadyBlocking); throw new ApiError(this.meta.errors.alreadyBlocking);
} }
await this.userBlockingService.block(blocker, blockee); await this.userBlockingService.block(blocker, blockee);

View file

@ -2450,11 +2450,11 @@ export const endpoints = {
}, },
'auth/accept': { 'auth/accept': {
tags: ['auth'], tags: ['auth'],
requireCredential: true, requireCredential: true,
secure: true, secure: true,
errors: { errors: {
noSuchSession: { noSuchSession: {
message: 'No such session.', message: 'No such session.',
@ -2473,7 +2473,55 @@ export const endpoints = {
}, },
res: undefined, res: undefined,
}], }],
} },
//#endregion
//#region blocking
'blocking/create': {
tags: ['account'],
limit: {
duration: ms('1hour'),
max: 20,
},
requireCredential: true,
kind: 'write:blocks',
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',
},
},
defines: [{
req: {
type: 'object',
properties: {
userId: { type: 'string', format: 'misskey:id' },
},
required: ['userId'],
},
res: {
$ref: 'https://misskey-hub.net/api/schemas/UserDetailedNotMe',
},
}],
},
//#endregion //#endregion
} as const satisfies { [x: string]: IEndpointMeta; }; } as const satisfies { [x: string]: IEndpointMeta; };