mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
534 lines
13 KiB
534 lines
13 KiB
// 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 ( |
|
"fmt" |
|
"net/url" |
|
|
|
"github.com/go-macaron/captcha" |
|
log "gopkg.in/clog.v1" |
|
|
|
"github.com/gogits/gogs/models" |
|
"github.com/gogits/gogs/models/errors" |
|
"github.com/gogits/gogs/pkg/context" |
|
"github.com/gogits/gogs/pkg/form" |
|
"github.com/gogits/gogs/pkg/mailer" |
|
"github.com/gogits/gogs/pkg/setting" |
|
) |
|
|
|
const ( |
|
LOGIN = "user/auth/login" |
|
TWO_FACTOR = "user/auth/two_factor" |
|
TWO_FACTOR_RECOVERY_CODE = "user/auth/two_factor_recovery_code" |
|
SIGNUP = "user/auth/signup" |
|
ACTIVATE = "user/auth/activate" |
|
FORGOT_PASSWORD = "user/auth/forgot_passwd" |
|
RESET_PASSWORD = "user/auth/reset_passwd" |
|
) |
|
|
|
// AutoLogin reads cookie and try to auto-login. |
|
func AutoLogin(c *context.Context) (bool, error) { |
|
if !models.HasEngine { |
|
return false, nil |
|
} |
|
|
|
uname := c.GetCookie(setting.CookieUserName) |
|
if len(uname) == 0 { |
|
return false, nil |
|
} |
|
|
|
isSucceed := false |
|
defer func() { |
|
if !isSucceed { |
|
log.Trace("auto-login cookie cleared: %s", uname) |
|
c.SetCookie(setting.CookieUserName, "", -1, setting.AppSubURL) |
|
c.SetCookie(setting.CookieRememberName, "", -1, setting.AppSubURL) |
|
c.SetCookie(setting.LoginStatusCookieName, "", -1, setting.AppSubURL) |
|
} |
|
}() |
|
|
|
u, err := models.GetUserByName(uname) |
|
if err != nil { |
|
if !errors.IsUserNotExist(err) { |
|
return false, fmt.Errorf("GetUserByName: %v", err) |
|
} |
|
return false, nil |
|
} |
|
|
|
if val, ok := c.GetSuperSecureCookie(u.Rands+u.Passwd, setting.CookieRememberName); !ok || val != u.Name { |
|
return false, nil |
|
} |
|
|
|
isSucceed = true |
|
c.Session.Set("uid", u.ID) |
|
c.Session.Set("uname", u.Name) |
|
c.SetCookie(setting.CSRFCookieName, "", -1, setting.AppSubURL) |
|
if setting.EnableLoginStatusCookie { |
|
c.SetCookie(setting.LoginStatusCookieName, "true", 0, setting.AppSubURL) |
|
} |
|
return true, nil |
|
} |
|
|
|
// isValidRedirect returns false if the URL does not redirect to same site. |
|
// False: //url, http://url |
|
// True: /url |
|
func isValidRedirect(url string) bool { |
|
return len(url) >= 2 && url[0] == '/' && url[1] != '/' |
|
} |
|
|
|
func Login(c *context.Context) { |
|
c.Data["Title"] = c.Tr("sign_in") |
|
|
|
// Check auto-login. |
|
isSucceed, err := AutoLogin(c) |
|
if err != nil { |
|
c.Handle(500, "AutoLogin", err) |
|
return |
|
} |
|
|
|
redirectTo := c.Query("redirect_to") |
|
if len(redirectTo) > 0 { |
|
c.SetCookie("redirect_to", redirectTo, 0, setting.AppSubURL) |
|
} else { |
|
redirectTo, _ = url.QueryUnescape(c.GetCookie("redirect_to")) |
|
} |
|
|
|
if isSucceed { |
|
if isValidRedirect(redirectTo) { |
|
c.Redirect(redirectTo) |
|
} else { |
|
c.Redirect(setting.AppSubURL + "/") |
|
} |
|
c.SetCookie("redirect_to", "", -1, setting.AppSubURL) |
|
return |
|
} |
|
|
|
c.HTML(200, LOGIN) |
|
} |
|
|
|
func afterLogin(c *context.Context, u *models.User, remember bool) { |
|
if remember { |
|
days := 86400 * setting.LoginRememberDays |
|
c.SetCookie(setting.CookieUserName, u.Name, days, setting.AppSubURL, "", setting.CookieSecure, true) |
|
c.SetSuperSecureCookie(u.Rands+u.Passwd, setting.CookieRememberName, u.Name, days, setting.AppSubURL, "", setting.CookieSecure, true) |
|
} |
|
|
|
c.Session.Set("uid", u.ID) |
|
c.Session.Set("uname", u.Name) |
|
c.Session.Delete("twoFactorRemember") |
|
c.Session.Delete("twoFactorUserID") |
|
|
|
// Clear whatever CSRF has right now, force to generate a new one |
|
c.SetCookie(setting.CSRFCookieName, "", -1, setting.AppSubURL) |
|
if setting.EnableLoginStatusCookie { |
|
c.SetCookie(setting.LoginStatusCookieName, "true", 0, setting.AppSubURL) |
|
} |
|
|
|
redirectTo, _ := url.QueryUnescape(c.GetCookie("redirect_to")) |
|
c.SetCookie("redirect_to", "", -1, setting.AppSubURL) |
|
if isValidRedirect(redirectTo) { |
|
c.Redirect(redirectTo) |
|
return |
|
} |
|
|
|
c.Redirect(setting.AppSubURL + "/") |
|
} |
|
|
|
func LoginPost(c *context.Context, f form.SignIn) { |
|
c.Data["Title"] = c.Tr("sign_in") |
|
|
|
if c.HasError() { |
|
c.Success(LOGIN) |
|
return |
|
} |
|
|
|
u, err := models.UserSignIn(f.UserName, f.Password) |
|
if err != nil { |
|
if errors.IsUserNotExist(err) { |
|
c.RenderWithErr(c.Tr("form.username_password_incorrect"), LOGIN, &f) |
|
} else { |
|
c.ServerError("UserSignIn", err) |
|
} |
|
return |
|
} |
|
|
|
if !u.IsEnabledTwoFactor() { |
|
afterLogin(c, u, f.Remember) |
|
return |
|
} |
|
|
|
c.Session.Set("twoFactorRemember", f.Remember) |
|
c.Session.Set("twoFactorUserID", u.ID) |
|
c.Redirect(setting.AppSubURL + "/user/login/two_factor") |
|
} |
|
|
|
func LoginTwoFactor(c *context.Context) { |
|
_, ok := c.Session.Get("twoFactorUserID").(int64) |
|
if !ok { |
|
c.NotFound() |
|
return |
|
} |
|
|
|
c.Success(TWO_FACTOR) |
|
} |
|
|
|
func LoginTwoFactorPost(c *context.Context) { |
|
userID, ok := c.Session.Get("twoFactorUserID").(int64) |
|
if !ok { |
|
c.NotFound() |
|
return |
|
} |
|
|
|
t, err := models.GetTwoFactorByUserID(userID) |
|
if err != nil { |
|
c.ServerError("GetTwoFactorByUserID", err) |
|
return |
|
} |
|
valid, err := t.ValidateTOTP(c.Query("passcode")) |
|
if err != nil { |
|
c.ServerError("ValidateTOTP", err) |
|
return |
|
} else if !valid { |
|
c.Flash.Error(c.Tr("settings.two_factor_invalid_passcode")) |
|
c.Redirect(setting.AppSubURL + "/user/login/two_factor") |
|
return |
|
} |
|
|
|
u, err := models.GetUserByID(userID) |
|
if err != nil { |
|
c.ServerError("GetUserByID", err) |
|
return |
|
} |
|
afterLogin(c, u, c.Session.Get("twoFactorRemember").(bool)) |
|
} |
|
|
|
func LoginTwoFactorRecoveryCode(c *context.Context) { |
|
_, ok := c.Session.Get("twoFactorUserID").(int64) |
|
if !ok { |
|
c.NotFound() |
|
return |
|
} |
|
|
|
c.Success(TWO_FACTOR_RECOVERY_CODE) |
|
} |
|
|
|
func LoginTwoFactorRecoveryCodePost(c *context.Context) { |
|
userID, ok := c.Session.Get("twoFactorUserID").(int64) |
|
if !ok { |
|
c.NotFound() |
|
return |
|
} |
|
|
|
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") |
|
} else { |
|
c.ServerError("UseRecoveryCode", err) |
|
} |
|
return |
|
} |
|
|
|
u, err := models.GetUserByID(userID) |
|
if err != nil { |
|
c.ServerError("GetUserByID", err) |
|
return |
|
} |
|
afterLogin(c, u, c.Session.Get("twoFactorRemember").(bool)) |
|
} |
|
|
|
func SignOut(c *context.Context) { |
|
c.Session.Delete("uid") |
|
c.Session.Delete("uname") |
|
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 + "/") |
|
} |
|
|
|
func SignUp(c *context.Context) { |
|
c.Data["Title"] = c.Tr("sign_up") |
|
|
|
c.Data["EnableCaptcha"] = setting.Service.EnableCaptcha |
|
|
|
if setting.Service.DisableRegistration { |
|
c.Data["DisableRegistration"] = true |
|
c.HTML(200, SIGNUP) |
|
return |
|
} |
|
|
|
c.HTML(200, SIGNUP) |
|
} |
|
|
|
func SignUpPost(c *context.Context, cpt *captcha.Captcha, f form.Register) { |
|
c.Data["Title"] = c.Tr("sign_up") |
|
|
|
c.Data["EnableCaptcha"] = setting.Service.EnableCaptcha |
|
|
|
if setting.Service.DisableRegistration { |
|
c.Error(403) |
|
return |
|
} |
|
|
|
if c.HasError() { |
|
c.HTML(200, SIGNUP) |
|
return |
|
} |
|
|
|
if setting.Service.EnableCaptcha && !cpt.VerifyReq(c.Req) { |
|
c.Data["Err_Captcha"] = true |
|
c.RenderWithErr(c.Tr("form.captcha_incorrect"), SIGNUP, &f) |
|
return |
|
} |
|
|
|
if f.Password != f.Retype { |
|
c.Data["Err_Password"] = true |
|
c.RenderWithErr(c.Tr("form.password_not_match"), SIGNUP, &f) |
|
return |
|
} |
|
|
|
u := &models.User{ |
|
Name: f.UserName, |
|
Email: f.Email, |
|
Passwd: f.Password, |
|
IsActive: !setting.Service.RegisterEmailConfirm, |
|
} |
|
if err := models.CreateUser(u); err != nil { |
|
switch { |
|
case models.IsErrUserAlreadyExist(err): |
|
c.Data["Err_UserName"] = true |
|
c.RenderWithErr(c.Tr("form.username_been_taken"), SIGNUP, &f) |
|
case models.IsErrEmailAlreadyUsed(err): |
|
c.Data["Err_Email"] = true |
|
c.RenderWithErr(c.Tr("form.email_been_used"), SIGNUP, &f) |
|
case models.IsErrNameReserved(err): |
|
c.Data["Err_UserName"] = true |
|
c.RenderWithErr(c.Tr("user.form.name_reserved", err.(models.ErrNameReserved).Name), SIGNUP, &f) |
|
case models.IsErrNamePatternNotAllowed(err): |
|
c.Data["Err_UserName"] = true |
|
c.RenderWithErr(c.Tr("user.form.name_pattern_not_allowed", err.(models.ErrNamePatternNotAllowed).Pattern), SIGNUP, &f) |
|
default: |
|
c.Handle(500, "CreateUser", err) |
|
} |
|
return |
|
} |
|
log.Trace("Account created: %s", u.Name) |
|
|
|
// Auto-set admin for the only user. |
|
if models.CountUsers() == 1 { |
|
u.IsAdmin = true |
|
u.IsActive = true |
|
if err := models.UpdateUser(u); err != nil { |
|
c.Handle(500, "UpdateUser", err) |
|
return |
|
} |
|
} |
|
|
|
// Send confirmation email, no need for social account. |
|
if setting.Service.RegisterEmailConfirm && u.ID > 1 { |
|
mailer.SendActivateAccountMail(c.Context, models.NewMailerUser(u)) |
|
c.Data["IsSendRegisterMail"] = true |
|
c.Data["Email"] = u.Email |
|
c.Data["Hours"] = setting.Service.ActiveCodeLives / 60 |
|
c.HTML(200, ACTIVATE) |
|
|
|
if err := c.Cache.Put("MailResendLimit_"+u.LowerName, u.LowerName, 180); err != nil { |
|
log.Error(4, "Set cache(MailResendLimit) fail: %v", err) |
|
} |
|
return |
|
} |
|
|
|
c.Redirect(setting.AppSubURL + "/user/login") |
|
} |
|
|
|
func Activate(c *context.Context) { |
|
code := c.Query("code") |
|
if len(code) == 0 { |
|
c.Data["IsActivatePage"] = true |
|
if c.User.IsActive { |
|
c.Error(404) |
|
return |
|
} |
|
// Resend confirmation email. |
|
if setting.Service.RegisterEmailConfirm { |
|
if c.Cache.IsExist("MailResendLimit_" + c.User.LowerName) { |
|
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) |
|
} |
|
} |
|
} else { |
|
c.Data["ServiceNotEnabled"] = true |
|
} |
|
c.HTML(200, ACTIVATE) |
|
return |
|
} |
|
|
|
// Verify code. |
|
if user := models.VerifyUserActiveCode(code); user != nil { |
|
user.IsActive = true |
|
var err error |
|
if user.Rands, err = models.GetUserSalt(); err != nil { |
|
c.Handle(500, "UpdateUser", err) |
|
return |
|
} |
|
if err := models.UpdateUser(user); err != nil { |
|
c.Handle(500, "UpdateUser", err) |
|
return |
|
} |
|
|
|
log.Trace("User activated: %s", user.Name) |
|
|
|
c.Session.Set("uid", user.ID) |
|
c.Session.Set("uname", user.Name) |
|
c.Redirect(setting.AppSubURL + "/") |
|
return |
|
} |
|
|
|
c.Data["IsActivateFailed"] = true |
|
c.HTML(200, ACTIVATE) |
|
} |
|
|
|
func ActivateEmail(c *context.Context) { |
|
code := c.Query("code") |
|
email_string := c.Query("email") |
|
|
|
// Verify code. |
|
if email := models.VerifyActiveEmailCode(code, email_string); email != nil { |
|
if err := email.Activate(); err != nil { |
|
c.Handle(500, "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") |
|
return |
|
} |
|
|
|
func ForgotPasswd(c *context.Context) { |
|
c.Data["Title"] = c.Tr("auth.forgot_password") |
|
|
|
if setting.MailService == nil { |
|
c.Data["IsResetDisable"] = true |
|
c.HTML(200, FORGOT_PASSWORD) |
|
return |
|
} |
|
|
|
c.Data["IsResetRequest"] = true |
|
c.HTML(200, FORGOT_PASSWORD) |
|
} |
|
|
|
func ForgotPasswdPost(c *context.Context) { |
|
c.Data["Title"] = c.Tr("auth.forgot_password") |
|
|
|
if setting.MailService == nil { |
|
c.Handle(403, "ForgotPasswdPost", nil) |
|
return |
|
} |
|
c.Data["IsResetRequest"] = true |
|
|
|
email := c.Query("email") |
|
c.Data["Email"] = email |
|
|
|
u, err := models.GetUserByEmail(email) |
|
if err != nil { |
|
if errors.IsUserNotExist(err) { |
|
c.Data["Hours"] = setting.Service.ActiveCodeLives / 60 |
|
c.Data["IsResetSent"] = true |
|
c.HTML(200, FORGOT_PASSWORD) |
|
return |
|
} else { |
|
c.Handle(500, "user.ResetPasswd(check existence)", err) |
|
} |
|
return |
|
} |
|
|
|
if !u.IsLocal() { |
|
c.Data["Err_Email"] = true |
|
c.RenderWithErr(c.Tr("auth.non_local_account"), FORGOT_PASSWORD, nil) |
|
return |
|
} |
|
|
|
if c.Cache.IsExist("MailResendLimit_" + u.LowerName) { |
|
c.Data["ResendLimited"] = true |
|
c.HTML(200, 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) |
|
} |
|
|
|
c.Data["Hours"] = setting.Service.ActiveCodeLives / 60 |
|
c.Data["IsResetSent"] = true |
|
c.HTML(200, FORGOT_PASSWORD) |
|
} |
|
|
|
func ResetPasswd(c *context.Context) { |
|
c.Data["Title"] = c.Tr("auth.reset_password") |
|
|
|
code := c.Query("code") |
|
if len(code) == 0 { |
|
c.Error(404) |
|
return |
|
} |
|
c.Data["Code"] = code |
|
c.Data["IsResetForm"] = true |
|
c.HTML(200, RESET_PASSWORD) |
|
} |
|
|
|
func ResetPasswdPost(c *context.Context) { |
|
c.Data["Title"] = c.Tr("auth.reset_password") |
|
|
|
code := c.Query("code") |
|
if len(code) == 0 { |
|
c.Error(404) |
|
return |
|
} |
|
c.Data["Code"] = code |
|
|
|
if u := models.VerifyUserActiveCode(code); u != nil { |
|
// Validate password length. |
|
passwd := c.Query("password") |
|
if len(passwd) < 6 { |
|
c.Data["IsResetForm"] = true |
|
c.Data["Err_Password"] = true |
|
c.RenderWithErr(c.Tr("auth.password_too_short"), RESET_PASSWORD, nil) |
|
return |
|
} |
|
|
|
u.Passwd = passwd |
|
var err error |
|
if u.Rands, err = models.GetUserSalt(); err != nil { |
|
c.Handle(500, "UpdateUser", err) |
|
return |
|
} |
|
if u.Salt, err = models.GetUserSalt(); err != nil { |
|
c.Handle(500, "UpdateUser", err) |
|
return |
|
} |
|
u.EncodePasswd() |
|
if err := models.UpdateUser(u); err != nil { |
|
c.Handle(500, "UpdateUser", err) |
|
return |
|
} |
|
|
|
log.Trace("User password reset: %s", u.Name) |
|
c.Redirect(setting.AppSubURL + "/user/login") |
|
return |
|
} |
|
|
|
c.Data["IsResetFailed"] = true |
|
c.HTML(200, RESET_PASSWORD) |
|
}
|
|
|