import { Injectable } from '@nestjs/common'; import { InjectRepository } from '@nestjs/typeorm'; import { LessThan, Repository } from 'typeorm'; import { paginate } from '~/helper/paginate'; import { CaptchaLogQueryDto } from '../dto/log.dto'; import { CaptchaLogEntity } from '../entities/captcha-log.entity'; @Injectable() export class CaptchaLogService { constructor( @InjectRepository(CaptchaLogEntity) private captchaLogRepository: Repository ) {} async create( account: string, code: string, provider: 'sms' | 'email', uid?: number ): Promise { await this.captchaLogRepository.save({ account, code, provider, userId: uid }); } async paginate({ page, pageSize }: CaptchaLogQueryDto) { const queryBuilder = await this.captchaLogRepository .createQueryBuilder('captcha_log') .orderBy('captcha_log.id', 'DESC'); return paginate(queryBuilder, { page, pageSize }); } async clearLog(): Promise { await this.captchaLogRepository.clear(); } async clearLogBeforeTime(time: Date): Promise { await this.captchaLogRepository.delete({ createdAt: LessThan(time) }); } }