2014-07-26 09:54:27 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package user
|
|
|
|
|
|
|
|
import (
|
2017-01-16 07:44:29 +05:30
|
|
|
"errors"
|
2016-03-11 22:26:52 +05:30
|
|
|
"fmt"
|
2014-07-26 09:54:27 +05:30
|
|
|
"net/url"
|
|
|
|
|
2015-10-16 06:58:12 +05:30
|
|
|
"github.com/go-macaron/captcha"
|
2014-08-01 02:55:34 +05:30
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/auth"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2014-07-26 09:54:27 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2016-11-18 08:33:03 +05:30
|
|
|
// tplSignIn template for sign in page
|
|
|
|
tplSignIn base.TplName = "user/auth/signin"
|
|
|
|
// tplSignUp template path for sign up page
|
|
|
|
tplSignUp base.TplName = "user/auth/signup"
|
|
|
|
// TplActivate template path for activate user
|
|
|
|
TplActivate base.TplName = "user/auth/activate"
|
|
|
|
tplForgotPassword base.TplName = "user/auth/forgot_passwd"
|
|
|
|
tplResetPassword base.TplName = "user/auth/reset_passwd"
|
2017-01-16 07:44:29 +05:30
|
|
|
tplTwofa base.TplName = "user/auth/twofa"
|
|
|
|
tplTwofaScratch base.TplName = "user/auth/twofa_scratch"
|
2014-07-26 09:54:27 +05:30
|
|
|
)
|
|
|
|
|
2016-03-11 22:26:52 +05:30
|
|
|
// AutoSignIn reads cookie and try to auto-login.
|
|
|
|
func AutoSignIn(ctx *context.Context) (bool, error) {
|
|
|
|
if !models.HasEngine {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
uname := ctx.GetCookie(setting.CookieUserName)
|
|
|
|
if len(uname) == 0 {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
isSucceed := false
|
|
|
|
defer func() {
|
|
|
|
if !isSucceed {
|
|
|
|
log.Trace("auto-login cookie cleared: %s", uname)
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.SetCookie(setting.CookieUserName, "", -1, setting.AppSubURL)
|
|
|
|
ctx.SetCookie(setting.CookieRememberName, "", -1, setting.AppSubURL)
|
2016-03-11 22:26:52 +05:30
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
u, err := models.GetUserByName(uname)
|
|
|
|
if err != nil {
|
|
|
|
if !models.IsErrUserNotExist(err) {
|
|
|
|
return false, fmt.Errorf("GetUserByName: %v", err)
|
|
|
|
}
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if val, _ := ctx.GetSuperSecureCookie(
|
|
|
|
base.EncodeMD5(u.Rands+u.Passwd), setting.CookieRememberName); val != u.Name {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
isSucceed = true
|
2016-07-23 22:38:22 +05:30
|
|
|
ctx.Session.Set("uid", u.ID)
|
2016-03-11 22:26:52 +05:30
|
|
|
ctx.Session.Set("uname", u.Name)
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.SetCookie(setting.CSRFCookieName, "", -1, setting.AppSubURL)
|
2016-03-11 22:26:52 +05:30
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2017-01-16 07:44:29 +05:30
|
|
|
func checkAutoLogin(ctx *context.Context) bool {
|
2014-07-26 09:54:27 +05:30
|
|
|
// Check auto-login.
|
2016-03-11 22:26:52 +05:30
|
|
|
isSucceed, err := AutoSignIn(ctx)
|
2014-07-26 09:54:27 +05:30
|
|
|
if err != nil {
|
2015-08-14 00:13:40 +05:30
|
|
|
ctx.Handle(500, "AutoSignIn", err)
|
2017-01-16 07:44:29 +05:30
|
|
|
return true
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2016-08-28 03:37:02 +05:30
|
|
|
redirectTo := ctx.Query("redirect_to")
|
|
|
|
if len(redirectTo) > 0 {
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.SetCookie("redirect_to", redirectTo, 0, setting.AppSubURL)
|
2016-08-28 03:37:02 +05:30
|
|
|
} else {
|
|
|
|
redirectTo, _ = url.QueryUnescape(ctx.GetCookie("redirect_to"))
|
|
|
|
}
|
|
|
|
|
2015-08-14 00:13:40 +05:30
|
|
|
if isSucceed {
|
2016-08-28 03:37:02 +05:30
|
|
|
if len(redirectTo) > 0 {
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.SetCookie("redirect_to", "", -1, setting.AppSubURL)
|
2015-08-14 00:13:40 +05:30
|
|
|
ctx.Redirect(redirectTo)
|
2015-11-19 10:22:09 +05:30
|
|
|
} else {
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.Redirect(setting.AppSubURL + "/")
|
2015-08-14 00:13:40 +05:30
|
|
|
}
|
2017-01-16 07:44:29 +05:30
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// SignIn render sign in page
|
|
|
|
func SignIn(ctx *context.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("sign_in")
|
|
|
|
|
|
|
|
// Check auto-login.
|
|
|
|
if checkAutoLogin(ctx) {
|
2014-07-26 09:54:27 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.HTML(200, tplSignIn)
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// SignInPost response for sign in request
|
2016-03-11 22:26:52 +05:30
|
|
|
func SignInPost(ctx *context.Context, form auth.SignInForm) {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("sign_in")
|
|
|
|
|
|
|
|
if ctx.HasError() {
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.HTML(200, tplSignIn)
|
2014-07-26 09:54:27 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
u, err := models.UserSignIn(form.UserName, form.Password)
|
|
|
|
if err != nil {
|
2015-08-05 08:44:17 +05:30
|
|
|
if models.IsErrUserNotExist(err) {
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("form.username_password_incorrect"), tplSignIn, &form)
|
2014-08-10 09:32:00 +05:30
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "UserSignIn", err)
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-01-16 07:44:29 +05:30
|
|
|
// If this user is enrolled in 2FA, we can't sign the user in just yet.
|
|
|
|
// Instead, redirect them to the 2FA authentication page.
|
|
|
|
_, err = models.GetTwoFactorByUID(u.ID)
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrTwoFactorNotEnrolled(err) {
|
|
|
|
handleSignIn(ctx, u, form.Remember)
|
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "UserSignIn", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// User needs to use 2FA, save data and redirect to 2FA page.
|
|
|
|
ctx.Session.Set("twofaUid", u.ID)
|
|
|
|
ctx.Session.Set("twofaRemember", form.Remember)
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/two_factor")
|
|
|
|
}
|
|
|
|
|
|
|
|
// TwoFactor shows the user a two-factor authentication page.
|
|
|
|
func TwoFactor(ctx *context.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("twofa")
|
|
|
|
|
|
|
|
// Check auto-login.
|
|
|
|
if checkAutoLogin(ctx) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure user is in a 2FA session.
|
|
|
|
if ctx.Session.Get("twofaUid") == nil {
|
|
|
|
ctx.Handle(500, "UserSignIn", errors.New("not in 2FA session"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.HTML(200, tplTwofa)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TwoFactorPost validates a user's two-factor authentication token.
|
|
|
|
func TwoFactorPost(ctx *context.Context, form auth.TwoFactorAuthForm) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("twofa")
|
|
|
|
|
|
|
|
// Ensure user is in a 2FA session.
|
|
|
|
idSess := ctx.Session.Get("twofaUid")
|
|
|
|
if idSess == nil {
|
|
|
|
ctx.Handle(500, "UserSignIn", errors.New("not in 2FA session"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
id := idSess.(int64)
|
|
|
|
twofa, err := models.GetTwoFactorByUID(id)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "UserSignIn", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate the passcode with the stored TOTP secret.
|
|
|
|
ok, err := twofa.ValidateTOTP(form.Passcode)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "UserSignIn", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if ok {
|
|
|
|
remember := ctx.Session.Get("twofaRemember").(bool)
|
|
|
|
u, err := models.GetUserByID(id)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "UserSignIn", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSignIn(ctx, u, remember)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.RenderWithErr(ctx.Tr("auth.twofa_passcode_incorrect"), tplTwofa, auth.TwoFactorAuthForm{})
|
|
|
|
}
|
|
|
|
|
|
|
|
// TwoFactorScratch shows the scratch code form for two-factor authentication.
|
|
|
|
func TwoFactorScratch(ctx *context.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("twofa_scratch")
|
|
|
|
|
|
|
|
// Check auto-login.
|
|
|
|
if checkAutoLogin(ctx) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure user is in a 2FA session.
|
|
|
|
if ctx.Session.Get("twofaUid") == nil {
|
|
|
|
ctx.Handle(500, "UserSignIn", errors.New("not in 2FA session"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.HTML(200, tplTwofaScratch)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TwoFactorScratchPost validates and invalidates a user's two-factor scratch token.
|
|
|
|
func TwoFactorScratchPost(ctx *context.Context, form auth.TwoFactorScratchAuthForm) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("twofa_scratch")
|
|
|
|
|
|
|
|
// Ensure user is in a 2FA session.
|
|
|
|
idSess := ctx.Session.Get("twofaUid")
|
|
|
|
if idSess == nil {
|
|
|
|
ctx.Handle(500, "UserSignIn", errors.New("not in 2FA session"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
id := idSess.(int64)
|
|
|
|
twofa, err := models.GetTwoFactorByUID(id)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "UserSignIn", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate the passcode with the stored TOTP secret.
|
|
|
|
if twofa.VerifyScratchToken(form.Token) {
|
|
|
|
// Invalidate the scratch token.
|
|
|
|
twofa.ScratchToken = ""
|
|
|
|
if err = models.UpdateTwoFactor(twofa); err != nil {
|
|
|
|
ctx.Handle(500, "UserSignIn", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
remember := ctx.Session.Get("twofaRemember").(bool)
|
|
|
|
u, err := models.GetUserByID(id)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "UserSignIn", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSignInFull(ctx, u, remember, false)
|
|
|
|
ctx.Flash.Info(ctx.Tr("auth.twofa_scratch_used"))
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/two_factor")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.RenderWithErr(ctx.Tr("auth.twofa_scratch_token_incorrect"), tplTwofaScratch, auth.TwoFactorScratchAuthForm{})
|
|
|
|
}
|
|
|
|
|
|
|
|
// This handles the final part of the sign-in process of the user.
|
|
|
|
func handleSignIn(ctx *context.Context, u *models.User, remember bool) {
|
|
|
|
handleSignInFull(ctx, u, remember, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
func handleSignInFull(ctx *context.Context, u *models.User, remember bool, obeyRedirect bool) {
|
|
|
|
if remember {
|
2014-07-26 09:54:27 +05:30
|
|
|
days := 86400 * setting.LogInRememberDays
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.SetCookie(setting.CookieUserName, u.Name, days, setting.AppSubURL)
|
2015-11-25 05:19:34 +05:30
|
|
|
ctx.SetSuperSecureCookie(base.EncodeMD5(u.Rands+u.Passwd),
|
2016-11-27 15:44:25 +05:30
|
|
|
setting.CookieRememberName, u.Name, days, setting.AppSubURL)
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2017-01-16 07:44:29 +05:30
|
|
|
ctx.Session.Delete("twofaUid")
|
|
|
|
ctx.Session.Delete("twofaRemember")
|
2016-07-23 22:38:22 +05:30
|
|
|
ctx.Session.Set("uid", u.ID)
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Session.Set("uname", u.Name)
|
2016-03-13 07:26:03 +05:30
|
|
|
|
|
|
|
// Clear whatever CSRF has right now, force to generate a new one
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.SetCookie(setting.CSRFCookieName, "", -1, setting.AppSubURL)
|
2016-03-13 07:26:03 +05:30
|
|
|
|
2016-11-09 16:23:45 +05:30
|
|
|
// Register last login
|
|
|
|
u.SetLastLogin()
|
|
|
|
if err := models.UpdateUser(u); err != nil {
|
2016-11-11 17:41:45 +05:30
|
|
|
ctx.Handle(500, "UpdateUser", err)
|
|
|
|
return
|
2016-11-09 16:23:45 +05:30
|
|
|
}
|
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
if redirectTo, _ := url.QueryUnescape(ctx.GetCookie("redirect_to")); len(redirectTo) > 0 {
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.SetCookie("redirect_to", "", -1, setting.AppSubURL)
|
2017-01-16 07:44:29 +05:30
|
|
|
if obeyRedirect {
|
|
|
|
ctx.Redirect(redirectTo)
|
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-01-16 07:44:29 +05:30
|
|
|
if obeyRedirect {
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/")
|
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// SignOut sign out from login status
|
2016-03-11 22:26:52 +05:30
|
|
|
func SignOut(ctx *context.Context) {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Session.Delete("uid")
|
|
|
|
ctx.Session.Delete("uname")
|
2014-08-07 16:10:05 +05:30
|
|
|
ctx.Session.Delete("socialId")
|
|
|
|
ctx.Session.Delete("socialName")
|
|
|
|
ctx.Session.Delete("socialEmail")
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.SetCookie(setting.CookieUserName, "", -1, setting.AppSubURL)
|
|
|
|
ctx.SetCookie(setting.CookieRememberName, "", -1, setting.AppSubURL)
|
|
|
|
ctx.SetCookie(setting.CSRFCookieName, "", -1, setting.AppSubURL)
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/")
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// SignUp render the register page
|
2016-03-11 22:26:52 +05:30
|
|
|
func SignUp(ctx *context.Context) {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("sign_up")
|
|
|
|
|
2015-09-13 20:37:21 +05:30
|
|
|
ctx.Data["EnableCaptcha"] = setting.Service.EnableCaptcha
|
2015-09-13 19:21:51 +05:30
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
if setting.Service.DisableRegistration {
|
|
|
|
ctx.Data["DisableRegistration"] = true
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.HTML(200, tplSignUp)
|
2014-07-26 09:54:27 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.HTML(200, tplSignUp)
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// SignUpPost response for sign up information submission
|
2016-03-11 22:26:52 +05:30
|
|
|
func SignUpPost(ctx *context.Context, cpt *captcha.Captcha, form auth.RegisterForm) {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("sign_up")
|
|
|
|
|
2015-09-13 20:37:21 +05:30
|
|
|
ctx.Data["EnableCaptcha"] = setting.Service.EnableCaptcha
|
2015-09-13 19:21:51 +05:30
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
if setting.Service.DisableRegistration {
|
|
|
|
ctx.Error(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if ctx.HasError() {
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.HTML(200, tplSignUp)
|
2014-07-26 09:54:27 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-09-13 20:37:21 +05:30
|
|
|
if setting.Service.EnableCaptcha && !cpt.VerifyReq(ctx.Req) {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Data["Err_Captcha"] = true
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("form.captcha_incorrect"), tplSignUp, &form)
|
2014-07-26 09:54:27 +05:30
|
|
|
return
|
2015-09-13 19:21:51 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if form.Password != form.Retype {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Data["Err_Password"] = true
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("form.password_not_match"), tplSignUp, &form)
|
2014-07-26 09:54:27 +05:30
|
|
|
return
|
|
|
|
}
|
2016-12-24 19:10:44 +05:30
|
|
|
if len(form.Password) < setting.MinPasswordLength {
|
|
|
|
ctx.Data["Err_Password"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("auth.password_too_short", setting.MinPasswordLength), tplSignUp, &form)
|
|
|
|
return
|
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
|
|
|
|
u := &models.User{
|
|
|
|
Name: form.UserName,
|
|
|
|
Email: form.Email,
|
|
|
|
Passwd: form.Password,
|
2015-09-18 01:41:44 +05:30
|
|
|
IsActive: !setting.Service.RegisterEmailConfirm,
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
if err := models.CreateUser(u); err != nil {
|
2015-03-27 02:41:47 +05:30
|
|
|
switch {
|
|
|
|
case models.IsErrUserAlreadyExist(err):
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Data["Err_UserName"] = true
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("form.username_been_taken"), tplSignUp, &form)
|
2015-03-27 02:41:47 +05:30
|
|
|
case models.IsErrEmailAlreadyUsed(err):
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Data["Err_Email"] = true
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("form.email_been_used"), tplSignUp, &form)
|
2015-03-27 02:41:47 +05:30
|
|
|
case models.IsErrNameReserved(err):
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Data["Err_UserName"] = true
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("user.form.name_reserved", err.(models.ErrNameReserved).Name), tplSignUp, &form)
|
2015-03-27 02:41:47 +05:30
|
|
|
case models.IsErrNamePatternNotAllowed(err):
|
|
|
|
ctx.Data["Err_UserName"] = true
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("user.form.name_pattern_not_allowed", err.(models.ErrNamePatternNotAllowed).Pattern), tplSignUp, &form)
|
2014-07-26 09:54:27 +05:30
|
|
|
default:
|
|
|
|
ctx.Handle(500, "CreateUser", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Trace("Account created: %s", u.Name)
|
|
|
|
|
2015-08-19 02:28:45 +05:30
|
|
|
// Auto-set admin for the only user.
|
|
|
|
if models.CountUsers() == 1 {
|
|
|
|
u.IsAdmin = true
|
|
|
|
u.IsActive = true
|
|
|
|
if err := models.UpdateUser(u); err != nil {
|
|
|
|
ctx.Handle(500, "UpdateUser", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-15 22:06:39 +05:30
|
|
|
// Send confirmation email, no need for social account.
|
2016-07-23 22:38:22 +05:30
|
|
|
if setting.Service.RegisterEmailConfirm && u.ID > 1 {
|
2016-07-15 22:06:39 +05:30
|
|
|
models.SendActivateAccountMail(ctx.Context, u)
|
2014-08-10 05:55:02 +05:30
|
|
|
ctx.Data["IsSendRegisterMail"] = true
|
|
|
|
ctx.Data["Email"] = u.Email
|
|
|
|
ctx.Data["Hours"] = setting.Service.ActiveCodeLives / 60
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.HTML(200, TplActivate)
|
2014-08-10 05:55:02 +05:30
|
|
|
|
|
|
|
if err := ctx.Cache.Put("MailResendLimit_"+u.LowerName, u.LowerName, 180); err != nil {
|
|
|
|
log.Error(4, "Set cache(MailResendLimit) fail: %v", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/login")
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// Activate render activate user page
|
2016-03-11 22:26:52 +05:30
|
|
|
func Activate(ctx *context.Context) {
|
2014-08-10 09:32:00 +05:30
|
|
|
code := ctx.Query("code")
|
|
|
|
if len(code) == 0 {
|
|
|
|
ctx.Data["IsActivatePage"] = true
|
|
|
|
if ctx.User.IsActive {
|
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
2016-07-15 22:06:39 +05:30
|
|
|
// Resend confirmation email.
|
2014-08-10 09:32:00 +05:30
|
|
|
if setting.Service.RegisterEmailConfirm {
|
|
|
|
if ctx.Cache.IsExist("MailResendLimit_" + ctx.User.LowerName) {
|
|
|
|
ctx.Data["ResendLimited"] = true
|
|
|
|
} else {
|
|
|
|
ctx.Data["Hours"] = setting.Service.ActiveCodeLives / 60
|
2016-07-15 22:06:39 +05:30
|
|
|
models.SendActivateAccountMail(ctx.Context, ctx.User)
|
2014-08-10 09:32:00 +05:30
|
|
|
|
|
|
|
if err := ctx.Cache.Put("MailResendLimit_"+ctx.User.LowerName, ctx.User.LowerName, 180); err != nil {
|
|
|
|
log.Error(4, "Set cache(MailResendLimit) fail: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ctx.Data["ServiceNotEnabled"] = true
|
|
|
|
}
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.HTML(200, TplActivate)
|
2014-08-10 09:32:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verify code.
|
|
|
|
if user := models.VerifyUserActiveCode(code); user != nil {
|
|
|
|
user.IsActive = true
|
2016-12-20 18:02:02 +05:30
|
|
|
var err error
|
|
|
|
if user.Rands, err = models.GetUserSalt(); err != nil {
|
|
|
|
ctx.Handle(500, "UpdateUser", err)
|
|
|
|
return
|
|
|
|
}
|
2014-08-10 09:32:00 +05:30
|
|
|
if err := models.UpdateUser(user); err != nil {
|
2015-08-05 08:44:17 +05:30
|
|
|
if models.IsErrUserNotExist(err) {
|
2014-08-10 09:32:00 +05:30
|
|
|
ctx.Error(404)
|
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "UpdateUser", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Trace("User activated: %s", user.Name)
|
|
|
|
|
2016-07-23 22:38:22 +05:30
|
|
|
ctx.Session.Set("uid", user.ID)
|
2014-08-10 09:32:00 +05:30
|
|
|
ctx.Session.Set("uname", user.Name)
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.Redirect(setting.AppSubURL + "/")
|
2014-08-10 09:32:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["IsActivateFailed"] = true
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.HTML(200, TplActivate)
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// ActivateEmail render the activate email page
|
2016-03-11 22:26:52 +05:30
|
|
|
func ActivateEmail(ctx *context.Context) {
|
2014-12-17 21:11:49 +05:30
|
|
|
code := ctx.Query("code")
|
2016-11-18 08:33:03 +05:30
|
|
|
emailStr := ctx.Query("email")
|
2014-12-17 21:11:49 +05:30
|
|
|
|
|
|
|
// Verify code.
|
2016-11-18 08:33:03 +05:30
|
|
|
if email := models.VerifyActiveEmailCode(code, emailStr); email != nil {
|
2015-02-22 08:43:47 +05:30
|
|
|
if err := email.Activate(); err != nil {
|
2014-12-17 21:11:49 +05:30
|
|
|
ctx.Handle(500, "ActivateEmail", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Trace("Email activated: %s", email.Email)
|
2015-11-19 22:22:39 +05:30
|
|
|
ctx.Flash.Success(ctx.Tr("settings.add_email_success"))
|
2014-12-17 21:11:49 +05:30
|
|
|
}
|
|
|
|
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/email")
|
2014-12-17 21:11:49 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// ForgotPasswd render the forget pasword page
|
2016-03-11 22:26:52 +05:30
|
|
|
func ForgotPasswd(ctx *context.Context) {
|
2014-08-10 09:32:00 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.forgot_password")
|
2014-07-26 09:54:27 +05:30
|
|
|
|
|
|
|
if setting.MailService == nil {
|
|
|
|
ctx.Data["IsResetDisable"] = true
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.HTML(200, tplForgotPassword)
|
2014-07-26 09:54:27 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["IsResetRequest"] = true
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.HTML(200, tplForgotPassword)
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// ForgotPasswdPost response for forget password request
|
2016-03-11 22:26:52 +05:30
|
|
|
func ForgotPasswdPost(ctx *context.Context) {
|
2014-08-10 09:32:00 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.forgot_password")
|
|
|
|
|
|
|
|
if setting.MailService == nil {
|
2015-09-18 00:27:24 +05:30
|
|
|
ctx.Handle(403, "ForgotPasswdPost", nil)
|
2014-08-10 09:32:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["IsResetRequest"] = true
|
|
|
|
|
|
|
|
email := ctx.Query("email")
|
2015-09-18 00:27:24 +05:30
|
|
|
ctx.Data["Email"] = email
|
|
|
|
|
2014-08-10 09:32:00 +05:30
|
|
|
u, err := models.GetUserByEmail(email)
|
|
|
|
if err != nil {
|
2015-08-05 08:44:17 +05:30
|
|
|
if models.IsErrUserNotExist(err) {
|
2016-10-17 07:38:40 +05:30
|
|
|
ctx.Data["Hours"] = setting.Service.ActiveCodeLives / 60
|
|
|
|
ctx.Data["IsResetSent"] = true
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.HTML(200, tplForgotPassword)
|
2016-10-17 07:38:40 +05:30
|
|
|
return
|
2014-08-10 09:32:00 +05:30
|
|
|
}
|
2016-11-18 08:33:03 +05:30
|
|
|
|
|
|
|
ctx.Handle(500, "user.ResetPasswd(check existence)", err)
|
2014-08-10 09:32:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-14 20:10:16 +05:30
|
|
|
if !u.IsLocal() {
|
|
|
|
ctx.Data["Err_Email"] = true
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("auth.non_local_account"), tplForgotPassword, nil)
|
2016-03-14 20:10:16 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-08-10 09:32:00 +05:30
|
|
|
if ctx.Cache.IsExist("MailResendLimit_" + u.LowerName) {
|
|
|
|
ctx.Data["ResendLimited"] = true
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.HTML(200, tplForgotPassword)
|
2014-08-10 09:32:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-07-15 22:06:39 +05:30
|
|
|
models.SendResetPasswordMail(ctx.Context, u)
|
2014-08-10 09:32:00 +05:30
|
|
|
if err = ctx.Cache.Put("MailResendLimit_"+u.LowerName, u.LowerName, 180); err != nil {
|
|
|
|
log.Error(4, "Set cache(MailResendLimit) fail: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Hours"] = setting.Service.ActiveCodeLives / 60
|
|
|
|
ctx.Data["IsResetSent"] = true
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.HTML(200, tplForgotPassword)
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// ResetPasswd render the reset password page
|
2016-03-11 22:26:52 +05:30
|
|
|
func ResetPasswd(ctx *context.Context) {
|
2014-08-10 09:32:00 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.reset_password")
|
2014-07-26 09:54:27 +05:30
|
|
|
|
|
|
|
code := ctx.Query("code")
|
|
|
|
if len(code) == 0 {
|
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Code"] = code
|
|
|
|
ctx.Data["IsResetForm"] = true
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.HTML(200, tplResetPassword)
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
2016-12-24 19:10:44 +05:30
|
|
|
// ResetPasswdPost response from reset password request
|
2016-03-11 22:26:52 +05:30
|
|
|
func ResetPasswdPost(ctx *context.Context) {
|
2014-08-10 09:32:00 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.reset_password")
|
|
|
|
|
|
|
|
code := ctx.Query("code")
|
|
|
|
if len(code) == 0 {
|
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Code"] = code
|
|
|
|
|
|
|
|
if u := models.VerifyUserActiveCode(code); u != nil {
|
|
|
|
// Validate password length.
|
|
|
|
passwd := ctx.Query("password")
|
2016-12-24 19:10:44 +05:30
|
|
|
if len(passwd) < setting.MinPasswordLength {
|
2014-08-10 09:32:00 +05:30
|
|
|
ctx.Data["IsResetForm"] = true
|
|
|
|
ctx.Data["Err_Password"] = true
|
2016-12-24 19:10:44 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("auth.password_too_short", setting.MinPasswordLength), tplResetPassword, nil)
|
2014-08-10 09:32:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
u.Passwd = passwd
|
2016-12-20 18:02:02 +05:30
|
|
|
var err error
|
|
|
|
if u.Rands, err = models.GetUserSalt(); err != nil {
|
|
|
|
ctx.Handle(500, "UpdateUser", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if u.Salt, err = models.GetUserSalt(); err != nil {
|
|
|
|
ctx.Handle(500, "UpdateUser", err)
|
|
|
|
return
|
|
|
|
}
|
2014-08-10 09:32:00 +05:30
|
|
|
u.EncodePasswd()
|
|
|
|
if err := models.UpdateUser(u); err != nil {
|
|
|
|
ctx.Handle(500, "UpdateUser", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Trace("User password reset: %s", u.Name)
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/login")
|
2014-08-10 09:32:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["IsResetFailed"] = true
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.HTML(200, tplResetPassword)
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|