miniflux-v2/internal/ui/form/auth.go

35 lines
805 B
Go
Raw Normal View History

// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
2017-11-20 06:10:04 +01: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
"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.
func (a AuthForm) Validate() *locale.LocalizedError {
2017-11-20 06:10:04 +01:00
if a.Username == "" || a.Password == "" {
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
}
}