71 lines
2.0 KiB
TypeScript
71 lines
2.0 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import { ReversiService } from '@/core/ReversiService.js';
|
|
import { ReversiGameEntityService } from '@/core/entities/ReversiGameEntityService.js';
|
|
import { ApiError } from '../../error.js';
|
|
import { GetterService } from '../../GetterService.js';
|
|
|
|
export const meta = {
|
|
requireCredential: true,
|
|
|
|
kind: 'write:account',
|
|
|
|
errors: {
|
|
noSuchUser: {
|
|
message: 'No such user.',
|
|
code: 'NO_SUCH_USER',
|
|
id: '0b4f0559-b484-4e31-9581-3f73cee89b28',
|
|
},
|
|
|
|
isYourself: {
|
|
message: 'Target user is yourself.',
|
|
code: 'TARGET_IS_YOURSELF',
|
|
id: '96fd7bd6-d2bc-426c-a865-d055dcd2828e',
|
|
},
|
|
},
|
|
|
|
res: {
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
userId: { type: 'string', format: 'misskey:id', nullable: true },
|
|
noIrregularRules: { type: 'boolean', default: false },
|
|
multiple: { type: 'boolean', default: false },
|
|
},
|
|
required: [],
|
|
} as const;
|
|
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
|
constructor(
|
|
private getterService: GetterService,
|
|
private reversiService: ReversiService,
|
|
private reversiGameEntityService: ReversiGameEntityService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
if (ps.userId === me.id) throw new ApiError(meta.errors.isYourself);
|
|
|
|
const target = ps.userId ? await this.getterService.getUser(ps.userId).catch(err => {
|
|
if (err.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser);
|
|
throw err;
|
|
}) : null;
|
|
|
|
const game = target
|
|
? await this.reversiService.matchSpecificUser(me, target, ps.multiple)
|
|
: await this.reversiService.matchAnyUser(me, { noIrregularRules: ps.noIrregularRules }, ps.multiple);
|
|
|
|
if (game == null) return;
|
|
|
|
return await this.reversiGameEntityService.packDetail(game);
|
|
});
|
|
}
|
|
}
|