2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { DataSource } from 'typeorm';
|
|
|
|
import type { UsersRepository } from '@/models/index.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
|
|
|
import { Meta } from '@/models/entities/Meta.js';
|
|
|
|
import type { OnApplicationShutdown } from '@nestjs/common';
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class MetaService implements OnApplicationShutdown {
|
2022-09-18 18:11:50 +00:00
|
|
|
private cache: Meta | undefined;
|
|
|
|
private intervalId: NodeJS.Timer;
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.db)
|
|
|
|
private db: DataSource,
|
|
|
|
) {
|
|
|
|
if (process.env.NODE_ENV !== 'test') {
|
2022-09-18 18:11:50 +00:00
|
|
|
this.intervalId = setInterval(() => {
|
2022-09-17 18:27:08 +00:00
|
|
|
this.fetch(true).then(meta => {
|
2022-09-18 18:11:50 +00:00
|
|
|
this.cache = meta;
|
2022-09-17 18:27:08 +00:00
|
|
|
});
|
|
|
|
}, 1000 * 10);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async fetch(noCache = false): Promise<Meta> {
|
2022-09-18 18:11:50 +00:00
|
|
|
if (!noCache && this.cache) return this.cache;
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
return await this.db.transaction(async transactionalEntityManager => {
|
|
|
|
// 過去のバグでレコードが複数出来てしまっている可能性があるので新しいIDを優先する
|
|
|
|
const metas = await transactionalEntityManager.find(Meta, {
|
|
|
|
order: {
|
|
|
|
id: 'DESC',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const meta = metas[0];
|
|
|
|
|
|
|
|
if (meta) {
|
2022-09-18 18:11:50 +00:00
|
|
|
this.cache = meta;
|
2022-09-17 18:27:08 +00:00
|
|
|
return meta;
|
|
|
|
} else {
|
|
|
|
// metaが空のときfetchMetaが同時に呼ばれるとここが同時に呼ばれてしまうことがあるのでフェイルセーフなupsertを使う
|
|
|
|
const saved = await transactionalEntityManager
|
|
|
|
.upsert(
|
|
|
|
Meta,
|
|
|
|
{
|
|
|
|
id: 'x',
|
|
|
|
},
|
|
|
|
['id'],
|
|
|
|
)
|
|
|
|
.then((x) => transactionalEntityManager.findOneByOrFail(Meta, x.identifiers[0]));
|
|
|
|
|
2022-09-18 18:11:50 +00:00
|
|
|
this.cache = saved;
|
2022-09-17 18:27:08 +00:00
|
|
|
return saved;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public onApplicationShutdown(signal?: string | undefined) {
|
2022-09-18 18:11:50 +00:00
|
|
|
clearInterval(this.intervalId);
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
|
|
|
}
|