mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 02:53:12 +00:00
40 lines
818 B
Go
40 lines
818 B
Go
package settings
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
|
|
C "github.com/sagernet/sing-box/constant"
|
|
F "github.com/sagernet/sing/common/format"
|
|
)
|
|
|
|
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 {
|
|
return runCommand(name, args...)
|
|
} else {
|
|
return runCommand("sh", rishPath, "-c", F.ToString(name, " ", strings.Join(args, " ")))
|
|
}
|
|
}
|
|
|
|
func ClearSystemProxy() error {
|
|
return runAndroidShell("settings", "put", "global", "http_proxy", ":0")
|
|
}
|
|
|
|
func SetSystemProxy(port uint16, mixed bool) error {
|
|
return runAndroidShell("settings", "put", "global", "http_proxy", F.ToString("127.0.0.1:", port))
|
|
}
|