Sharkey/packages/backend/src/core/FederatedInstanceService.ts

61 lines
1.6 KiB
TypeScript
Raw Normal View History

2022-09-17 21:27:08 +03:00
import { Inject, Injectable } from '@nestjs/common';
2022-09-20 23:33:11 +03:00
import type { InstancesRepository } from '@/models/index.js';
2022-09-17 21:27:08 +03:00
import type { Instance } from '@/models/entities/Instance.js';
import { Cache } from '@/misc/cache.js';
import { IdService } from '@/core/IdService.js';
import { DI } from '@/di-symbols.js';
2022-12-04 03:16:03 +02:00
import { UtilityService } from '@/core/UtilityService.js';
import { bindThis } from '@/decorators.js';
2022-09-17 21:27:08 +03:00
@Injectable()
export class FederatedInstanceService {
2022-09-18 21:11:50 +03:00
private cache: Cache<Instance>;
2022-09-17 21:27:08 +03:00
constructor(
@Inject(DI.instancesRepository)
private instancesRepository: InstancesRepository,
private utilityService: UtilityService,
private idService: IdService,
) {
2022-09-18 21:11:50 +03:00
this.cache = new Cache<Instance>(1000 * 60 * 60);
2022-09-17 21:27:08 +03:00
}
@bindThis
2023-01-03 02:32:36 +02:00
public async fetch(host: string): Promise<Instance> {
2022-09-17 21:27:08 +03:00
host = this.utilityService.toPuny(host);
2022-09-18 21:11:50 +03:00
const cached = this.cache.get(host);
2022-09-17 21:27:08 +03:00
if (cached) return cached;
const index = await this.instancesRepository.findOneBy({ host });
if (index == null) {
const i = await this.instancesRepository.insert({
id: this.idService.genId(),
host,
caughtAt: new Date(),
}).then(x => this.instancesRepository.findOneByOrFail(x.identifiers[0]));
2022-09-18 21:11:50 +03:00
this.cache.set(host, i);
2022-09-17 21:27:08 +03:00
return i;
} else {
2022-09-18 21:11:50 +03:00
this.cache.set(host, index);
2022-09-17 21:27:08 +03:00
return index;
}
}
2023-01-03 02:32:36 +02:00
@bindThis
public async updateCachePartial(host: string, data: Partial<Instance>): Promise<void> {
host = this.utilityService.toPuny(host);
const cached = this.cache.get(host);
if (cached == null) return;
this.cache.set(host, {
...cached,
...data,
});
}
2022-09-17 21:27:08 +03:00
}