1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-05 19:44:32 -04:00
v2fly/proxy/socks/server_config_json.go

65 lines
1.5 KiB
Go
Raw Normal View History

// +build json
package socks
import (
"encoding/json"
2016-06-11 16:52:37 -04:00
"errors"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/common"
"v2ray.com/core/common/log"
v2net "v2ray.com/core/common/net"
"v2ray.com/core/proxy/registry"
)
const (
AuthMethodNoAuth = "noauth"
AuthMethodUserPass = "password"
)
2016-06-10 16:26:39 -04:00
func (this *Config) UnmarshalJSON(data []byte) error {
type SocksConfig struct {
AuthMethod string `json:"auth"`
2016-07-25 17:45:25 -04:00
Accounts []*Account `json:"accounts"`
2016-06-10 16:26:39 -04:00
UDP bool `json:"udp"`
Host *v2net.AddressJson `json:"ip"`
2016-08-25 15:55:49 -04:00
Timeout uint32 `json:"timeout"`
2016-06-10 16:26:39 -04:00
}
rawConfig := new(SocksConfig)
if err := json.Unmarshal(data, rawConfig); err != nil {
2016-06-11 16:52:37 -04:00
return errors.New("Socks: Failed to parse config: " + err.Error())
2016-06-10 16:26:39 -04:00
}
if rawConfig.AuthMethod == AuthMethodNoAuth {
this.AuthType = AuthTypeNoAuth
} else if rawConfig.AuthMethod == AuthMethodUserPass {
this.AuthType = AuthTypePassword
} else {
log.Error("Socks: Unknown auth method: ", rawConfig.AuthMethod)
2016-08-18 02:21:20 -04:00
return common.ErrBadConfiguration
2016-06-10 16:26:39 -04:00
}
if len(rawConfig.Accounts) > 0 {
this.Accounts = make(map[string]string, len(rawConfig.Accounts))
for _, account := range rawConfig.Accounts {
this.Accounts[account.Username] = account.Password
}
}
this.UDPEnabled = rawConfig.UDP
if rawConfig.Host != nil {
this.Address = rawConfig.Host.Address
} else {
this.Address = v2net.LocalHostIP
}
if rawConfig.Timeout >= 0 {
this.Timeout = rawConfig.Timeout
}
2016-06-10 16:26:39 -04:00
return nil
}
func init() {
registry.RegisterInboundConfig("socks", func() interface{} { return new(Config) })
}