mirror of
https://github.com/immich-app/immich.git
synced 2026-03-01 18:19:10 +03:00
71 lines
2.1 KiB
TypeScript
71 lines
2.1 KiB
TypeScript
import { Injectable } from '@nestjs/common';
|
|
import { Insertable, Kysely, Updateable } from 'kysely';
|
|
import { jsonObjectFrom } from 'kysely/helpers/postgres';
|
|
import { InjectKysely } from 'nestjs-kysely';
|
|
import { columns } from 'src/database';
|
|
import { DummyValue, GenerateSql } from 'src/decorators';
|
|
import { DB } from 'src/schema';
|
|
import { ApiKeyTable } from 'src/schema/tables/api-key.table';
|
|
import { asUuid } from 'src/utils/database';
|
|
|
|
@Injectable()
|
|
export class ApiKeyRepository {
|
|
constructor(@InjectKysely() private db: Kysely<DB>) {}
|
|
|
|
create(dto: Insertable<ApiKeyTable>) {
|
|
return this.db.insertInto('api_key').values(dto).returning(columns.apiKey).executeTakeFirstOrThrow();
|
|
}
|
|
|
|
async update(userId: string, id: string, dto: Updateable<ApiKeyTable>) {
|
|
return this.db
|
|
.updateTable('api_key')
|
|
.set(dto)
|
|
.where('api_key.userId', '=', userId)
|
|
.where('id', '=', asUuid(id))
|
|
.returning(columns.apiKey)
|
|
.executeTakeFirstOrThrow();
|
|
}
|
|
|
|
async delete(userId: string, id: string) {
|
|
await this.db.deleteFrom('api_key').where('userId', '=', userId).where('id', '=', asUuid(id)).execute();
|
|
}
|
|
|
|
@GenerateSql({ params: [DummyValue.STRING] })
|
|
getKey(hashedToken: string) {
|
|
return this.db
|
|
.selectFrom('api_key')
|
|
.select((eb) => [
|
|
...columns.authApiKey,
|
|
jsonObjectFrom(
|
|
eb
|
|
.selectFrom('user')
|
|
.select(columns.authUser)
|
|
.whereRef('user.id', '=', 'api_key.userId')
|
|
.where('user.deletedAt', 'is', null),
|
|
).as('user'),
|
|
])
|
|
.where('api_key.key', '=', hashedToken)
|
|
.executeTakeFirst();
|
|
}
|
|
|
|
@GenerateSql({ params: [DummyValue.UUID, DummyValue.UUID] })
|
|
getById(userId: string, id: string) {
|
|
return this.db
|
|
.selectFrom('api_key')
|
|
.select(columns.apiKey)
|
|
.where('id', '=', asUuid(id))
|
|
.where('userId', '=', userId)
|
|
.executeTakeFirst();
|
|
}
|
|
|
|
@GenerateSql({ params: [DummyValue.UUID] })
|
|
getByUserId(userId: string) {
|
|
return this.db
|
|
.selectFrom('api_key')
|
|
.select(columns.apiKey)
|
|
.where('userId', '=', userId)
|
|
.orderBy('createdAt', 'desc')
|
|
.execute();
|
|
}
|
|
}
|