| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 | 
							- package conf
 
- import (
 
- 	"encoding/json"
 
- 	"errors"
 
- 	"v2ray.com/core/common/loader"
 
- 	"v2ray.com/core/common/protocol"
 
- 	"v2ray.com/core/proxy/socks"
 
- )
 
- type SocksAccount struct {
 
- 	Username string `json:"user"`
 
- 	Password string `json:"pass"`
 
- }
 
- func (this *SocksAccount) Build() *socks.Account {
 
- 	return &socks.Account{
 
- 		Username: this.Username,
 
- 		Password: this.Password,
 
- 	}
 
- }
 
- const (
 
- 	AuthMethodNoAuth   = "noauth"
 
- 	AuthMethodUserPass = "password"
 
- )
 
- type SocksServerConfig struct {
 
- 	AuthMethod string          `json:"auth"`
 
- 	Accounts   []*SocksAccount `json:"accounts"`
 
- 	UDP        bool            `json:"udp"`
 
- 	Host       *Address        `json:"ip"`
 
- 	Timeout    uint32          `json:"timeout"`
 
- }
 
- func (this *SocksServerConfig) Build() (*loader.TypedSettings, error) {
 
- 	config := new(socks.ServerConfig)
 
- 	if this.AuthMethod == AuthMethodNoAuth {
 
- 		config.AuthType = socks.AuthType_NO_AUTH
 
- 	} else if this.AuthMethod == AuthMethodUserPass {
 
- 		config.AuthType = socks.AuthType_PASSWORD
 
- 	} else {
 
- 		return nil, errors.New("Unknown socks auth method: " + this.AuthMethod)
 
- 	}
 
- 	if len(this.Accounts) > 0 {
 
- 		config.Accounts = make(map[string]string, len(this.Accounts))
 
- 		for _, account := range this.Accounts {
 
- 			config.Accounts[account.Username] = account.Password
 
- 		}
 
- 	}
 
- 	config.UdpEnabled = this.UDP
 
- 	if this.Host != nil {
 
- 		config.Address = this.Host.Build()
 
- 	}
 
- 	config.Timeout = this.Timeout
 
- 	return loader.NewTypedSettings(config), nil
 
- }
 
- type SocksRemoteConfig struct {
 
- 	Address *Address          `json:"address"`
 
- 	Port    uint16            `json:"port"`
 
- 	Users   []json.RawMessage `json:"users"`
 
- }
 
- type SocksClientConfig struct {
 
- 	Servers []*SocksRemoteConfig `json:"servers"`
 
- }
 
- func (this *SocksClientConfig) Build() (*loader.TypedSettings, error) {
 
- 	config := new(socks.ClientConfig)
 
- 	config.Server = make([]*protocol.ServerEndpoint, len(this.Servers))
 
- 	for idx, serverConfig := range this.Servers {
 
- 		server := &protocol.ServerEndpoint{
 
- 			Address: serverConfig.Address.Build(),
 
- 			Port:    uint32(serverConfig.Port),
 
- 		}
 
- 		for _, rawUser := range serverConfig.Users {
 
- 			user := new(protocol.User)
 
- 			if err := json.Unmarshal(rawUser, user); err != nil {
 
- 				return nil, errors.New("Socks|Client: Failed to parse user: " + err.Error())
 
- 			}
 
- 			account := new(SocksAccount)
 
- 			if err := json.Unmarshal(rawUser, account); err != nil {
 
- 				return nil, errors.New("Socks|Client: Failed to parse socks account: " + err.Error())
 
- 			}
 
- 			user.Account = loader.NewTypedSettings(account.Build())
 
- 			server.User = append(server.User, user)
 
- 		}
 
- 		config.Server[idx] = server
 
- 	}
 
- 	return loader.NewTypedSettings(config), nil
 
- }
 
 
  |