bracket-backend/src/common/modules/helper/prisma.service.ts
unurled 418a9e2c7a
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 1m8s
fix eslint errors
2025-02-07 20:24:16 +01:00

36 lines
1.2 KiB
TypeScript

/* eslint-disable @typescript-eslint/no-unsafe-assignment */
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
import { Injectable, Logger, OnModuleInit } from '@nestjs/common';
import { PrismaClient } from '@prisma/client';
@Injectable()
export class PrismaService extends PrismaClient implements OnModuleInit {
static readonly logger = new Logger(PrismaService.name);
constructor() {
super();
return this.$extends({
query: {
async $allOperations({ operation, model, args, query }): Promise<any> {
const startTime: number = Date.now();
const result: any = await query(args);
const duration: number = Date.now() - startTime;
const requestCount: number = args.length || 1;
const resultCount: number = !result ? 0 : result.length || 1;
PrismaService.logger.log(
`${model.toUpperCase()} ${operation.toLowerCase()} ${duration}ms ${requestCount} ${resultCount}`,
);
return result;
},
},
}) as PrismaService;
}
async onModuleInit() {
await this.$connect();
}
async onModuleDestroy() {
await this.$disconnect();
}
}