2020-11-25 13:01:53 +02:00
|
|
|
package http
|
|
|
|
|
|
|
|
import (
|
2024-11-03 06:25:23 +02:00
|
|
|
"google.golang.org/protobuf/proto"
|
|
|
|
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/common/protocol"
|
2020-11-25 13:01:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func (a *Account) Equals(another protocol.Account) bool {
|
|
|
|
if account, ok := another.(*Account); ok {
|
|
|
|
return a.Username == account.Username
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2024-11-03 06:25:23 +02:00
|
|
|
func (a *Account) ToProto() proto.Message {
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
|
2020-11-25 13:01:53 +02:00
|
|
|
func (a *Account) AsAccount() (protocol.Account, error) {
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sc *ServerConfig) HasAccount(username, password string) bool {
|
|
|
|
if sc.Accounts == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
p, found := sc.Accounts[username]
|
|
|
|
if !found {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return p == password
|
|
|
|
}
|