mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
* feat: sync assets, partner assets, exif, and partner exif Co-authored-by: Zack Pollard <zack@futo.org> Co-authored-by: Alex Tran <alex.tran1502@gmail.com> * refactor: remove duplicate where clause and orderBy statements in sync queries * fix: asset deletes not filtering by ownerId --------- Co-authored-by: Zack Pollard <zack@futo.org> Co-authored-by: Alex Tran <alex.tran1502@gmail.com> Co-authored-by: Zack Pollard <zackpollard@ymail.com>
111 lines
2.9 KiB
TypeScript
111 lines
2.9 KiB
TypeScript
import { AssetEntity } from 'src/entities/asset.entity';
|
|
import { Index, JoinColumn, OneToOne, PrimaryColumn, UpdateDateColumn } from 'typeorm';
|
|
import { Column } from 'typeorm/decorator/columns/Column.js';
|
|
import { Entity } from 'typeorm/decorator/entity/Entity.js';
|
|
|
|
@Entity('exif')
|
|
export class ExifEntity {
|
|
@OneToOne(() => AssetEntity, { onDelete: 'CASCADE', nullable: true })
|
|
@JoinColumn()
|
|
asset?: AssetEntity;
|
|
|
|
@PrimaryColumn()
|
|
assetId!: string;
|
|
|
|
@UpdateDateColumn({ type: 'timestamptz', default: () => 'clock_timestamp()' })
|
|
updatedAt?: Date;
|
|
|
|
@Index('IDX_asset_exif_update_id')
|
|
@Column({ type: 'uuid', nullable: false, default: () => 'immich_uuid_v7()' })
|
|
updateId?: string;
|
|
|
|
/* General info */
|
|
@Column({ type: 'text', default: '' })
|
|
description!: string; // or caption
|
|
|
|
@Column({ type: 'integer', nullable: true })
|
|
exifImageWidth!: number | null;
|
|
|
|
@Column({ type: 'integer', nullable: true })
|
|
exifImageHeight!: number | null;
|
|
|
|
@Column({ type: 'bigint', nullable: true })
|
|
fileSizeInByte!: number | null;
|
|
|
|
@Column({ type: 'varchar', nullable: true })
|
|
orientation!: string | null;
|
|
|
|
@Column({ type: 'timestamptz', nullable: true })
|
|
dateTimeOriginal!: Date | null;
|
|
|
|
@Column({ type: 'timestamptz', nullable: true })
|
|
modifyDate!: Date | null;
|
|
|
|
@Column({ type: 'varchar', nullable: true })
|
|
timeZone!: string | null;
|
|
|
|
@Column({ type: 'float', nullable: true })
|
|
latitude!: number | null;
|
|
|
|
@Column({ type: 'float', nullable: true })
|
|
longitude!: number | null;
|
|
|
|
@Column({ type: 'varchar', nullable: true })
|
|
projectionType!: string | null;
|
|
|
|
@Index('exif_city')
|
|
@Column({ type: 'varchar', nullable: true })
|
|
city!: string | null;
|
|
|
|
@Index('IDX_live_photo_cid')
|
|
@Column({ type: 'varchar', nullable: true })
|
|
livePhotoCID!: string | null;
|
|
|
|
@Index('IDX_auto_stack_id')
|
|
@Column({ type: 'varchar', nullable: true })
|
|
autoStackId!: string | null;
|
|
|
|
@Column({ type: 'varchar', nullable: true })
|
|
state!: string | null;
|
|
|
|
@Column({ type: 'varchar', nullable: true })
|
|
country!: string | null;
|
|
|
|
/* Image info */
|
|
@Column({ type: 'varchar', nullable: true })
|
|
make!: string | null;
|
|
|
|
@Column({ type: 'varchar', nullable: true })
|
|
model!: string | null;
|
|
|
|
@Column({ type: 'varchar', nullable: true })
|
|
lensModel!: string | null;
|
|
|
|
@Column({ type: 'float8', nullable: true })
|
|
fNumber!: number | null;
|
|
|
|
@Column({ type: 'float8', nullable: true })
|
|
focalLength!: number | null;
|
|
|
|
@Column({ type: 'integer', nullable: true })
|
|
iso!: number | null;
|
|
|
|
@Column({ type: 'varchar', nullable: true })
|
|
exposureTime!: string | null;
|
|
|
|
@Column({ type: 'varchar', nullable: true })
|
|
profileDescription!: string | null;
|
|
|
|
@Column({ type: 'varchar', nullable: true })
|
|
colorspace!: string | null;
|
|
|
|
@Column({ type: 'integer', nullable: true })
|
|
bitsPerSample!: number | null;
|
|
|
|
@Column({ type: 'integer', nullable: true })
|
|
rating!: number | null;
|
|
|
|
/* Video info */
|
|
@Column({ type: 'float8', nullable: true })
|
|
fps?: number | null;
|
|
}
|