sing-box/common/settings/proxy_android.go

44 lines
1,005 B
Go
Raw Normal View History

package settings
import (
"os"
"strings"
2022-08-04 14:01:20 +00:00
"github.com/sagernet/sing-box/adapter"
C "github.com/sagernet/sing-box/constant"
F "github.com/sagernet/sing/common/format"
2023-03-13 03:31:36 +00:00
"github.com/sagernet/sing/common/shell"
)
var (
useRish bool
rishPath string
)
func init() {
userId := os.Getuid()
if userId == 0 || userId == 1000 || userId == 2000 {
useRish = false
} else {
rishPath, useRish = C.FindPath("rish")
}
}
func runAndroidShell(name string, args ...string) error {
if !useRish {
2023-03-13 03:31:36 +00:00
return shell.Exec(name, args...).Attach().Run()
} else {
2023-03-13 03:31:36 +00:00
return shell.Exec("sh", rishPath, "-c", F.ToString(name, " ", strings.Join(args, " "))).Attach().Run()
}
}
2022-08-04 14:01:20 +00:00
func SetSystemProxy(router adapter.Router, port uint16, isMixed bool) (func() error, error) {
err := runAndroidShell("settings", "put", "global", "http_proxy", F.ToString("127.0.0.1:", port))
if err != nil {
return nil, err
}
return func() error {
return runAndroidShell("settings", "put", "global", "http_proxy", ":0")
}, nil
}