mirror of
https://github.com/Baipyrus/ProxySwitcher.git
synced 2024-12-26 12:41:45 +00:00
36 lines
706 B
Go
36 lines
706 B
Go
//go:build windows
|
|
|
|
package proxy
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/Baipyrus/ProxySwitcher/util"
|
|
)
|
|
|
|
func Set(cfgPath string) {
|
|
proxy, _ := ReadSystemProxy()
|
|
// Set system proxy, if not already
|
|
if !proxy.Enabled {
|
|
SetSystemProxy(true)
|
|
}
|
|
|
|
var failed bool
|
|
configs, _ := util.ReadConfigs(cfgPath)
|
|
for _, config := range configs {
|
|
configCmd := config.Name
|
|
// Use command instead of name, if given
|
|
if config.Cmd != "" {
|
|
configCmd = config.Cmd
|
|
}
|
|
|
|
commands := generateCommands(configCmd, config.Set, proxy.Server)
|
|
failed = util.ExecCmds(commands)
|
|
}
|
|
|
|
// Additional feedback on error
|
|
if failed {
|
|
log.Printf("One or more commands failed to execute. Run command 'debug' to see more.\n")
|
|
}
|
|
}
|