bench-forgejo/routers/user/user.go

501 lines
12 KiB
Go
Raw Normal View History

2014-02-18 05:08:50 +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 (
2014-03-15 15:00:59 +05:30
"fmt"
2014-03-23 03:29:22 +05:30
"net/url"
2014-03-19 14:18:45 +05:30
"strings"
2014-02-18 05:08:50 +05:30
2014-03-30 21:41:28 +05:30
"github.com/go-martini/martini"
2014-02-18 05:08:50 +05:30
"github.com/gogits/gogs/models"
2014-03-06 12:51:44 +05:30
"github.com/gogits/gogs/modules/auth"
"github.com/gogits/gogs/modules/base"
2014-03-19 14:18:45 +05:30
"github.com/gogits/gogs/modules/log"
2014-03-19 20:16:48 +05:30
"github.com/gogits/gogs/modules/mailer"
"github.com/gogits/gogs/modules/middleware"
2014-02-18 05:08:50 +05:30
)
2014-03-15 18:47:16 +05:30
func Dashboard(ctx *middleware.Context) {
ctx.Data["Title"] = "Dashboard"
ctx.Data["PageIsUserDashboard"] = true
repos, err := models.GetRepositories(&models.User{Id: ctx.User.Id})
2014-03-11 11:47:05 +05:30
if err != nil {
2014-03-15 18:47:16 +05:30
ctx.Handle(200, "user.Dashboard", err)
2014-03-11 11:47:05 +05:30
return
}
2014-03-15 18:47:16 +05:30
ctx.Data["MyRepos"] = repos
2014-03-15 15:00:59 +05:30
2014-03-15 18:47:16 +05:30
feeds, err := models.GetFeeds(ctx.User.Id, 0, false)
2014-03-15 15:00:59 +05:30
if err != nil {
2014-03-15 18:47:16 +05:30
ctx.Handle(200, "user.Dashboard", err)
2014-03-15 15:00:59 +05:30
return
}
2014-03-15 18:47:16 +05:30
ctx.Data["Feeds"] = feeds
2014-03-20 17:20:26 +05:30
ctx.HTML(200, "user/dashboard")
2014-03-06 19:03:17 +05:30
}
func Profile(ctx *middleware.Context, params martini.Params) {
ctx.Data["Title"] = "Profile"
2014-03-06 23:48:19 +05:30
// TODO: Need to check view self or others.
user, err := models.GetUserByName(params["username"])
if err != nil {
2014-03-15 18:47:16 +05:30
ctx.Handle(200, "user.Profile", err)
return
}
ctx.Data["Owner"] = user
tab := ctx.Query("tab")
ctx.Data["TabName"] = tab
switch tab {
case "activity":
feeds, err := models.GetFeeds(user.Id, 0, true)
if err != nil {
2014-03-15 18:47:16 +05:30
ctx.Handle(200, "user.Profile", err)
return
}
ctx.Data["Feeds"] = feeds
default:
2014-03-15 21:43:45 +05:30
repos, err := models.GetRepositories(user)
if err != nil {
ctx.Handle(200, "user.Profile", err)
return
}
ctx.Data["Repos"] = repos
2014-03-15 10:20:51 +05:30
}
2014-03-19 19:55:27 +05:30
ctx.Data["PageIsUserProfile"] = true
2014-03-20 17:20:26 +05:30
ctx.HTML(200, "user/profile")
}
2014-03-15 20:04:33 +05:30
func SignIn(ctx *middleware.Context, form auth.LogInForm) {
2014-03-15 18:47:16 +05:30
ctx.Data["Title"] = "Log In"
2014-03-06 22:12:14 +05:30
2014-03-15 18:47:16 +05:30
if ctx.Req.Method == "GET" {
if base.OauthService != nil {
ctx.Data["OauthEnabled"] = true
ctx.Data["OauthGitHubEnabled"] = base.OauthService.GitHub.Enabled
}
2014-03-23 02:10:09 +05:30
// Check auto-login.
userName := ctx.GetCookie(base.CookieUserName)
if len(userName) == 0 {
ctx.HTML(200, "user/signin")
return
}
isSucceed := false
defer func() {
if !isSucceed {
log.Trace("%s auto-login cookie cleared: %s", ctx.Req.RequestURI, userName)
ctx.SetCookie(base.CookieUserName, "", -1)
ctx.SetCookie(base.CookieRememberName, "", -1)
}
}()
user, err := models.GetUserByName(userName)
if err != nil {
ctx.HTML(200, "user/signin")
return
}
secret := base.EncodeMd5(user.Rands + user.Passwd)
value, _ := ctx.GetSecureCookie(secret, base.CookieRememberName)
if value != user.Name {
ctx.HTML(200, "user/signin")
return
}
isSucceed = true
ctx.Session.Set("userId", user.Id)
ctx.Session.Set("userName", user.Name)
2014-03-23 03:29:22 +05:30
redirectTo, _ := url.QueryUnescape(ctx.GetCookie("redirect_to"))
if len(redirectTo) > 0 {
ctx.SetCookie("redirect_to", "", -1)
ctx.Redirect(redirectTo)
} else {
ctx.Redirect("/")
}
2014-03-06 22:12:14 +05:30
return
}
if ctx.HasError() {
2014-03-20 17:20:26 +05:30
ctx.HTML(200, "user/signin")
2014-03-06 22:12:14 +05:30
return
}
user, err := models.LoginUserPlain(form.UserName, form.Password)
if err != nil {
2014-03-22 18:19:53 +05:30
if err == models.ErrUserNotExist {
2014-03-23 02:10:09 +05:30
log.Trace("%s Log in failed: %s/%s", ctx.Req.RequestURI, form.UserName, form.Password)
2014-03-15 20:22:14 +05:30
ctx.RenderWithErr("Username or password is not correct", "user/signin", &form)
return
}
2014-03-06 22:12:14 +05:30
2014-03-15 18:47:16 +05:30
ctx.Handle(200, "user.SignIn", err)
2014-03-06 22:12:14 +05:30
return
}
2014-03-06 22:12:14 +05:30
2014-03-23 02:10:09 +05:30
if form.Remember == "on" {
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-03-15 20:04:33 +05:30
ctx.Session.Set("userId", user.Id)
ctx.Session.Set("userName", user.Name)
2014-03-23 03:29:22 +05:30
redirectTo, _ := url.QueryUnescape(ctx.GetCookie("redirect_to"))
if len(redirectTo) > 0 {
ctx.SetCookie("redirect_to", "", -1)
ctx.Redirect(redirectTo)
} else {
ctx.Redirect("/")
}
2014-02-18 05:08:50 +05:30
}
2014-03-19 19:27:55 +05:30
func SignOut(ctx *middleware.Context) {
ctx.Session.Delete("userId")
ctx.Session.Delete("userName")
2014-03-23 03:29:22 +05:30
ctx.SetCookie(base.CookieUserName, "", -1)
ctx.SetCookie(base.CookieRememberName, "", -1)
2014-03-19 19:27:55 +05:30
ctx.Redirect("/")
2014-03-06 23:48:19 +05:30
}
2014-03-15 20:04:33 +05:30
func SignUp(ctx *middleware.Context, form auth.RegisterForm) {
ctx.Data["Title"] = "Sign Up"
ctx.Data["PageIsSignUp"] = true
2014-03-06 12:51:44 +05:30
2014-03-21 10:39:22 +05:30
if base.Service.DisenableRegisteration {
ctx.Data["DisenableRegisteration"] = true
ctx.HTML(200, "user/signup")
return
}
2014-03-15 20:04:33 +05:30
if ctx.Req.Method == "GET" {
2014-03-20 17:20:26 +05:30
ctx.HTML(200, "user/signup")
2014-02-18 05:08:50 +05:30
return
}
2014-03-06 21:40:35 +05:30
if form.Password != form.RetypePasswd {
2014-03-15 20:04:33 +05:30
ctx.Data["HasError"] = true
ctx.Data["Err_Password"] = true
ctx.Data["Err_RetypePasswd"] = true
ctx.Data["ErrorMsg"] = "Password and re-type password are not same"
auth.AssignForm(form, ctx.Data)
2014-03-06 21:40:35 +05:30
}
2014-03-15 20:22:14 +05:30
if ctx.HasError() {
2014-03-20 17:20:26 +05:30
ctx.HTML(200, "user/signup")
2014-03-06 12:51:44 +05:30
return
2014-02-19 04:01:16 +05:30
}
2014-03-04 05:33:08 +05:30
2014-03-06 12:51:44 +05:30
u := &models.User{
2014-03-19 16:51:23 +05:30
Name: form.UserName,
Email: form.Email,
Passwd: form.Password,
2014-03-19 17:57:27 +05:30
IsActive: !base.Service.RegisterEmailConfirm,
2014-02-19 04:01:16 +05:30
}
2014-03-06 12:51:44 +05:30
2014-03-19 17:57:27 +05:30
var err error
if u, err = models.RegisterUser(u); err != nil {
2014-03-20 21:11:24 +05:30
switch err {
case models.ErrUserAlreadyExist:
2014-03-15 20:22:14 +05:30
ctx.RenderWithErr("Username has been already taken", "user/signup", &form)
2014-03-20 21:11:24 +05:30
case models.ErrEmailAlreadyUsed:
2014-03-15 20:22:14 +05:30
ctx.RenderWithErr("E-mail address has been already used", "user/signup", &form)
2014-03-20 21:11:24 +05:30
case models.ErrUserNameIllegal:
ctx.RenderWithErr(models.ErrRepoNameIllegal.Error(), "user/signup", &form)
2014-03-06 21:40:35 +05:30
default:
2014-03-15 18:47:16 +05:30
ctx.Handle(200, "user.SignUp", err)
2014-03-06 12:51:44 +05:30
}
2014-02-19 04:01:16 +05:30
return
}
2014-03-19 14:18:45 +05:30
log.Trace("%s User created: %s", ctx.Req.RequestURI, strings.ToLower(form.UserName))
2014-03-19 17:57:27 +05:30
// Send confirmation e-mail.
2014-03-20 17:32:14 +05:30
if base.Service.RegisterEmailConfirm && u.Id > 1 {
2014-03-19 20:16:48 +05:30
mailer.SendRegisterMail(ctx.Render, u)
ctx.Data["IsSendRegisterMail"] = true
ctx.Data["Email"] = u.Email
ctx.Data["Hours"] = base.Service.ActiveCodeLives / 60
2014-03-20 17:20:26 +05:30
ctx.HTML(200, "user/active")
2014-03-21 19:39:57 +05:30
if err = ctx.Cache.Put("MailResendLimit_"+u.LowerName, u.LowerName, 180); err != nil {
log.Error("Set cache(MailResendLimit) fail: %v", err)
}
2014-03-19 20:16:48 +05:30
return
2014-03-19 17:57:27 +05:30
}
2014-03-19 19:27:55 +05:30
ctx.Redirect("/user/login")
2014-02-18 05:08:50 +05:30
}
2014-02-19 23:43:02 +05:30
2014-03-15 20:04:33 +05:30
func Delete(ctx *middleware.Context) {
ctx.Data["Title"] = "Delete Account"
2014-03-19 04:01:54 +05:30
ctx.Data["PageIsUserSetting"] = true
ctx.Data["IsUserPageSettingDelete"] = true
2014-03-15 20:04:33 +05:30
if ctx.Req.Method == "GET" {
2014-03-20 17:20:26 +05:30
ctx.HTML(200, "user/delete")
2014-02-20 08:15:43 +05:30
return
}
2014-03-16 20:05:25 +05:30
tmpUser := models.User{Passwd: ctx.Query("password")}
tmpUser.EncodePasswd()
if len(tmpUser.Passwd) == 0 || tmpUser.Passwd != ctx.User.Passwd {
2014-03-15 20:04:33 +05:30
ctx.Data["HasError"] = true
2014-03-16 20:05:25 +05:30
ctx.Data["ErrorMsg"] = "Password is not correct. Make sure you are owner of this account."
} else {
if err := models.DeleteUser(ctx.User); err != nil {
ctx.Data["HasError"] = true
switch err {
case models.ErrUserOwnRepos:
ctx.Data["ErrorMsg"] = "Your account still have ownership of repository, you have to delete or transfer them first."
default:
ctx.Handle(200, "user.Delete", err)
return
}
} else {
2014-03-19 19:27:55 +05:30
ctx.Redirect("/")
2014-03-11 21:10:47 +05:30
return
}
}
2014-03-20 17:20:26 +05:30
ctx.HTML(200, "user/delete")
2014-02-19 23:43:02 +05:30
}
2014-03-15 15:00:59 +05:30
const (
2014-03-19 04:01:54 +05:30
TPL_FEED = `<i class="icon fa fa-%s"></i>
2014-03-15 15:00:59 +05:30
<div class="info"><span class="meta">%s</span><br>%s</div>`
)
2014-03-15 20:04:33 +05:30
func Feeds(ctx *middleware.Context, form auth.FeedsForm) {
2014-03-15 15:00:59 +05:30
actions, err := models.GetFeeds(form.UserId, form.Page*20, false)
if err != nil {
2014-03-19 19:27:55 +05:30
ctx.JSON(500, err)
}
2014-03-15 15:00:59 +05:30
feeds := make([]string, len(actions))
for i := range actions {
2014-03-19 04:01:54 +05:30
feeds[i] = fmt.Sprintf(TPL_FEED, base.ActionIcon(actions[i].OpType),
2014-03-29 17:20:25 +05:30
base.TimeSince(actions[i].Created), base.ActionDesc(actions[i]))
2014-03-15 15:00:59 +05:30
}
2014-03-19 19:27:55 +05:30
ctx.JSON(200, &feeds)
}
2014-03-16 13:11:22 +05:30
2014-03-19 04:01:54 +05:30
func Issues(ctx *middleware.Context) {
2014-03-25 20:30:26 +05:30
ctx.Data["Title"] = "Your Issues"
2014-03-28 02:01:32 +05:30
ctx.Data["ViewType"] = "all"
page, _ := base.StrTo(ctx.Query("page")).Int()
2014-03-28 05:12:10 +05:30
repoId, _ := base.StrTo(ctx.Query("repoid")).Int64()
ctx.Data["RepoId"] = repoId
2014-03-28 02:01:32 +05:30
var posterId int64 = 0
if ctx.Query("type") == "created_by" {
posterId = ctx.User.Id
ctx.Data["ViewType"] = "created_by"
}
// Get all repositories.
repos, err := models.GetRepositories(ctx.User)
if err != nil {
2014-03-28 05:12:10 +05:30
ctx.Handle(200, "user.Issues(get repositories)", err)
2014-03-28 02:01:32 +05:30
return
}
2014-03-28 05:12:10 +05:30
showRepos := make([]models.Repository, 0, len(repos))
isShowClosed := ctx.Query("state") == "closed"
var closedIssueCount, createdByCount, allIssueCount int
2014-03-28 02:01:32 +05:30
// Get all issues.
allIssues := make([]models.Issue, 0, 5*len(repos))
for i, repo := range repos {
issues, err := models.GetIssues(0, repo.Id, posterId, 0, page, isShowClosed, false, "", "")
2014-03-28 02:01:32 +05:30
if err != nil {
ctx.Handle(200, "user.Issues(get issues)", err)
return
}
allIssueCount += repo.NumIssues
2014-03-28 02:01:32 +05:30
closedIssueCount += repo.NumClosedIssues
2014-03-28 05:12:10 +05:30
// Set repository information to issues.
for j := range issues {
issues[j].Repo = &repos[i]
}
2014-03-28 02:01:32 +05:30
allIssues = append(allIssues, issues...)
2014-03-28 05:12:10 +05:30
repos[i].NumOpenIssues = repo.NumIssues - repo.NumClosedIssues
if repos[i].NumOpenIssues > 0 {
showRepos = append(showRepos, repos[i])
}
2014-03-28 02:01:32 +05:30
}
showIssues := make([]models.Issue, 0, len(allIssues))
ctx.Data["IsShowClosed"] = isShowClosed
// Get posters and filter issues.
for i := range allIssues {
u, err := models.GetUserById(allIssues[i].PosterId)
if err != nil {
ctx.Handle(200, "user.Issues(get poster): %v", err)
return
}
allIssues[i].Poster = u
if u.Id == ctx.User.Id {
createdByCount++
}
2014-03-28 05:12:10 +05:30
if repoId > 0 && repoId != allIssues[i].Repo.Id {
continue
}
2014-03-28 02:01:32 +05:30
if isShowClosed == allIssues[i].IsClosed {
showIssues = append(showIssues, allIssues[i])
}
}
2014-03-28 05:12:10 +05:30
ctx.Data["Repos"] = showRepos
2014-03-28 02:01:32 +05:30
ctx.Data["Issues"] = showIssues
ctx.Data["AllIssueCount"] = allIssueCount
2014-03-28 02:01:32 +05:30
ctx.Data["ClosedIssueCount"] = closedIssueCount
ctx.Data["OpenIssueCount"] = allIssueCount - closedIssueCount
2014-03-28 02:01:32 +05:30
ctx.Data["CreatedByCount"] = createdByCount
2014-03-25 20:30:26 +05:30
ctx.HTML(200, "issue/user")
2014-03-16 13:11:22 +05:30
}
2014-03-19 04:01:54 +05:30
func Pulls(ctx *middleware.Context) {
2014-03-20 17:20:26 +05:30
ctx.HTML(200, "user/pulls")
2014-03-16 13:11:22 +05:30
}
2014-03-19 04:01:54 +05:30
func Stars(ctx *middleware.Context) {
2014-03-20 17:20:26 +05:30
ctx.HTML(200, "user/stars")
2014-03-16 13:11:22 +05:30
}
2014-03-19 18:54:02 +05:30
func Activate(ctx *middleware.Context) {
code := ctx.Query("code")
if len(code) == 0 {
ctx.Data["IsActivatePage"] = true
2014-03-20 12:54:17 +05:30
if ctx.User.IsActive {
2014-03-23 10:42:55 +05:30
ctx.Handle(404, "user.Activate", nil)
2014-03-20 12:54:17 +05:30
return
}
2014-03-19 18:54:02 +05:30
// Resend confirmation e-mail.
if base.Service.RegisterEmailConfirm {
2014-03-21 19:39:57 +05:30
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-03-19 18:54:02 +05:30
} else {
ctx.Data["ServiceNotEnabled"] = true
}
2014-03-20 17:20:26 +05:30
ctx.HTML(200, "user/active")
2014-03-19 18:54:02 +05:30
return
}
2014-03-19 22:20:44 +05:30
// Verify code.
if user := models.VerifyUserActiveCode(code); user != nil {
user.IsActive = true
user.Rands = models.GetUserSalt()
2014-04-05 22:02:34 +05:30
if err := models.UpdateUser(user); err != nil {
ctx.Handle(404, "user.Activate", err)
return
}
2014-03-20 06:35:48 +05:30
2014-04-05 22:02:34 +05:30
log.Trace("%s User activated: %s", ctx.Req.RequestURI, user.Name)
2014-03-20 06:35:48 +05:30
2014-03-19 22:20:44 +05:30
ctx.Session.Set("userId", user.Id)
ctx.Session.Set("userName", user.Name)
2014-03-23 03:29:22 +05:30
ctx.Redirect("/")
2014-03-19 22:20:44 +05:30
return
}
ctx.Data["IsActivateFailed"] = true
2014-03-20 17:20:26 +05:30
ctx.HTML(200, "user/active")
2014-03-19 18:54:02 +05:30
}
2014-04-05 22:02:34 +05:30
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
if ctx.Req.Method == "GET" {
ctx.HTML(200, "user/forgot_passwd")
return
}
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 {
ctx.Handle(404, "user.ResetPasswd(check existence)", err)
}
return
}
mailer.SendResetPasswdMail(ctx.Render, u)
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) {
code := ctx.Query("code")
if len(code) == 0 {
ctx.Error(404)
return
}
ctx.Data["Code"] = code
if ctx.Req.Method == "GET" {
ctx.Data["IsResetForm"] = true
ctx.HTML(200, "user/reset_passwd")
return
}
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-07 01:40:57 +05:30
u.Salt = models.GetUserSalt()
u.EncodePasswd()
2014-04-05 22:02:34 +05:30
if err := models.UpdateUser(u); err != nil {
ctx.Handle(404, "user.ResetPasswd(UpdateUser)", err)
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")
}