1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-10 01:40:44 +00:00
v2fly/common/taggedfeatures/configloader.go
Loyalsoldier dce8764fd7
Lint: fix lint (#1427)
* Lint: replace golint with revive
* Lint: fix lint
2021-11-27 17:16:41 +08:00

38 lines
976 B
Go

package taggedfeatures
import (
"context"
"encoding/json"
"google.golang.org/protobuf/types/known/anypb"
"github.com/v2fly/v2ray-core/v4/common/serial"
"github.com/v2fly/v2ray-core/v4/infra/conf/v5cfg"
)
func LoadJSONConfig(ctx context.Context, interfaceType, defaultImpl string, message json.RawMessage) (*Config, error) {
type ItemStub struct {
MemberType string `json:"type"`
Tag string `json:"tag"`
Value json.RawMessage `json:"settings"`
}
type namedStub []ItemStub
var stub namedStub
err := json.Unmarshal(message, &stub)
if err != nil {
return nil, err
}
config := &Config{Features: map[string]*anypb.Any{}}
for _, v := range stub {
if v.MemberType == "" {
v.MemberType = defaultImpl
}
pack, err := v5cfg.LoadHeterogeneousConfigFromRawJSON(ctx, interfaceType, v.MemberType, v.Value)
if err != nil {
return nil, err
}
config.Features[v.Tag] = serial.ToTypedMessage(pack)
}
return config, nil
}