| 12345678910111213141516171819202122232425262728293031323334 |
- // SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
- // SPDX-License-Identifier: Apache-2.0
- package form // import "miniflux.app/v2/internal/ui/form"
- import (
- "net/http"
- "strings"
- "miniflux.app/v2/internal/locale"
- )
- // authForm represents the authentication form.
- type authForm struct {
- Username string
- Password string
- }
- // Validate makes sure the form values are valid.
- func (a authForm) Validate() *locale.LocalizedError {
- if a.Username == "" || a.Password == "" {
- return locale.NewLocalizedError("error.fields_mandatory")
- }
- return nil
- }
- // NewAuthForm returns a new AuthForm.
- func NewAuthForm(r *http.Request) *authForm {
- return &authForm{
- Username: strings.TrimSpace(r.FormValue("username")),
- Password: strings.TrimSpace(r.FormValue("password")),
- }
- }
|