mirror of
https://github.com/immich-app/immich.git
synced 2025-12-24 09:14:58 +03:00
93 lines
2.3 KiB
TypeScript
93 lines
2.3 KiB
TypeScript
import { Injectable } from '@nestjs/common';
|
|
import { InjectRepository } from '@nestjs/typeorm';
|
|
import { DummyValue, GenerateSql } from 'src/decorators';
|
|
import { SharedLinkEntity } from 'src/entities/shared-link.entity';
|
|
import { ISharedLinkRepository } from 'src/interfaces/shared-link.interface';
|
|
import { Instrumentation } from 'src/utils/instrumentation';
|
|
import { Repository } from 'typeorm';
|
|
|
|
@Instrumentation()
|
|
@Injectable()
|
|
export class SharedLinkRepository implements ISharedLinkRepository {
|
|
constructor(@InjectRepository(SharedLinkEntity) private repository: Repository<SharedLinkEntity>) {}
|
|
|
|
@GenerateSql({ params: [DummyValue.UUID, DummyValue.UUID] })
|
|
get(userId: string, id: string): Promise<SharedLinkEntity | null> {
|
|
return this.repository.findOne({
|
|
where: {
|
|
id,
|
|
userId,
|
|
},
|
|
relations: {
|
|
assets: {
|
|
exifInfo: true,
|
|
},
|
|
album: {
|
|
assets: {
|
|
exifInfo: true,
|
|
},
|
|
owner: true,
|
|
},
|
|
},
|
|
order: {
|
|
createdAt: 'DESC',
|
|
assets: {
|
|
fileCreatedAt: 'ASC',
|
|
},
|
|
album: {
|
|
assets: {
|
|
fileCreatedAt: 'ASC',
|
|
},
|
|
},
|
|
},
|
|
});
|
|
}
|
|
|
|
@GenerateSql({ params: [DummyValue.UUID] })
|
|
getAll(userId: string): Promise<SharedLinkEntity[]> {
|
|
return this.repository.find({
|
|
where: {
|
|
userId,
|
|
},
|
|
relations: {
|
|
assets: true,
|
|
album: {
|
|
owner: true,
|
|
},
|
|
},
|
|
order: {
|
|
createdAt: 'DESC',
|
|
},
|
|
});
|
|
}
|
|
|
|
@GenerateSql({ params: [DummyValue.BUFFER] })
|
|
async getByKey(key: Buffer): Promise<SharedLinkEntity | null> {
|
|
return await this.repository.findOne({
|
|
where: {
|
|
key,
|
|
},
|
|
relations: {
|
|
user: true,
|
|
},
|
|
});
|
|
}
|
|
|
|
create(entity: Partial<SharedLinkEntity>): Promise<SharedLinkEntity> {
|
|
return this.save(entity);
|
|
}
|
|
|
|
update(entity: Partial<SharedLinkEntity>): Promise<SharedLinkEntity> {
|
|
return this.save(entity);
|
|
}
|
|
|
|
async remove(entity: SharedLinkEntity): Promise<void> {
|
|
await this.repository.remove(entity);
|
|
}
|
|
|
|
private async save(entity: Partial<SharedLinkEntity>): Promise<SharedLinkEntity> {
|
|
await this.repository.save(entity);
|
|
return this.repository.findOneOrFail({ where: { id: entity.id } });
|
|
}
|
|
}
|