mirror of
https://github.com/immich-app/immich.git
synced 2025-03-11 02:23:09 -05:00
46 lines
1.4 KiB
TypeScript
46 lines
1.4 KiB
TypeScript
import { Injectable } from '@nestjs/common';
|
|
import { InjectRepository } from '@nestjs/typeorm';
|
|
import { DummyValue, GenerateSql } from 'src/decorators';
|
|
import { UserTokenEntity } from 'src/entities/user-token.entity';
|
|
import { Instrumentation } from 'src/infra/instrumentation';
|
|
import { IUserTokenRepository } from 'src/interfaces/user-token.repository';
|
|
import { Repository } from 'typeorm';
|
|
|
|
@Instrumentation()
|
|
@Injectable()
|
|
export class UserTokenRepository implements IUserTokenRepository {
|
|
constructor(@InjectRepository(UserTokenEntity) private repository: Repository<UserTokenEntity>) {}
|
|
|
|
@GenerateSql({ params: [DummyValue.STRING] })
|
|
getByToken(token: string): Promise<UserTokenEntity | null> {
|
|
return this.repository.findOne({ where: { token }, relations: { user: true } });
|
|
}
|
|
|
|
getAll(userId: string): Promise<UserTokenEntity[]> {
|
|
return this.repository.find({
|
|
where: {
|
|
userId,
|
|
},
|
|
relations: {
|
|
user: true,
|
|
},
|
|
order: {
|
|
updatedAt: 'desc',
|
|
createdAt: 'desc',
|
|
},
|
|
});
|
|
}
|
|
|
|
create(userToken: Partial<UserTokenEntity>): Promise<UserTokenEntity> {
|
|
return this.repository.save(userToken);
|
|
}
|
|
|
|
save(userToken: Partial<UserTokenEntity>): Promise<UserTokenEntity> {
|
|
return this.repository.save(userToken);
|
|
}
|
|
|
|
@GenerateSql({ params: [DummyValue.UUID] })
|
|
async delete(id: string): Promise<void> {
|
|
await this.repository.delete({ id });
|
|
}
|
|
}
|