mirror of
https://github.com/immich-app/immich.git
synced 2025-12-28 09:14:59 +03:00
* feat(web): show original uploader in shared album photo details * feat: send owner in asset by id response * chore: open api * fix: linting * fix: change to Shared By * openapi * openapi * api * styling --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com> Co-authored-by: Alex <alex.tran1502@gmail.com>
77 lines
2.5 KiB
TypeScript
77 lines
2.5 KiB
TypeScript
import { AssetEntity, AssetType } from '@app/infra/entities';
|
|
import { ApiProperty } from '@nestjs/swagger';
|
|
import { PersonResponseDto, mapFace } from '../../person/person.dto';
|
|
import { TagResponseDto, mapTag } from '../../tag';
|
|
import { UserResponseDto, mapUser } from '../../user/response-dto/user-response.dto';
|
|
import { ExifResponseDto, mapExif } from './exif-response.dto';
|
|
import { SmartInfoResponseDto, mapSmartInfo } from './smart-info-response.dto';
|
|
|
|
export class AssetResponseDto {
|
|
id!: string;
|
|
deviceAssetId!: string;
|
|
deviceId!: string;
|
|
ownerId!: string;
|
|
owner?: UserResponseDto;
|
|
|
|
@ApiProperty({ enumName: 'AssetTypeEnum', enum: AssetType })
|
|
type!: AssetType;
|
|
originalPath!: string;
|
|
originalFileName!: string;
|
|
resized!: boolean;
|
|
/**base64 encoded thumbhash */
|
|
thumbhash!: string | null;
|
|
fileCreatedAt!: Date;
|
|
fileModifiedAt!: Date;
|
|
updatedAt!: Date;
|
|
isFavorite!: boolean;
|
|
isArchived!: boolean;
|
|
duration!: string;
|
|
exifInfo?: ExifResponseDto;
|
|
smartInfo?: SmartInfoResponseDto;
|
|
livePhotoVideoId?: string | null;
|
|
tags?: TagResponseDto[];
|
|
people?: PersonResponseDto[];
|
|
/**base64 encoded sha1 hash */
|
|
checksum!: string;
|
|
}
|
|
|
|
function _map(entity: AssetEntity, withExif: boolean): AssetResponseDto {
|
|
return {
|
|
id: entity.id,
|
|
deviceAssetId: entity.deviceAssetId,
|
|
ownerId: entity.ownerId,
|
|
owner: entity.owner ? mapUser(entity.owner) : undefined,
|
|
deviceId: entity.deviceId,
|
|
type: entity.type,
|
|
originalPath: entity.originalPath,
|
|
originalFileName: entity.originalFileName,
|
|
resized: !!entity.resizePath,
|
|
thumbhash: entity.thumbhash?.toString('base64') ?? null,
|
|
fileCreatedAt: entity.fileCreatedAt,
|
|
fileModifiedAt: entity.fileModifiedAt,
|
|
updatedAt: entity.updatedAt,
|
|
isFavorite: entity.isFavorite,
|
|
isArchived: entity.isArchived,
|
|
duration: entity.duration ?? '0:00:00.00000',
|
|
exifInfo: withExif ? (entity.exifInfo ? mapExif(entity.exifInfo) : undefined) : undefined,
|
|
smartInfo: entity.smartInfo ? mapSmartInfo(entity.smartInfo) : undefined,
|
|
livePhotoVideoId: entity.livePhotoVideoId,
|
|
tags: entity.tags?.map(mapTag),
|
|
people: entity.faces?.map(mapFace).filter((person) => !person.isHidden),
|
|
checksum: entity.checksum.toString('base64'),
|
|
};
|
|
}
|
|
|
|
export function mapAsset(entity: AssetEntity): AssetResponseDto {
|
|
return _map(entity, true);
|
|
}
|
|
|
|
export function mapAssetWithoutExif(entity: AssetEntity): AssetResponseDto {
|
|
return _map(entity, false);
|
|
}
|
|
|
|
export class MemoryLaneResponseDto {
|
|
title!: string;
|
|
assets!: AssetResponseDto[];
|
|
}
|