oa_based/src/modules/system/log/services/captcha-log.service.ts

51 lines
1.2 KiB
TypeScript
Raw Normal View History

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