mirror of https://github.com/dnomd343/XProxy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
package config
|
|
|
|
import (
|
|
"XProxy/cmd/asset"
|
|
"XProxy/cmd/common"
|
|
"XProxy/cmd/network"
|
|
"XProxy/cmd/proxy"
|
|
"XProxy/cmd/radvd"
|
|
log "github.com/sirupsen/logrus"
|
|
"os"
|
|
)
|
|
|
|
type Config struct {
|
|
DNS []string
|
|
IPv4 network.Config
|
|
IPv6 network.Config
|
|
Script []string
|
|
Proxy proxy.Config
|
|
Update asset.Config
|
|
Radvd radvd.Config
|
|
}
|
|
|
|
func Load(configFile string, config *Config) {
|
|
if !common.IsFileExist(configFile) { // configure not exist -> load default
|
|
log.Infof("Load default configure -> %s", configFile)
|
|
common.WriteFile(configFile, defaultConfig, false)
|
|
}
|
|
raw, err := os.ReadFile(configFile) // read configure content
|
|
if err != nil {
|
|
log.Panicf("Failed to open %s -> %v", configFile, err)
|
|
}
|
|
rawConfig := yamlDecode(raw) // decode yaml content
|
|
decodeDns(&rawConfig, config)
|
|
decodeBypass(&rawConfig, config)
|
|
decodeIPv4(&rawConfig, config)
|
|
decodeIPv6(&rawConfig, config)
|
|
decodeProxy(&rawConfig, config)
|
|
decodeUpdate(&rawConfig, config)
|
|
decodeCustom(&rawConfig, config)
|
|
decodeRadvd(&rawConfig, config)
|
|
}
|
|
|