mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2025-04-02 22:25:30 +02:00
Replace standard serve mux with gorilla mux
This commit is contained in:
parent
16a9893a19
commit
d2d62bb452
2
go.mod
2
go.mod
@ -16,7 +16,7 @@ require (
|
|||||||
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32
|
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32
|
||||||
github.com/go-redis/redis/v8 v8.2.3
|
github.com/go-redis/redis/v8 v8.2.3
|
||||||
github.com/google/uuid v1.2.0
|
github.com/google/uuid v1.2.0
|
||||||
github.com/gorilla/mux v1.8.0 // indirect
|
github.com/gorilla/mux v1.8.0
|
||||||
github.com/justinas/alice v1.2.0
|
github.com/justinas/alice v1.2.0
|
||||||
github.com/mbland/hmacauth v0.0.0-20170912233209-44256dfd4bfa
|
github.com/mbland/hmacauth v0.0.0-20170912233209-44256dfd4bfa
|
||||||
github.com/mitchellh/mapstructure v1.1.2
|
github.com/mitchellh/mapstructure v1.1.2
|
||||||
|
@ -4,7 +4,9 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"github.com/gorilla/mux"
|
||||||
"github.com/oauth2-proxy/oauth2-proxy/v7/pkg/apis/options"
|
"github.com/oauth2-proxy/oauth2-proxy/v7/pkg/apis/options"
|
||||||
"github.com/oauth2-proxy/oauth2-proxy/v7/pkg/app/pagewriter"
|
"github.com/oauth2-proxy/oauth2-proxy/v7/pkg/app/pagewriter"
|
||||||
"github.com/oauth2-proxy/oauth2-proxy/v7/pkg/logger"
|
"github.com/oauth2-proxy/oauth2-proxy/v7/pkg/logger"
|
||||||
@ -18,7 +20,7 @@ type ProxyErrorHandler func(http.ResponseWriter, *http.Request, error)
|
|||||||
// multiple upstreams.
|
// multiple upstreams.
|
||||||
func NewProxy(upstreams options.Upstreams, sigData *options.SignatureData, writer pagewriter.Writer) (http.Handler, error) {
|
func NewProxy(upstreams options.Upstreams, sigData *options.SignatureData, writer pagewriter.Writer) (http.Handler, error) {
|
||||||
m := &multiUpstreamProxy{
|
m := &multiUpstreamProxy{
|
||||||
serveMux: http.NewServeMux(),
|
serveMux: mux.NewRouter(),
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, upstream := range upstreams {
|
for _, upstream := range upstreams {
|
||||||
@ -46,7 +48,7 @@ func NewProxy(upstreams options.Upstreams, sigData *options.SignatureData, write
|
|||||||
// multiUpstreamProxy will serve requests directed to multiple upstream servers
|
// multiUpstreamProxy will serve requests directed to multiple upstream servers
|
||||||
// registered in the serverMux.
|
// registered in the serverMux.
|
||||||
type multiUpstreamProxy struct {
|
type multiUpstreamProxy struct {
|
||||||
serveMux *http.ServeMux
|
serveMux *mux.Router
|
||||||
}
|
}
|
||||||
|
|
||||||
// ServerHTTP handles HTTP requests.
|
// ServerHTTP handles HTTP requests.
|
||||||
@ -57,17 +59,27 @@ func (m *multiUpstreamProxy) ServeHTTP(rw http.ResponseWriter, req *http.Request
|
|||||||
// registerStaticResponseHandler registers a static response handler with at the given path.
|
// registerStaticResponseHandler registers a static response handler with at the given path.
|
||||||
func (m *multiUpstreamProxy) registerStaticResponseHandler(upstream options.Upstream) {
|
func (m *multiUpstreamProxy) registerStaticResponseHandler(upstream options.Upstream) {
|
||||||
logger.Printf("mapping path %q => static response %d", upstream.Path, derefStaticCode(upstream.StaticCode))
|
logger.Printf("mapping path %q => static response %d", upstream.Path, derefStaticCode(upstream.StaticCode))
|
||||||
m.serveMux.Handle(upstream.Path, newStaticResponseHandler(upstream.ID, upstream.StaticCode))
|
m.registerSimpleHandler(upstream.Path, newStaticResponseHandler(upstream.ID, upstream.StaticCode))
|
||||||
}
|
}
|
||||||
|
|
||||||
// registerFileServer registers a new fileServer based on the configuration given.
|
// registerFileServer registers a new fileServer based on the configuration given.
|
||||||
func (m *multiUpstreamProxy) registerFileServer(upstream options.Upstream, u *url.URL) {
|
func (m *multiUpstreamProxy) registerFileServer(upstream options.Upstream, u *url.URL) {
|
||||||
logger.Printf("mapping path %q => file system %q", upstream.Path, u.Path)
|
logger.Printf("mapping path %q => file system %q", upstream.Path, u.Path)
|
||||||
m.serveMux.Handle(upstream.Path, newFileServer(upstream.ID, upstream.Path, u.Path))
|
m.registerSimpleHandler(upstream.Path, newFileServer(upstream.ID, upstream.Path, u.Path))
|
||||||
}
|
}
|
||||||
|
|
||||||
// registerHTTPUpstreamProxy registers a new httpUpstreamProxy based on the configuration given.
|
// registerHTTPUpstreamProxy registers a new httpUpstreamProxy based on the configuration given.
|
||||||
func (m *multiUpstreamProxy) registerHTTPUpstreamProxy(upstream options.Upstream, u *url.URL, sigData *options.SignatureData, writer pagewriter.Writer) {
|
func (m *multiUpstreamProxy) registerHTTPUpstreamProxy(upstream options.Upstream, u *url.URL, sigData *options.SignatureData, writer pagewriter.Writer) {
|
||||||
logger.Printf("mapping path %q => upstream %q", upstream.Path, upstream.URI)
|
logger.Printf("mapping path %q => upstream %q", upstream.Path, upstream.URI)
|
||||||
m.serveMux.Handle(upstream.Path, newHTTPUpstreamProxy(upstream, u, sigData, writer.ProxyErrorHandler))
|
m.registerSimpleHandler(upstream.Path, newHTTPUpstreamProxy(upstream, u, sigData, writer.ProxyErrorHandler))
|
||||||
|
}
|
||||||
|
|
||||||
|
// registerSimpleHandler maintains the behaviour of the go standard serveMux
|
||||||
|
// by ensuring any path with a trailing `/` matches all paths under that prefix.
|
||||||
|
func (m *multiUpstreamProxy) registerSimpleHandler(path string, handler http.Handler) {
|
||||||
|
if strings.HasSuffix(path, "/") {
|
||||||
|
m.serveMux.PathPrefix(path).Handler(handler)
|
||||||
|
} else {
|
||||||
|
m.serveMux.Path(path).Handler(handler)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user