使用http-proxy-middleware(它使用http-proxy)我能够为内部(从外部隐藏)url创建代理并获得预期的响应。
但是,由于这是中间件方法,我无法将任何现有的 Guard(例如,JWT、Role 等)应用于此代理。
NetJS Guards 文档提到 Guards在每个中间件之后运行。
如果不将所有 Guards 重新实现为中间件,有什么方法可以使用现有的 Guards 保护此代理路由?
提前致谢。
使用http-proxy-middleware(它使用http-proxy)我能够为内部(从外部隐藏)url创建代理并获得预期的响应。
但是,由于这是中间件方法,我无法将任何现有的 Guard(例如,JWT、Role 等)应用于此代理。
NetJS Guards 文档提到 Guards在每个中间件之后运行。
如果不将所有 Guards 重新实现为中间件,有什么方法可以使用现有的 Guards 保护此代理路由?
提前致谢。
正如你所说,这是一个中间件,不可能使用 Nest 守卫。保护代理路由的唯一方法是在安装代理中间件之前为代理路由添加一个中间件。如果您在其中设置代理中间件,main.ts
它看起来像这样
async function bootstrap() {
const app = await NestFactory.create(AppModule);
app.use('proxy-route', (req, res, next) => {
if (passCondition) {
return next();
}
return next(new UnauthorizedException());
}
app.use(proxyMiddleware);
await app.listen(port);
}