NestJS 的自定义路由装饰器

Posted

技术标签:

【中文标题】NestJS 的自定义路由装饰器【英文标题】:Custom Route Decorators for NestJS 【发布时间】:2020-11-21 07:47:37 【问题描述】:

我已经为我的路线创建了一些custom parameter decorators,但我没有找到任何有用的文档来说明如何为路线本身创建装饰器。有一些描述如何将现有的方法装饰器捆绑在一起,这对我没有帮助。

我想要实现的是一些简单的范围验证。范围已在请求上下文中设置。我目前拥有的,仅基于TypeScript decorators,但实际上无处可去:

controller.ts

@RequiredScope(AuthScope.OWNER)
@Get('/some-route')
async get() 
    ...

required-scopes.ts

export function RequiredScope(...scopes: string[]) 
    return (target: any, propertyKey: string, descriptor: PropertyDescriptor) => 
        console.log(`Validation of scopes '$scopes.join(',')' for input '$RequestContext.getScopes().join(',')'`)
        if (!scopes.map(s => RequestContext.hasOneOfTheScopes(s)).find(valid => !valid)) 
            throw new HttpException(`Missing at least one scope of '$scopes.join(',')'`, HttpStatus.FORBIDDEN)
        
    

这里的问题是我的请求上下文甚至不可用,因为我设置上下文的中间件还没有启动。请求立即失败。

有人能指出我正确的方向吗?

【问题讨论】:

你有没有试过用守卫代替装饰器? docs.nestjs.com/guards 非常感谢您的建议。结果非常好。此外,它更适合这个用例。 【参考方案1】:

正如Khaled Mohamed(谢谢!)所提议的那样,用警卫解决这个问题非常简单,而且是一种更好的方法。


scopes.decorator.ts 中创建具有所需范围作为参数的装饰器:

export const Scopes = (...scopes: string[]) => SetMetadata('scopes', scopes)

设置检查提供的元scopes 并检查是否满足 scopes.guard.ts 中的要求:

@Injectable()
export class ScopesGuard implements CanActivate 

    constructor(private reflector: Reflector) 

    canActivate(
        context: ExecutionContext,
    ): boolean | Promise<boolean> | Observable<boolean> 
        const scopes = this.reflector.get<string[]>('scopes', context.getHandler())
        if (!scopes || scopes.length === 0) return true
        if (!scopes.map(s => RequestContext.hasOneOfTheScopes(s)).find(valid => !valid)) 
            throw new HttpException(`Missing at least one scope of '$scopes.join(',')'`, HttpStatus.FORBIDDEN)
        
        return true
    

  

app.module.ts 中全局激活守卫:

@Module(
    imports: [...],
    controllers: [...],
    providers: [
        
            provide: APP_GUARD,
            useClass: ScopesGuard,
        
    ],
)

controller.ts 中使用路由装饰器:

@Scopes(AuthScope.OWNER)
@Get('/some-route')
async get() 
    ...

【讨论】:

以上是关于NestJS 的自定义路由装饰器的主要内容,如果未能解决你的问题,请参考以下文章

mongoose @prop() 装饰器类型:模式定义中的对象_NestJS

如何在不是nestjs路由的方法上设置装饰器

NestJs 创建用于记录的自定义服务 - 不打印输出

如何让 qt 设计器自定义 QOpenGLWidget 小部件背景透明?

配置 WSO2 API 管理器自定义身份验证器和声明

NestJS 测试:装饰器不是函数