miniflux-v2/ui/form/settings.go

71 lines
1.8 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.
2018-08-25 06:51:50 +02:00
package form // import "miniflux.app/ui/form"
2017-11-20 06:10:04 +01:00
import (
"net/http"
2017-11-28 06:30:04 +01:00
2018-08-25 06:51:50 +02:00
"miniflux.app/errors"
"miniflux.app/model"
2017-11-20 06:10:04 +01:00
)
2017-11-28 06:30:04 +01:00
// SettingsForm represents the settings form.
2017-11-20 06:10:04 +01:00
type SettingsForm struct {
2017-12-03 02:04:01 +01:00
Username string
Password string
Confirmation string
Theme string
Language string
Timezone string
EntryDirection string
2017-11-20 06:10:04 +01:00
}
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 (s *SettingsForm) Merge(user *model.User) *model.User {
user.Username = s.Username
user.Theme = s.Theme
user.Language = s.Language
user.Timezone = s.Timezone
2017-12-03 02:04:01 +01:00
user.EntryDirection = s.EntryDirection
2017-11-20 06:10:04 +01:00
if s.Password != "" {
user.Password = s.Password
}
return user
}
2017-11-28 06:30:04 +01:00
// Validate makes sure the form values are valid.
2017-11-20 06:10:04 +01:00
func (s *SettingsForm) Validate() error {
2017-12-03 02:04:01 +01:00
if s.Username == "" || s.Theme == "" || s.Language == "" || s.Timezone == "" || s.EntryDirection == "" {
2017-11-28 06:30:04 +01:00
return errors.NewLocalizedError("The username, theme, language and timezone fields are mandatory.")
2017-11-20 06:10:04 +01:00
}
if s.Password != "" {
if s.Password != s.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(s.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
// NewSettingsForm returns a new SettingsForm.
2017-11-20 06:10:04 +01:00
func NewSettingsForm(r *http.Request) *SettingsForm {
return &SettingsForm{
2017-12-03 02:04:01 +01:00
Username: r.FormValue("username"),
Password: r.FormValue("password"),
Confirmation: r.FormValue("confirmation"),
Theme: r.FormValue("theme"),
Language: r.FormValue("language"),
Timezone: r.FormValue("timezone"),
EntryDirection: r.FormValue("entry_direction"),
2017-11-20 06:10:04 +01:00
}
}