2023-06-19 23:42:47 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
package form // import "miniflux.app/v2/internal/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
|
|
|
|
2023-10-22 04:50:29 +02:00
|
|
|
"miniflux.app/v2/internal/locale"
|
2023-08-11 04:46:45 +02:00
|
|
|
"miniflux.app/v2/internal/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 {
|
2022-10-26 05:00:56 +02:00
|
|
|
Username string
|
|
|
|
Password string
|
|
|
|
Confirmation string
|
|
|
|
Theme string
|
|
|
|
Language string
|
|
|
|
Timezone string
|
|
|
|
EntryDirection string
|
|
|
|
EntryOrder string
|
|
|
|
EntriesPerPage int
|
|
|
|
KeyboardShortcuts bool
|
|
|
|
ShowReadingTime bool
|
|
|
|
CustomCSS string
|
|
|
|
EntrySwipe bool
|
2022-09-30 07:37:57 +02:00
|
|
|
GestureNav string
|
2022-10-26 05:00:56 +02:00
|
|
|
DisplayMode string
|
|
|
|
DefaultReadingSpeed int
|
|
|
|
CJKReadingSpeed int
|
|
|
|
DefaultHomePage string
|
|
|
|
CategoriesSortingOrder string
|
2023-03-17 14:56:17 +01:00
|
|
|
MarkReadOnView bool
|
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
|
2021-05-14 13:51:51 +02:00
|
|
|
user.EntryOrder = s.EntryOrder
|
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-12-22 06:14:10 +01:00
|
|
|
user.Stylesheet = s.CustomCSS
|
|
|
|
user.EntrySwipe = s.EntrySwipe
|
2022-09-30 07:37:57 +02:00
|
|
|
user.GestureNav = s.GestureNav
|
2021-02-28 22:29:51 +01:00
|
|
|
user.DisplayMode = s.DisplayMode
|
2021-08-30 16:53:05 +02:00
|
|
|
user.CJKReadingSpeed = s.CJKReadingSpeed
|
|
|
|
user.DefaultReadingSpeed = s.DefaultReadingSpeed
|
2022-07-20 22:07:55 +02:00
|
|
|
user.DefaultHomePage = s.DefaultHomePage
|
2022-10-26 05:00:56 +02:00
|
|
|
user.CategoriesSortingOrder = s.CategoriesSortingOrder
|
2023-03-17 14:56:17 +01:00
|
|
|
user.MarkReadOnView = s.MarkReadOnView
|
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.
|
2023-10-22 04:50:29 +02:00
|
|
|
func (s *SettingsForm) Validate() *locale.LocalizedError {
|
2022-07-20 22:07:55 +02:00
|
|
|
if s.Username == "" || s.Theme == "" || s.Language == "" || s.Timezone == "" || s.EntryDirection == "" || s.DisplayMode == "" || s.DefaultHomePage == "" {
|
2023-10-22 04:50:29 +02:00
|
|
|
return locale.NewLocalizedError("error.settings_mandatory_fields")
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2021-08-30 16:53:05 +02:00
|
|
|
if s.CJKReadingSpeed <= 0 || s.DefaultReadingSpeed <= 0 {
|
2023-10-22 04:50:29 +02:00
|
|
|
return locale.NewLocalizedError("error.settings_reading_speed_is_positive")
|
2021-08-30 16:53:05 +02:00
|
|
|
}
|
|
|
|
|
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 {
|
2023-10-22 04:50:29 +02:00
|
|
|
return locale.NewLocalizedError("error.different_passwords")
|
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 {
|
2022-01-20 06:18:12 +01:00
|
|
|
entriesPerPage, err := strconv.ParseInt(r.FormValue("entries_per_page"), 10, 0)
|
2020-07-09 01:24:54 +02:00
|
|
|
if err != nil {
|
|
|
|
entriesPerPage = 0
|
|
|
|
}
|
2021-08-30 16:53:05 +02:00
|
|
|
defaultReadingSpeed, err := strconv.ParseInt(r.FormValue("default_reading_speed"), 10, 0)
|
|
|
|
if err != nil {
|
|
|
|
defaultReadingSpeed = 0
|
|
|
|
}
|
|
|
|
cjkReadingSpeed, err := strconv.ParseInt(r.FormValue("cjk_reading_speed"), 10, 0)
|
|
|
|
if err != nil {
|
|
|
|
cjkReadingSpeed = 0
|
|
|
|
}
|
2017-11-20 06:10:04 +01:00
|
|
|
return &SettingsForm{
|
2022-10-26 05:00:56 +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"),
|
|
|
|
EntryOrder: r.FormValue("entry_order"),
|
|
|
|
EntriesPerPage: int(entriesPerPage),
|
|
|
|
KeyboardShortcuts: r.FormValue("keyboard_shortcuts") == "1",
|
|
|
|
ShowReadingTime: r.FormValue("show_reading_time") == "1",
|
|
|
|
CustomCSS: r.FormValue("custom_css"),
|
|
|
|
EntrySwipe: r.FormValue("entry_swipe") == "1",
|
2022-09-30 07:37:57 +02:00
|
|
|
GestureNav: r.FormValue("gesture_nav"),
|
2022-10-26 05:00:56 +02:00
|
|
|
DisplayMode: r.FormValue("display_mode"),
|
|
|
|
DefaultReadingSpeed: int(defaultReadingSpeed),
|
|
|
|
CJKReadingSpeed: int(cjkReadingSpeed),
|
|
|
|
DefaultHomePage: r.FormValue("default_home_page"),
|
|
|
|
CategoriesSortingOrder: r.FormValue("categories_sorting_order"),
|
2023-03-17 14:56:17 +01:00
|
|
|
MarkReadOnView: r.FormValue("mark_read_on_view") == "1",
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
}
|