2016-09-17 18:41:21 -04:00
|
|
|
package vmess
|
|
|
|
|
|
|
|
import (
|
2017-02-02 18:14:43 -05:00
|
|
|
"v2ray.com/core/common/dice"
|
2016-09-17 18:41:21 -04:00
|
|
|
"v2ray.com/core/common/protocol"
|
|
|
|
"v2ray.com/core/common/uuid"
|
|
|
|
)
|
|
|
|
|
2020-06-26 09:27:23 -04:00
|
|
|
// MemoryAccount is an in-memory form of VMess account.
|
2018-10-18 03:25:58 -04:00
|
|
|
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 18:41:21 -04:00
|
|
|
AlterIDs []*protocol.ID
|
2018-10-18 03:25:58 -04:00
|
|
|
// Security type of the account. Used for client connections.
|
2018-02-23 06:13:02 -05:00
|
|
|
Security protocol.SecurityType
|
2016-09-17 18:41:21 -04:00
|
|
|
}
|
|
|
|
|
2018-10-18 03:25:58 -04: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 17:27:49 -04:00
|
|
|
if len(a.AlterIDs) == 0 {
|
|
|
|
return a.ID
|
2016-09-17 18:41:21 -04:00
|
|
|
}
|
2017-09-19 17:27:49 -04:00
|
|
|
return a.AlterIDs[dice.Roll(len(a.AlterIDs))]
|
2016-09-17 18:41:21 -04:00
|
|
|
}
|
|
|
|
|
2018-10-18 03:25:58 -04:00
|
|
|
// Equals implements protocol.Account.
|
|
|
|
func (a *MemoryAccount) Equals(account protocol.Account) bool {
|
|
|
|
vmessAccount, ok := account.(*MemoryAccount)
|
2016-09-17 18:41:21 -04:00
|
|
|
if !ok {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
// TODO: handle AlterIds difference
|
2017-09-19 17:27:49 -04:00
|
|
|
return a.ID.Equals(vmessAccount.ID)
|
2016-09-17 18:41:21 -04:00
|
|
|
}
|
|
|
|
|
2018-10-18 03:25:58 -04:00
|
|
|
// AsAccount implements protocol.Account.
|
2017-09-19 17:27:49 -04:00
|
|
|
func (a *Account) AsAccount() (protocol.Account, error) {
|
|
|
|
id, err := uuid.ParseString(a.Id)
|
2016-09-17 18:41:21 -04:00
|
|
|
if err != nil {
|
2018-01-18 05:35:04 -05:00
|
|
|
return nil, newError("failed to parse ID").Base(err).AtError()
|
2016-09-17 18:41:21 -04:00
|
|
|
}
|
2016-12-27 15:34:14 -05:00
|
|
|
protoID := protocol.NewID(id)
|
2018-10-18 03:25:58 -04:00
|
|
|
return &MemoryAccount{
|
2020-09-08 12:02:53 -04:00
|
|
|
ID: protoID,
|
|
|
|
AlterIDs: protocol.NewAlterIDs(protoID, uint16(a.AlterId)),
|
|
|
|
Security: a.SecuritySettings.GetSecurityType(),
|
2016-09-17 18:41:21 -04:00
|
|
|
}, nil
|
|
|
|
}
|