mirror of
https://github.com/Baipyrus/ProxySwitcher.git
synced 2024-12-26 04:31:45 +00:00
implement conditional surround functionality
This commit is contained in:
parent
ff6a82e0f2
commit
c6002b5579
@ -2,6 +2,7 @@ package proxy
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
"github.com/Baipyrus/ProxySwitcher/util"
|
||||
@ -31,6 +32,11 @@ func applyProxy(configArgs []string, configCmd, proxyServer string, variant *uti
|
||||
return configArgs, configCmd
|
||||
}
|
||||
|
||||
// Surround 'proxyServer' with any given string, if provided
|
||||
if variant.Surround != "" {
|
||||
proxyServer = fmt.Sprintf("%[1]s%[2]s%[1]s", variant.Surround, proxyServer)
|
||||
}
|
||||
|
||||
// Insert proxy only on last VARIABLE type
|
||||
if variant.Type == util.VARIABLE && strings.Count(configCmd, "$PRSW_ARG") == 1 {
|
||||
configCmd = strings.Replace(configCmd, "$PRSW_ARG", proxyServer, 1)
|
||||
|
Loading…
Reference in New Issue
Block a user