mirror of https://github.com/XTLS/Xray-core
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.
49 lines
1.3 KiB
49 lines
1.3 KiB
4 years ago
|
package json
|
||
4 years ago
|
|
||
|
import (
|
||
|
"io"
|
||
|
|
||
4 years ago
|
"github.com/xtls/xray-core/common"
|
||
|
"github.com/xtls/xray-core/common/cmdarg"
|
||
|
"github.com/xtls/xray-core/core"
|
||
|
"github.com/xtls/xray-core/infra/conf"
|
||
|
"github.com/xtls/xray-core/infra/conf/serial"
|
||
|
"github.com/xtls/xray-core/main/confloader"
|
||
4 years ago
|
)
|
||
|
|
||
|
func init() {
|
||
|
common.Must(core.RegisterConfigLoader(&core.ConfigFormat{
|
||
|
Name: "JSON",
|
||
|
Extension: []string{"json"},
|
||
|
Loader: func(input interface{}) (*core.Config, error) {
|
||
|
switch v := input.(type) {
|
||
|
case cmdarg.Arg:
|
||
|
cf := &conf.Config{}
|
||
4 years ago
|
for i, arg := range v {
|
||
4 years ago
|
newError("Reading config: ", arg).AtInfo().WriteToLog()
|
||
|
r, err := confloader.LoadConfig(arg)
|
||
4 years ago
|
if err != nil {
|
||
|
return nil, newError("failed to read config: ", arg).Base(err)
|
||
|
}
|
||
4 years ago
|
c, err := serial.DecodeJSONConfig(r)
|
||
4 years ago
|
if err != nil {
|
||
|
return nil, newError("failed to decode config: ", arg).Base(err)
|
||
|
}
|
||
4 years ago
|
if i == 0 {
|
||
|
// This ensure even if the muti-json parser do not support a setting,
|
||
|
// It is still respected automatically for the first configure file
|
||
|
*cf = *c
|
||
|
continue
|
||
|
}
|
||
4 years ago
|
cf.Override(c, arg)
|
||
|
}
|
||
|
return cf.Build()
|
||
|
case io.Reader:
|
||
|
return serial.LoadJSONConfig(v)
|
||
|
default:
|
||
|
return nil, newError("unknow type")
|
||
|
}
|
||
|
},
|
||
|
}))
|
||
|
}
|