miniflux-v2/server/ui/form/user.go

88 lines
2.0 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 form
import (
"net/http"
2017-11-28 06:30:04 +01:00
"github.com/miniflux/miniflux2/errors"
"github.com/miniflux/miniflux2/model"
2017-11-20 06:10:04 +01:00
)
2017-11-28 06:30:04 +01:00
// UserForm represents the user form.
2017-11-20 06:10:04 +01:00
type UserForm struct {
Username string
Password string
Confirmation string
IsAdmin bool
}
2017-11-28 06:30:04 +01:00
// ValidateCreation validates user creation.
2017-11-20 06:10:04 +01:00
func (u UserForm) ValidateCreation() error {
if u.Username == "" || u.Password == "" || u.Confirmation == "" {
2017-11-28 06:30:04 +01:00
return errors.NewLocalizedError("All fields are mandatory.")
2017-11-20 06:10:04 +01:00
}
if u.Password != u.Confirmation {
2017-11-28 06:30:04 +01:00
return errors.NewLocalizedError("Passwords are not the same.")
2017-11-20 06:10:04 +01:00
}
if len(u.Password) < 6 {
2017-11-28 06:30:04 +01:00
return errors.NewLocalizedError("You must use at least 6 characters.")
2017-11-20 06:10:04 +01:00
}
return nil
}
2017-11-28 06:30:04 +01:00
// ValidateModification validates user modification.
2017-11-20 06:10:04 +01:00
func (u UserForm) ValidateModification() error {
if u.Username == "" {
2017-11-28 06:30:04 +01:00
return errors.NewLocalizedError("The username is mandatory.")
2017-11-20 06:10:04 +01:00
}
if u.Password != "" {
if u.Password != u.Confirmation {
2017-11-28 06:30:04 +01:00
return errors.NewLocalizedError("Passwords are not the same.")
2017-11-20 06:10:04 +01:00
}
if len(u.Password) < 6 {
2017-11-28 06:30:04 +01:00
return errors.NewLocalizedError("You must use at least 6 characters.")
2017-11-20 06:10:04 +01:00
}
}
return nil
}
2017-11-28 06:30:04 +01:00
// ToUser returns a User from the form values.
2017-11-20 06:10:04 +01:00
func (u UserForm) ToUser() *model.User {
return &model.User{
Username: u.Username,
Password: u.Password,
IsAdmin: u.IsAdmin,
}
}
2017-11-28 06:30:04 +01:00
// Merge updates the fields of the given user.
2017-11-20 06:10:04 +01:00
func (u UserForm) Merge(user *model.User) *model.User {
user.Username = u.Username
user.IsAdmin = u.IsAdmin
if u.Password != "" {
user.Password = u.Password
}
return user
}
2017-11-28 06:30:04 +01:00
// NewUserForm returns a new UserForm.
2017-11-20 06:10:04 +01:00
func NewUserForm(r *http.Request) *UserForm {
return &UserForm{
Username: r.FormValue("username"),
Password: r.FormValue("password"),
Confirmation: r.FormValue("confirmation"),
IsAdmin: r.FormValue("is_admin") == "1",
}
}