123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- package dynamicproxy
- import (
- "errors"
- "log"
- "net"
- "net/http"
- "net/url"
- "strings"
- "imuslab.com/arozos/ReverseProxy/mod/websocketproxy"
- )
- func (router *Router) getTargetProxyEndpointFromRequestURI(requestURI string) *ProxyEndpoint {
- var targetProxyEndpoint *ProxyEndpoint = nil
- router.ProxyEndpoints.Range(func(key, value interface{}) bool {
- rootname := key.(string)
- if strings.HasPrefix(requestURI, rootname) {
- thisProxyEndpoint := value.(*ProxyEndpoint)
- targetProxyEndpoint = thisProxyEndpoint
- }
- /*
- if len(requestURI) >= len(rootname) && requestURI[:len(rootname)] == rootname {
- thisProxyEndpoint := value.(*ProxyEndpoint)
- targetProxyEndpoint = thisProxyEndpoint
- }
- */
- return true
- })
- return targetProxyEndpoint
- }
- func (router *Router) getSubdomainProxyEndpointFromHostname(hostname string) *SubdomainEndpoint {
- var targetSubdomainEndpoint *SubdomainEndpoint = nil
- ep, ok := router.SubdomainEndpoint.Load(hostname)
- if ok {
- targetSubdomainEndpoint = ep.(*SubdomainEndpoint)
- }
- return targetSubdomainEndpoint
- }
- func (router *Router) rewriteURL(rooturl string, requestURL string) string {
- if len(requestURL) > len(rooturl) {
- return requestURL[len(rooturl):]
- }
- return ""
- }
- func (h *ProxyHandler) subdomainRequest(w http.ResponseWriter, r *http.Request, target *SubdomainEndpoint) {
- r.Header.Set("X-Forwarded-Host", r.Host)
- requestURL := r.URL.String()
- if r.Header["Upgrade"] != nil && strings.ToLower(r.Header["Upgrade"][0]) == "websocket" {
- //Handle WebSocket request. Forward the custom Upgrade header and rewrite origin
- r.Header.Set("A-Upgrade", "websocket")
- wsRedirectionEndpoint := target.Domain
- if wsRedirectionEndpoint[len(wsRedirectionEndpoint)-1:] != "/" {
- //Append / to the end of the redirection endpoint if not exists
- wsRedirectionEndpoint = wsRedirectionEndpoint + "/"
- }
- if len(requestURL) > 0 && requestURL[:1] == "/" {
- //Remove starting / from request URL if exists
- requestURL = requestURL[1:]
- }
- u, _ := url.Parse("ws://" + wsRedirectionEndpoint + requestURL)
- if target.RequireTLS {
- u, _ = url.Parse("wss://" + wsRedirectionEndpoint + requestURL)
- }
- wspHandler := websocketproxy.NewProxy(u)
- wspHandler.ServeHTTP(w, r)
- return
- }
- r.Host = r.URL.Host
- err := target.Proxy.ServeHTTP(w, r)
- var dnsError *net.DNSError
- if err != nil {
- if errors.As(err, &dnsError) {
- http.ServeFile(w, r, "./web/hosterror.html")
- log.Println(err.Error())
- } else {
- http.ServeFile(w, r, "./web/rperror.html")
- log.Println(err.Error())
- }
- }
- }
- func (h *ProxyHandler) proxyRequest(w http.ResponseWriter, r *http.Request, target *ProxyEndpoint) {
- rewriteURL := h.Parent.rewriteURL(target.Root, r.RequestURI)
- r.URL, _ = url.Parse(rewriteURL)
- r.Header.Set("X-Forwarded-Host", r.Host)
- if r.Header["Upgrade"] != nil && strings.ToLower(r.Header["Upgrade"][0]) == "websocket" {
- //Handle WebSocket request. Forward the custom Upgrade header and rewrite origin
- r.Header.Set("A-Upgrade", "websocket")
- wsRedirectionEndpoint := target.Domain
- if wsRedirectionEndpoint[len(wsRedirectionEndpoint)-1:] != "/" {
- wsRedirectionEndpoint = wsRedirectionEndpoint + "/"
- }
- u, _ := url.Parse("ws://" + wsRedirectionEndpoint + r.URL.String())
- if target.RequireTLS {
- u, _ = url.Parse("wss://" + wsRedirectionEndpoint + r.URL.String())
- }
- wspHandler := websocketproxy.NewProxy(u)
- wspHandler.ServeHTTP(w, r)
- return
- }
- r.Host = r.URL.Host
- err := target.Proxy.ServeHTTP(w, r)
- var dnsError *net.DNSError
- if err != nil {
- if errors.As(err, &dnsError) {
- http.ServeFile(w, r, "./web/hosterror.html")
- log.Println(err.Error())
- } else {
- http.ServeFile(w, r, "./web/rperror.html")
- log.Println(err.Error())
- }
- }
- }
|