mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-13 18:43:01 +00:00
85a1c33709
* Add GetInboundUser in proto * Add get user logic for all existing inbounds * Add inbounduser command * Add option to get all users * Fix shadowsocks2022 config * Fix init users in shadowsocks2022 * Fix copy * Add inbound user count command This api costs much less than get inbound user, could be useful in some case * Update from latest main
68 lines
1.8 KiB
Go
68 lines
1.8 KiB
Go
package vmess
|
|
|
|
import (
|
|
"google.golang.org/protobuf/proto"
|
|
"strings"
|
|
|
|
"github.com/xtls/xray-core/common/errors"
|
|
"github.com/xtls/xray-core/common/protocol"
|
|
"github.com/xtls/xray-core/common/uuid"
|
|
)
|
|
|
|
// MemoryAccount is an in-memory form of VMess account.
|
|
type MemoryAccount struct {
|
|
// ID is the main ID of the account.
|
|
ID *protocol.ID
|
|
// Security type of the account. Used for client connections.
|
|
Security protocol.SecurityType
|
|
|
|
AuthenticatedLengthExperiment bool
|
|
NoTerminationSignal bool
|
|
}
|
|
|
|
// Equals implements protocol.Account.
|
|
func (a *MemoryAccount) Equals(account protocol.Account) bool {
|
|
vmessAccount, ok := account.(*MemoryAccount)
|
|
if !ok {
|
|
return false
|
|
}
|
|
return a.ID.Equals(vmessAccount.ID)
|
|
}
|
|
|
|
func (a *MemoryAccount) ToProto() proto.Message {
|
|
var test = ""
|
|
if a.AuthenticatedLengthExperiment {
|
|
test = "AuthenticatedLength|"
|
|
}
|
|
if a.NoTerminationSignal {
|
|
test = test + "NoTerminationSignal"
|
|
}
|
|
return &Account{
|
|
Id: a.ID.String(),
|
|
TestsEnabled: test,
|
|
SecuritySettings: &protocol.SecurityConfig{Type: a.Security},
|
|
}
|
|
}
|
|
|
|
// AsAccount implements protocol.Account.
|
|
func (a *Account) AsAccount() (protocol.Account, error) {
|
|
id, err := uuid.ParseString(a.Id)
|
|
if err != nil {
|
|
return nil, errors.New("failed to parse ID").Base(err).AtError()
|
|
}
|
|
protoID := protocol.NewID(id)
|
|
var AuthenticatedLength, NoTerminationSignal bool
|
|
if strings.Contains(a.TestsEnabled, "AuthenticatedLength") {
|
|
AuthenticatedLength = true
|
|
}
|
|
if strings.Contains(a.TestsEnabled, "NoTerminationSignal") {
|
|
NoTerminationSignal = true
|
|
}
|
|
return &MemoryAccount{
|
|
ID: protoID,
|
|
Security: a.SecuritySettings.GetSecurityType(),
|
|
AuthenticatedLengthExperiment: AuthenticatedLength,
|
|
NoTerminationSignal: NoTerminationSignal,
|
|
}, nil
|
|
}
|