add handler
This commit is contained in:
parent
1ec5e5455a
commit
b6e7396ef5
|
@ -0,0 +1,56 @@
|
||||||
|
package handler
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"io/fs"
|
||||||
|
"net/http"
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
|
)
|
||||||
|
|
||||||
|
type FileHandler struct {
|
||||||
|
Root string
|
||||||
|
Default string
|
||||||
|
http.FileSystem
|
||||||
|
}
|
||||||
|
|
||||||
|
func (f FileHandler) Open(name string) (http.File, error) {
|
||||||
|
if strings.HasPrefix(name, "../") {
|
||||||
|
return nil, errors.New("not permitted")
|
||||||
|
}
|
||||||
|
|
||||||
|
rPath := filepath.Join(f.Root, strings.TrimPrefix(name, "/"))
|
||||||
|
if rPath == f.Root {
|
||||||
|
if f.Default == "" {
|
||||||
|
return nil, errors.New("not permit list dir")
|
||||||
|
}
|
||||||
|
rPath = filepath.Join(rPath, f.Default)
|
||||||
|
}
|
||||||
|
|
||||||
|
fInfo, _, err := FileExists(rPath)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if fInfo.IsDir() {
|
||||||
|
return nil, errors.New("not permit list dir")
|
||||||
|
}
|
||||||
|
|
||||||
|
if fInfo.Mode() == fs.ModeSymlink {
|
||||||
|
return nil, errors.New("not permit follow symbol link")
|
||||||
|
}
|
||||||
|
return os.Open(rPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
func FileExists(name string) (os.FileInfo, bool, error) {
|
||||||
|
info, err := os.Stat(name)
|
||||||
|
if err != nil {
|
||||||
|
return nil, os.IsExist(err), err
|
||||||
|
}
|
||||||
|
return info, true, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewFileHandler(f FileHandler) http.Handler {
|
||||||
|
return http.FileServer(f)
|
||||||
|
}
|
|
@ -0,0 +1,86 @@
|
||||||
|
package handler
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
"net/http/httputil"
|
||||||
|
"net/url"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"git.pyer.club/kingecg/gohttpd/model"
|
||||||
|
)
|
||||||
|
|
||||||
|
type ProxyHandler struct {
|
||||||
|
proxy []*httputil.ReverseProxy
|
||||||
|
count int
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *ProxyHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||||
|
s, err := r.Cookie("s")
|
||||||
|
var proxyIndex int
|
||||||
|
if err != nil {
|
||||||
|
proxyIndex = p.count
|
||||||
|
p.count++
|
||||||
|
if p.count >= len(p.proxy) {
|
||||||
|
p.count = 0
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
proxyIndex, _ = strconv.Atoi(s.Value)
|
||||||
|
}
|
||||||
|
p.proxy[proxyIndex].ServeHTTP(w, r)
|
||||||
|
}
|
||||||
|
|
||||||
|
// init httputil.ReverseProxy instance and add path rewrite and add session-sticky cookie to response
|
||||||
|
func makeProxy(upstream string, pw model.PathRewrite, index int) *httputil.ReverseProxy {
|
||||||
|
p := &httputil.ReverseProxy{}
|
||||||
|
p.Director = func(req *http.Request) {
|
||||||
|
turl, _ := url.Parse(upstream)
|
||||||
|
req.URL.Host = turl.Host
|
||||||
|
req.URL.Scheme = turl.Scheme
|
||||||
|
if pw.Replace != "" {
|
||||||
|
req.URL.Path = strings.TrimPrefix(req.URL.Path, pw.Replace)
|
||||||
|
if req.URL.RawPath != "" {
|
||||||
|
req.URL.RawPath = strings.TrimPrefix(req.URL.RawPath, pw.Replace)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if pw.With != "" {
|
||||||
|
req.URL.Path = strings.TrimSuffix(pw.With, "/") + "/" + req.URL.Path
|
||||||
|
if req.URL.RawPath != "" {
|
||||||
|
req.URL.RawPath = strings.TrimSuffix(pw.With, "/") + "/" + req.URL.RawPath
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
p.ModifyResponse = func(resp *http.Response) error {
|
||||||
|
hasSticky := false
|
||||||
|
for _, cookie := range resp.Cookies() {
|
||||||
|
if cookie.Name == "s" {
|
||||||
|
hasSticky = true
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if !hasSticky {
|
||||||
|
c := http.Cookie{
|
||||||
|
Name: "s",
|
||||||
|
Value: strconv.Itoa(index),
|
||||||
|
}
|
||||||
|
resp.Header.Add("Set-Cookie", c.String())
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewProxyHandler(p *model.HttpPath) *ProxyHandler {
|
||||||
|
upstreamCount := len(p.Upstreams)
|
||||||
|
if upstreamCount == 0 {
|
||||||
|
panic("no upstream defined")
|
||||||
|
}
|
||||||
|
ph := &ProxyHandler{}
|
||||||
|
ph.proxy = make([]*httputil.ReverseProxy, upstreamCount)
|
||||||
|
|
||||||
|
for index, upstream := range p.Upstreams {
|
||||||
|
ph.proxy[index] = makeProxy(upstream, p.Rewrite, index)
|
||||||
|
}
|
||||||
|
return ph
|
||||||
|
}
|
|
@ -3,10 +3,16 @@ package model
|
||||||
import "git.pyer.club/kingecg/gologger"
|
import "git.pyer.club/kingecg/gologger"
|
||||||
|
|
||||||
type HttpPath struct {
|
type HttpPath struct {
|
||||||
Path string `json:"path"`
|
Path string `json:"path"`
|
||||||
Root string `json:"root"`
|
Root string `json:"root"`
|
||||||
Proxyto string `json:"proxyto"`
|
Default string `json:"default"`
|
||||||
ProxyHeaders string `json:"proxyheaders"`
|
Upstreams []string `json:"upstreams"`
|
||||||
|
Rewrite PathRewrite `json:"pathrewrite"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type PathRewrite struct {
|
||||||
|
Replace string `json:"replace"`
|
||||||
|
With string `json:"with"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type HttpServerConfig struct {
|
type HttpServerConfig struct {
|
||||||
|
|
Loading…
Reference in New Issue