mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 20:19:19 +02:00
39 lines
950 B
Go
39 lines
950 B
Go
|
package jsonem
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
|
||
|
"github.com/xtls/xray-core/v1/common"
|
||
|
"github.com/xtls/xray-core/v1/common/cmdarg"
|
||
|
"github.com/xtls/xray-core/v1/core"
|
||
|
"github.com/xtls/xray-core/v1/infra/conf"
|
||
|
"github.com/xtls/xray-core/v1/infra/conf/serial"
|
||
|
"github.com/xtls/xray-core/v1/main/confloader"
|
||
|
)
|
||
|
|
||
|
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{}
|
||
|
for _, arg := range v {
|
||
|
newError("Reading config: ", arg).AtInfo().WriteToLog()
|
||
|
r, err := confloader.LoadConfig(arg)
|
||
|
common.Must(err)
|
||
|
c, err := serial.DecodeJSONConfig(r)
|
||
|
common.Must(err)
|
||
|
cf.Override(c, arg)
|
||
|
}
|
||
|
return cf.Build()
|
||
|
case io.Reader:
|
||
|
return serial.LoadJSONConfig(v)
|
||
|
default:
|
||
|
return nil, newError("unknow type")
|
||
|
}
|
||
|
},
|
||
|
}))
|
||
|
}
|