1Panel/core/middleware/proxy.go

56 lines
1.3 KiB
Go
Raw Normal View History

2024-07-23 02:11:43 +00:00
package middleware
import (
2024-07-25 06:43:41 +00:00
"context"
"net"
"net/http"
"net/http/httputil"
"os"
2024-07-23 02:11:43 +00:00
"strings"
2024-07-25 10:13:57 +00:00
"github.com/1Panel-dev/1Panel/core/app/api/v1/helper"
"github.com/1Panel-dev/1Panel/core/constant"
2024-08-02 10:26:14 +00:00
"github.com/1Panel-dev/1Panel/core/utils/xpack"
2024-07-23 02:11:43 +00:00
"github.com/gin-gonic/gin"
)
func Proxy() gin.HandlerFunc {
return func(c *gin.Context) {
2024-07-25 06:43:41 +00:00
if strings.HasPrefix(c.Request.URL.Path, "/api/v2/core") {
2024-07-23 02:11:43 +00:00
c.Next()
return
}
2024-07-29 06:13:47 +00:00
currentNode := c.Request.Header.Get("CurrentNode")
2024-07-31 10:29:41 +00:00
if len(currentNode) != 0 && currentNode != "127.0.0.1" {
2024-08-02 10:26:14 +00:00
if err := xpack.Proxy(c, currentNode); err != nil {
2024-07-29 06:13:47 +00:00
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrProxy, err)
return
}
c.Abort()
2024-07-25 10:13:57 +00:00
return
}
2024-07-31 10:29:41 +00:00
sockPath := "/tmp/agent.sock"
if _, err := os.Stat(sockPath); err != nil {
2024-07-29 06:13:47 +00:00
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrProxy, err)
return
2024-07-25 10:13:57 +00:00
}
2024-07-31 10:29:41 +00:00
dialUnix := func() (conn net.Conn, err error) {
return net.Dial("unix", sockPath)
}
transport := &http.Transport{
DialContext: func(ctx context.Context, network, addr string) (net.Conn, error) {
return dialUnix()
},
}
proxy := &httputil.ReverseProxy{
Director: func(req *http.Request) {
req.URL.Scheme = "http"
req.URL.Host = "unix"
},
Transport: transport,
}
2024-07-25 10:13:57 +00:00
proxy.ServeHTTP(c.Writer, c.Request)
c.Abort()
2024-07-23 02:11:43 +00:00
}
}