mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-17 09:56:18 -05:00
76 lines
1.8 KiB
Go
76 lines
1.8 KiB
Go
package vmess
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net"
|
|
|
|
"github.com/v2ray/v2ray-core/common/log"
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
|
"github.com/v2ray/v2ray-core/proxy/vmess/protocol/user"
|
|
)
|
|
|
|
// VMessUser is an authenticated user account in VMess configuration.
|
|
type VMessUser struct {
|
|
Id string `json:"id"`
|
|
Email string `json:"email"`
|
|
}
|
|
|
|
func (u *VMessUser) ToUser() (user.User, error) {
|
|
id, err := user.NewID(u.Id)
|
|
return user.User{
|
|
Id: id,
|
|
}, err
|
|
}
|
|
|
|
// VMessInboundConfig is
|
|
type VMessInboundConfig struct {
|
|
AllowedClients []VMessUser `json:"clients"`
|
|
}
|
|
|
|
func loadInboundConfig(rawConfig []byte) (VMessInboundConfig, error) {
|
|
config := VMessInboundConfig{}
|
|
err := json.Unmarshal(rawConfig, &config)
|
|
return config, err
|
|
}
|
|
|
|
type VNextConfig struct {
|
|
Address string `json:"address"`
|
|
Port uint16 `json:"port"`
|
|
Users []VMessUser `json:"users"`
|
|
Network string `json:"network"`
|
|
}
|
|
|
|
func (config VNextConfig) ToVNextServer() VNextServer {
|
|
users := make([]user.User, 0, len(config.Users))
|
|
for _, user := range config.Users {
|
|
vuser, err := user.ToUser()
|
|
if err != nil {
|
|
panic(log.Error("Failed to convert %v to User.", user))
|
|
}
|
|
users = append(users, vuser)
|
|
}
|
|
ip := net.ParseIP(config.Address)
|
|
if ip == nil {
|
|
panic(log.Error("Unable to parse VNext IP: %s", config.Address))
|
|
}
|
|
address := v2net.IPAddress(ip, config.Port)
|
|
dest := v2net.NewTCPDestination(address)
|
|
if config.Network == "udp" {
|
|
dest = v2net.NewUDPDestination(address)
|
|
}
|
|
return VNextServer{
|
|
Destination: dest,
|
|
Users: users,
|
|
}
|
|
}
|
|
|
|
type VMessOutboundConfig struct {
|
|
VNextList []VNextConfig `json:"vnext"`
|
|
}
|
|
|
|
func loadOutboundConfig(rawConfig []byte) (VMessOutboundConfig, error) {
|
|
config := VMessOutboundConfig{}
|
|
err := json.Unmarshal(rawConfig, &config)
|
|
return config, err
|
|
}
|