2018-02-17 15:22:51 -05:00
|
|
|
package json
|
|
|
|
|
2018-09-30 17:08:41 -04:00
|
|
|
//go:generate errorgen
|
2016-10-15 18:46:30 -04:00
|
|
|
|
2017-11-11 16:29:00 -05:00
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
|
|
|
|
"v2ray.com/core"
|
2018-02-12 05:40:42 -05:00
|
|
|
"v2ray.com/core/common"
|
2018-04-08 17:22:55 -04:00
|
|
|
"v2ray.com/core/common/platform/ctlcmd"
|
2017-11-11 16:29:00 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2018-02-14 17:57:40 -05:00
|
|
|
common.Must(core.RegisterConfigLoader(&core.ConfigFormat{
|
|
|
|
Name: "JSON",
|
|
|
|
Extension: []string{"json"},
|
|
|
|
Loader: func(input io.Reader) (*core.Config, error) {
|
2018-04-08 17:22:55 -04:00
|
|
|
jsonContent, err := ctlcmd.Run([]string{"config"}, input)
|
2018-02-14 17:57:40 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, newError("failed to execute v2ctl to convert config file.").Base(err).AtWarning()
|
|
|
|
}
|
2018-04-08 17:22:55 -04:00
|
|
|
return core.LoadConfig("protobuf", "", &jsonContent)
|
2018-02-14 17:57:40 -05:00
|
|
|
},
|
2018-02-12 05:40:42 -05:00
|
|
|
}))
|
2017-11-11 16:29:00 -05:00
|
|
|
}
|