miniflux-v2/model/user.go

93 lines
2.3 KiB
Go
Raw Normal View History

2017-11-20 06:10:04 +01:00
// Copyright 2017 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
package model
import (
"errors"
"time"
"github.com/miniflux/miniflux/timezone"
2017-11-20 06:10:04 +01:00
)
// User represents a user in the system.
type User struct {
2017-12-03 02:04:01 +01:00
ID int64 `json:"id"`
Username string `json:"username"`
Password string `json:"password,omitempty"`
2017-12-29 22:53:02 +01:00
IsAdmin bool `json:"is_admin"`
Theme string `json:"theme"`
Language string `json:"language"`
Timezone string `json:"timezone"`
EntryDirection string `json:"entry_sorting_direction"`
2017-12-03 02:04:01 +01:00
LastLoginAt *time.Time `json:"last_login_at,omitempty"`
2017-12-29 22:53:02 +01:00
Extra map[string]string `json:"extra"`
2017-11-23 07:22:33 +01:00
}
// NewUser returns a new User.
func NewUser() *User {
return &User{Extra: make(map[string]string)}
2017-11-20 06:10:04 +01:00
}
2017-11-25 21:44:32 +01:00
// ValidateUserCreation validates new user.
2017-11-20 06:10:04 +01:00
func (u User) ValidateUserCreation() error {
if err := u.ValidateUserLogin(); err != nil {
return err
}
2017-11-28 06:30:04 +01:00
return u.ValidatePassword()
2017-11-20 06:10:04 +01:00
}
2017-12-25 03:04:34 +01:00
// ValidateUserModification validates user modification payload.
2017-11-20 06:10:04 +01:00
func (u User) ValidateUserModification() error {
2017-12-25 03:04:34 +01:00
if u.Theme != "" {
return ValidateTheme(u.Theme)
2017-11-26 04:06:02 +01:00
}
2017-12-25 03:04:34 +01:00
if u.Password != "" {
return u.ValidatePassword()
2017-11-20 06:10:04 +01:00
}
2017-12-25 03:04:34 +01:00
return nil
2017-11-20 06:10:04 +01:00
}
2017-11-25 21:44:32 +01:00
// ValidateUserLogin validates user credential requirements.
2017-11-20 06:10:04 +01:00
func (u User) ValidateUserLogin() error {
if u.Username == "" {
return errors.New("The username is mandatory")
}
if u.Password == "" {
return errors.New("The password is mandatory")
}
return nil
}
2017-11-25 21:44:32 +01:00
// ValidatePassword validates user password requirements.
2017-11-20 06:10:04 +01:00
func (u User) ValidatePassword() error {
if u.Password != "" && len(u.Password) < 6 {
return errors.New("The password must have at least 6 characters")
}
return nil
}
// UseTimezone converts last login date to the given timezone.
func (u *User) UseTimezone(tz string) {
if u.LastLoginAt != nil {
*u.LastLoginAt = timezone.Convert(tz, *u.LastLoginAt)
}
}
2017-11-20 06:10:04 +01:00
// Users represents a list of users.
type Users []*User
// UseTimezone converts last login timestamp of all users to the given timezone.
func (u Users) UseTimezone(tz string) {
for _, user := range u {
user.UseTimezone(tz)
}
}