forked from Cutlery/immich
* Fixed error uploading a file from album * Fixed album selection mode show viewing asset stage * Navigate back after uploading asset to album
479 lines
16 KiB
TypeScript
479 lines
16 KiB
TypeScript
import { CuratedLocationsResponseDto } from './response-dto/curated-locations-response.dto';
|
|
import {
|
|
BadRequestException,
|
|
Inject,
|
|
Injectable,
|
|
InternalServerErrorException,
|
|
Logger,
|
|
NotFoundException,
|
|
StreamableFile,
|
|
} from '@nestjs/common';
|
|
import { InjectRepository } from '@nestjs/typeorm';
|
|
import { createHash } from 'node:crypto';
|
|
import { Repository } from 'typeorm';
|
|
import { AuthUserDto } from '../../decorators/auth-user.decorator';
|
|
import { AssetEntity, AssetType } from '@app/database/entities/asset.entity';
|
|
import { constants, createReadStream, ReadStream, stat } from 'fs';
|
|
import { ServeFileDto } from './dto/serve-file.dto';
|
|
import { Response as Res } from 'express';
|
|
import { promisify } from 'util';
|
|
import { DeleteAssetDto } from './dto/delete-asset.dto';
|
|
import { SearchAssetDto } from './dto/search-asset.dto';
|
|
import fs from 'fs/promises';
|
|
import { CheckDuplicateAssetDto } from './dto/check-duplicate-asset.dto';
|
|
import { CuratedObjectsResponseDto } from './response-dto/curated-objects-response.dto';
|
|
import { AssetResponseDto, mapAsset } from './response-dto/asset-response.dto';
|
|
import { CreateAssetDto } from './dto/create-asset.dto';
|
|
import { DeleteAssetResponseDto, DeleteAssetStatusEnum } from './response-dto/delete-asset-response.dto';
|
|
import { GetAssetThumbnailDto, GetAssetThumbnailFormatEnum } from './dto/get-asset-thumbnail.dto';
|
|
import { CheckDuplicateAssetResponseDto } from './response-dto/check-duplicate-asset-response.dto';
|
|
import { ASSET_REPOSITORY, IAssetRepository } from './asset-repository';
|
|
import { SearchPropertiesDto } from './dto/search-properties.dto';
|
|
import {
|
|
AssetCountByTimeBucketResponseDto,
|
|
mapAssetCountByTimeBucket,
|
|
} from './response-dto/asset-count-by-time-group-response.dto';
|
|
import { GetAssetCountByTimeBucketDto } from './dto/get-asset-count-by-time-bucket.dto';
|
|
import { GetAssetByTimeBucketDto } from './dto/get-asset-by-time-bucket.dto';
|
|
|
|
const fileInfo = promisify(stat);
|
|
|
|
@Injectable()
|
|
export class AssetService {
|
|
constructor(
|
|
@Inject(ASSET_REPOSITORY)
|
|
private _assetRepository: IAssetRepository,
|
|
|
|
@InjectRepository(AssetEntity)
|
|
private assetRepository: Repository<AssetEntity>,
|
|
) {}
|
|
|
|
public async createUserAsset(
|
|
authUser: AuthUserDto,
|
|
createAssetDto: CreateAssetDto,
|
|
originalPath: string,
|
|
mimeType: string,
|
|
): Promise<AssetEntity> {
|
|
const checksum = await this.calculateChecksum(originalPath);
|
|
const assetEntity = await this._assetRepository.create(
|
|
createAssetDto,
|
|
authUser.id,
|
|
originalPath,
|
|
mimeType,
|
|
checksum,
|
|
);
|
|
|
|
return assetEntity;
|
|
}
|
|
|
|
public async getUserAssetsByDeviceId(authUser: AuthUserDto, deviceId: string) {
|
|
return this._assetRepository.getAllByDeviceId(authUser.id, deviceId);
|
|
}
|
|
|
|
public async getAllAssets(authUser: AuthUserDto): Promise<AssetResponseDto[]> {
|
|
const assets = await this._assetRepository.getAllByUserId(authUser.id);
|
|
|
|
return assets.map((asset) => mapAsset(asset));
|
|
}
|
|
|
|
public async getAssetByTimeBucket(
|
|
authUser: AuthUserDto,
|
|
getAssetByTimeBucketDto: GetAssetByTimeBucketDto,
|
|
): Promise<AssetResponseDto[]> {
|
|
const assets = await this._assetRepository.getAssetByTimeBucket(authUser.id, getAssetByTimeBucketDto);
|
|
|
|
return assets.map((asset) => mapAsset(asset));
|
|
}
|
|
|
|
// TODO - Refactor this to get asset by its own id
|
|
private async findAssetOfDevice(deviceId: string, assetId: string): Promise<AssetResponseDto> {
|
|
const rows = await this.assetRepository.query(
|
|
'SELECT * FROM assets a WHERE a."deviceAssetId" = $1 AND a."deviceId" = $2',
|
|
[assetId, deviceId],
|
|
);
|
|
|
|
if (rows.lengh == 0) {
|
|
throw new NotFoundException('Not Found');
|
|
}
|
|
|
|
const assetOnDevice = rows[0] as AssetEntity;
|
|
|
|
return mapAsset(assetOnDevice);
|
|
}
|
|
|
|
public async getAssetById(authUser: AuthUserDto, assetId: string): Promise<AssetResponseDto> {
|
|
const asset = await this._assetRepository.getById(assetId);
|
|
|
|
return mapAsset(asset);
|
|
}
|
|
|
|
public async downloadFile(query: ServeFileDto, res: Res) {
|
|
try {
|
|
let fileReadStream = null;
|
|
const asset = await this.findAssetOfDevice(query.did, query.aid);
|
|
|
|
// Download Video
|
|
if (asset.type === AssetType.VIDEO) {
|
|
const { size } = await fileInfo(asset.originalPath);
|
|
|
|
res.set({
|
|
'Content-Type': asset.mimeType,
|
|
'Content-Length': size,
|
|
});
|
|
|
|
await fs.access(asset.originalPath, constants.R_OK | constants.W_OK);
|
|
fileReadStream = createReadStream(asset.originalPath);
|
|
} else {
|
|
// Download Image
|
|
if (!query.isThumb) {
|
|
/**
|
|
* Download Image Original File
|
|
*/
|
|
const { size } = await fileInfo(asset.originalPath);
|
|
|
|
res.set({
|
|
'Content-Type': asset.mimeType,
|
|
'Content-Length': size,
|
|
});
|
|
|
|
await fs.access(asset.originalPath, constants.R_OK | constants.W_OK);
|
|
fileReadStream = createReadStream(asset.originalPath);
|
|
} else {
|
|
/**
|
|
* Download Image Resize File
|
|
*/
|
|
if (!asset.resizePath) {
|
|
throw new NotFoundException('resizePath not set');
|
|
}
|
|
|
|
const { size } = await fileInfo(asset.resizePath);
|
|
|
|
res.set({
|
|
'Content-Type': 'image/jpeg',
|
|
'Content-Length': size,
|
|
});
|
|
|
|
await fs.access(asset.resizePath, constants.R_OK | constants.W_OK);
|
|
fileReadStream = createReadStream(asset.resizePath);
|
|
}
|
|
}
|
|
|
|
return new StreamableFile(fileReadStream);
|
|
} catch (e) {
|
|
Logger.error(`Error download asset ${e}`, 'downloadFile');
|
|
throw new InternalServerErrorException(`Failed to download asset ${e}`, 'DownloadFile');
|
|
}
|
|
}
|
|
|
|
public async getAssetThumbnail(assetId: string, query: GetAssetThumbnailDto, res: Res) {
|
|
let fileReadStream: ReadStream;
|
|
|
|
const asset = await this.assetRepository.findOne({ where: { id: assetId } });
|
|
|
|
if (!asset) {
|
|
throw new NotFoundException('Asset not found');
|
|
}
|
|
|
|
try {
|
|
if (query.format == GetAssetThumbnailFormatEnum.JPEG) {
|
|
if (!asset.resizePath) {
|
|
throw new NotFoundException('resizePath not set');
|
|
}
|
|
|
|
await fs.access(asset.resizePath, constants.R_OK | constants.W_OK);
|
|
fileReadStream = createReadStream(asset.resizePath);
|
|
} else {
|
|
if (asset.webpPath && asset.webpPath.length > 0) {
|
|
await fs.access(asset.webpPath, constants.R_OK | constants.W_OK);
|
|
fileReadStream = createReadStream(asset.webpPath);
|
|
} else {
|
|
if (!asset.resizePath) {
|
|
throw new NotFoundException('resizePath not set');
|
|
}
|
|
|
|
await fs.access(asset.resizePath, constants.R_OK | constants.W_OK);
|
|
fileReadStream = createReadStream(asset.resizePath);
|
|
}
|
|
}
|
|
|
|
res.header('Cache-Control', 'max-age=300');
|
|
return new StreamableFile(fileReadStream);
|
|
} catch (e) {
|
|
res.header('Cache-Control', 'none');
|
|
Logger.error(`Cannot create read stream for asset ${asset.id}`, 'getAssetThumbnail');
|
|
throw new InternalServerErrorException(
|
|
e,
|
|
`Cannot read thumbnail file for asset ${asset.id} - contact your administrator`,
|
|
);
|
|
}
|
|
}
|
|
|
|
public async serveFile(authUser: AuthUserDto, query: ServeFileDto, res: Res, headers: any) {
|
|
let fileReadStream: ReadStream;
|
|
const asset = await this.findAssetOfDevice(query.did, query.aid);
|
|
|
|
if (!asset) {
|
|
throw new NotFoundException('Asset does not exist');
|
|
}
|
|
|
|
// Handle Sending Images
|
|
if (asset.type == AssetType.IMAGE) {
|
|
try {
|
|
/**
|
|
* Serve file viewer on the web
|
|
*/
|
|
if (query.isWeb) {
|
|
res.set({
|
|
'Content-Type': 'image/jpeg',
|
|
});
|
|
if (!asset.resizePath) {
|
|
Logger.error('Error serving IMAGE asset for web', 'ServeFile');
|
|
throw new InternalServerErrorException(`Failed to serve image asset for web`, 'ServeFile');
|
|
}
|
|
await fs.access(asset.resizePath, constants.R_OK | constants.W_OK);
|
|
fileReadStream = createReadStream(asset.resizePath);
|
|
|
|
return new StreamableFile(fileReadStream);
|
|
}
|
|
|
|
/**
|
|
* Serve thumbnail image for both web and mobile app
|
|
*/
|
|
if (!query.isThumb) {
|
|
res.set({
|
|
'Content-Type': asset.mimeType,
|
|
});
|
|
|
|
await fs.access(asset.originalPath, constants.R_OK | constants.W_OK);
|
|
fileReadStream = createReadStream(asset.originalPath);
|
|
} else {
|
|
if (asset.webpPath && asset.webpPath.length > 0) {
|
|
res.set({
|
|
'Content-Type': 'image/webp',
|
|
});
|
|
|
|
await fs.access(asset.webpPath, constants.R_OK | constants.W_OK);
|
|
fileReadStream = createReadStream(asset.webpPath);
|
|
} else {
|
|
res.set({
|
|
'Content-Type': 'image/jpeg',
|
|
});
|
|
|
|
if (!asset.resizePath) {
|
|
throw new Error('resizePath not set');
|
|
}
|
|
|
|
await fs.access(asset.resizePath, constants.R_OK | constants.W_OK);
|
|
fileReadStream = createReadStream(asset.resizePath);
|
|
}
|
|
}
|
|
|
|
return new StreamableFile(fileReadStream);
|
|
} catch (e) {
|
|
Logger.error(`Cannot create read stream for asset ${asset.id} ${JSON.stringify(e)}`, 'serveFile[IMAGE]');
|
|
throw new InternalServerErrorException(
|
|
e,
|
|
`Cannot read thumbnail file for asset ${asset.id} - contact your administrator`,
|
|
);
|
|
}
|
|
} else {
|
|
try {
|
|
// Handle Video
|
|
let videoPath = asset.originalPath;
|
|
|
|
let mimeType = asset.mimeType;
|
|
|
|
await fs.access(videoPath, constants.R_OK | constants.W_OK);
|
|
|
|
if (query.isWeb && asset.mimeType == 'video/quicktime') {
|
|
videoPath = asset.encodedVideoPath == '' ? String(asset.originalPath) : String(asset.encodedVideoPath);
|
|
mimeType = asset.encodedVideoPath == '' ? asset.mimeType : 'video/mp4';
|
|
}
|
|
|
|
const { size } = await fileInfo(videoPath);
|
|
const range = headers.range;
|
|
|
|
if (range) {
|
|
/** Extracting Start and End value from Range Header */
|
|
let [start, end] = range.replace(/bytes=/, '').split('-');
|
|
start = parseInt(start, 10);
|
|
end = end ? parseInt(end, 10) : size - 1;
|
|
|
|
if (!isNaN(start) && isNaN(end)) {
|
|
start = start;
|
|
end = size - 1;
|
|
}
|
|
if (isNaN(start) && !isNaN(end)) {
|
|
start = size - end;
|
|
end = size - 1;
|
|
}
|
|
|
|
// Handle unavailable range request
|
|
if (start >= size || end >= size) {
|
|
console.error('Bad Request');
|
|
// Return the 416 Range Not Satisfiable.
|
|
res.status(416).set({
|
|
'Content-Range': `bytes */${size}`,
|
|
});
|
|
|
|
throw new BadRequestException('Bad Request Range');
|
|
}
|
|
|
|
/** Sending Partial Content With HTTP Code 206 */
|
|
res.status(206).set({
|
|
'Content-Range': `bytes ${start}-${end}/${size}`,
|
|
'Accept-Ranges': 'bytes',
|
|
'Content-Length': end - start + 1,
|
|
'Content-Type': mimeType,
|
|
});
|
|
|
|
const videoStream = createReadStream(videoPath, { start: start, end: end });
|
|
|
|
return new StreamableFile(videoStream);
|
|
} else {
|
|
res.set({
|
|
'Content-Type': mimeType,
|
|
});
|
|
|
|
return new StreamableFile(createReadStream(videoPath));
|
|
}
|
|
} catch (e) {
|
|
Logger.error(`Error serving VIDEO asset id ${asset.id}`, 'serveFile[VIDEO]');
|
|
throw new InternalServerErrorException(`Failed to serve video asset ${e}`, 'ServeFile');
|
|
}
|
|
}
|
|
}
|
|
|
|
public async deleteAssetById(authUser: AuthUserDto, assetIds: DeleteAssetDto): Promise<DeleteAssetResponseDto[]> {
|
|
const result: DeleteAssetResponseDto[] = [];
|
|
|
|
const target = assetIds.ids;
|
|
for (const assetId of target) {
|
|
const res = await this.assetRepository.delete({
|
|
id: assetId,
|
|
userId: authUser.id,
|
|
});
|
|
|
|
if (res.affected) {
|
|
result.push({
|
|
id: assetId,
|
|
status: DeleteAssetStatusEnum.SUCCESS,
|
|
});
|
|
} else {
|
|
result.push({
|
|
id: assetId,
|
|
status: DeleteAssetStatusEnum.FAILED,
|
|
});
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
async getAssetSearchTerm(authUser: AuthUserDto): Promise<string[]> {
|
|
const possibleSearchTerm = new Set<string>();
|
|
|
|
const rows = await this._assetRepository.getSearchPropertiesByUserId(authUser.id);
|
|
rows.forEach((row: SearchPropertiesDto) => {
|
|
// tags
|
|
row.tags?.map((tag: string) => possibleSearchTerm.add(tag?.toLowerCase()));
|
|
|
|
// objects
|
|
row.objects?.map((object: string) => possibleSearchTerm.add(object?.toLowerCase()));
|
|
|
|
// asset's tyoe
|
|
possibleSearchTerm.add(row.assetType?.toLowerCase() || '');
|
|
|
|
// image orientation
|
|
possibleSearchTerm.add(row.orientation?.toLowerCase() || '');
|
|
|
|
// Lens model
|
|
possibleSearchTerm.add(row.lensModel?.toLowerCase() || '');
|
|
|
|
// Make and model
|
|
possibleSearchTerm.add(row.make?.toLowerCase() || '');
|
|
possibleSearchTerm.add(row.model?.toLowerCase() || '');
|
|
|
|
// Location
|
|
possibleSearchTerm.add(row.city?.toLowerCase() || '');
|
|
possibleSearchTerm.add(row.state?.toLowerCase() || '');
|
|
possibleSearchTerm.add(row.country?.toLowerCase() || '');
|
|
});
|
|
|
|
return Array.from(possibleSearchTerm).filter((x) => x != null && x != '');
|
|
}
|
|
|
|
async searchAsset(authUser: AuthUserDto, searchAssetDto: SearchAssetDto): Promise<AssetResponseDto[]> {
|
|
const query = `
|
|
SELECT a.*
|
|
FROM assets a
|
|
LEFT JOIN smart_info si ON a.id = si."assetId"
|
|
LEFT JOIN exif e ON a.id = e."assetId"
|
|
|
|
WHERE a."userId" = $1
|
|
AND
|
|
(
|
|
TO_TSVECTOR('english', ARRAY_TO_STRING(si.tags, ',')) @@ PLAINTO_TSQUERY('english', $2) OR
|
|
TO_TSVECTOR('english', ARRAY_TO_STRING(si.objects, ',')) @@ PLAINTO_TSQUERY('english', $2) OR
|
|
e."exifTextSearchableColumn" @@ PLAINTO_TSQUERY('english', $2)
|
|
);
|
|
`;
|
|
|
|
const searchResults: AssetEntity[] = await this.assetRepository.query(query, [
|
|
authUser.id,
|
|
searchAssetDto.searchTerm,
|
|
]);
|
|
|
|
return searchResults.map((asset) => mapAsset(asset));
|
|
}
|
|
|
|
async getCuratedLocation(authUser: AuthUserDto): Promise<CuratedLocationsResponseDto[]> {
|
|
return this._assetRepository.getLocationsByUserId(authUser.id);
|
|
}
|
|
|
|
async getCuratedObject(authUser: AuthUserDto): Promise<CuratedObjectsResponseDto[]> {
|
|
return this._assetRepository.getDetectedObjectsByUserId(authUser.id);
|
|
}
|
|
|
|
async checkDuplicatedAsset(
|
|
authUser: AuthUserDto,
|
|
checkDuplicateAssetDto: CheckDuplicateAssetDto,
|
|
): Promise<CheckDuplicateAssetResponseDto> {
|
|
const res = await this.assetRepository.findOne({
|
|
where: {
|
|
deviceAssetId: checkDuplicateAssetDto.deviceAssetId,
|
|
deviceId: checkDuplicateAssetDto.deviceId,
|
|
userId: authUser.id,
|
|
},
|
|
});
|
|
|
|
const isDuplicated = res ? true : false;
|
|
|
|
return new CheckDuplicateAssetResponseDto(isDuplicated, res?.id);
|
|
}
|
|
|
|
async getAssetCountByTimeBucket(
|
|
authUser: AuthUserDto,
|
|
getAssetCountByTimeBucketDto: GetAssetCountByTimeBucketDto,
|
|
): Promise<AssetCountByTimeBucketResponseDto> {
|
|
const result = await this._assetRepository.getAssetCountByTimeBucket(
|
|
authUser.id,
|
|
getAssetCountByTimeBucketDto.timeGroup,
|
|
);
|
|
|
|
return mapAssetCountByTimeBucket(result);
|
|
}
|
|
|
|
private calculateChecksum(filePath: string): Promise<Buffer> {
|
|
const fileReadStream = createReadStream(filePath);
|
|
const sha1Hash = createHash('sha1');
|
|
const deferred = new Promise<Buffer>((resolve, reject) => {
|
|
sha1Hash.once('error', (err) => reject(err));
|
|
sha1Hash.once('finish', () => resolve(sha1Hash.read()));
|
|
});
|
|
|
|
fileReadStream.pipe(sha1Hash);
|
|
return deferred;
|
|
}
|
|
}
|