misskey/src/misc/fetch-meta.ts

36 lines
804 B
TypeScript
Raw Normal View History

import { Meta } from '@/models/entities/meta.js';
import { getConnection } from 'typeorm';
2019-04-23 23:11:19 +00:00
let cache: Meta;
export async function fetchMeta(noCache = false): Promise<Meta> {
if (!noCache && cache) return cache;
return await getConnection().transaction(async transactionalEntityManager => {
2020-02-05 06:41:14 +00:00
// 過去のバグでレコードが複数出来てしまっている可能性があるので新しいIDを優先する
const meta = await transactionalEntityManager.findOne(Meta, {
order: {
id: 'DESC'
}
});
if (meta) {
2019-04-23 23:11:19 +00:00
cache = meta;
return meta;
} else {
2019-04-23 23:11:19 +00:00
const saved = await transactionalEntityManager.save(Meta, {
id: 'x'
}) as Meta;
2019-04-23 23:11:19 +00:00
cache = saved;
return saved;
}
});
}
2019-04-23 23:11:19 +00:00
setInterval(() => {
fetchMeta(true).then(meta => {
cache = meta;
});
2021-03-19 09:22:34 +00:00
}, 1000 * 10);