mirror of
https://github.com/miniflux/v2.git
synced 2025-08-01 17:38:37 +00:00
Refactor user validation
Validate each user field for creation/modification via API and web UI
This commit is contained in:
parent
291bf96d15
commit
e45cc2d2aa
40 changed files with 567 additions and 400 deletions
126
validator/user.go
Normal file
126
validator/user.go
Normal file
|
@ -0,0 +1,126 @@
|
|||
// Copyright 2021 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 validator // import "miniflux.app/validator"
|
||||
|
||||
import (
|
||||
"miniflux.app/locale"
|
||||
"miniflux.app/model"
|
||||
"miniflux.app/storage"
|
||||
)
|
||||
|
||||
// ValidateUserCreationWithPassword validates user creation with a password.
|
||||
func ValidateUserCreationWithPassword(store *storage.Storage, request *model.UserCreationRequest) *ValidationError {
|
||||
if request.Username == "" {
|
||||
return NewValidationError("error.user_mandatory_fields")
|
||||
}
|
||||
|
||||
if store.UserExists(request.Username) {
|
||||
return NewValidationError("error.user_already_exists")
|
||||
}
|
||||
|
||||
if err := validatePassword(request.Password); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// ValidateUserModification validates user modifications.
|
||||
func ValidateUserModification(store *storage.Storage, userID int64, changes *model.UserModificationRequest) *ValidationError {
|
||||
if changes.Username != nil {
|
||||
if *changes.Username == "" {
|
||||
return NewValidationError("error.user_mandatory_fields")
|
||||
} else if store.AnotherUserExists(userID, *changes.Username) {
|
||||
return NewValidationError("error.user_already_exists")
|
||||
}
|
||||
}
|
||||
|
||||
if changes.Password != nil {
|
||||
if err := validatePassword(*changes.Password); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
if changes.Theme != nil {
|
||||
if err := validateTheme(*changes.Theme); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
if changes.Language != nil {
|
||||
if err := validateLanguage(*changes.Language); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
if changes.Timezone != nil {
|
||||
if err := validateTimezone(store, *changes.Timezone); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
if changes.EntryDirection != nil {
|
||||
if err := validateEntryDirection(*changes.EntryDirection); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
if changes.EntriesPerPage != nil {
|
||||
if err := validateEntriesPerPage(*changes.EntriesPerPage); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func validatePassword(password string) *ValidationError {
|
||||
if len(password) < 6 {
|
||||
return NewValidationError("error.password_min_length")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func validateTheme(theme string) *ValidationError {
|
||||
themes := model.Themes()
|
||||
if _, found := themes[theme]; !found {
|
||||
return NewValidationError("error.invalid_theme")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func validateLanguage(language string) *ValidationError {
|
||||
languages := locale.AvailableLanguages()
|
||||
if _, found := languages[language]; !found {
|
||||
return NewValidationError("error.invalid_language")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func validateTimezone(store *storage.Storage, timezone string) *ValidationError {
|
||||
timezones, err := store.Timezones()
|
||||
if err != nil {
|
||||
return NewValidationError(err.Error())
|
||||
}
|
||||
|
||||
if _, found := timezones[timezone]; !found {
|
||||
return NewValidationError("error.invalid_timezone")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func validateEntryDirection(direction string) *ValidationError {
|
||||
if direction != "asc" && direction != "desc" {
|
||||
return NewValidationError("error.invalid_entry_direction")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func validateEntriesPerPage(entriesPerPage int) *ValidationError {
|
||||
if entriesPerPage < 1 {
|
||||
return NewValidationError("error.entries_per_page_invalid")
|
||||
}
|
||||
return nil
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue