2016-02-03 10:58:42 +00:00
|
|
|
package protocol
|
2015-10-16 10:03:22 +00:00
|
|
|
|
2016-01-20 16:31:43 +00:00
|
|
|
type UserLevel byte
|
2015-10-30 23:38:31 +00:00
|
|
|
|
|
|
|
const (
|
2016-01-20 16:31:43 +00:00
|
|
|
UserLevelAdmin = UserLevel(255)
|
2015-10-31 13:08:13 +00:00
|
|
|
UserLevelUntrusted = UserLevel(0)
|
2015-10-30 23:38:31 +00:00
|
|
|
)
|
|
|
|
|
2016-01-15 11:43:06 +00:00
|
|
|
type User struct {
|
2016-05-28 11:44:11 +00:00
|
|
|
Account Account
|
|
|
|
Level UserLevel
|
|
|
|
Email string
|
2016-01-15 11:43:06 +00:00
|
|
|
}
|
|
|
|
|
2016-05-28 11:44:11 +00:00
|
|
|
func NewUser(account Account, level UserLevel, email string) *User {
|
2016-05-07 19:07:46 +00:00
|
|
|
return &User{
|
2016-05-28 11:44:11 +00:00
|
|
|
Account: account,
|
|
|
|
Level: level,
|
|
|
|
Email: email,
|
2016-01-15 11:43:06 +00:00
|
|
|
}
|
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
|
|
|
}
|