miniflux-v2/model/user.go

104 lines
2.6 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"
)
// 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"`
IsAdmin bool `json:"is_admin,omitempty"`
Theme string `json:"theme,omitempty"`
Language string `json:"language,omitempty"`
Timezone string `json:"timezone,omitempty"`
EntryDirection string `json:"entry_sorting_direction,omitempty"`
LastLoginAt *time.Time `json:"last_login_at,omitempty"`
Extra map[string]string `json:"-"`
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
}
// Merge update the current user with another user.
func (u *User) Merge(override *User) {
2017-12-25 03:04:34 +01:00
if override.Username != "" && u.Username != override.Username {
2017-11-20 06:10:04 +01:00
u.Username = override.Username
}
2017-12-25 03:04:34 +01:00
if override.Password != "" && u.Password != override.Password {
2017-11-20 06:10:04 +01:00
u.Password = override.Password
}
if u.IsAdmin != override.IsAdmin {
u.IsAdmin = override.IsAdmin
}
2017-12-25 03:04:34 +01:00
if override.Theme != "" && u.Theme != override.Theme {
2017-11-20 06:10:04 +01:00
u.Theme = override.Theme
}
2017-12-25 03:04:34 +01:00
if override.Language != "" && u.Language != override.Language {
2017-11-20 06:10:04 +01:00
u.Language = override.Language
}
2017-12-25 03:04:34 +01:00
if override.Timezone != "" && u.Timezone != override.Timezone {
2017-11-20 06:10:04 +01:00
u.Timezone = override.Timezone
}
}
// Users represents a list of users.
type Users []*User