c2370a1be6
* chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { fileURLToPath } from 'node:url';
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import type { Config } from '@/config.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
import { bindThis } from '@/decorators.js';
|
|
import { genOpenapiSpec } from './gen-spec.js';
|
|
import type { FastifyInstance, FastifyPluginOptions } from 'fastify';
|
|
|
|
const staticAssets = fileURLToPath(new URL('../../../../assets/', import.meta.url));
|
|
|
|
@Injectable()
|
|
export class OpenApiServerService {
|
|
constructor(
|
|
@Inject(DI.config)
|
|
private config: Config,
|
|
) {
|
|
}
|
|
|
|
@bindThis
|
|
public createServer(fastify: FastifyInstance, _options: FastifyPluginOptions, done: (err?: Error) => void) {
|
|
fastify.get('/api-doc', async (_request, reply) => {
|
|
reply.header('Cache-Control', 'public, max-age=86400');
|
|
return await reply.sendFile('/redoc.html', staticAssets);
|
|
});
|
|
fastify.get('/api.json', (_request, reply) => {
|
|
reply.header('Cache-Control', 'public, max-age=600');
|
|
reply.send(genOpenapiSpec(this.config));
|
|
});
|
|
done();
|
|
}
|
|
}
|