mirror of
https://github.com/immich-app/immich.git
synced 2026-02-13 20:37:51 +03:00
* clean up usage * i'm not updating all these tests * update tests * add indices * add indices to entities remove index from person entity add to face entity fix * simplify query * update sql * missing await * remove synchronize false
50 lines
1.4 KiB
TypeScript
50 lines
1.4 KiB
TypeScript
import { Column, Entity, Index, ManyToOne, PrimaryGeneratedColumn } from 'typeorm';
|
|
import { AssetEntity } from './asset.entity';
|
|
import { PersonEntity } from './person.entity';
|
|
|
|
@Entity('asset_faces', { synchronize: false })
|
|
@Index('IDX_asset_faces_assetId_personId', ['assetId', 'personId'])
|
|
@Index(['personId', 'assetId'])
|
|
export class AssetFaceEntity {
|
|
@PrimaryGeneratedColumn('uuid')
|
|
id!: string;
|
|
|
|
@Column()
|
|
assetId!: string;
|
|
|
|
@Column({ nullable: true, type: 'uuid' })
|
|
personId!: string | null;
|
|
|
|
@Index('face_index', { synchronize: false })
|
|
@Column({ type: 'float4', array: true, select: false, transformer: { from: (v) => JSON.parse(v), to: (v) => v } })
|
|
embedding!: number[];
|
|
|
|
@Column({ default: 0, type: 'int' })
|
|
imageWidth!: number;
|
|
|
|
@Column({ default: 0, type: 'int' })
|
|
imageHeight!: number;
|
|
|
|
@Column({ default: 0, type: 'int' })
|
|
boundingBoxX1!: number;
|
|
|
|
@Column({ default: 0, type: 'int' })
|
|
boundingBoxY1!: number;
|
|
|
|
@Column({ default: 0, type: 'int' })
|
|
boundingBoxX2!: number;
|
|
|
|
@Column({ default: 0, type: 'int' })
|
|
boundingBoxY2!: number;
|
|
|
|
@ManyToOne(() => AssetEntity, (asset) => asset.faces, { onDelete: 'CASCADE', onUpdate: 'CASCADE' })
|
|
asset!: AssetEntity;
|
|
|
|
@ManyToOne(() => PersonEntity, (person) => person.faces, {
|
|
onDelete: 'SET NULL',
|
|
onUpdate: 'CASCADE',
|
|
nullable: true,
|
|
})
|
|
person!: PersonEntity | null;
|
|
}
|