FoundKey/packages/backend/src/server/web/manifest.ts

19 lines
573 B
TypeScript
Raw Normal View History

import Koa from 'koa';
import { fetchMeta } from '@/misc/fetch-meta.js';
import manifest from './manifest.json' assert { type: 'json' };
export const manifestHandler = async (ctx: Koa.Context): Promise<void> => {
2022-06-04 08:26:56 +00:00
// TODO
//const res = structuredClone(manifest);
const res = JSON.parse(JSON.stringify(manifest));
2019-04-23 23:11:19 +00:00
const instance = await fetchMeta(true);
res.short_name = instance.name || 'Misskey';
res.name = instance.name || 'Misskey';
if (instance.themeColor) res.theme_color = instance.themeColor;
ctx.set('Cache-Control', 'max-age=300');
ctx.body = res;
};