Browse Source

routes/user/auth: improve coding style

pull/5238/merge
Unknwon 6 years ago
parent
commit
05edcde6c9
No known key found for this signature in database
GPG Key ID: 7A02C406FAC875A2
  1. 5
      models/user_cache.go
  2. 122
      routes/user/auth.go

5
models/user_cache.go

@ -4,6 +4,11 @@
package models
// MailResendCacheKey returns key used for cache mail resend.
func (u *User) MailResendCacheKey() string {
return "MailResend_" + u.IDStr()
}
// TwoFactorCacheKey returns key used for cache two factor passcode.
// e.g. TwoFactor_1_012664
func (u *User) TwoFactorCacheKey(passcode string) string {

122
routes/user/auth.go

@ -100,7 +100,7 @@ func Login(c *context.Context) {
if isValidRedirect(redirectTo) {
c.Redirect(redirectTo)
} else {
c.Redirect(setting.AppSubURL + "/")
c.SubURLRedirect("/")
}
c.SetCookie("redirect_to", "", -1, setting.AppSubURL)
return
@ -142,7 +142,7 @@ func afterLogin(c *context.Context, u *models.User, remember bool) {
return
}
c.Redirect(setting.AppSubURL + "/")
c.SubURLRedirect("/")
}
func LoginPost(c *context.Context, f form.SignIn) {
@ -164,8 +164,7 @@ func LoginPost(c *context.Context, f form.SignIn) {
if err != nil {
switch err.(type) {
case errors.UserNotExist:
c.FormErr("UserName")
c.FormErr("Password")
c.FormErr("UserName", "Password")
c.RenderWithErr(c.Tr("form.username_password_incorrect"), LOGIN, &f)
case errors.LoginSourceMismatch:
c.FormErr("LoginSource")
@ -184,7 +183,7 @@ func LoginPost(c *context.Context, f form.SignIn) {
c.Session.Set("twoFactorRemember", f.Remember)
c.Session.Set("twoFactorUserID", u.ID)
c.Redirect(setting.AppSubURL + "/user/login/two_factor")
c.SubURLRedirect("/user/login/two_factor")
}
func LoginTwoFactor(c *context.Context) {
@ -217,7 +216,7 @@ func LoginTwoFactorPost(c *context.Context) {
return
} else if !valid {
c.Flash.Error(c.Tr("settings.two_factor_invalid_passcode"))
c.Redirect(setting.AppSubURL + "/user/login/two_factor")
c.SubURLRedirect("/user/login/two_factor")
return
}
@ -230,7 +229,7 @@ func LoginTwoFactorPost(c *context.Context) {
// Prevent same passcode from being reused
if c.Cache.IsExist(u.TwoFactorCacheKey(passcode)) {
c.Flash.Error(c.Tr("settings.two_factor_reused_passcode"))
c.Redirect(setting.AppSubURL + "/user/login/two_factor")
c.SubURLRedirect("/user/login/two_factor")
return
}
if err = c.Cache.Put(u.TwoFactorCacheKey(passcode), 1, 60); err != nil {
@ -260,7 +259,7 @@ func LoginTwoFactorRecoveryCodePost(c *context.Context) {
if err := models.UseRecoveryCode(userID, c.Query("recovery_code")); err != nil {
if errors.IsTwoFactorRecoveryCodeNotFound(err) {
c.Flash.Error(c.Tr("auth.login_two_factor_invalid_recovery_code"))
c.Redirect(setting.AppSubURL + "/user/login/two_factor_recovery_code")
c.SubURLRedirect("/user/login/two_factor_recovery_code")
} else {
c.ServerError("UseRecoveryCode", err)
}
@ -281,46 +280,46 @@ func SignOut(c *context.Context) {
c.SetCookie(setting.CookieUserName, "", -1, setting.AppSubURL)
c.SetCookie(setting.CookieRememberName, "", -1, setting.AppSubURL)
c.SetCookie(setting.CSRFCookieName, "", -1, setting.AppSubURL)
c.Redirect(setting.AppSubURL + "/")
c.SubURLRedirect("/")
}
func SignUp(c *context.Context) {
c.Data["Title"] = c.Tr("sign_up")
c.Title("sign_up")
c.Data["EnableCaptcha"] = setting.Service.EnableCaptcha
if setting.Service.DisableRegistration {
c.Data["DisableRegistration"] = true
c.HTML(200, SIGNUP)
c.Success(SIGNUP)
return
}
c.HTML(200, SIGNUP)
c.Success(SIGNUP)
}
func SignUpPost(c *context.Context, cpt *captcha.Captcha, f form.Register) {
c.Data["Title"] = c.Tr("sign_up")
c.Title("sign_up")
c.Data["EnableCaptcha"] = setting.Service.EnableCaptcha
if setting.Service.DisableRegistration {
c.Error(403)
c.Status(403)
return
}
if c.HasError() {
c.HTML(200, SIGNUP)
c.Success(SIGNUP)
return
}
if setting.Service.EnableCaptcha && !cpt.VerifyReq(c.Req) {
c.Data["Err_Captcha"] = true
c.FormErr("Captcha")
c.RenderWithErr(c.Tr("form.captcha_incorrect"), SIGNUP, &f)
return
}
if f.Password != f.Retype {
c.Data["Err_Password"] = true
c.FormErr("Password")
c.RenderWithErr(c.Tr("form.password_not_match"), SIGNUP, &f)
return
}
@ -334,19 +333,19 @@ func SignUpPost(c *context.Context, cpt *captcha.Captcha, f form.Register) {
if err := models.CreateUser(u); err != nil {
switch {
case models.IsErrUserAlreadyExist(err):
c.Data["Err_UserName"] = true
c.FormErr("UserName")
c.RenderWithErr(c.Tr("form.username_been_taken"), SIGNUP, &f)
case models.IsErrEmailAlreadyUsed(err):
c.Data["Err_Email"] = true
c.FormErr("Email")
c.RenderWithErr(c.Tr("form.email_been_used"), SIGNUP, &f)
case models.IsErrNameReserved(err):
c.Data["Err_UserName"] = true
c.FormErr("UserName")
c.RenderWithErr(c.Tr("user.form.name_reserved", err.(models.ErrNameReserved).Name), SIGNUP, &f)
case models.IsErrNamePatternNotAllowed(err):
c.Data["Err_UserName"] = true
c.FormErr("UserName")
c.RenderWithErr(c.Tr("user.form.name_pattern_not_allowed", err.(models.ErrNamePatternNotAllowed).Pattern), SIGNUP, &f)
default:
c.Handle(500, "CreateUser", err)
c.ServerError("CreateUser", err)
}
return
}
@ -357,7 +356,7 @@ func SignUpPost(c *context.Context, cpt *captcha.Captcha, f form.Register) {
u.IsAdmin = true
u.IsActive = true
if err := models.UpdateUser(u); err != nil {
c.Handle(500, "UpdateUser", err)
c.ServerError("UpdateUser", err)
return
}
}
@ -368,15 +367,15 @@ func SignUpPost(c *context.Context, cpt *captcha.Captcha, f form.Register) {
c.Data["IsSendRegisterMail"] = true
c.Data["Email"] = u.Email
c.Data["Hours"] = setting.Service.ActiveCodeLives / 60
c.HTML(200, ACTIVATE)
c.Success(ACTIVATE)
if err := c.Cache.Put("MailResendLimit_"+u.LowerName, u.LowerName, 180); err != nil {
log.Error(4, "Set cache(MailResendLimit) fail: %v", err)
if err := c.Cache.Put(u.MailResendCacheKey(), 1, 180); err != nil {
log.Error(2, "Failed to put cache key 'mail resend': %v", err)
}
return
}
c.Redirect(setting.AppSubURL + "/user/login")
c.SubURLRedirect("/user/login")
}
func Activate(c *context.Context) {
@ -384,26 +383,25 @@ func Activate(c *context.Context) {
if len(code) == 0 {
c.Data["IsActivatePage"] = true
if c.User.IsActive {
c.Error(404)
c.NotFound()
return
}
// Resend confirmation email.
if setting.Service.RegisterEmailConfirm {
if c.Cache.IsExist("MailResendLimit_" + c.User.LowerName) {
if c.Cache.IsExist(c.User.MailResendCacheKey()) {
c.Data["ResendLimited"] = true
} else {
c.Data["Hours"] = setting.Service.ActiveCodeLives / 60
mailer.SendActivateAccountMail(c.Context, models.NewMailerUser(c.User))
keyName := "MailResendLimit_" + c.User.LowerName
if err := c.Cache.Put(keyName, c.User.LowerName, 180); err != nil {
log.Error(2, "Set cache '%s' fail: %v", keyName, err)
if err := c.Cache.Put(c.User.MailResendCacheKey(), 1, 180); err != nil {
log.Error(2, "Failed to put cache key 'mail resend': %v", err)
}
}
} else {
c.Data["ServiceNotEnabled"] = true
}
c.HTML(200, ACTIVATE)
c.Success(ACTIVATE)
return
}
@ -412,11 +410,11 @@ func Activate(c *context.Context) {
user.IsActive = true
var err error
if user.Rands, err = models.GetUserSalt(); err != nil {
c.Handle(500, "UpdateUser", err)
c.ServerError("GetUserSalt", err)
return
}
if err := models.UpdateUser(user); err != nil {
c.Handle(500, "UpdateUser", err)
c.ServerError("UpdateUser", err)
return
}
@ -424,12 +422,12 @@ func Activate(c *context.Context) {
c.Session.Set("uid", user.ID)
c.Session.Set("uname", user.Name)
c.Redirect(setting.AppSubURL + "/")
c.SubURLRedirect("/")
return
}
c.Data["IsActivateFailed"] = true
c.HTML(200, ACTIVATE)
c.Success(ACTIVATE)
}
func ActivateEmail(c *context.Context) {
@ -439,35 +437,35 @@ func ActivateEmail(c *context.Context) {
// Verify code.
if email := models.VerifyActiveEmailCode(code, email_string); email != nil {
if err := email.Activate(); err != nil {
c.Handle(500, "ActivateEmail", err)
c.ServerError("ActivateEmail", err)
}
log.Trace("Email activated: %s", email.Email)
c.Flash.Success(c.Tr("settings.add_email_success"))
}
c.Redirect(setting.AppSubURL + "/user/settings/email")
c.SubURLRedirect("/user/settings/email")
return
}
func ForgotPasswd(c *context.Context) {
c.Data["Title"] = c.Tr("auth.forgot_password")
c.Title("auth.forgot_password")
if setting.MailService == nil {
c.Data["IsResetDisable"] = true
c.HTML(200, FORGOT_PASSWORD)
c.Success(FORGOT_PASSWORD)
return
}
c.Data["IsResetRequest"] = true
c.HTML(200, FORGOT_PASSWORD)
c.Success(FORGOT_PASSWORD)
}
func ForgotPasswdPost(c *context.Context) {
c.Data["Title"] = c.Tr("auth.forgot_password")
c.Title("auth.forgot_password")
if setting.MailService == nil {
c.Handle(403, "ForgotPasswdPost", nil)
c.Status(403)
return
}
c.Data["IsResetRequest"] = true
@ -480,55 +478,55 @@ func ForgotPasswdPost(c *context.Context) {
if errors.IsUserNotExist(err) {
c.Data["Hours"] = setting.Service.ActiveCodeLives / 60
c.Data["IsResetSent"] = true
c.HTML(200, FORGOT_PASSWORD)
c.Success(FORGOT_PASSWORD)
return
} else {
c.Handle(500, "user.ResetPasswd(check existence)", err)
c.ServerError("GetUserByEmail", err)
}
return
}
if !u.IsLocal() {
c.Data["Err_Email"] = true
c.FormErr("Email")
c.RenderWithErr(c.Tr("auth.non_local_account"), FORGOT_PASSWORD, nil)
return
}
if c.Cache.IsExist("MailResendLimit_" + u.LowerName) {
if c.Cache.IsExist(u.MailResendCacheKey()) {
c.Data["ResendLimited"] = true
c.HTML(200, FORGOT_PASSWORD)
c.Success(FORGOT_PASSWORD)
return
}
mailer.SendResetPasswordMail(c.Context, models.NewMailerUser(u))
if err = c.Cache.Put("MailResendLimit_"+u.LowerName, u.LowerName, 180); err != nil {
log.Error(4, "Set cache(MailResendLimit) fail: %v", err)
if err = c.Cache.Put(u.MailResendCacheKey(), 1, 180); err != nil {
log.Error(2, "Failed to put cache key 'mail resend': %v", err)
}
c.Data["Hours"] = setting.Service.ActiveCodeLives / 60
c.Data["IsResetSent"] = true
c.HTML(200, FORGOT_PASSWORD)
c.Success(FORGOT_PASSWORD)
}
func ResetPasswd(c *context.Context) {
c.Data["Title"] = c.Tr("auth.reset_password")
c.Title("auth.reset_password")
code := c.Query("code")
if len(code) == 0 {
c.Error(404)
c.NotFound()
return
}
c.Data["Code"] = code
c.Data["IsResetForm"] = true
c.HTML(200, RESET_PASSWORD)
c.Success(RESET_PASSWORD)
}
func ResetPasswdPost(c *context.Context) {
c.Data["Title"] = c.Tr("auth.reset_password")
c.Title("auth.reset_password")
code := c.Query("code")
if len(code) == 0 {
c.Error(404)
c.NotFound()
return
}
c.Data["Code"] = code
@ -546,24 +544,24 @@ func ResetPasswdPost(c *context.Context) {
u.Passwd = passwd
var err error
if u.Rands, err = models.GetUserSalt(); err != nil {
c.Handle(500, "UpdateUser", err)
c.ServerError("GetUserSalt", err)
return
}
if u.Salt, err = models.GetUserSalt(); err != nil {
c.Handle(500, "UpdateUser", err)
c.ServerError("GetUserSalt", err)
return
}
u.EncodePasswd()
if err := models.UpdateUser(u); err != nil {
c.Handle(500, "UpdateUser", err)
c.ServerError("UpdateUser", err)
return
}
log.Trace("User password reset: %s", u.Name)
c.Redirect(setting.AppSubURL + "/user/login")
c.SubURLRedirect("/user/login")
return
}
c.Data["IsResetFailed"] = true
c.HTML(200, RESET_PASSWORD)
c.Success(RESET_PASSWORD)
}

Loading…
Cancel
Save