2016-02-03 05:58:42 -05:00
|
|
|
package protocol
|
2015-10-16 06:03:22 -04:00
|
|
|
|
2016-01-20 11:31:43 -05:00
|
|
|
type UserLevel byte
|
2015-10-30 19:38:31 -04:00
|
|
|
|
|
|
|
const (
|
2016-01-20 11:31:43 -05:00
|
|
|
UserLevelAdmin = UserLevel(255)
|
2015-10-31 09:08:13 -04:00
|
|
|
UserLevelUntrusted = UserLevel(0)
|
2015-10-30 19:38:31 -04:00
|
|
|
)
|
|
|
|
|
2016-01-15 06:43:06 -05:00
|
|
|
type User struct {
|
2016-05-28 07:44:11 -04:00
|
|
|
Account Account
|
|
|
|
Level UserLevel
|
|
|
|
Email string
|
2016-01-15 06:43:06 -05:00
|
|
|
}
|
|
|
|
|
2016-05-28 07:44:11 -04:00
|
|
|
func NewUser(account Account, level UserLevel, email string) *User {
|
2016-05-07 15:07:46 -04:00
|
|
|
return &User{
|
2016-05-28 07:44:11 -04:00
|
|
|
Account: account,
|
|
|
|
Level: level,
|
|
|
|
Email: email,
|
2016-01-15 06:43:06 -05:00
|
|
|
}
|
2015-12-12 18:10:35 -05:00
|
|
|
}
|
|
|
|
|
2015-10-30 19:38:31 -04:00
|
|
|
type UserSettings struct {
|
2015-10-31 09:08:13 -04:00
|
|
|
PayloadReadTimeout int
|
2015-10-30 19:38:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func GetUserSettings(level UserLevel) UserSettings {
|
2015-10-31 09:08:13 -04:00
|
|
|
settings := UserSettings{
|
|
|
|
PayloadReadTimeout: 120,
|
|
|
|
}
|
|
|
|
if level > 0 {
|
|
|
|
settings.PayloadReadTimeout = 0
|
|
|
|
}
|
|
|
|
return settings
|
2015-10-16 06:03:22 -04:00
|
|
|
}
|