clash/hub/route/configs.go

192 lines
4.5 KiB
Go
Raw Normal View History

2018-11-21 05:47:46 +00:00
package route
import (
"net/http"
2018-11-30 09:42:40 +00:00
"path/filepath"
"sync"
2018-11-21 05:47:46 +00:00
"github.com/Dreamacro/clash/component/resolver"
"github.com/Dreamacro/clash/config"
"github.com/Dreamacro/clash/constant"
2018-11-21 05:47:46 +00:00
"github.com/Dreamacro/clash/hub/executor"
2021-06-13 09:23:10 +00:00
P "github.com/Dreamacro/clash/listener"
2018-11-21 05:47:46 +00:00
"github.com/Dreamacro/clash/log"
"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"
)
var (
updateGeoMux sync.Mutex
updatingGeo = false
)
2018-11-21 05:47:46 +00:00
func configRouter() http.Handler {
r := chi.NewRouter()
r.Get("/", getConfigs)
2018-11-30 09:42:40 +00:00
r.Put("/", updateConfigs)
r.Post("/geo", updateGeoDatabases)
2018-11-28 02:38:30 +00:00
r.Patch("/", patchConfigs)
2018-11-21 05:47:46 +00:00
return r
}
type configSchema struct {
Port *int `json:"port"`
SocksPort *int `json:"socks-port"`
RedirPort *int `json:"redir-port"`
TProxyPort *int `json:"tproxy-port"`
MixedPort *int `json:"mixed-port"`
2021-07-01 14:49:29 +00:00
Tun *config.Tun `json:"tun"`
AllowLan *bool `json:"allow-lan"`
BindAddress *string `json:"bind-address"`
Mode *tunnel.TunnelMode `json:"mode"`
LogLevel *log.LogLevel `json:"log-level"`
IPv6 *bool `json:"ipv6"`
Sniffing *bool `json:"sniffing"`
2018-11-21 05:47:46 +00:00
}
func getConfigs(w http.ResponseWriter, r *http.Request) {
general := executor.GetGeneral()
2018-12-10 03:33:37 +00:00
render.JSON(w, r, general)
2018-11-21 05:47:46 +00:00
}
2018-11-28 02:38:30 +00:00
func pointerOrDefault(p *int, def int) int {
2018-11-21 05:47:46 +00:00
if p != nil {
return *p
}
return def
}
2018-11-28 02:38:30 +00:00
func patchConfigs(w http.ResponseWriter, r *http.Request) {
2018-11-21 05:47:46 +00:00
general := &configSchema{}
if err := render.DecodeJSON(r.Body, general); 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
}
if general.AllowLan != nil {
P.SetAllowLan(*general.AllowLan)
}
2018-11-28 02:38:30 +00:00
if general.BindAddress != nil {
P.SetBindAddress(*general.BindAddress)
}
if general.Sniffing != nil {
tunnel.SetSniffing(*general.Sniffing)
}
2018-11-21 05:47:46 +00:00
ports := P.GetPorts()
2021-06-13 09:23:10 +00:00
tcpIn := tunnel.TCPIn()
udpIn := tunnel.UDPIn()
P.ReCreateHTTP(pointerOrDefault(general.Port, ports.Port), tcpIn)
P.ReCreateSocks(pointerOrDefault(general.SocksPort, ports.SocksPort), tcpIn, udpIn)
P.ReCreateRedir(pointerOrDefault(general.RedirPort, ports.RedirPort), tcpIn, udpIn)
P.ReCreateTProxy(pointerOrDefault(general.TProxyPort, ports.TProxyPort), tcpIn, udpIn)
P.ReCreateMixed(pointerOrDefault(general.MixedPort, ports.MixedPort), tcpIn, udpIn)
2018-11-21 05:47:46 +00:00
if general.Mode != nil {
tunnel.SetMode(*general.Mode)
2018-11-21 05:47:46 +00:00
}
if general.LogLevel != nil {
log.SetLevel(*general.LogLevel)
}
if general.IPv6 != nil {
resolver.DisableIPv6 = !*general.IPv6
}
2018-12-10 03:33:37 +00:00
render.NoContent(w, r)
2018-11-21 05:47:46 +00:00
}
2018-11-30 09:42:40 +00:00
type updateConfigRequest struct {
Path string `json:"path"`
Payload string `json:"payload"`
2018-11-30 09:42:40 +00:00
}
func updateConfigs(w http.ResponseWriter, r *http.Request) {
req := updateConfigRequest{}
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-30 09:42:40 +00:00
return
}
force := r.URL.Query().Get("force") == "true"
var cfg *config.Config
var err error
if req.Payload != "" {
cfg, err = executor.ParseWithBytes([]byte(req.Payload))
if err != nil {
render.Status(r, http.StatusBadRequest)
render.JSON(w, r, newError(err.Error()))
return
}
} else {
if req.Path == "" {
req.Path = constant.Path.Config()
}
if !filepath.IsAbs(req.Path) {
render.Status(r, http.StatusBadRequest)
2020-10-14 11:56:02 +00:00
render.JSON(w, r, newError("path is not a absolute path"))
return
}
cfg, err = executor.ParseWithPath(req.Path)
if err != nil {
render.Status(r, http.StatusBadRequest)
render.JSON(w, r, newError(err.Error()))
return
}
2018-11-30 09:42:40 +00:00
}
executor.ApplyConfig(cfg, force)
2018-12-10 03:33:37 +00:00
render.NoContent(w, r)
2018-11-30 09:42:40 +00:00
}
func updateGeoDatabases(w http.ResponseWriter, r *http.Request) {
updateGeoMux.Lock()
if updatingGeo {
updateGeoMux.Unlock()
render.Status(r, http.StatusBadRequest)
render.JSON(w, r, newError("updating..."))
return
}
updatingGeo = true
updateGeoMux.Unlock()
go func() {
defer func() {
updatingGeo = false
}()
log.Warnln("[REST-API] updating GEO databases...")
if err := config.UpdateGeoDatabases(); err != nil {
log.Errorln("[REST-API] update GEO databases failed: %v", err)
return
}
cfg, err := executor.ParseWithPath(constant.Path.Config())
if err != nil {
log.Errorln("[REST-API] update GEO databases failed: %v", err)
return
}
log.Warnln("[REST-API] update GEO databases successful, apply config...")
executor.ApplyConfig(cfg, false)
}()
render.NoContent(w, r)
}