miniflux-v2/ui/form/auth.go

35 lines
762 B
Go
Raw Normal View History

2017-11-20 06:10:04 +01:00
// Copyright 2017 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.
2018-08-25 06:51:50 +02:00
package form // import "miniflux.app/ui/form"
2017-11-20 06:10:04 +01:00
import (
"net/http"
2017-11-28 06:30:04 +01:00
2018-08-25 06:51:50 +02:00
"miniflux.app/errors"
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.
2017-11-20 06:10:04 +01:00
func (a AuthForm) Validate() error {
if a.Username == "" || a.Password == "" {
return errors.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{
Username: r.FormValue("username"),
Password: r.FormValue("password"),
}
}