File tree 1 file changed +25
-0
lines changed
1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ func proxyRouter() http.Handler {
31
31
r .Get ("/" , getProxy )
32
32
r .Get ("/delay" , getProxyDelay )
33
33
r .Put ("/" , updateProxy )
34
+ r .Delete ("/" , unfixedProxy )
34
35
})
35
36
return r
36
37
}
@@ -146,3 +147,27 @@ func getProxyDelay(w http.ResponseWriter, r *http.Request) {
146
147
"delay" : delay ,
147
148
})
148
149
}
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
+ }
You can’t perform that action at this time.
0 commit comments