clash/hub/route/proxies.go

139 lines
3.4 KiB
Go
Raw Normal View History

2018-11-21 05:47:46 +00:00
package route
import (
"context"
"fmt"
"net/http"
"strconv"
"time"
2021-06-10 06:05:56 +00:00
"github.com/Dreamacro/clash/adapter"
"github.com/Dreamacro/clash/adapter/outboundgroup"
"github.com/Dreamacro/clash/component/profile/cachefile"
2018-11-21 05:47:46 +00:00
C "github.com/Dreamacro/clash/constant"
"github.com/Dreamacro/clash/tunnel"
2018-11-21 05:47:46 +00:00
2021-04-03 06:59:03 +00:00
"github.com/go-chi/chi/v5"
2018-11-21 05:47:46 +00:00
"github.com/go-chi/render"
)
2021-11-16 12:08:52 +00:00
var (
SwitchProxiesCallback func(sGroup string, sProxy string)
)
2018-11-21 05:47:46 +00:00
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
}
func parseProxyName(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
name := getEscapeParam(r, "name")
2018-11-21 05:47:46 +00:00
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 := tunnel.Proxies()
2018-11-21 05:47:46 +00:00
proxy, exist := proxies[name]
if !exist {
2018-12-10 03:33:37 +00:00
render.Status(r, http.StatusNotFound)
render.JSON(w, r, ErrNotFound)
2018-11-21 05:47:46 +00:00
return
}
ctx := context.WithValue(r.Context(), CtxKeyProxy, proxy)
next.ServeHTTP(w, r.WithContext(ctx))
})
}
func getProxies(w http.ResponseWriter, r *http.Request) {
proxies := tunnel.Proxies()
2019-02-13 15:45:43 +00:00
render.JSON(w, r, render.M{
2018-11-21 05:47:46 +00:00
"proxies": proxies,
})
}
func getProxy(w http.ResponseWriter, r *http.Request) {
proxy := r.Context().Value(CtxKeyProxy).(C.Proxy)
2018-12-10 03:33:37 +00:00
render.JSON(w, r, proxy)
2018-11-21 05:47:46 +00:00
}
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 {
2018-12-10 03:33:37 +00:00
render.Status(r, http.StatusBadRequest)
render.JSON(w, r, ErrBadRequest)
2018-11-21 05:47:46 +00:00
return
}
2021-06-10 06:05:56 +00:00
proxy := r.Context().Value(CtxKeyProxy).(*adapter.Proxy)
2022-05-22 16:40:27 +00:00
selector, ok := proxy.ProxyAdapter.(outboundgroup.SelectAble)
2018-11-21 05:47:46 +00:00
if !ok {
2018-12-10 03:33:37 +00:00
render.Status(r, http.StatusBadRequest)
render.JSON(w, r, newError("Must be a Selector"))
2018-11-21 05:47:46 +00:00
return
}
if err := selector.Set(req.Name); err != nil {
2018-12-10 03:33:37 +00:00
render.Status(r, http.StatusBadRequest)
render.JSON(w, r, newError(fmt.Sprintf("Selector update error: %s", err.Error())))
2018-11-21 05:47:46 +00:00
return
}
cachefile.Cache().SetSelected(proxy.Name(), req.Name)
2021-11-21 08:57:22 +00:00
if SwitchProxiesCallback != nil {
// refresh tray menu
go SwitchProxiesCallback(proxy.Name(), req.Name)
}
2018-12-10 03:33:37 +00:00
render.NoContent(w, r)
2018-11-21 05:47:46 +00:00
}
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 {
2018-12-10 03:33:37 +00:00
render.Status(r, http.StatusBadRequest)
render.JSON(w, r, ErrBadRequest)
2018-11-21 05:47:46 +00:00
return
}
proxy := r.Context().Value(CtxKeyProxy).(C.Proxy)
ctx, cancel := context.WithTimeout(context.Background(), time.Millisecond*time.Duration(timeout))
2019-07-02 11:18:03 +00:00
defer cancel()
2018-11-21 05:47:46 +00:00
delay, err := proxy.URLTest(ctx, url)
if ctx.Err() != nil {
2019-09-08 14:33:52 +00:00
render.Status(r, http.StatusGatewayTimeout)
2018-12-10 03:33:37 +00:00
render.JSON(w, r, ErrRequestTimeout)
2019-07-02 11:18:03 +00:00
return
}
if err != nil || delay == 0 {
2019-07-02 11:18:03 +00:00
render.Status(r, http.StatusServiceUnavailable)
render.JSON(w, r, newError("An error occurred in the delay test"))
return
2018-11-21 05:47:46 +00:00
}
2019-07-02 11:18:03 +00:00
render.JSON(w, r, render.M{
"delay": delay,
})
2018-11-21 05:47:46 +00:00
}