Cache meta

This commit is contained in:
syuilo
2019-04-24 08:11:19 +09:00
parent 8a55bdd89d
commit 5aa5896b22
34 changed files with 62 additions and 55 deletions

View File

@ -12,7 +12,7 @@ import * as views from 'koa-views';
import docs from './docs';
import packFeed from './feed';
import fetchMeta from '../../misc/fetch-meta';
import { fetchMeta } from '../../misc/fetch-meta';
import * as pkg from '../../../package.json';
import { genOpenapiSpec } from '../api/openapi/gen-spec';
import config from '../../config';
@ -206,7 +206,7 @@ router.get('/notes/:note', async ctx => {
//#endregion
router.get('/info', async ctx => {
const meta = await fetchMeta();
const meta = await fetchMeta(true);
const emojis = await Emojis.find({
where: { host: null }
});

View File

@ -1,11 +1,11 @@
import * as Koa from 'koa';
import * as manifest from '../../client/assets/manifest.json';
import fetchMeta from '../../misc/fetch-meta';
import { fetchMeta } from '../../misc/fetch-meta';
module.exports = async (ctx: Koa.BaseContext) => {
const json = JSON.parse(JSON.stringify(manifest));
const instance = await fetchMeta();
const instance = await fetchMeta(true);
json.short_name = instance.name || 'Misskey';
json.name = instance.name || 'Misskey';

View File

@ -1,7 +1,7 @@
import * as Koa from 'koa';
import * as request from 'request-promise-native';
import summaly from 'summaly';
import fetchMeta from '../../misc/fetch-meta';
import { fetchMeta } from '../../misc/fetch-meta';
import Logger from '../../services/logger';
import config from '../../config';
import { query } from '../../prelude/url';