photoprism/internal/form/user_login.go
Michael Mayer f5a8c5a45d Auth: Session and ACL enhancements #98 #1746
Signed-off-by: Michael Mayer <michael@photoprism.app>
2022-09-28 09:01:17 +02:00

47 lines
1 KiB
Go

package form
import (
"github.com/photoprism/photoprism/pkg/clean"
)
// Login represents a login form.
type Login struct {
UserName string `json:"name"`
UserEmail string `json:"email"`
Password string `json:"password"`
AuthToken string `json:"token"`
}
// Name returns the sanitized username in lowercase.
func (f Login) Name() string {
return clean.Username(f.UserName)
}
// Email returns the sanitized email in lowercase.
func (f Login) Email() string {
return clean.Email(f.UserEmail)
}
// HasName checks if a username is set.
func (f Login) HasName() bool {
if l := len(f.Name()); l == 0 || l > 255 {
return false
}
return true
}
// HasPassword checks if a password is set.
func (f Login) HasPassword() bool {
return f.Password != "" && len(f.Password) <= 255
}
// HasToken checks if an auth token is set.
func (f Login) HasToken() bool {
return f.AuthToken != ""
}
// HasCredentials checks if all credentials is set.
func (f Login) HasCredentials() bool {
return f.HasName() && f.HasPassword()
}