gitea/routers/user/user.go

445 lines
11 KiB
Go
Raw Normal View History

2014-02-18 00:38:50 +01:00
// 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 (
2014-03-22 22:59:22 +01:00
"net/url"
2014-03-19 09:48:45 +01:00
"strings"
2014-02-18 00:38:50 +01:00
"github.com/gogits/gogs/models"
2014-03-06 08:21:44 +01:00
"github.com/gogits/gogs/modules/auth"
"github.com/gogits/gogs/modules/base"
2014-03-19 09:48:45 +01:00
"github.com/gogits/gogs/modules/log"
2014-03-19 15:46:48 +01:00
"github.com/gogits/gogs/modules/mailer"
"github.com/gogits/gogs/modules/middleware"
2014-02-18 00:38:50 +01:00
)
2014-04-10 22:36:50 +02:00
func SignIn(ctx *middleware.Context) {
2014-03-15 14:17:16 +01:00
ctx.Data["Title"] = "Log In"
2014-03-06 17:42:14 +01:00
2014-04-14 00:12:07 +02:00
if _, ok := ctx.Session.Get("socialId").(int64); ok {
ctx.Data["IsSocialLogin"] = true
ctx.HTML(200, "user/signin")
return
}
2014-04-10 22:36:50 +02:00
// Check auto-login.
userName := ctx.GetCookie(base.CookieUserName)
if len(userName) == 0 {
ctx.HTML(200, "user/signin")
return
}
2014-03-22 21:40:09 +01:00
2014-05-24 21:28:31 +02:00
if base.OauthService != nil {
ctx.Data["OauthEnabled"] = true
ctx.Data["OauthService"] = base.OauthService
}
2014-04-10 22:36:50 +02:00
isSucceed := false
defer func() {
if !isSucceed {
2014-04-14 00:12:07 +02:00
log.Trace("user.SignIn(auto-login cookie cleared): %s", userName)
2014-04-10 22:36:50 +02:00
ctx.SetCookie(base.CookieUserName, "", -1)
ctx.SetCookie(base.CookieRememberName, "", -1)
2014-04-11 19:01:30 +02:00
return
2014-03-22 21:40:09 +01:00
}
2014-04-10 22:36:50 +02:00
}()
2014-03-22 21:40:09 +01:00
2014-04-12 03:42:09 +02:00
user, err := models.GetUserByName(userName)
2014-04-10 22:36:50 +02:00
if err != nil {
2014-05-05 22:21:43 +02:00
ctx.Handle(500, "user.SignIn(GetUserByName)", err)
2014-04-10 22:36:50 +02:00
return
}
2014-03-22 21:40:09 +01:00
2014-04-10 22:36:50 +02:00
secret := base.EncodeMd5(user.Rands + user.Passwd)
value, _ := ctx.GetSecureCookie(secret, base.CookieRememberName)
if value != user.Name {
2014-05-05 22:21:43 +02:00
ctx.HTML(200, "user/signin")
2014-03-06 17:42:14 +01:00
return
}
2014-04-10 22:36:50 +02:00
isSucceed = true
2014-04-11 19:01:30 +02:00
2014-04-10 22:36:50 +02:00
ctx.Session.Set("userId", user.Id)
ctx.Session.Set("userName", user.Name)
if redirectTo, _ := url.QueryUnescape(ctx.GetCookie("redirect_to")); len(redirectTo) > 0 {
ctx.SetCookie("redirect_to", "", -1)
ctx.Redirect(redirectTo)
return
}
ctx.Redirect("/")
}
func SignInPost(ctx *middleware.Context, form auth.LogInForm) {
ctx.Data["Title"] = "Log In"
2014-04-14 00:12:07 +02:00
sid, isOauth := ctx.Session.Get("socialId").(int64)
if isOauth {
ctx.Data["IsSocialLogin"] = true
} else if base.OauthService != nil {
2014-04-10 22:36:50 +02:00
ctx.Data["OauthEnabled"] = true
2014-04-14 00:12:07 +02:00
ctx.Data["OauthService"] = base.OauthService
2014-04-10 22:36:50 +02:00
}
if ctx.HasError() {
2014-03-20 12:50:26 +01:00
ctx.HTML(200, "user/signin")
2014-03-06 17:42:14 +01:00
return
}
2014-05-24 21:28:31 +02:00
user, err := models.LoginUser(form.UserName, form.Password)
2014-03-06 17:42:14 +01:00
if err != nil {
2014-03-22 13:49:53 +01:00
if err == models.ErrUserNotExist {
log.Trace("%s Log in failed: %s", ctx.Req.RequestURI, form.UserName)
2014-03-15 15:52:14 +01:00
ctx.RenderWithErr("Username or password is not correct", "user/signin", &form)
return
}
2014-03-06 17:42:14 +01:00
2014-04-10 22:36:50 +02:00
ctx.Handle(500, "user.SignIn", err)
2014-03-06 17:42:14 +01:00
return
}
2014-03-06 17:42:14 +01:00
2014-05-05 22:21:43 +02:00
if form.Remember {
2014-03-22 21:40:09 +01:00
secret := base.EncodeMd5(user.Rands + user.Passwd)
days := 86400 * base.LogInRememberDays
ctx.SetCookie(base.CookieUserName, user.Name, days)
ctx.SetSecureCookie(secret, base.CookieRememberName, user.Name, days)
}
2014-04-14 00:12:07 +02:00
// Bind with social account.
if isOauth {
2014-04-11 19:01:30 +02:00
if err = models.BindUserOauth2(user.Id, sid); err != nil {
2014-04-14 00:12:07 +02:00
if err == models.ErrOauth2RecordNotExist {
ctx.Handle(404, "user.SignInPost(GetOauth2ById)", err)
} else {
ctx.Handle(500, "user.SignInPost(GetOauth2ById)", err)
}
return
2014-04-11 19:01:30 +02:00
}
ctx.Session.Delete("socialId")
2014-04-14 00:12:07 +02:00
log.Trace("%s OAuth binded: %s -> %d", ctx.Req.RequestURI, form.UserName, sid)
2014-04-11 19:01:30 +02:00
}
2014-04-14 00:12:07 +02:00
2014-03-15 15:34:33 +01:00
ctx.Session.Set("userId", user.Id)
ctx.Session.Set("userName", user.Name)
2014-04-10 22:36:50 +02:00
if redirectTo, _ := url.QueryUnescape(ctx.GetCookie("redirect_to")); len(redirectTo) > 0 {
2014-03-22 22:59:22 +01:00
ctx.SetCookie("redirect_to", "", -1)
ctx.Redirect(redirectTo)
2014-04-10 22:36:50 +02:00
return
2014-03-22 22:59:22 +01:00
}
2014-04-10 22:36:50 +02:00
ctx.Redirect("/")
2014-02-18 00:38:50 +01:00
}
2014-03-19 14:57:55 +01:00
func SignOut(ctx *middleware.Context) {
ctx.Session.Delete("userId")
ctx.Session.Delete("userName")
2014-04-11 19:01:30 +02:00
ctx.Session.Delete("socialId")
2014-04-12 03:42:09 +02:00
ctx.Session.Delete("socialName")
ctx.Session.Delete("socialEmail")
2014-03-22 22:59:22 +01:00
ctx.SetCookie(base.CookieUserName, "", -1)
ctx.SetCookie(base.CookieRememberName, "", -1)
2014-03-19 14:57:55 +01:00
ctx.Redirect("/")
2014-03-06 19:18:19 +01:00
}
2014-04-10 22:36:50 +02:00
func SignUp(ctx *middleware.Context) {
2014-03-15 15:34:33 +01:00
ctx.Data["Title"] = "Sign Up"
ctx.Data["PageIsSignUp"] = true
2014-03-06 08:21:44 +01:00
if base.Service.DisableRegistration {
ctx.Data["DisableRegistration"] = true
2014-03-21 06:09:22 +01:00
ctx.HTML(200, "user/signup")
return
}
2014-04-14 00:12:07 +02:00
if sid, ok := ctx.Session.Get("socialId").(int64); ok {
oauthSignUp(ctx, sid)
return
}
ctx.HTML(200, "user/signup")
}
func oauthSignUp(ctx *middleware.Context, sid int64) {
ctx.Data["Title"] = "OAuth Sign Up"
ctx.Data["PageIsSignUp"] = true
if _, err := models.GetOauth2ById(sid); err != nil {
if err == models.ErrOauth2RecordNotExist {
ctx.Handle(404, "user.oauthSignUp(GetOauth2ById)", err)
} else {
ctx.Handle(500, "user.oauthSignUp(GetOauth2ById)", err)
}
return
}
ctx.Data["IsSocialLogin"] = true
ctx.Data["username"] = strings.Replace(ctx.Session.Get("socialName").(string), " ", "", -1)
ctx.Data["email"] = ctx.Session.Get("socialEmail")
log.Trace("user.oauthSignUp(social ID): %v", ctx.Session.Get("socialId"))
2014-04-10 22:36:50 +02:00
ctx.HTML(200, "user/signup")
}
func SignUpPost(ctx *middleware.Context, form auth.RegisterForm) {
ctx.Data["Title"] = "Sign Up"
ctx.Data["PageIsSignUp"] = true
if base.Service.DisableRegistration {
2014-04-10 22:36:50 +02:00
ctx.Handle(403, "user.SignUpPost", nil)
2014-02-18 00:38:50 +01:00
return
}
2014-04-14 00:12:07 +02:00
sid, isOauth := ctx.Session.Get("socialId").(int64)
if isOauth {
ctx.Data["IsSocialLogin"] = true
}
2014-05-05 22:21:43 +02:00
if ctx.HasError() {
ctx.HTML(200, "user/signup")
return
}
2014-03-06 17:10:35 +01:00
if form.Password != form.RetypePasswd {
2014-03-15 15:34:33 +01:00
ctx.Data["Err_Password"] = true
ctx.Data["Err_RetypePasswd"] = true
2014-05-06 01:58:13 +02:00
ctx.RenderWithErr("Password and re-type password are not same.", "user/signup", &form)
2014-03-06 08:21:44 +01:00
return
2014-02-18 23:31:16 +01:00
}
2014-03-04 01:03:08 +01:00
2014-03-06 08:21:44 +01:00
u := &models.User{
2014-03-19 12:21:23 +01:00
Name: form.UserName,
Email: form.Email,
Passwd: form.Password,
2014-04-14 00:12:07 +02:00
IsActive: !base.Service.RegisterEmailConfirm || isOauth,
2014-02-18 23:31:16 +01:00
}
2014-03-06 08:21:44 +01:00
2014-03-19 13:27:27 +01:00
var err error
if u, err = models.RegisterUser(u); err != nil {
2014-03-20 16:41:24 +01:00
switch err {
case models.ErrUserAlreadyExist:
2014-03-15 15:52:14 +01:00
ctx.RenderWithErr("Username has been already taken", "user/signup", &form)
2014-03-20 16:41:24 +01:00
case models.ErrEmailAlreadyUsed:
2014-03-15 15:52:14 +01:00
ctx.RenderWithErr("E-mail address has been already used", "user/signup", &form)
2014-03-20 16:41:24 +01:00
case models.ErrUserNameIllegal:
ctx.RenderWithErr(models.ErrRepoNameIllegal.Error(), "user/signup", &form)
2014-03-06 17:10:35 +01:00
default:
2014-04-14 00:12:07 +02:00
ctx.Handle(500, "user.SignUp(RegisterUser)", err)
2014-03-06 08:21:44 +01:00
}
2014-02-18 23:31:16 +01:00
return
}
2014-04-14 00:12:07 +02:00
log.Trace("%s User created: %s", ctx.Req.RequestURI, form.UserName)
// Bind social account.
if isOauth {
if err = models.BindUserOauth2(u.Id, sid); err != nil {
ctx.Handle(500, "user.SignUp(BindUserOauth2)", err)
return
}
2014-04-11 19:01:30 +02:00
ctx.Session.Delete("socialId")
2014-04-14 00:12:07 +02:00
log.Trace("%s OAuth binded: %s -> %d", ctx.Req.RequestURI, form.UserName, sid)
2014-04-11 19:01:30 +02:00
}
2014-03-19 13:27:27 +01:00
2014-04-14 00:12:07 +02:00
// Send confirmation e-mail, no need for social account.
if !isOauth && base.Service.RegisterEmailConfirm && u.Id > 1 {
2014-03-19 15:46:48 +01:00
mailer.SendRegisterMail(ctx.Render, u)
ctx.Data["IsSendRegisterMail"] = true
ctx.Data["Email"] = u.Email
ctx.Data["Hours"] = base.Service.ActiveCodeLives / 60
2014-04-19 03:17:43 +02:00
ctx.HTML(200, "user/activate")
2014-03-21 15:09:57 +01:00
if err = ctx.Cache.Put("MailResendLimit_"+u.LowerName, u.LowerName, 180); err != nil {
log.Error("Set cache(MailResendLimit) fail: %v", err)
}
2014-03-19 15:46:48 +01:00
return
2014-03-19 13:27:27 +01:00
}
2014-03-19 14:57:55 +01:00
ctx.Redirect("/user/login")
2014-02-18 00:38:50 +01:00
}
2014-02-19 19:13:02 +01:00
2014-03-15 15:34:33 +01:00
func Delete(ctx *middleware.Context) {
ctx.Data["Title"] = "Delete Account"
2014-03-18 23:31:54 +01:00
ctx.Data["PageIsUserSetting"] = true
ctx.Data["IsUserPageSettingDelete"] = true
2014-04-10 22:36:50 +02:00
ctx.HTML(200, "user/delete")
}
2014-04-10 22:36:50 +02:00
func DeletePost(ctx *middleware.Context) {
ctx.Data["Title"] = "Delete Account"
ctx.Data["PageIsUserSetting"] = true
ctx.Data["IsUserPageSettingDelete"] = true
2014-02-20 03:45:43 +01:00
2014-04-10 22:36:50 +02:00
tmpUser := models.User{
Passwd: ctx.Query("password"),
Salt: ctx.User.Salt,
}
2014-03-16 15:35:25 +01:00
tmpUser.EncodePasswd()
2014-04-10 22:36:50 +02:00
if tmpUser.Passwd != ctx.User.Passwd {
ctx.Flash.Error("Password is not correct. Make sure you are owner of this account.")
} else {
if err := models.DeleteUser(ctx.User); err != nil {
switch err {
case models.ErrUserOwnRepos:
2014-04-10 22:36:50 +02:00
ctx.Flash.Error("Your account still have ownership of repository, you have to delete or transfer them first.")
default:
2014-04-10 22:36:50 +02:00
ctx.Handle(500, "user.Delete", err)
return
}
} else {
2014-03-19 14:57:55 +01:00
ctx.Redirect("/")
2014-03-11 16:40:47 +01:00
return
}
}
2014-04-10 22:36:50 +02:00
ctx.Redirect("/user/delete")
2014-02-19 19:13:02 +01:00
}
2014-03-19 14:24:02 +01:00
func Activate(ctx *middleware.Context) {
code := ctx.Query("code")
if len(code) == 0 {
ctx.Data["IsActivatePage"] = true
2014-03-20 08:24:17 +01:00
if ctx.User.IsActive {
2014-03-23 06:12:55 +01:00
ctx.Handle(404, "user.Activate", nil)
2014-03-20 08:24:17 +01:00
return
}
2014-03-19 14:24:02 +01:00
// Resend confirmation e-mail.
if base.Service.RegisterEmailConfirm {
2014-03-21 15:09:57 +01:00
if ctx.Cache.IsExist("MailResendLimit_" + ctx.User.LowerName) {
ctx.Data["ResendLimited"] = true
} else {
ctx.Data["Hours"] = base.Service.ActiveCodeLives / 60
mailer.SendActiveMail(ctx.Render, ctx.User)
2014-04-10 03:42:25 +02:00
if err := ctx.Cache.Put("MailResendLimit_"+ctx.User.LowerName, ctx.User.LowerName, 180); err != nil {
log.Error("Set cache(MailResendLimit) fail: %v", err)
}
2014-03-21 15:09:57 +01:00
}
2014-03-19 14:24:02 +01:00
} else {
ctx.Data["ServiceNotEnabled"] = true
}
2014-04-18 18:12:10 +02:00
ctx.HTML(200, "user/activate")
2014-03-19 14:24:02 +01:00
return
}
2014-03-19 17:50:44 +01:00
// Verify code.
if user := models.VerifyUserActiveCode(code); user != nil {
user.IsActive = true
user.Rands = models.GetUserSalt()
2014-04-05 18:32:34 +02:00
if err := models.UpdateUser(user); err != nil {
ctx.Handle(404, "user.Activate", err)
return
}
2014-03-20 02:05:48 +01:00
2014-04-05 18:32:34 +02:00
log.Trace("%s User activated: %s", ctx.Req.RequestURI, user.Name)
2014-03-20 02:05:48 +01:00
2014-03-19 17:50:44 +01:00
ctx.Session.Set("userId", user.Id)
ctx.Session.Set("userName", user.Name)
2014-03-22 22:59:22 +01:00
ctx.Redirect("/")
2014-03-19 17:50:44 +01:00
return
}
ctx.Data["IsActivateFailed"] = true
2014-04-18 18:12:10 +02:00
ctx.HTML(200, "user/activate")
2014-03-19 14:24:02 +01:00
}
2014-04-05 18:32:34 +02:00
func ForgotPasswd(ctx *middleware.Context) {
ctx.Data["Title"] = "Forgot Password"
if base.MailService == nil {
ctx.Data["IsResetDisable"] = true
ctx.HTML(200, "user/forgot_passwd")
return
}
ctx.Data["IsResetRequest"] = true
2014-04-10 22:36:50 +02:00
ctx.HTML(200, "user/forgot_passwd")
}
func ForgotPasswdPost(ctx *middleware.Context) {
ctx.Data["Title"] = "Forgot Password"
if base.MailService == nil {
ctx.Handle(403, "user.ForgotPasswdPost", nil)
2014-04-05 18:32:34 +02:00
return
}
2014-04-10 22:36:50 +02:00
ctx.Data["IsResetRequest"] = true
2014-04-05 18:32:34 +02:00
email := ctx.Query("email")
u, err := models.GetUserByEmail(email)
if err != nil {
if err == models.ErrUserNotExist {
ctx.RenderWithErr("This e-mail address does not associate to any account.", "user/forgot_passwd", nil)
} else {
2014-04-10 22:36:50 +02:00
ctx.Handle(500, "user.ResetPasswd(check existence)", err)
2014-04-05 18:32:34 +02:00
}
return
}
2014-04-10 03:42:25 +02:00
if ctx.Cache.IsExist("MailResendLimit_" + u.LowerName) {
ctx.Data["ResendLimited"] = true
ctx.HTML(200, "user/forgot_passwd")
return
}
2014-04-05 18:32:34 +02:00
mailer.SendResetPasswdMail(ctx.Render, u)
2014-04-10 03:42:25 +02:00
if err = ctx.Cache.Put("MailResendLimit_"+u.LowerName, u.LowerName, 180); err != nil {
log.Error("Set cache(MailResendLimit) fail: %v", err)
}
2014-04-05 18:32:34 +02:00
ctx.Data["Email"] = email
ctx.Data["Hours"] = base.Service.ActiveCodeLives / 60
ctx.Data["IsResetSent"] = true
ctx.HTML(200, "user/forgot_passwd")
}
func ResetPasswd(ctx *middleware.Context) {
2014-04-10 22:36:50 +02:00
ctx.Data["Title"] = "Reset Password"
2014-04-05 18:32:34 +02:00
code := ctx.Query("code")
if len(code) == 0 {
ctx.Error(404)
return
}
ctx.Data["Code"] = code
2014-04-10 22:36:50 +02:00
ctx.Data["IsResetForm"] = true
ctx.HTML(200, "user/reset_passwd")
}
func ResetPasswdPost(ctx *middleware.Context) {
ctx.Data["Title"] = "Reset Password"
code := ctx.Query("code")
if len(code) == 0 {
ctx.Error(404)
2014-04-05 18:32:34 +02:00
return
}
2014-04-10 22:36:50 +02:00
ctx.Data["Code"] = code
2014-04-05 18:32:34 +02:00
if u := models.VerifyUserActiveCode(code); u != nil {
// Validate password length.
passwd := ctx.Query("passwd")
if len(passwd) < 6 || len(passwd) > 30 {
ctx.Data["IsResetForm"] = true
ctx.RenderWithErr("Password length should be in 6 and 30.", "user/reset_passwd", nil)
return
}
u.Passwd = passwd
u.Rands = models.GetUserSalt()
2014-04-06 22:10:57 +02:00
u.Salt = models.GetUserSalt()
u.EncodePasswd()
2014-04-05 18:32:34 +02:00
if err := models.UpdateUser(u); err != nil {
2014-04-10 22:36:50 +02:00
ctx.Handle(500, "user.ResetPasswd(UpdateUser)", err)
2014-04-05 18:32:34 +02:00
return
}
log.Trace("%s User password reset: %s", ctx.Req.RequestURI, u.Name)
ctx.Redirect("/user/login")
return
}
ctx.Data["IsResetFailed"] = true
ctx.HTML(200, "user/reset_passwd")
}