mirror of
https://github.com/immich-app/immich.git
synced 2025-01-22 11:42:46 +01:00
25 lines
997 B
TypeScript
25 lines
997 B
TypeScript
import { InjectRepository } from '@nestjs/typeorm';
|
|
import { SystemMetadata, SystemMetadataEntity } from 'src/entities/system-metadata.entity';
|
|
import { Instrumentation } from 'src/infra/instrumentation';
|
|
import { ISystemMetadataRepository } from 'src/interfaces/system-metadata.repository';
|
|
import { Repository } from 'typeorm';
|
|
|
|
@Instrumentation()
|
|
export class SystemMetadataRepository implements ISystemMetadataRepository {
|
|
constructor(
|
|
@InjectRepository(SystemMetadataEntity)
|
|
private repository: Repository<SystemMetadataEntity>,
|
|
) {}
|
|
|
|
async get<T extends keyof SystemMetadata>(key: T): Promise<SystemMetadata[T] | null> {
|
|
const metadata = await this.repository.findOne({ where: { key } });
|
|
if (!metadata) {
|
|
return null;
|
|
}
|
|
return metadata.value as SystemMetadata[T];
|
|
}
|
|
|
|
async set<T extends keyof SystemMetadata>(key: T, value: SystemMetadata[T]): Promise<void> {
|
|
await this.repository.upsert({ key, value }, { conflictPaths: { key: true } });
|
|
}
|
|
}
|