Skip to content

Commit af5ad32

Browse files
committed
chore: Use DELETE to clear the proxy group fixed
1 parent acfc9f8 commit af5ad32

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

hub/route/proxies.go

+25
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ func proxyRouter() http.Handler {
3131
r.Get("/", getProxy)
3232
r.Get("/delay", getProxyDelay)
3333
r.Put("/", updateProxy)
34+
r.Delete("/", unfixedProxy)
3435
})
3536
return r
3637
}
@@ -146,3 +147,27 @@ func getProxyDelay(w http.ResponseWriter, r *http.Request) {
146147
"delay": delay,
147148
})
148149
}
150+
151+
func unfixedProxy(w http.ResponseWriter, r *http.Request) {
152+
proxy := r.Context().Value(CtxKeyProxy).(C.Proxy)
153+
switch proxy.(*adapter.Proxy).Type() {
154+
case C.URLTest:
155+
if urlTestGroup, ok := proxy.(*adapter.Proxy).ProxyAdapter.(*outboundgroup.URLTest); ok {
156+
urlTestGroup.ForceSet("")
157+
}
158+
case C.Fallback:
159+
if fallbackGroup, ok := proxy.(*adapter.Proxy).ProxyAdapter.(*outboundgroup.Fallback); ok {
160+
fallbackGroup.ForceSet("")
161+
}
162+
default:
163+
render.Status(r, http.StatusBadRequest)
164+
render.JSON(w, r, ErrBadRequest)
165+
return
166+
}
167+
168+
if proxy.(*adapter.Proxy).Type() != C.Selector {
169+
cachefile.Cache().SetSelected(proxy.Name(), "")
170+
}
171+
172+
render.NoContent(w, r)
173+
}

0 commit comments

Comments
 (0)