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"
|
2023-09-09 05:11:48 +02:00
|
|
|
"strings"
|
2017-11-28 06:30:04 +01:00
|
|
|
|
2023-10-22 04:50:29 +02:00
|
|
|
"miniflux.app/v2/internal/locale"
|
2017-11-20 06:10:04 +01:00
|
|
|
)
|
|
|
|
|
2017-11-28 06:30:04 +01:00
|
|
|
// AuthForm represents the authentication form.
|
2017-11-20 06:10:04 +01:00
|
|
|
type AuthForm struct {
|
|
|
|
Username string
|
|
|
|
Password string
|
|
|
|
}
|
|
|
|
|
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 (a AuthForm) Validate() *locale.LocalizedError {
|
2017-11-20 06:10:04 +01:00
|
|
|
if a.Username == "" || a.Password == "" {
|
2023-10-22 04:50:29 +02:00
|
|
|
return locale.NewLocalizedError("error.fields_mandatory")
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-11-28 06:30:04 +01:00
|
|
|
// NewAuthForm returns a new AuthForm.
|
2017-11-20 06:10:04 +01:00
|
|
|
func NewAuthForm(r *http.Request) *AuthForm {
|
|
|
|
return &AuthForm{
|
2023-09-09 05:11:48 +02:00
|
|
|
Username: strings.TrimSpace(r.FormValue("username")),
|
|
|
|
Password: strings.TrimSpace(r.FormValue("password")),
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
}
|