2018-02-17 15:22:51 -05:00
|
|
|
package json
|
|
|
|
|
2021-02-16 15:31:50 -05:00
|
|
|
//go:generate go run github.com/v2fly/v2ray-core/v4/common/errors/errorgen
|
2016-10-15 18:46:30 -04:00
|
|
|
|
2017-11-11 16:29:00 -05:00
|
|
|
import (
|
|
|
|
"io"
|
2020-10-23 10:04:03 -04:00
|
|
|
"os"
|
2020-10-23 14:51:39 -04:00
|
|
|
|
2021-02-16 15:31:50 -05:00
|
|
|
core "github.com/v2fly/v2ray-core/v4"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/cmdarg"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/main/confloader"
|
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"},
|
2020-01-02 20:26:48 -05:00
|
|
|
Loader: func(input interface{}) (*core.Config, error) {
|
|
|
|
switch v := input.(type) {
|
|
|
|
case cmdarg.Arg:
|
2020-10-23 10:04:03 -04:00
|
|
|
r, err := confloader.LoadExtConfig(v, os.Stdin)
|
2020-01-02 20:26:48 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, newError("failed to execute v2ctl to convert config file.").Base(err).AtWarning()
|
|
|
|
}
|
|
|
|
return core.LoadConfig("protobuf", "", r)
|
|
|
|
case io.Reader:
|
2020-10-23 10:04:03 -04:00
|
|
|
r, err := confloader.LoadExtConfig([]string{"stdin:"}, os.Stdin)
|
|
|
|
if err != nil {
|
|
|
|
return nil, newError("failed to execute v2ctl to convert config file.").Base(err).AtWarning()
|
|
|
|
}
|
|
|
|
return core.LoadConfig("protobuf", "", r)
|
2020-01-02 20:26:48 -05:00
|
|
|
default:
|
2020-10-23 10:04:03 -04:00
|
|
|
return nil, newError("unknown type")
|
2018-02-14 17:57:40 -05:00
|
|
|
}
|
|
|
|
},
|
2018-02-12 05:40:42 -05:00
|
|
|
}))
|
2017-11-11 16:29:00 -05:00
|
|
|
}
|