v2ray-core/common/protocol/user.go

50 lines
830 B
Go
Raw Normal View History

package protocol
2015-10-16 10:03:22 +00:00
import (
2016-01-21 21:45:44 +00:00
"github.com/v2ray/v2ray-core/common/dice"
)
type UserLevel byte
2015-10-30 23:38:31 +00:00
const (
UserLevelAdmin = UserLevel(255)
2015-10-31 13:08:13 +00:00
UserLevelUntrusted = UserLevel(0)
2015-10-30 23:38:31 +00:00
)
type User struct {
ID *ID
AlterIDs []*ID
Level UserLevel
2016-02-25 13:38:41 +00:00
Email string
}
2016-05-07 19:07:46 +00:00
func NewUser(primary *ID, secondary []*ID, level UserLevel, email string) *User {
return &User{
ID: primary,
AlterIDs: secondary,
Level: level,
Email: email,
}
}
func (this *User) AnyValidID() *ID {
if len(this.AlterIDs) == 0 {
return this.ID
}
2016-01-21 21:45:44 +00:00
return this.AlterIDs[dice.Roll(len(this.AlterIDs))]
2015-12-12 23:10:35 +00:00
}
2015-10-30 23:38:31 +00:00
type UserSettings struct {
2015-10-31 13:08:13 +00:00
PayloadReadTimeout int
2015-10-30 23:38:31 +00:00
}
func GetUserSettings(level UserLevel) UserSettings {
2015-10-31 13:08:13 +00:00
settings := UserSettings{
PayloadReadTimeout: 120,
}
if level > 0 {
settings.PayloadReadTimeout = 0
}
return settings
2015-10-16 10:03:22 +00:00
}