当'selfHandleResponse'为true时,如何传递代理响应?

时间:2019-04-10 12:36:51

标签: node.js express request node-http-proxy http-proxy-middleware

我正在运行开发代理服务器,在启动时,我会使用集群体系结构请求auth令牌。

但是,此令牌会在一段时间后过期。然后,而不是开发人员重新启动其代理服务器,我想提出另一个请求以获取另一个有效的auth令牌。为了能够自己处理响应,我将node-http-proxy选项selfHandleResponse设置为true。

app.use(
  '/',
  index({
    target: config.hostname,
    changeOrigin: true,
    onProxyReq,
    onProxyRes,
    selfHandleResponse: true
  })
);

现在,我只想使用401处理响应,因为这是唯一需要我请求另一个令牌的情况。

const onProxyRes = (proxyRes, req, res) => {
  if (proxyRes.statusCode === 401) {
    getToken()
      .then(forwardRequest(req))
      .then((response) => {
        res.send(response.body);
      })
      .catch(() => {        
        res.sendStatus(500);
      });
  }

  // How to pass back the original proxyRes including body, headers etc.?
});

编辑:forwardRequest是我的功能,可以重试原始请求,然后在成功时将其交还给客户端。

我的麻烦从这里开始,因为我不知道如何将代理的非401请求传递回客户端。我发现自己开始实现依赖于标头内容类型的正文解析逻辑,但我非常希望有一种更简单的方法。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

解决方案很简单...

proxyRes.pipe(res);

node-http-proxy的源代码中找到。