gpt4 book ai didi

go - mux.Vars 在使用 httputil.ReverseProxy 时为空

转载 作者:IT王子 更新时间:2023-10-29 00:59:21 31 4
gpt4 key购买 nike

我正在尝试同时使用 gorilla mux 和 httputil.ReverseProxy,但是在尝试获取 mux.Vars 时它是空的。根据https://golang.org/src/net/http/httputil/reverseproxy.go?s=2744:2819#L93看起来 http.Request 指针是原始请求的浅拷贝,它应该仍然有效。

有什么想法吗?

https://play.golang.org/p/JpjNvEMIFB

package main

import (
"github.com/gorilla/mux"
"log"
"net/http"
"net/http/httputil"
"net/url"
)

type route struct {
match string
base string
}

var routes = []route{
// proxy http://localhost:3000/api/foo/bar => https://api.bar.com/5/foo/bar
route{match: "/api/{path}", base: "https://api.bar.com/5"},
route{match: "/sales/{path}", base: "https://sales.bar.com/3"},
}

func NewProxy(r *route) http.Handler {
director := func(req *http.Request) {
out, _ := url.Parse(r.base)

req.URL.Scheme = out.Scheme
req.URL.Host = out.Host
req.URL.Path = out.Path + "/" + mux.Vars(req)["path"] // mux Vars are empty here
}
return &httputil.ReverseProxy{Director: director}
}

func main() {
for _, route := range routes {
http.Handle(route.match, NewProxy(&route))
}

log.Println("Listening on port 8080")
http.ListenAndServe(":8080", nil)
}

最佳答案

这里有两个不同的问题。

第一个,您没有使用mux.Router,因此gorilla/mux 没有机会预处理您的请求。换句话说,请求直接从 http 包发送到您的反向代理。这个问题有一个简单的解决方法:

r := mux.NewRouter()
for _, route := range routes {
r.Handle(route.match, NewProxy(&route))
}
http.Handle("/", r)

第二个问题比第一个更棘手。此问题与 mux 包的实现方式有关。如果您查看 mux.Vars() 实现,您会发现它使用了一个叫做 Context 的东西。一个 Context,如 official documentation 中所述, 是存储在请求生命周期内共享的值的东西。一个简化的上下文实现将是:

type Context map[*http.Request]interface{}

func (c Context) Set(req *http.Request, v interface{}) {
c[req] = v
}

func (c Context) Get(req *http.Request) interface{} {
return c[req]
}

如您所见,给定一个 http.Request,我们可以将值存储在上下文中。稍后我们可以使用相同的 Context 和相同的 http.Request 检索这些值。 mux 使用一个全局的 Context 来存储在路由过程中解析的变量,以便您可以使用标准的 http.request。但是,因为 httputil.ReverseProxy 传递实际请求的副本并且 Context 按请求链接值,所以这个新的 Request上下文

要修复它,您可以基于 httputil.ReverseProxy 实现您自己的 ReverseProxy:

type MyReverseProxy struct {
httputil.ReverseProxy
Director func(inr, outr *http.Request)
}

func (p *MyReverseProxy) ServeHTTP(rw http.ResponseWriter, inr *http.Request) {
p.ReverseProxy.Director = func(outr *http.Request) {
p.Director(inr, outr)
}
p.ReverseProxy.ServeHTTP(rw, inr)
}

func NewProxy(r *route) http.Handler {
director := func(inr, outr *http.Request) {
out, _ := url.Parse(r.base)

outr.URL.Scheme = out.Scheme
outr.URL.Host = out.Host
outr.URL.Path = out.Path + "/" + mux.Vars(inr)["path"]

log.Printf("IN VARS: %#v\n", mux.Vars(inr)) // Now inr has proper vars
log.Printf("OUT VARS: %#v\n", mux.Vars(outr))
}
return &MyReverseProxy{Director: director}

您甚至可以使用 context 并保留 Director 声明:

type MyReverseProxy struct {
httputil.ReverseProxy
Director func(req *http.Request)
}

func (p *MyReverseProxy) ServeHTTP(rw http.ResponseWriter, inr *http.Request) {
p.ReverseProxy.Director = func(outr *http.Request) {
context.Set(outr, "in_req", inr)
p.Director(outr)
}
p.ReverseProxy.ServeHTTP(rw, inr)
}

func NewProxy(r *route) http.Handler {
director := func(outr *http.Request) {
out, _ := url.Parse(r.base)

inr := context.Get(outr, "in_req").(*http.Request)
outr.URL.Scheme = out.Scheme
outr.URL.Host = out.Host
outr.URL.Path = out.Path + "/" + mux.Vars(inr)["path"]

log.Printf("IN VARS: %#v\n", mux.Vars(inr)) // Now inr has proper vars
log.Printf("OUT VARS: %#v\n", mux.Vars(outr))
}
return &MyReverseProxy{Director: director}
}

这两种实现对我来说似乎都很棘手。他们必须在每次调用中更改 httputil.ReverseProxyDirector。所以,我可能接受 mux 在这里不是一个好的选择,而是我将使用一些更简单的解决方案:

var routes = []route{
route{match: "/api/", base: "https://api.bar.com/5"},
route{match: "/sales/", base: "https://sales.bar.com/3"},
}

func NewProxy(r *route) http.Handler {
director := func(req *http.Request) {
out, _ := url.Parse(r.base)

req.URL.Scheme = out.Scheme
req.URL.Host = out.Host
req.URL.Path = out.Path + "/" + strings.TrimPrefix(req.URL.Path, r.match)
}
return &httputil.ReverseProxy{Director: director}
}

您可以阅读 mux source code实现基于正则表达式的复杂解决方案。

关于go - mux.Vars 在使用 httputil.ReverseProxy 时为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30565518/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com