Skip to content

Commit a330fa1

Browse files
committed
chore: disallow some restful api for CMFA
1 parent fc9d5cf commit a330fa1

File tree

4 files changed

+24
-7
lines changed

4 files changed

+24
-7
lines changed

hub/route/configs.go

+5-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@ import (
2424
func configRouter() http.Handler {
2525
r := chi.NewRouter()
2626
r.Get("/", getConfigs)
27-
r.Put("/", updateConfigs)
28-
r.Post("/geo", updateGeoDatabases)
29-
r.Patch("/", patchConfigs)
27+
if !embedMode { // disallow update/patch configs in embed mode
28+
r.Put("/", updateConfigs)
29+
r.Post("/geo", updateGeoDatabases)
30+
r.Patch("/", patchConfigs)
31+
}
3032
return r
3133
}
3234

hub/route/groups.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"github.com/metacubex/mihomo/tunnel"
1717
)
1818

19-
func GroupRouter() http.Handler {
19+
func groupRouter() http.Handler {
2020
r := chi.NewRouter()
2121
r.Get("/", getGroups)
2222

hub/route/patch_android.go

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
//go:build android && cmfa
2+
3+
package route
4+
5+
func init() {
6+
SetEmbedMode(true) // set embed mode default
7+
}

hub/route/server.go

+11-3
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,14 @@ var (
3636
tlsServer *http.Server
3737
unixServer *http.Server
3838
pipeServer *http.Server
39+
40+
embedMode = false
3941
)
4042

43+
func SetEmbedMode(embed bool) {
44+
embedMode = embed
45+
}
46+
4147
type Traffic struct {
4248
Up int64 `json:"up"`
4349
Down int64 `json:"down"`
@@ -114,15 +120,17 @@ func router(isDebug bool, secret string, dohServer string, cors Cors) *chi.Mux {
114120
r.Get("/version", version)
115121
r.Mount("/configs", configRouter())
116122
r.Mount("/proxies", proxyRouter())
117-
r.Mount("/group", GroupRouter())
123+
r.Mount("/group", groupRouter())
118124
r.Mount("/rules", ruleRouter())
119125
r.Mount("/connections", connectionRouter())
120126
r.Mount("/providers/proxies", proxyProviderRouter())
121127
r.Mount("/providers/rules", ruleProviderRouter())
122128
r.Mount("/cache", cacheRouter())
123129
r.Mount("/dns", dnsRouter())
124-
r.Mount("/restart", restartRouter())
125-
r.Mount("/upgrade", upgradeRouter())
130+
if !embedMode { // disallow restart and upgrade in embed mode
131+
r.Mount("/restart", restartRouter())
132+
r.Mount("/upgrade", upgradeRouter())
133+
}
126134
addExternalRouters(r)
127135

128136
})

0 commit comments

Comments
 (0)