v2ray-core/main/json/config_json.go

26 lines
655 B
Go
Raw Normal View History

package json
//go:generate go run $GOPATH/src/v2ray.com/core/common/errors/errorgen/main.go -pkg json -path Main,Json
2016-10-16 00:46:30 +02:00
import (
"io"
"v2ray.com/core"
2018-02-12 11:40:42 +01:00
"v2ray.com/core/common"
2018-04-08 23:22:55 +02:00
"v2ray.com/core/common/platform/ctlcmd"
)
func init() {
2018-02-14 23:57:40 +01:00
common.Must(core.RegisterConfigLoader(&core.ConfigFormat{
Name: "JSON",
Extension: []string{"json"},
Loader: func(input io.Reader) (*core.Config, error) {
2018-04-08 23:22:55 +02:00
jsonContent, err := ctlcmd.Run([]string{"config"}, input)
2018-02-14 23:57:40 +01:00
if err != nil {
return nil, newError("failed to execute v2ctl to convert config file.").Base(err).AtWarning()
}
2018-04-08 23:22:55 +02:00
return core.LoadConfig("protobuf", "", &jsonContent)
2018-02-14 23:57:40 +01:00
},
2018-02-12 11:40:42 +01:00
}))
}