14378fbf39
* Checkpoint: it builds The config, db, model, network, os, and public packages have had some fixes to glaringly obvious flaws, dead code removed, and stylistic changes. * Style changes and old code removal in router Router needs a lot of work done to its (lack of) error handling. * Dead code removal and style changes Now up to util/email/email.go. After I'm finished with the initial sweep I'll go back and fix error handling and security issues. Then I'll fix the broken API. Then I'll go through to add documentation and fix code visibility. * Finish dead code removal and style changes Vendored libraries not touched. Everything still needs security fixes and documentation. There's also one case of broken functionality. * Fix accidental find-and-replace * Style, error checking, saftey, bug fix changes * Redo error checking erased during merge * Re-add merge-erased fix. Make Safe safe.
91 lignes
3 Kio
Go
91 lignes
3 Kio
Go
package form
|
|
|
|
import (
|
|
"regexp"
|
|
|
|
"github.com/ewhal/nyaa/util/log"
|
|
)
|
|
|
|
const EMAIL_REGEX = `(\w[-._\w]*\w@\w[-._\w]*\w\.\w{2,3})`
|
|
const USERNAME_REGEX = `(\W)`
|
|
|
|
func EmailValidation(email string, err map[string][]string) (bool, map[string][]string) {
|
|
exp, errorRegex := regexp.Compile(EMAIL_REGEX)
|
|
if regexpCompiled := log.CheckError(errorRegex); regexpCompiled {
|
|
if exp.MatchString(email) {
|
|
return true, err
|
|
}
|
|
}
|
|
err["email"] = append(err["email"], "Email Address is not valid")
|
|
return false, err
|
|
}
|
|
|
|
func ValidateUsername(username string, err map[string][]string) (bool, map[string][]string) {
|
|
exp, errorRegex := regexp.Compile(USERNAME_REGEX)
|
|
if regexpCompiled := log.CheckError(errorRegex); regexpCompiled {
|
|
if exp.MatchString(username) {
|
|
err["username"] = append(err["username"], "Username contains illegal characters")
|
|
return false, err
|
|
}
|
|
} else {
|
|
return false, err
|
|
}
|
|
return true, err
|
|
}
|
|
|
|
func NewErrors() map[string][]string {
|
|
err := make(map[string][]string)
|
|
return err
|
|
}
|
|
func NewInfos() map[string][]string {
|
|
infos := make(map[string][]string)
|
|
return infos
|
|
}
|
|
|
|
func IsAgreed(termsAndConditions string) bool { // TODO: Inline function
|
|
return termsAndConditions == "1"
|
|
}
|
|
|
|
// RegistrationForm is used when creating a user.
|
|
type RegistrationForm struct {
|
|
Username string `form:"username" needed:"true" len_min:"3" len_max:"20"`
|
|
Email string `form:"email" needed:"true"`
|
|
Password string `form:"password" needed:"true" len_min:"6" len_max:"25" equalInput:"ConfirmPassword"`
|
|
ConfirmPassword string `form:"password_confirmation" omit:"true" needed:"true"`
|
|
CaptchaID string `form:"captchaID" omit:"true" needed:"true"`
|
|
TermsAndConditions bool `form:"t_and_c" omit:"true" needed:"true" equal:"true" hum_name:"Terms and Conditions"`
|
|
}
|
|
|
|
// LoginForm is used when a user logs in.
|
|
type LoginForm struct {
|
|
Username string `form:"username" needed:"true"`
|
|
Password string `form:"password" needed:"true"`
|
|
}
|
|
|
|
// UserForm is used when updating a user.
|
|
type UserForm struct {
|
|
Username string `form:"username" needed:"true" len_min:"3" len_max:"20"`
|
|
Email string `form:"email" needed:"true"`
|
|
Language string `form:"language" default:"en-us"`
|
|
CurrentPassword string `form:"password" len_min:"6" len_max:"25" omit:"true"`
|
|
Password string `form:"password" len_min:"6" len_max:"25" equalInput:"ConfirmPassword"`
|
|
ConfirmPassword string `form:"password_confirmation" omit:"true"`
|
|
Status int `form:"language" default:"0"`
|
|
}
|
|
|
|
// PasswordForm is used when updating a user password.
|
|
type PasswordForm struct {
|
|
CurrentPassword string `form:"currentPassword"`
|
|
Password string `form:"newPassword"`
|
|
}
|
|
|
|
// SendPasswordResetForm is used when sending a password reset token.
|
|
type SendPasswordResetForm struct {
|
|
Email string `form:"email"`
|
|
}
|
|
|
|
// PasswordResetForm is used when reseting a password.
|
|
type PasswordResetForm struct {
|
|
PasswordResetToken string `form:"token"`
|
|
Password string `form:"newPassword"`
|
|
}
|