1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-22 01:57:12 -05:00
v2fly/proxy/vmess/inbound/config_json.go

85 lines
2.3 KiB
Go
Raw Normal View History

// +build json
package inbound
import (
"encoding/json"
2016-06-11 16:52:37 -04:00
"errors"
2016-05-07 14:26:29 -04:00
"github.com/v2ray/v2ray-core/common/protocol"
2016-06-10 16:26:39 -04:00
"github.com/v2ray/v2ray-core/proxy/internal"
)
2016-01-18 19:21:07 -05: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-06-11 16:52:37 -04:00
return errors.New("VMessIn: Failed to parse detour config: " + err.Error())
2016-01-18 19:21:07 -05:00
}
this.ToTag = jsonConfig.ToTag
return nil
}
func (this *FeaturesConfig) UnmarshalJSON(data []byte) error {
type JsonFeaturesConfig struct {
Detour *DetourConfig `json:"detour"`
}
jsonConfig := new(JsonFeaturesConfig)
if err := json.Unmarshal(data, jsonConfig); err != nil {
2016-06-11 16:52:37 -04:00
return errors.New("VMessIn: Failed to parse features config: " + err.Error())
2016-01-18 19:21:07 -05:00
}
this.Detour = jsonConfig.Detour
return nil
}
2016-02-25 08:38:41 -05: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-06-11 16:52:37 -04:00
return errors.New("VMessIn: Failed to parse default config: " + err.Error())
2016-02-25 08:38:41 -05:00
}
this.AlterIDs = jsonConfig.AlterIDs
if this.AlterIDs == 0 {
this.AlterIDs = 32
}
2016-05-07 14:26:29 -04:00
this.Level = protocol.UserLevel(jsonConfig.Level)
2016-02-25 08:38:41 -05:00
return nil
}
2016-01-18 19:21:07 -05:00
func (this *Config) UnmarshalJSON(data []byte) error {
type JsonConfig struct {
2016-05-07 14:26:29 -04:00
Users []*protocol.User `json:"clients"`
Features *FeaturesConfig `json:"features"`
Defaults *DefaultConfig `json:"default"`
DetourConfig *DetourConfig `json:"detour"`
2016-01-18 19:21:07 -05:00
}
jsonConfig := new(JsonConfig)
if err := json.Unmarshal(data, jsonConfig); err != nil {
2016-06-11 16:52:37 -04:00
return errors.New("VMessIn: Failed to parse config: " + err.Error())
2016-01-18 19:21:07 -05:00
}
this.AllowedUsers = jsonConfig.Users
2016-04-24 16:54:41 -04:00
this.Features = jsonConfig.Features // Backward compatibility
2016-02-25 08:38:41 -05:00
this.Defaults = jsonConfig.Defaults
if this.Defaults == nil {
this.Defaults = &DefaultConfig{
2016-05-07 14:26:29 -04:00
Level: protocol.UserLevel(0),
2016-02-25 08:38:41 -05:00
AlterIDs: 32,
}
}
2016-06-01 16:33:45 -04:00
this.DetourConfig = jsonConfig.DetourConfig
2016-04-24 16:54:41 -04:00
// Backward compatibility
2016-04-24 16:40:43 -04:00
if this.Features != nil && this.DetourConfig == nil {
this.DetourConfig = this.Features.Detour
}
2016-01-18 19:21:07 -05:00
return nil
}
func init() {
2016-06-10 16:26:39 -04:00
internal.RegisterInboundConfig("vmess", func() interface{} { return new(Config) })
}