mirror of
https://github.com/xvzc/SpoofDPI.git
synced 2025-01-16 11:44:58 +00:00
Refactor proxy setting. (#191)
This commit is contained in:
parent
03d63162be
commit
d397d30fb5
@ -36,7 +36,7 @@ func main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if config.SystemProxy {
|
if config.SystemProxy {
|
||||||
if err := util.SetOsProxy(config.Port); err != nil {
|
if err := util.SetOsProxy(uint16(config.Port)); err != nil {
|
||||||
logger.Fatal().Msgf("error while changing proxy settings: %s", err)
|
logger.Fatal().Msgf("error while changing proxy settings: %s", err)
|
||||||
}
|
}
|
||||||
defer func() {
|
defer func() {
|
||||||
|
75
util/os.go
75
util/os.go
@ -5,15 +5,19 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"runtime"
|
"runtime"
|
||||||
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
const getDefaultNetworkCMD = "networksetup -listnetworkserviceorder | grep" +
|
const (
|
||||||
|
getDefaultNetworkCMD = "networksetup -listnetworkserviceorder | grep" +
|
||||||
" `(route -n get default | grep 'interface' || route -n get -inet6 default | grep 'interface') | cut -d ':' -f2`" +
|
" `(route -n get default | grep 'interface' || route -n get -inet6 default | grep 'interface') | cut -d ':' -f2`" +
|
||||||
" -B 1 | head -n 1 | cut -d ' ' -f 2-"
|
" -B 1 | head -n 1 | cut -d ' ' -f 2-"
|
||||||
|
darwinOS = "darwin"
|
||||||
|
)
|
||||||
|
|
||||||
func SetOsProxy(port int) error {
|
func SetOsProxy(port uint16) error {
|
||||||
if runtime.GOOS != "darwin" {
|
if runtime.GOOS != darwinOS {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -22,23 +26,11 @@ func SetOsProxy(port int) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
args := fmt.Sprintf("'%s' 127.0.0.1 %d", network, port)
|
return setProxy(getProxyTypes(), network, "127.0.0.1", port)
|
||||||
|
|
||||||
_, err = exec.Command("sh", "-c", "networksetup -setwebproxy "+args).Output()
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
_, err = exec.Command("sh", "-c", "networksetup -setsecurewebproxy "+args).Output()
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func UnsetOsProxy() error {
|
func UnsetOsProxy() error {
|
||||||
if runtime.GOOS != "darwin" {
|
if runtime.GOOS != darwinOS {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -47,17 +39,7 @@ func UnsetOsProxy() error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
_, err = exec.Command("sh", "-c", "networksetup -setwebproxystate "+"'"+network+"'"+" off").Output()
|
return unsetProxy(getProxyTypes(), network)
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
_, err = exec.Command("sh", "-c", "networksetup -setsecurewebproxystate "+"'"+network+"'"+" off").Output()
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func getDefaultNetwork() (string, error) {
|
func getDefaultNetwork() (string, error) {
|
||||||
@ -69,3 +51,40 @@ func getDefaultNetwork() (string, error) {
|
|||||||
}
|
}
|
||||||
return strings.TrimSpace(string(network)), nil
|
return strings.TrimSpace(string(network)), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func getProxyTypes() []string {
|
||||||
|
return []string{"webproxy", "securewebproxy"}
|
||||||
|
}
|
||||||
|
|
||||||
|
func setProxy(proxyTypes []string, network, domain string, port uint16) error {
|
||||||
|
args := []string{"", network, domain, strconv.FormatUint(uint64(port), 10)}
|
||||||
|
|
||||||
|
for _, proxyType := range proxyTypes {
|
||||||
|
args[0] = "-set" + proxyType
|
||||||
|
if err := networkSetup(args); err != nil {
|
||||||
|
return fmt.Errorf("setting %s: %w", proxyType, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func unsetProxy(proxyTypes []string, network string) error {
|
||||||
|
args := []string{"", network, "off"}
|
||||||
|
|
||||||
|
for _, proxyType := range proxyTypes {
|
||||||
|
args[0] = "-set" + proxyType + "state"
|
||||||
|
if err := networkSetup(args); err != nil {
|
||||||
|
return fmt.Errorf("unsetting %s: %w", proxyType, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func networkSetup(args []string) error {
|
||||||
|
cmd := exec.Command("networksetup", args...)
|
||||||
|
out, err := cmd.CombinedOutput()
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("%s: %s", cmd.String(), out)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user