1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 07:16:29 -04:00
v2fly/main/json/config_json.go

39 lines
1.1 KiB
Go
Raw Normal View History

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
import (
"io"
"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"
)
func init() {
2018-02-14 17:57:40 -05:00
common.Must(core.RegisterConfigLoader(&core.ConfigFormat{
Name: []string{"JSON"},
Extension: []string{".json", ".jsonc"},
2020-01-02 20:26:48 -05:00
Loader: func(input interface{}) (*core.Config, error) {
switch v := input.(type) {
case cmdarg.Arg:
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:
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:
return nil, newError("unknown type")
2018-02-14 17:57:40 -05:00
}
},
2018-02-12 05:40:42 -05:00
}))
}