v2ray-core/proxy/vmess/inbound/config_json.go

99 lines
2.6 KiB
Go
Raw Normal View History

// +build json
package inbound
import (
"encoding/json"
2016-06-11 20:52:37 +00:00
"errors"
2016-09-17 22:41:21 +00:00
"v2ray.com/core/common"
"v2ray.com/core/common/log"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/common/protocol"
"v2ray.com/core/proxy/registry"
"v2ray.com/core/proxy/vmess"
2016-09-17 22:41:21 +00:00
"github.com/golang/protobuf/ptypes"
)
2016-01-19 00:21:07 +00:00
func (this *DetourConfig) UnmarshalJSON(data []byte) error {
type JsonDetourConfig struct {
ToTag string `json:"to"`
}
jsonConfig := new(JsonDetourConfig)
if err := json.Unmarshal(data, jsonConfig); err != nil {
2016-09-17 22:46:16 +00:00
return errors.New("VMess|Inbound: Failed to parse detour config: " + err.Error())
2016-01-19 00:21:07 +00:00
}
2016-09-24 21:11:58 +00:00
this.To = jsonConfig.ToTag
2016-01-19 00:21:07 +00:00
return nil
}
2016-09-24 21:11:58 +00:00
type FeaturesConfig struct {
Detour *DetourConfig `json:"detour"`
2016-01-19 00:21:07 +00:00
}
2016-02-25 13:38:41 +00:00
func (this *DefaultConfig) UnmarshalJSON(data []byte) error {
type JsonDefaultConfig struct {
AlterIDs uint16 `json:"alterId"`
Level byte `json:"level"`
}
jsonConfig := new(JsonDefaultConfig)
if err := json.Unmarshal(data, jsonConfig); err != nil {
2016-09-17 22:46:16 +00:00
return errors.New("VMess|Inbound: Failed to parse default config: " + err.Error())
2016-02-25 13:38:41 +00:00
}
2016-09-24 21:11:58 +00:00
this.AlterId = uint32(jsonConfig.AlterIDs)
if this.AlterId == 0 {
this.AlterId = 32
2016-02-25 13:38:41 +00:00
}
2016-09-17 22:41:21 +00:00
this.Level = uint32(jsonConfig.Level)
2016-02-25 13:38:41 +00:00
return nil
}
2016-01-19 00:21:07 +00:00
func (this *Config) UnmarshalJSON(data []byte) error {
type JsonConfig struct {
2016-07-25 15:36:24 +00:00
Users []json.RawMessage `json:"clients"`
Features *FeaturesConfig `json:"features"`
Defaults *DefaultConfig `json:"default"`
DetourConfig *DetourConfig `json:"detour"`
2016-01-19 00:21:07 +00:00
}
jsonConfig := new(JsonConfig)
if err := json.Unmarshal(data, jsonConfig); err != nil {
2016-09-17 22:46:16 +00:00
return errors.New("VMess|Inbound: Failed to parse config: " + err.Error())
2016-01-19 00:21:07 +00:00
}
2016-09-24 21:11:58 +00:00
this.Default = jsonConfig.Defaults
if this.Default == nil {
this.Default = &DefaultConfig{
Level: 0,
AlterId: 32,
2016-02-25 13:38:41 +00:00
}
}
2016-09-24 21:11:58 +00:00
this.Detour = jsonConfig.DetourConfig
2016-04-24 20:54:41 +00:00
// Backward compatibility
2016-09-24 21:11:58 +00:00
if jsonConfig.Features != nil && jsonConfig.DetourConfig == nil {
this.Detour = jsonConfig.Features.Detour
2016-04-24 20:40:43 +00:00
}
2016-09-24 21:11:58 +00:00
this.User = make([]*protocol.User, len(jsonConfig.Users))
2016-07-25 15:36:24 +00:00
for idx, rawData := range jsonConfig.Users {
user := new(protocol.User)
if err := json.Unmarshal(rawData, user); err != nil {
return errors.New("VMess|Inbound: Invalid user: " + err.Error())
}
2016-10-12 16:43:55 +00:00
account := new(vmess.Account)
2016-07-25 15:36:24 +00:00
if err := json.Unmarshal(rawData, account); err != nil {
return errors.New("VMess|Inbound: Invalid user: " + err.Error())
}
2016-09-17 22:41:21 +00:00
anyAccount, err := ptypes.MarshalAny(account)
if err != nil {
log.Error("VMess|Inbound: Failed to create account: ", err)
return common.ErrBadConfiguration
}
user.Account = anyAccount
2016-09-24 21:11:58 +00:00
this.User[idx] = user
2016-07-25 15:36:24 +00:00
}
2016-01-19 00:21:07 +00:00
return nil
}
func init() {
registry.RegisterInboundConfig("vmess", func() interface{} { return new(Config) })
}