v2ray-core/proxy/vmess/account.go

43 lines
979 B
Go
Raw Normal View History

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"
)
2016-10-12 16:43:55 +00:00
type InternalAccount struct {
2016-09-17 22:41:21 +00:00
ID *protocol.ID
AlterIDs []*protocol.ID
Security protocol.SecurityType
2016-09-17 22:41:21 +00:00
}
2017-09-19 21:27:49 +00:00
func (a *InternalAccount) AnyValidID() *protocol.ID {
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
}
2017-09-19 21:27:49 +00:00
func (a *InternalAccount) Equals(account protocol.Account) bool {
2016-10-12 16:43:55 +00:00
vmessAccount, ok := account.(*InternalAccount)
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
}
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)
2016-10-12 16:43:55 +00:00
return &InternalAccount{
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
}