1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 19:45:24 +00:00
v2fly/proxy/vmess/account.go

52 lines
1.3 KiB
Go
Raw Normal View History

2019-02-02 21:19:40 +00:00
// +build !confonly
2016-09-17 22:41:21 +00:00
package vmess
import (
2017-02-02 23:14:43 +00:00
"v2ray.com/core/common/dice"
2016-09-17 22:41:21 +00:00
"v2ray.com/core/common/protocol"
"v2ray.com/core/common/uuid"
)
2018-10-18 07:25:58 +00:00
// MemoryAccount is an in-memory from of VMess account.
type MemoryAccount struct {
// ID is the main ID of the account.
ID *protocol.ID
// AlterIDs are the alternative IDs of the account.
2016-09-17 22:41:21 +00:00
AlterIDs []*protocol.ID
2018-10-18 07:25:58 +00:00
// Security type of the account. Used for client connections.
Security protocol.SecurityType
2016-09-17 22:41:21 +00:00
}
2018-10-18 07:25:58 +00:00
// AnyValidID returns an ID that is either the main ID or one of the alternative IDs if any.
func (a *MemoryAccount) AnyValidID() *protocol.ID {
2017-09-19 21:27:49 +00:00
if len(a.AlterIDs) == 0 {
return a.ID
2016-09-17 22:41:21 +00:00
}
2017-09-19 21:27:49 +00:00
return a.AlterIDs[dice.Roll(len(a.AlterIDs))]
2016-09-17 22:41:21 +00:00
}
2018-10-18 07:25:58 +00:00
// Equals implements protocol.Account.
func (a *MemoryAccount) Equals(account protocol.Account) bool {
vmessAccount, ok := account.(*MemoryAccount)
2016-09-17 22:41:21 +00:00
if !ok {
return false
}
// TODO: handle AlterIds difference
2017-09-19 21:27:49 +00:00
return a.ID.Equals(vmessAccount.ID)
2016-09-17 22:41:21 +00:00
}
2018-10-18 07:25:58 +00:00
// AsAccount implements protocol.Account.
2017-09-19 21:27:49 +00:00
func (a *Account) AsAccount() (protocol.Account, error) {
id, err := uuid.ParseString(a.Id)
2016-09-17 22:41:21 +00:00
if err != nil {
2018-01-18 10:35:04 +00:00
return nil, newError("failed to parse ID").Base(err).AtError()
2016-09-17 22:41:21 +00:00
}
2016-12-27 20:34:14 +00:00
protoID := protocol.NewID(id)
2018-10-18 07:25:58 +00:00
return &MemoryAccount{
2016-12-27 20:34:14 +00:00
ID: protoID,
2017-09-19 21:27:49 +00:00
AlterIDs: protocol.NewAlterIDs(protoID, uint16(a.AlterId)),
Security: a.SecuritySettings.GetSecurityType(),
2016-09-17 22:41:21 +00:00
}, nil
}