mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
68 lines
2.2 KiB
TypeScript
68 lines
2.2 KiB
TypeScript
|
|
import { InjectQueue, OnQueueActive, OnQueueCompleted, OnQueueWaiting, Process, Processor } from '@nestjs/bull';
|
||
|
|
import { Job, Queue } from 'bull';
|
||
|
|
import { AssetEntity, AssetType } from '@app/database/entities/asset.entity';
|
||
|
|
import { InjectRepository } from '@nestjs/typeorm';
|
||
|
|
import { Repository } from 'typeorm';
|
||
|
|
import { randomUUID } from 'crypto';
|
||
|
|
|
||
|
|
@Processor('asset-uploaded-queue')
|
||
|
|
export class AssetUploadedProcessor {
|
||
|
|
constructor(
|
||
|
|
@InjectQueue('thumbnail-generator-queue')
|
||
|
|
private thumbnailGeneratorQueue: Queue,
|
||
|
|
|
||
|
|
@InjectQueue('metadata-extraction-queue')
|
||
|
|
private metadataExtractionQueue: Queue,
|
||
|
|
|
||
|
|
@InjectQueue('video-conversion-queue')
|
||
|
|
private videoConversionQueue: Queue,
|
||
|
|
|
||
|
|
@InjectRepository(AssetEntity)
|
||
|
|
private assetRepository: Repository<AssetEntity>,
|
||
|
|
) {}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Post processing uploaded asset to perform the following function if missing
|
||
|
|
* 1. Generate JPEG Thumbnail
|
||
|
|
* 2. Generate Webp Thumbnail <-> if JPEG thumbnail exist
|
||
|
|
* 3. EXIF extractor
|
||
|
|
* 4. Reverse Geocoding
|
||
|
|
*
|
||
|
|
* @param job asset-uploaded
|
||
|
|
*/
|
||
|
|
@Process('asset-uploaded')
|
||
|
|
async processUploadedVideo(job: Job) {
|
||
|
|
const {
|
||
|
|
asset,
|
||
|
|
fileName,
|
||
|
|
fileSize,
|
||
|
|
hasThumbnail,
|
||
|
|
}: { asset: AssetEntity; fileName: string; fileSize: number; hasThumbnail: boolean } = job.data;
|
||
|
|
|
||
|
|
if (hasThumbnail) {
|
||
|
|
// The jobs below depends on the existence of jpeg thumbnail
|
||
|
|
await this.thumbnailGeneratorQueue.add('generate-webp-thumbnail', { asset }, { jobId: randomUUID() });
|
||
|
|
await this.metadataExtractionQueue.add('tag-image', { asset }, { jobId: randomUUID() });
|
||
|
|
await this.metadataExtractionQueue.add('detect-object', { asset }, { jobId: randomUUID() });
|
||
|
|
} else {
|
||
|
|
// Generate Thumbnail -> Then generate webp, tag image and detect object
|
||
|
|
}
|
||
|
|
|
||
|
|
// Video Conversion
|
||
|
|
if (asset.type == AssetType.VIDEO) {
|
||
|
|
await this.videoConversionQueue.add('mp4-conversion', { asset }, { jobId: randomUUID() });
|
||
|
|
} else {
|
||
|
|
// Extract Metadata/Exif for Images - Currently the library cannot extract EXIF for video yet
|
||
|
|
await this.metadataExtractionQueue.add(
|
||
|
|
'exif-extraction',
|
||
|
|
{
|
||
|
|
asset,
|
||
|
|
fileName,
|
||
|
|
fileSize,
|
||
|
|
},
|
||
|
|
{ jobId: randomUUID() },
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|