mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
62 lines
No EOL
1.8 KiB
TypeScript
62 lines
No EOL
1.8 KiB
TypeScript
import { and, eq, type InferInsertModel } from "drizzle-orm";
|
|
import { credentialsTable, CredentialsType } from "../infrastructure/database/tables/credentials.table";
|
|
import { takeFirstOrThrow } from "../infrastructure/database/utils";
|
|
import {inject, injectable} from "tsyringe";
|
|
import {DatabaseProvider} from "$lib/server/api/providers";
|
|
|
|
export type CreateCredentials = InferInsertModel<typeof credentialsTable>;
|
|
export type UpdateCredentials = Partial<CreateCredentials>;
|
|
|
|
@injectable()
|
|
export class CredentialsRepository {
|
|
constructor(@inject(DatabaseProvider) private readonly db: DatabaseProvider) { }
|
|
|
|
async findOneByUserId(userId: string) {
|
|
return this.db.query.credentialsTable.findFirst({
|
|
where: eq(credentialsTable.user_id, userId)
|
|
});
|
|
}
|
|
|
|
async findPasswordCredentialsByUserId(userId: string) {
|
|
return this.db.query.credentialsTable.findFirst({
|
|
where: and(
|
|
eq(credentialsTable.user_id, userId),
|
|
eq(credentialsTable.type, CredentialsType.PASSWORD)
|
|
)
|
|
});
|
|
}
|
|
|
|
async findTOTPCredentialsByUserId(userId: string) {
|
|
return this.db.query.credentialsTable.findFirst({
|
|
where: and(
|
|
eq(credentialsTable.user_id, userId),
|
|
eq(credentialsTable.type, CredentialsType.TOTP)
|
|
)
|
|
});
|
|
}
|
|
|
|
async findOneById(id: string) {
|
|
return this.db.query.credentialsTable.findFirst({
|
|
where: eq(credentialsTable.id, id)
|
|
});
|
|
}
|
|
|
|
async findOneByIdOrThrow(id: string) {
|
|
const credentials = await this.findOneById(id);
|
|
if (!credentials) throw Error('Credentials not found');
|
|
return credentials;
|
|
}
|
|
|
|
async create(data: CreateCredentials) {
|
|
return this.db.insert(credentialsTable).values(data).returning().then(takeFirstOrThrow);
|
|
}
|
|
|
|
async update(id: string, data: UpdateCredentials) {
|
|
return this.db
|
|
.update(credentialsTable)
|
|
.set(data)
|
|
.where(eq(credentialsTable.id, id))
|
|
.returning()
|
|
.then(takeFirstOrThrow);
|
|
}
|
|
} |