2022-02-27 03:07:39 +01:00
|
|
|
import Koa from 'koa';
|
|
|
|
import { fetchMeta } from '@/misc/fetch-meta.js';
|
2022-04-23 05:38:02 +02:00
|
|
|
import manifest from './manifest.json' assert { type: 'json' };
|
2019-03-31 18:05:49 +02:00
|
|
|
|
2022-02-27 03:07:39 +01:00
|
|
|
export const manifestHandler = async (ctx: Koa.Context) => {
|
2022-04-23 05:38:02 +02:00
|
|
|
const res = structuredClone(manifest);
|
2019-03-31 18:05:49 +02:00
|
|
|
|
2019-04-24 01:11:19 +02:00
|
|
|
const instance = await fetchMeta(true);
|
2019-03-31 18:05:49 +02:00
|
|
|
|
2022-04-23 05:38:02 +02:00
|
|
|
res.short_name = instance.name || 'Misskey';
|
|
|
|
res.name = instance.name || 'Misskey';
|
|
|
|
if (instance.themeColor) res.theme_color = instance.themeColor;
|
2019-03-31 18:05:49 +02:00
|
|
|
|
|
|
|
ctx.set('Cache-Control', 'max-age=300');
|
2022-04-23 05:38:02 +02:00
|
|
|
ctx.body = res;
|
2019-03-31 18:05:49 +02:00
|
|
|
};
|