mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-16 16:57:14 +01:00
b9cb6d1c10
将来ESMに移行しやすいように Related: #7658 なんかmochaが起動しなくなってるけど理由不明 すぐ直したい
35 lines
804 B
TypeScript
35 lines
804 B
TypeScript
import { Meta } from '@/models/entities/meta.js';
|
|
import { getConnection } from 'typeorm';
|
|
|
|
let cache: Meta;
|
|
|
|
export async function fetchMeta(noCache = false): Promise<Meta> {
|
|
if (!noCache && cache) return cache;
|
|
|
|
return await getConnection().transaction(async transactionalEntityManager => {
|
|
// 過去のバグでレコードが複数出来てしまっている可能性があるので新しいIDを優先する
|
|
const meta = await transactionalEntityManager.findOne(Meta, {
|
|
order: {
|
|
id: 'DESC'
|
|
}
|
|
});
|
|
|
|
if (meta) {
|
|
cache = meta;
|
|
return meta;
|
|
} else {
|
|
const saved = await transactionalEntityManager.save(Meta, {
|
|
id: 'x'
|
|
}) as Meta;
|
|
|
|
cache = saved;
|
|
return saved;
|
|
}
|
|
});
|
|
}
|
|
|
|
setInterval(() => {
|
|
fetchMeta(true).then(meta => {
|
|
cache = meta;
|
|
});
|
|
}, 1000 * 10);
|