import { SearchPropertiesDto } from './dto/search-properties.dto'; import { CuratedLocationsResponseDto } from './response-dto/curated-locations-response.dto'; import { AssetEntity, AssetType } from '@app/database/entities/asset.entity'; import { BadRequestException, Inject, Injectable } from '@nestjs/common'; import { InjectRepository } from '@nestjs/typeorm'; import { Repository } from 'typeorm/repository/Repository'; import { CreateAssetDto } from './dto/create-asset.dto'; import { CuratedObjectsResponseDto } from './response-dto/curated-objects-response.dto'; import { AssetCountByTimeBucket } from './response-dto/asset-count-by-time-group-response.dto'; import { TimeGroupEnum } from './dto/get-asset-count-by-time-bucket.dto'; import { GetAssetByTimeBucketDto } from './dto/get-asset-by-time-bucket.dto'; import { AssetCountByUserIdResponseDto } from './response-dto/asset-count-by-user-id-response.dto'; import { CheckExistingAssetsDto } from './dto/check-existing-assets.dto'; import { CheckExistingAssetsResponseDto } from './response-dto/check-existing-assets-response.dto'; import { In } from 'typeorm/find-options/operator/In'; import { UpdateAssetDto } from './dto/update-asset.dto'; import { ITagRepository, TAG_REPOSITORY } from '../tag/tag.repository'; import { IsNull } from 'typeorm'; export interface IAssetRepository { create( createAssetDto: CreateAssetDto, ownerId: string, originalPath: string, mimeType: string, isVisible: boolean, checksum?: Buffer, livePhotoAssetEntity?: AssetEntity, ): Promise; update(userId: string, asset: AssetEntity, dto: UpdateAssetDto): Promise; getAllByUserId(userId: string, skip?: number): Promise; getAllByDeviceId(userId: string, deviceId: string): Promise; getById(assetId: string): Promise; getLocationsByUserId(userId: string): Promise; getDetectedObjectsByUserId(userId: string): Promise; getSearchPropertiesByUserId(userId: string): Promise; getAssetCountByTimeBucket(userId: string, timeBucket: TimeGroupEnum): Promise; getAssetCountByUserId(userId: string): Promise; getAssetByTimeBucket(userId: string, getAssetByTimeBucketDto: GetAssetByTimeBucketDto): Promise; getAssetByChecksum(userId: string, checksum: Buffer): Promise; getAssetWithNoThumbnail(): Promise; getAssetWithNoEXIF(): Promise; getAssetWithNoSmartInfo(): Promise; getExistingAssets( userId: string, checkDuplicateAssetDto: CheckExistingAssetsDto, ): Promise; countByIdAndUser(assetId: string, userId: string): Promise; } export const ASSET_REPOSITORY = 'ASSET_REPOSITORY'; @Injectable() export class AssetRepository implements IAssetRepository { constructor( @InjectRepository(AssetEntity) private assetRepository: Repository, @Inject(TAG_REPOSITORY) private _tagRepository: ITagRepository, ) {} async getAssetWithNoSmartInfo(): Promise { return await this.assetRepository .createQueryBuilder('asset') .leftJoinAndSelect('asset.smartInfo', 'si') .where('asset.resizePath IS NOT NULL') .andWhere('si.id IS NULL') .andWhere('asset.isVisible = true') .getMany(); } async getAssetWithNoThumbnail(): Promise { return await this.assetRepository.find({ where: [ { resizePath: IsNull(), isVisible: true }, { resizePath: '', isVisible: true }, { webpPath: IsNull(), isVisible: true }, { webpPath: '', isVisible: true }, ], }); } async getAssetWithNoEXIF(): Promise { return await this.assetRepository .createQueryBuilder('asset') .leftJoinAndSelect('asset.exifInfo', 'ei') .where('ei."assetId" IS NULL') .andWhere('asset.isVisible = true') .getMany(); } async getAssetCountByUserId(userId: string): Promise { // Get asset count by AssetType const items = await this.assetRepository .createQueryBuilder('asset') .select(`COUNT(asset.id)`, 'count') .addSelect(`asset.type`, 'type') .where('"userId" = :userId', { userId: userId }) .andWhere('asset.isVisible = true') .groupBy('asset.type') .getRawMany(); const assetCountByUserId = new AssetCountByUserIdResponseDto(); // asset type to dto property mapping const map: Record = { [AssetType.AUDIO]: 'audio', [AssetType.IMAGE]: 'photos', [AssetType.VIDEO]: 'videos', [AssetType.OTHER]: 'other', }; for (const item of items) { const count = Number(item.count) || 0; const assetType = item.type as AssetType; const type = map[assetType]; assetCountByUserId[type] = count; assetCountByUserId.total += count; } return assetCountByUserId; } async getAssetByTimeBucket(userId: string, getAssetByTimeBucketDto: GetAssetByTimeBucketDto): Promise { // Get asset entity from a list of time buckets return await this.assetRepository .createQueryBuilder('asset') .where('asset.userId = :userId', { userId: userId }) .andWhere(`date_trunc('month', "createdAt") IN (:...buckets)`, { buckets: [...getAssetByTimeBucketDto.timeBucket], }) .andWhere('asset.resizePath is not NULL') .andWhere('asset.isVisible = true') .orderBy('asset.createdAt', 'DESC') .getMany(); } async getAssetCountByTimeBucket(userId: string, timeBucket: TimeGroupEnum) { let result: AssetCountByTimeBucket[] = []; if (timeBucket === TimeGroupEnum.Month) { result = await this.assetRepository .createQueryBuilder('asset') .select(`COUNT(asset.id)::int`, 'count') .addSelect(`date_trunc('month', "createdAt")`, 'timeBucket') .where('"userId" = :userId', { userId: userId }) .andWhere('asset.resizePath is not NULL') .andWhere('asset.isVisible = true') .groupBy(`date_trunc('month', "createdAt")`) .orderBy(`date_trunc('month', "createdAt")`, 'DESC') .getRawMany(); } else if (timeBucket === TimeGroupEnum.Day) { result = await this.assetRepository .createQueryBuilder('asset') .select(`COUNT(asset.id)::int`, 'count') .addSelect(`date_trunc('day', "createdAt")`, 'timeBucket') .where('"userId" = :userId', { userId: userId }) .andWhere('asset.resizePath is not NULL') .andWhere('asset.isVisible = true') .groupBy(`date_trunc('day', "createdAt")`) .orderBy(`date_trunc('day', "createdAt")`, 'DESC') .getRawMany(); } return result; } async getSearchPropertiesByUserId(userId: string): Promise { return await this.assetRepository .createQueryBuilder('asset') .where('asset.userId = :userId', { userId: userId }) .andWhere('asset.isVisible = true') .leftJoin('asset.exifInfo', 'ei') .leftJoin('asset.smartInfo', 'si') .select('si.tags', 'tags') .addSelect('si.objects', 'objects') .addSelect('asset.type', 'assetType') .addSelect('ei.orientation', 'orientation') .addSelect('ei."lensModel"', 'lensModel') .addSelect('ei.make', 'make') .addSelect('ei.model', 'model') .addSelect('ei.city', 'city') .addSelect('ei.state', 'state') .addSelect('ei.country', 'country') .distinctOn(['si.tags']) .getRawMany(); } async getDetectedObjectsByUserId(userId: string): Promise { return await this.assetRepository.query( ` SELECT DISTINCT ON (unnest(si.objects)) a.id, unnest(si.objects) as "object", a."resizePath", a."deviceAssetId", a."deviceId" FROM assets a LEFT JOIN smart_info si ON a.id = si."assetId" WHERE a."userId" = $1 AND a."isVisible" = true AND si.objects IS NOT NULL `, [userId], ); } async getLocationsByUserId(userId: string): Promise { return await this.assetRepository.query( ` SELECT DISTINCT ON (e.city) a.id, e.city, a."resizePath", a."deviceAssetId", a."deviceId" FROM assets a LEFT JOIN exif e ON a.id = e."assetId" WHERE a."userId" = $1 AND a."isVisible" = true AND e.city IS NOT NULL AND a.type = 'IMAGE'; `, [userId], ); } /** * Get a single asset information by its ID * - include exif info * @param assetId */ async getById(assetId: string): Promise { return await this.assetRepository.findOneOrFail({ where: { id: assetId, }, relations: ['exifInfo', 'tags'], }); } /** * Get all assets belong to the user on the database * @param userId */ async getAllByUserId(userId: string, skip?: number): Promise { const query = this.assetRepository .createQueryBuilder('asset') .where('asset.userId = :userId', { userId: userId }) .andWhere('asset.resizePath is not NULL') .andWhere('asset.isVisible = true') .leftJoinAndSelect('asset.exifInfo', 'exifInfo') .leftJoinAndSelect('asset.tags', 'tags') .skip(skip || 0) .orderBy('asset.createdAt', 'DESC'); return await query.getMany(); } /** * Create new asset information in database * @param createAssetDto * @param ownerId * @param originalPath * @param mimeType * @returns Promise */ async create( createAssetDto: CreateAssetDto, ownerId: string, originalPath: string, mimeType: string, isVisible: boolean, checksum?: Buffer, livePhotoAssetEntity?: AssetEntity, ): Promise { const asset = new AssetEntity(); asset.deviceAssetId = createAssetDto.deviceAssetId; asset.userId = ownerId; asset.deviceId = createAssetDto.deviceId; asset.type = !isVisible ? AssetType.VIDEO : createAssetDto.assetType || AssetType.OTHER; // If an asset is not visible, it is a LivePhotos video portion, therefore we can confidently assign the type as VIDEO here asset.originalPath = originalPath; asset.createdAt = createAssetDto.createdAt; asset.modifiedAt = createAssetDto.modifiedAt; asset.isFavorite = createAssetDto.isFavorite; asset.mimeType = mimeType; asset.duration = createAssetDto.duration || null; asset.checksum = checksum || null; asset.isVisible = isVisible; asset.livePhotoVideoId = livePhotoAssetEntity ? livePhotoAssetEntity.id : null; const createdAsset = await this.assetRepository.save(asset); if (!createdAsset) { throw new BadRequestException('Asset not created'); } return createdAsset; } /** * Update asset */ async update(userId: string, asset: AssetEntity, dto: UpdateAssetDto): Promise { asset.isFavorite = dto.isFavorite ?? asset.isFavorite; if (dto.tagIds) { const tags = await this._tagRepository.getByIds(userId, dto.tagIds); asset.tags = tags; } return await this.assetRepository.save(asset); } /** * Get assets by device's Id on the database * @param userId * @param deviceId * * @returns Promise - Array of assetIds belong to the device */ async getAllByDeviceId(userId: string, deviceId: string): Promise { const rows = await this.assetRepository.find({ where: { userId: userId, deviceId: deviceId, isVisible: true, }, select: ['deviceAssetId'], }); const res: string[] = []; rows.forEach((v) => res.push(v.deviceAssetId)); return res; } /** * Get asset by checksum on the database * @param userId * @param checksum * */ getAssetByChecksum(userId: string, checksum: Buffer): Promise { return this.assetRepository.findOneOrFail({ where: { userId, checksum, }, relations: ['exifInfo'], }); } async getExistingAssets( userId: string, checkDuplicateAssetDto: CheckExistingAssetsDto, ): Promise { const existingAssets = await this.assetRepository.find({ select: { deviceAssetId: true }, where: { deviceAssetId: In(checkDuplicateAssetDto.deviceAssetIds), deviceId: checkDuplicateAssetDto.deviceId, userId, }, }); return new CheckExistingAssetsResponseDto(existingAssets.map((a) => a.deviceAssetId)); } async countByIdAndUser(assetId: string, userId: string): Promise { return await this.assetRepository.count({ where: { id: assetId, userId, }, }); } }