修改node-http-proxy的Gzipped HTML响应

时间:2013-12-31 15:26:51

标签: php html node.js proxy

问题:

使用node-http-proxy代理对流浪盒的请求时,修改Gzipped HTML响应会产生白屏。

到目前为止我所拥有的:

拦截请求的方法&修改html(见下文)适用于所有未经过Gzip压缩的请求。 (我已经使用node,ruby,PHP和apache服务器测试过。)

令人困惑的部分:

我有一个启动代理和测试套件的测试套件提出要求。如果我在console.log中响应,我可以清楚地看到HTML已被修改 - 只是它根本不会在浏览器中显示...

代理设置

var server = httpProxy.createServer(function (req, res, proxy) {

    var next = function () {
        proxy.proxyRequest(req, res, {
            host: "172.22.22.22",
            port: 80,
            changeOrigin: true
        });
    };

    var write = res.write;

    res.write = function (string, encoding) {

        var body = string instanceof Buffer ? string.toString() : string;

        body = body.replace(/<\/body>/, function (w) {
            return "<script>console.log('injected')</script>\n" + w;
        });

        if (string instanceof Buffer) {
            string = new Buffer(body);
        } else {
            string = body;
        }

        write.call(res, string, encoding);
    };

    next();

}).listen(3002);

// Remove content-length, defaults to 'chunked'
server.proxy.on("proxyResponse", function (req, res, response) {
    if (response.headers.hasOwnProperty("content-length")) {
        delete response.headers["content-length"];
    }
});

我的测试用例显示正确修改的HTML

it("can modify the html response", function (done) {
    var data;
    http.get(proxyHost, function (res) {
        var chunks = [];
        res.on("data", function (chunk) {
            chunks.push(chunk.toString());
        });
        res.on("end", function () {
            data = chunks.join("");
            console.log(data); // snippet can be seen in this response
            done();
        });
    });
});

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

我已经解决了这个问题。

无法上传来源,但我可以给你一些提示。

  1. 使用server.proxy.on(“proxyResponse”检查内容编码
  2. 除了在res.write上收集块之外什么也不做。
  3. on res.end,zlib.unzip收集了块,如果内容编码是“gzip”,那么oldWrite.call(res,decoding_string),oldEnd.apply(res,arguments)
  4. 如果你想在#3
  5. 期间改变某些事情

    希望这可以帮到你。