mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
43 lines
979 B
Go
43 lines
979 B
Go
package vmess
|
|
|
|
import (
|
|
"v2ray.com/core/common/dice"
|
|
"v2ray.com/core/common/protocol"
|
|
"v2ray.com/core/common/uuid"
|
|
)
|
|
|
|
type InternalAccount struct {
|
|
ID *protocol.ID
|
|
AlterIDs []*protocol.ID
|
|
Security protocol.SecurityType
|
|
}
|
|
|
|
func (a *InternalAccount) AnyValidID() *protocol.ID {
|
|
if len(a.AlterIDs) == 0 {
|
|
return a.ID
|
|
}
|
|
return a.AlterIDs[dice.Roll(len(a.AlterIDs))]
|
|
}
|
|
|
|
func (a *InternalAccount) Equals(account protocol.Account) bool {
|
|
vmessAccount, ok := account.(*InternalAccount)
|
|
if !ok {
|
|
return false
|
|
}
|
|
// TODO: handle AlterIds difference
|
|
return a.ID.Equals(vmessAccount.ID)
|
|
}
|
|
|
|
func (a *Account) AsAccount() (protocol.Account, error) {
|
|
id, err := uuid.ParseString(a.Id)
|
|
if err != nil {
|
|
return nil, newError("failed to parse ID").Base(err).AtError()
|
|
}
|
|
protoID := protocol.NewID(id)
|
|
return &InternalAccount{
|
|
ID: protoID,
|
|
AlterIDs: protocol.NewAlterIDs(protoID, uint16(a.AlterId)),
|
|
Security: a.SecuritySettings.GetSecurityType(),
|
|
}, nil
|
|
}
|