2023-07-27 07:31:52 +02:00
|
|
|
/*
|
2024-02-13 16:59:27 +01:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 07:31:52 +02:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2024-02-23 02:47:17 +01:00
|
|
|
import { Injectable } from '@nestjs/common';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2024-02-23 02:47:17 +01:00
|
|
|
import { MetaEntityService } from '@/core/entities/MetaEntityService.js';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-10-08 18:01:48 +02:00
|
|
|
export const meta = {
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['meta'],
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: false,
|
2018-10-08 18:01:48 +02:00
|
|
|
|
2019-02-24 19:21:54 +01:00
|
|
|
res: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'object',
|
2024-02-23 02:47:17 +01:00
|
|
|
oneOf: [
|
|
|
|
{ type: 'object', ref: 'MetaLite' },
|
|
|
|
{ type: 'object', ref: 'MetaDetailed' },
|
|
|
|
],
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2018-10-08 18:01:48 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
detail: { type: 'boolean', default: true },
|
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
@Injectable()
|
2023-08-17 14:20:58 +02:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 20:27:08 +02:00
|
|
|
constructor(
|
2024-02-23 02:47:17 +01:00
|
|
|
private metaEntityService: MetaEntityService,
|
2022-09-17 20:27:08 +02:00
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
2024-02-23 02:47:17 +01:00
|
|
|
return ps.detail ? await this.metaEntityService.packDetailed() : await this.metaEntityService.pack();
|
2022-09-17 20:27:08 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|