| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- package v4
- import (
- "github.com/golang/protobuf/proto"
- "github.com/v2fly/v2ray-core/v5/common/protocol"
- "github.com/v2fly/v2ray-core/v5/common/serial"
- "github.com/v2fly/v2ray-core/v5/infra/conf/cfgcommon"
- "github.com/v2fly/v2ray-core/v5/proxy/shadowsocks"
- )
- type ShadowsocksServerConfig struct {
- Cipher string `json:"method"`
- Password string `json:"password"`
- UDP bool `json:"udp"`
- Level byte `json:"level"`
- Email string `json:"email"`
- NetworkList *cfgcommon.NetworkList `json:"network"`
- IVCheck bool `json:"ivCheck"`
- }
- func (v *ShadowsocksServerConfig) Build() (proto.Message, error) {
- config := new(shadowsocks.ServerConfig)
- config.UdpEnabled = v.UDP
- config.Network = v.NetworkList.Build()
- if v.Password == "" {
- return nil, newError("Shadowsocks password is not specified.")
- }
- account := &shadowsocks.Account{
- Password: v.Password,
- IvCheck: v.IVCheck,
- }
- account.CipherType = shadowsocks.CipherFromString(v.Cipher)
- if account.CipherType == shadowsocks.CipherType_UNKNOWN {
- return nil, newError("unknown cipher method: ", v.Cipher)
- }
- config.User = &protocol.User{
- Email: v.Email,
- Level: uint32(v.Level),
- Account: serial.ToTypedMessage(account),
- }
- return config, nil
- }
- type ShadowsocksServerTarget struct {
- Address *cfgcommon.Address `json:"address"`
- Port uint16 `json:"port"`
- Cipher string `json:"method"`
- Password string `json:"password"`
- Email string `json:"email"`
- Ota bool `json:"ota"`
- Level byte `json:"level"`
- IVCheck bool `json:"ivCheck"`
- }
- type ShadowsocksClientConfig struct {
- Servers []*ShadowsocksServerTarget `json:"servers"`
- }
- func (v *ShadowsocksClientConfig) Build() (proto.Message, error) {
- config := new(shadowsocks.ClientConfig)
- if len(v.Servers) == 0 {
- return nil, newError("0 Shadowsocks server configured.")
- }
- serverSpecs := make([]*protocol.ServerEndpoint, len(v.Servers))
- for idx, server := range v.Servers {
- if server.Address == nil {
- return nil, newError("Shadowsocks server address is not set.")
- }
- if server.Port == 0 {
- return nil, newError("Invalid Shadowsocks port.")
- }
- if server.Password == "" {
- return nil, newError("Shadowsocks password is not specified.")
- }
- account := &shadowsocks.Account{
- Password: server.Password,
- }
- account.CipherType = shadowsocks.CipherFromString(server.Cipher)
- if account.CipherType == shadowsocks.CipherType_UNKNOWN {
- return nil, newError("unknown cipher method: ", server.Cipher)
- }
- account.IvCheck = server.IVCheck
- ss := &protocol.ServerEndpoint{
- Address: server.Address.Build(),
- Port: uint32(server.Port),
- User: []*protocol.User{
- {
- Level: uint32(server.Level),
- Email: server.Email,
- Account: serial.ToTypedMessage(account),
- },
- },
- }
- serverSpecs[idx] = ss
- }
- config.Server = serverSpecs
- return config, nil
- }
|