2020-12-25 12:53:17 +02:00
|
|
|
package json
|
2020-11-25 13:01:53 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
|
2020-12-04 03:36:16 +02:00
|
|
|
"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"
|
2020-11-25 13:01:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
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{}
|
2020-12-04 03:36:16 +02:00
|
|
|
for i, arg := range v {
|
2020-11-25 13:01:53 +02:00
|
|
|
newError("Reading config: ", arg).AtInfo().WriteToLog()
|
|
|
|
r, err := confloader.LoadConfig(arg)
|
2020-12-16 14:35:27 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, newError("failed to read config: ", arg).Base(err)
|
|
|
|
}
|
2020-11-25 13:01:53 +02:00
|
|
|
c, err := serial.DecodeJSONConfig(r)
|
2020-12-16 14:35:27 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, newError("failed to decode config: ", arg).Base(err)
|
|
|
|
}
|
2020-12-04 03:36:16 +02:00
|
|
|
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
|
|
|
|
}
|
2020-11-25 13:01:53 +02:00
|
|
|
cf.Override(c, arg)
|
|
|
|
}
|
|
|
|
return cf.Build()
|
|
|
|
case io.Reader:
|
|
|
|
return serial.LoadJSONConfig(v)
|
|
|
|
default:
|
|
|
|
return nil, newError("unknow type")
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}))
|
|
|
|
}
|