mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
* refactor: flatten infra folders * fix: database migrations * fix: test related import * fix: github actions workflow * chore: rename schemas to typesense-schemas
32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
import { AssetEntity, AssetType } from '@app/infra/entities';
|
|
import { Inject } from '@nestjs/common';
|
|
import { IAssetUploadedJob, IJobRepository, JobName } from '../job';
|
|
import { AssetCore } from './asset.core';
|
|
import { IAssetRepository } from './asset.repository';
|
|
|
|
export class AssetService {
|
|
private assetCore: AssetCore;
|
|
|
|
constructor(
|
|
@Inject(IAssetRepository) assetRepository: IAssetRepository,
|
|
@Inject(IJobRepository) private jobRepository: IJobRepository,
|
|
) {
|
|
this.assetCore = new AssetCore(assetRepository, jobRepository);
|
|
}
|
|
|
|
async handleAssetUpload(data: IAssetUploadedJob) {
|
|
await this.jobRepository.queue({ name: JobName.GENERATE_JPEG_THUMBNAIL, data });
|
|
|
|
if (data.asset.type == AssetType.VIDEO) {
|
|
await this.jobRepository.queue({ name: JobName.VIDEO_CONVERSION, data });
|
|
await this.jobRepository.queue({ name: JobName.EXTRACT_VIDEO_METADATA, data });
|
|
} else {
|
|
await this.jobRepository.queue({ name: JobName.EXIF_EXTRACTION, data });
|
|
}
|
|
}
|
|
|
|
save(asset: Partial<AssetEntity>) {
|
|
return this.assetCore.save(asset);
|
|
}
|
|
}
|