2020-11-25 13:01:53 +02:00
|
|
|
package vless
|
|
|
|
|
|
|
|
import (
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/common/protocol"
|
|
|
|
"github.com/xtls/xray-core/common/uuid"
|
2020-11-25 13:01:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// AsAccount implements protocol.Account.AsAccount().
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
return &MemoryAccount{
|
|
|
|
ID: protocol.NewID(id),
|
|
|
|
Flow: a.Flow, // needs parser here?
|
|
|
|
Encryption: a.Encryption, // needs parser here?
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// MemoryAccount is an in-memory form of VLess account.
|
|
|
|
type MemoryAccount struct {
|
|
|
|
// ID of the account.
|
|
|
|
ID *protocol.ID
|
|
|
|
// Flow of the account. May be "xtls-rprx-direct".
|
|
|
|
Flow string
|
|
|
|
// Encryption of the account. Used for client connections, and only accepts "none" for now.
|
|
|
|
Encryption string
|
|
|
|
}
|
|
|
|
|
|
|
|
// Equals implements protocol.Account.Equals().
|
|
|
|
func (a *MemoryAccount) Equals(account protocol.Account) bool {
|
|
|
|
vlessAccount, ok := account.(*MemoryAccount)
|
|
|
|
if !ok {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return a.ID.Equals(vlessAccount.ID)
|
|
|
|
}
|