2018-11-21 13:47:46 +08:00
|
|
|
package route
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2018-11-30 17:42:40 +08:00
|
|
|
"path/filepath"
|
2018-11-21 13:47:46 +08:00
|
|
|
|
|
|
|
"github.com/Dreamacro/clash/hub/executor"
|
|
|
|
"github.com/Dreamacro/clash/log"
|
|
|
|
P "github.com/Dreamacro/clash/proxy"
|
2018-11-28 10:38:30 +08:00
|
|
|
T "github.com/Dreamacro/clash/tunnel"
|
2018-11-21 13:47:46 +08:00
|
|
|
|
|
|
|
"github.com/go-chi/chi"
|
|
|
|
"github.com/go-chi/render"
|
|
|
|
)
|
|
|
|
|
|
|
|
func configRouter() http.Handler {
|
|
|
|
r := chi.NewRouter()
|
|
|
|
r.Get("/", getConfigs)
|
2018-11-30 17:42:40 +08:00
|
|
|
r.Put("/", updateConfigs)
|
2018-11-28 10:38:30 +08:00
|
|
|
r.Patch("/", patchConfigs)
|
2018-11-21 13:47:46 +08:00
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
type configSchema struct {
|
|
|
|
Port *int `json:"port"`
|
2018-12-23 20:25:49 +08:00
|
|
|
SocksPort *int `json:"socks-port"`
|
2018-11-21 13:47:46 +08:00
|
|
|
RedirPort *int `json:"redir-port"`
|
|
|
|
AllowLan *bool `json:"allow-lan"`
|
|
|
|
Mode *T.Mode `json:"mode"`
|
|
|
|
LogLevel *log.LogLevel `json:"log-level"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func getConfigs(w http.ResponseWriter, r *http.Request) {
|
|
|
|
general := executor.GetGeneral()
|
2018-12-10 11:33:37 +08:00
|
|
|
render.JSON(w, r, general)
|
2018-11-21 13:47:46 +08:00
|
|
|
}
|
|
|
|
|
2018-11-28 10:38:30 +08:00
|
|
|
func pointerOrDefault(p *int, def int) int {
|
2018-11-21 13:47:46 +08:00
|
|
|
if p != nil {
|
|
|
|
return *p
|
|
|
|
}
|
|
|
|
|
|
|
|
return def
|
|
|
|
}
|
|
|
|
|
2018-11-28 10:38:30 +08:00
|
|
|
func patchConfigs(w http.ResponseWriter, r *http.Request) {
|
2018-11-21 13:47:46 +08:00
|
|
|
general := &configSchema{}
|
|
|
|
if err := render.DecodeJSON(r.Body, general); err != nil {
|
2018-12-10 11:33:37 +08:00
|
|
|
render.Status(r, http.StatusBadRequest)
|
|
|
|
render.JSON(w, r, ErrBadRequest)
|
2018-11-21 13:47:46 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if general.AllowLan != nil {
|
|
|
|
P.SetAllowLan(*general.AllowLan)
|
|
|
|
}
|
2018-11-28 10:38:30 +08:00
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
ports := P.GetPorts()
|
|
|
|
P.ReCreateHTTP(pointerOrDefault(general.Port, ports.Port))
|
|
|
|
P.ReCreateSocks(pointerOrDefault(general.SocksPort, ports.SocksPort))
|
|
|
|
P.ReCreateRedir(pointerOrDefault(general.RedirPort, ports.RedirPort))
|
|
|
|
|
|
|
|
if general.Mode != nil {
|
|
|
|
T.Instance().SetMode(*general.Mode)
|
|
|
|
}
|
|
|
|
|
|
|
|
if general.LogLevel != nil {
|
|
|
|
log.SetLevel(*general.LogLevel)
|
|
|
|
}
|
|
|
|
|
2018-12-10 11:33:37 +08:00
|
|
|
render.NoContent(w, r)
|
2018-11-21 13:47:46 +08:00
|
|
|
}
|
2018-11-30 17:42:40 +08:00
|
|
|
|
|
|
|
type updateConfigRequest struct {
|
2018-12-05 18:19:30 +08:00
|
|
|
Path string `json:"path"`
|
2018-11-30 17:42:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func updateConfigs(w http.ResponseWriter, r *http.Request) {
|
|
|
|
req := updateConfigRequest{}
|
|
|
|
if err := render.DecodeJSON(r.Body, &req); err != nil {
|
2018-12-10 11:33:37 +08:00
|
|
|
render.Status(r, http.StatusBadRequest)
|
|
|
|
render.JSON(w, r, ErrBadRequest)
|
2018-11-30 17:42:40 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !filepath.IsAbs(req.Path) {
|
2018-12-10 11:33:37 +08:00
|
|
|
render.Status(r, http.StatusBadRequest)
|
|
|
|
render.JSON(w, r, newError("path is not a absoluted path"))
|
2018-11-30 17:42:40 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
force := r.URL.Query().Get("force") == "true"
|
|
|
|
cfg, err := executor.ParseWithPath(req.Path)
|
|
|
|
if err != nil {
|
2018-12-10 11:33:37 +08:00
|
|
|
render.Status(r, http.StatusBadRequest)
|
|
|
|
render.JSON(w, r, newError(err.Error()))
|
2018-11-30 17:42:40 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
executor.ApplyConfig(cfg, force)
|
2018-12-10 11:33:37 +08:00
|
|
|
render.NoContent(w, r)
|
2018-11-30 17:42:40 +08:00
|
|
|
}
|