d20542c495
* enhance: `meta`をSSR HTMLに埋め込む
* HTML Metaの有効時間を指定
* 1時間
* MetaEntityService
* JSONをPackするように
* ✌️
---------
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
42 lines
988 B
TypeScript
42 lines
988 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import { MetaEntityService } from '@/core/entities/MetaEntityService.js';
|
|
|
|
export const meta = {
|
|
tags: ['meta'],
|
|
|
|
requireCredential: false,
|
|
|
|
res: {
|
|
type: 'object',
|
|
oneOf: [
|
|
{ type: 'object', ref: 'MetaLite' },
|
|
{ type: 'object', ref: 'MetaDetailed' },
|
|
],
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
detail: { type: 'boolean', default: true },
|
|
},
|
|
required: [],
|
|
} as const;
|
|
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
|
constructor(
|
|
private metaEntityService: MetaEntityService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
return ps.detail ? await this.metaEntityService.packDetailed() : await this.metaEntityService.pack();
|
|
});
|
|
}
|
|
}
|