NestJs 在自定义验证器(类验证器)中获取请求实例或执行上下文



是否可以在nestJs中注入执行上下文或访问当前请求(class-validator => custom validator(?

import { ValidatorConstraint, ValidatorConstraintInterface, ValidationArguments } from 'class-validator';
import { Injectable } from '@nestjs/common';
import { Connection } from 'typeorm';
import { InjectConnection } from '@nestjs/typeorm';
@ValidatorConstraint({ name: 'modelExistsConstraint', async: true })
@Injectable()
export class ModelExistsConstraint implements ValidatorConstraintInterface {
constructor(
@InjectConnection('default') private readonly connection: Connection,
) {
}
async validate(value: string, validationArguments: ValidationArguments) {
// here need request or execution context;
// const test = this.context.switchToHttp().getRequest();
const model = await this.connection
.getRepository(validationArguments.constraints[0])
.findOne({ where: { [validationArguments.property]: value } });
return !model;
}
defaultMessage(args: ValidationArguments) {
return `Model with "${args.property}" - "${args.value}" already exists`;
}
}

我认为您应该使用类似nestjs-cls库中ClsModule的东西,这将允许您从请求中获取变量。因为如果您将 DTO 与 ValidationPipe 一起使用,它将无法访问执行上下文。

此外,这将允许您使用单一实例服务,而不是REQUEST作用域服务。

最新更新