mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 05:31:18 +08:00
138 lines
3.2 KiB
Go
138 lines
3.2 KiB
Go
package route
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
"strconv"
|
|
"time"
|
|
|
|
A "github.com/Dreamacro/clash/adapters/outbound"
|
|
C "github.com/Dreamacro/clash/constant"
|
|
T "github.com/Dreamacro/clash/tunnel"
|
|
|
|
"github.com/go-chi/chi"
|
|
"github.com/go-chi/render"
|
|
)
|
|
|
|
func proxyRouter() http.Handler {
|
|
r := chi.NewRouter()
|
|
r.Get("/", getProxies)
|
|
|
|
r.Route("/{name}", func(r chi.Router) {
|
|
r.Use(parseProxyName, findProxyByName)
|
|
r.Get("/", getProxy)
|
|
r.Get("/delay", getProxyDelay)
|
|
r.Put("/", updateProxy)
|
|
})
|
|
return r
|
|
}
|
|
|
|
// When name is composed of a partial escape string, Golang does not unescape it
|
|
func parseProxyName(next http.Handler) http.Handler {
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
name := chi.URLParam(r, "name")
|
|
if newName, err := url.PathUnescape(name); err == nil {
|
|
name = newName
|
|
}
|
|
ctx := context.WithValue(r.Context(), CtxKeyProxyName, name)
|
|
next.ServeHTTP(w, r.WithContext(ctx))
|
|
})
|
|
}
|
|
|
|
func findProxyByName(next http.Handler) http.Handler {
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
name := r.Context().Value(CtxKeyProxyName).(string)
|
|
proxies := T.Instance().Proxies()
|
|
proxy, exist := proxies[name]
|
|
if !exist {
|
|
render.Status(r, http.StatusNotFound)
|
|
render.JSON(w, r, ErrNotFound)
|
|
return
|
|
}
|
|
|
|
ctx := context.WithValue(r.Context(), CtxKeyProxy, proxy)
|
|
next.ServeHTTP(w, r.WithContext(ctx))
|
|
})
|
|
}
|
|
|
|
func getProxies(w http.ResponseWriter, r *http.Request) {
|
|
proxies := T.Instance().Proxies()
|
|
render.JSON(w, r, render.M{
|
|
"proxies": proxies,
|
|
})
|
|
}
|
|
|
|
func getProxy(w http.ResponseWriter, r *http.Request) {
|
|
proxy := r.Context().Value(CtxKeyProxy).(C.Proxy)
|
|
render.JSON(w, r, proxy)
|
|
}
|
|
|
|
type UpdateProxyRequest struct {
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
func updateProxy(w http.ResponseWriter, r *http.Request) {
|
|
req := UpdateProxyRequest{}
|
|
if err := render.DecodeJSON(r.Body, &req); err != nil {
|
|
render.Status(r, http.StatusBadRequest)
|
|
render.JSON(w, r, ErrBadRequest)
|
|
return
|
|
}
|
|
|
|
proxy := r.Context().Value(CtxKeyProxy).(C.Proxy)
|
|
|
|
selector, ok := proxy.(*A.Selector)
|
|
if !ok {
|
|
render.Status(r, http.StatusBadRequest)
|
|
render.JSON(w, r, ErrBadRequest)
|
|
return
|
|
}
|
|
|
|
if err := selector.Set(req.Name); err != nil {
|
|
render.Status(r, http.StatusBadRequest)
|
|
render.JSON(w, r, newError(fmt.Sprintf("Selector update error: %s", err.Error())))
|
|
return
|
|
}
|
|
|
|
render.NoContent(w, r)
|
|
}
|
|
|
|
func getProxyDelay(w http.ResponseWriter, r *http.Request) {
|
|
query := r.URL.Query()
|
|
url := query.Get("url")
|
|
timeout, err := strconv.ParseInt(query.Get("timeout"), 10, 16)
|
|
if err != nil {
|
|
render.Status(r, http.StatusBadRequest)
|
|
render.JSON(w, r, ErrBadRequest)
|
|
return
|
|
}
|
|
|
|
proxy := r.Context().Value(CtxKeyProxy).(C.Proxy)
|
|
|
|
sigCh := make(chan int16)
|
|
go func() {
|
|
t, err := A.DelayTest(proxy, url)
|
|
if err != nil {
|
|
sigCh <- 0
|
|
}
|
|
sigCh <- t
|
|
}()
|
|
|
|
select {
|
|
case <-time.After(time.Millisecond * time.Duration(timeout)):
|
|
render.Status(r, http.StatusRequestTimeout)
|
|
render.JSON(w, r, ErrRequestTimeout)
|
|
case t := <-sigCh:
|
|
if t == 0 {
|
|
render.Status(r, http.StatusServiceUnavailable)
|
|
render.JSON(w, r, newError("An error occurred in the delay test"))
|
|
} else {
|
|
render.JSON(w, r, render.M{
|
|
"delay": t,
|
|
})
|
|
}
|
|
}
|
|
}
|