60 lines
1.5 KiB
TypeScript
60 lines
1.5 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import { FlashEntityService } from '@/core/entities/FlashEntityService.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
import { FlashService } from '@/core/FlashService.js';
|
|
|
|
export const meta = {
|
|
tags: ['flash'],
|
|
|
|
requireCredential: false,
|
|
|
|
res: {
|
|
type: 'array',
|
|
optional: false, nullable: false,
|
|
items: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
ref: 'Flash',
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
query: { type: 'string', minLength: 1, maxLength: 100 },
|
|
sinceId: { type: 'string', format: 'misskey:id' },
|
|
untilId: { type: 'string', format: 'misskey:id' },
|
|
sinceDate: { type: 'integer' },
|
|
untilDate: { type: 'integer' },
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 5 },
|
|
},
|
|
required: ['query'],
|
|
} as const;
|
|
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
|
constructor(
|
|
private flashService: FlashService,
|
|
private flashEntityService: FlashEntityService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
const result = await this.flashService.search(ps.query, {
|
|
sinceId: ps.sinceId,
|
|
untilId: ps.untilId,
|
|
sinceDate: ps.sinceDate,
|
|
untilDate: ps.untilDate,
|
|
limit: ps.limit,
|
|
});
|
|
|
|
return await this.flashEntityService.packMany(result, me);
|
|
});
|
|
}
|
|
}
|