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"
|
2020-07-09 01:24:54 +02:00
|
|
|
"strconv"
|
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 {
|
2019-04-29 03:20:46 +02:00
|
|
|
Username string
|
|
|
|
Password string
|
|
|
|
Confirmation string
|
|
|
|
Theme string
|
|
|
|
Language string
|
|
|
|
Timezone string
|
|
|
|
EntryDirection string
|
2020-07-09 01:24:54 +02:00
|
|
|
EntriesPerPage int
|
2019-04-29 03:20:46 +02:00
|
|
|
KeyboardShortcuts bool
|
2020-07-17 04:46:24 +02:00
|
|
|
ShowReadingTime bool
|
2020-03-31 01:54:02 +02:00
|
|
|
CustomCSS 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
|
2020-07-09 01:24:54 +02:00
|
|
|
user.EntriesPerPage = s.EntriesPerPage
|
2019-04-29 03:20:46 +02:00
|
|
|
user.KeyboardShortcuts = s.KeyboardShortcuts
|
2020-07-17 04:46:24 +02:00
|
|
|
user.ShowReadingTime = s.ShowReadingTime
|
2020-03-31 01:54:02 +02:00
|
|
|
user.Extra["custom_css"] = s.CustomCSS
|
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 == "" {
|
2018-09-22 03:53:29 +02:00
|
|
|
return errors.NewLocalizedError("error.settings_mandatory_fields")
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2020-07-09 01:24:54 +02:00
|
|
|
if s.EntriesPerPage < 1 {
|
|
|
|
return errors.NewLocalizedError("error.entries_per_page_invalid")
|
|
|
|
}
|
|
|
|
|
2019-01-01 21:53:52 +01:00
|
|
|
if s.Confirmation == "" {
|
|
|
|
// Firefox insists on auto-completing the password field.
|
|
|
|
// If the confirmation field is blank, the user probably
|
|
|
|
// didn't intend to change their password.
|
|
|
|
s.Password = ""
|
|
|
|
} else if s.Password != "" {
|
2017-11-20 06:10:04 +01:00
|
|
|
if s.Password != s.Confirmation {
|
2018-09-22 03:53:29 +02:00
|
|
|
return errors.NewLocalizedError("error.different_passwords")
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(s.Password) < 6 {
|
2018-09-22 03:53:29 +02:00
|
|
|
return errors.NewLocalizedError("error.password_min_length")
|
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 {
|
2020-07-09 01:24:54 +02:00
|
|
|
entriesPerPage, err := strconv.ParseInt(r.FormValue("entries_per_page"), 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
entriesPerPage = 0
|
|
|
|
}
|
2017-11-20 06:10:04 +01:00
|
|
|
return &SettingsForm{
|
2019-04-29 03:20:46 +02: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"),
|
2020-07-09 01:24:54 +02:00
|
|
|
EntriesPerPage: int(entriesPerPage),
|
2019-04-29 03:20:46 +02:00
|
|
|
KeyboardShortcuts: r.FormValue("keyboard_shortcuts") == "1",
|
2020-07-17 04:46:24 +02:00
|
|
|
ShowReadingTime: r.FormValue("show_reading_time") == "1",
|
2020-03-31 01:54:02 +02:00
|
|
|
CustomCSS: r.FormValue("custom_css"),
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
}
|