package proxy import ( "fmt" "log" "strings" "github.com/Baipyrus/ProxySwitcher/util" ) func mapCmdsToStr(commands []*util.Command) string { var output []string for _, command := range commands { cmdArgs := strings.Join(command.Arguments, " ") cmdStr := fmt.Sprintf("%s %s", command.Name, cmdArgs) output = append(output, cmdStr) } return strings.Join(output, "\n") } func Debug() { proxy, err := ReadSystemProxy() if err != nil { log.Fatal(err) } // Debug system proxy configuration fmt.Println("\nSystem Proxy:") fmt.Printf("Enabled: %t\n", proxy.Enabled) fmt.Printf("Server: %s\n\n", proxy.Server) configs, _ := util.ReadConfigs() for _, config := range configs { configCmd := config.Name // Use command instead of name, if given if config.Cmd != "" { configCmd = config.Cmd } fmt.Printf("Loading commands for '%s':\n", config.Name) // Debug Proxy Set Commands setCmds := generateCommands(config.Set, configCmd, "[PROXY PLACEHOLDER]") fmt.Println("Set Commands:") fmt.Printf("%s\n", mapCmdsToStr(setCmds)) // Debug Proxy Unset Commands unsetCmds := generateCommands(config.Unset, configCmd, "") fmt.Println("Unset Commands:") fmt.Printf("%s\n\n", mapCmdsToStr(unsetCmds)) } }