You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
v2ray-core/common/protocol/user.go

60 lines
1.0 KiB

package protocol
import (
9 years ago
"github.com/v2ray/v2ray-core/common/dice"
)
type UserLevel byte
const (
UserLevelAdmin = UserLevel(255)
9 years ago
UserLevelUntrusted = UserLevel(0)
)
type User struct {
ID *ID
AlterIDs []*ID
Level UserLevel
Email string
}
func NewUser(id *ID, level UserLevel, alterIdCount uint16, email string) *User {
u := &User{
ID: id,
Level: level,
Email: email,
}
if alterIdCount > 0 {
u.AlterIDs = make([]*ID, alterIdCount)
prevId := id.UUID()
9 years ago
for idx := range u.AlterIDs {
newid := prevId.Next()
// TODO: check duplicate
u.AlterIDs[idx] = NewID(newid)
prevId = newid
}
}
return u
}
func (this *User) AnyValidID() *ID {
if len(this.AlterIDs) == 0 {
return this.ID
}
9 years ago
return this.AlterIDs[dice.Roll(len(this.AlterIDs))]
}
type UserSettings struct {
9 years ago
PayloadReadTimeout int
}
func GetUserSettings(level UserLevel) UserSettings {
9 years ago
settings := UserSettings{
PayloadReadTimeout: 120,
}
if level > 0 {
settings.PayloadReadTimeout = 0
}
return settings
}