mirror of
https://github.com/immich-app/immich.git
synced 2025-03-01 15:11:21 +01:00

* refactor: flatten infra folders * fix: database migrations * fix: test related import * fix: github actions workflow * chore: rename schemas to typesense-schemas
24 lines
858 B
TypeScript
24 lines
858 B
TypeScript
import { AssetEntity, AssetType } from '@app/infra/entities';
|
|
import { IJobRepository, JobName } from '../job';
|
|
import { AssetSearchOptions, IAssetRepository } from './asset.repository';
|
|
|
|
export class AssetCore {
|
|
constructor(private assetRepository: IAssetRepository, private jobRepository: IJobRepository) {}
|
|
|
|
getAll(options: AssetSearchOptions) {
|
|
return this.assetRepository.getAll(options);
|
|
}
|
|
|
|
async save(asset: Partial<AssetEntity>) {
|
|
const _asset = await this.assetRepository.save(asset);
|
|
await this.jobRepository.queue({
|
|
name: JobName.SEARCH_INDEX_ASSET,
|
|
data: { ids: [_asset.id] },
|
|
});
|
|
return _asset;
|
|
}
|
|
|
|
findLivePhotoMatch(livePhotoCID: string, otherAssetId: string, type: AssetType): Promise<AssetEntity | null> {
|
|
return this.assetRepository.findLivePhotoMatch(livePhotoCID, otherAssetId, type);
|
|
}
|
|
}
|