dta38159 2018-07-16 06:52
浏览 405
已采纳

如何使用proxy.ModifyResponse?

I've implemented the most basic Reverse Proxy to pull a page and then add some content to the body. Unfortunately my attempt to add to the html isn't taking effect. The code below just shows the original page but without the "monkeys" I prepended to the response. What additional calls are needed to get this to work? I eventually want to use this to replace css for custom css.

package main

import (
    "log"
    "net/http"
    "net/http/httputil"
    "net/url"
    "fmt"
    "github.com/PuerkitoBio/goquery"
    "bytes"
)

type Director func(*http.Request)

func (f Director) Then(g Director) Director {
    return func(req *http.Request) {
        f(req)
        g(req)
    }
}

func hostDirector(host string) Director {
    return func(req *http.Request) {
        req.Host = host
    }
}

func UpdateResponse(r *http.Response) error {
    doc, err := goquery.NewDocumentFromReader(r.Body)
    if err != nil{
        //log.New("Research")
        log.Fatal("Bad doc %v", err)
        return err
    }
    html, err := goquery.OuterHtml(doc.First())
    if err != nil{
        log.Fatal("Bad html %v", err)
        return err
    }
    fmt.Printf("Body %v", html)
    r.Write(bytes.NewBufferString("monkeys"+html))

    return nil
}

func main() {
    url, _ := url.Parse("http://cnn.com/")
    proxy := httputil.NewSingleHostReverseProxy(url)

    d := proxy.Director
    // sequence the default director with our host director
    proxy.Director = Director(d).Then(hostDirector(url.Hostname()))
    proxy.ModifyResponse = UpdateResponse
    http.Handle("/", proxy)
    log.Fatal(http.ListenAndServe(":9090", nil))
}
  • 写回答

1条回答 默认 最新

  • dongwu9972 2018-07-16 18:04
    关注

    Your ModifyResponse code is not modifying the response. In your code, you have:

    r.Write(bytes.NewBufferString("monkeys"+html))
    

    It seems that you are writing to the response, but nope. r is of *http.Response which has a Write method:

    func (r *Response) Write(w io.Writer) error
    

    The document says:

    Write writes r to w in the HTTP/1.x server response format, including the status line, headers, body, and optional trailer.

    Since bytes.Buffer also implements a io.Writer, the code compiles, but instead of write to the response from the buffer, it write the response to the buffer, which is absolutely undesired.

    The fact is, http.Response simply don't provide a way to modify its Body. It is clear that Bodey is an io.ReadCloser. What you can do is create a new io.ReadCloser with the body. Remember to change Content-Length field in the Header or it may cause problem.

    func UpdateResponse(r *http.Response) error {
        b, _ := ioutil.ReadAll(r.Body)
        buf := bytes.NewBufferString("Monkey")
        buf.Write(b)
        r.Body = ioutil.NopCloser(buf)
        r.Header["Content-Length"] = []string{fmt.Sprint(buf.Len())}
        return nil
    }
    

    Playground: https://play.golang.org/p/_Tyvo6GVN3x

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100