mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
60 lines
1.3 KiB
Go
60 lines
1.3 KiB
Go
package vmess
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/v2ray/v2ray-core"
|
|
"github.com/v2ray/v2ray-core/log"
|
|
v2net "github.com/v2ray/v2ray-core/net"
|
|
)
|
|
|
|
type VMessUser struct {
|
|
Id string `json:"id"`
|
|
Email string `json:"email"`
|
|
}
|
|
|
|
func (u *VMessUser) ToUser() (core.User, error) {
|
|
id, err := core.UUIDToID(u.Id)
|
|
return core.User{id}, err
|
|
}
|
|
|
|
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"`
|
|
}
|
|
|
|
func (config VNextConfig) ToVNextServer() VNextServer {
|
|
users := make([]core.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)
|
|
}
|
|
return VNextServer{
|
|
v2net.DomainAddress(config.Address, config.Port),
|
|
users}
|
|
}
|
|
|
|
type VMessOutboundConfig struct {
|
|
VNextList []VNextConfig `json:"vnext"`
|
|
}
|
|
|
|
func loadOutboundConfig(rawConfig []byte) (VMessOutboundConfig, error) {
|
|
config := VMessOutboundConfig{}
|
|
err := json.Unmarshal(rawConfig, &config)
|
|
return config, err
|
|
}
|