2014-04-13 07:57:42 +02: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 (
|
|
|
|
"fmt"
|
|
|
|
|
2014-05-07 18:09:30 +02:00
|
|
|
"github.com/Unknwon/com"
|
2014-04-13 07:57:42 +02:00
|
|
|
"github.com/go-martini/martini"
|
|
|
|
|
|
|
|
"github.com/gogits/gogs/models"
|
|
|
|
"github.com/gogits/gogs/modules/auth"
|
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-05-07 22:51:14 +02:00
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-04-13 07:57:42 +02:00
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Dashboard(ctx *middleware.Context) {
|
|
|
|
ctx.Data["Title"] = "Dashboard"
|
|
|
|
ctx.Data["PageIsUserDashboard"] = true
|
2014-04-14 00:12:07 +02:00
|
|
|
repos, err := models.GetRepositories(&models.User{Id: ctx.User.Id}, true)
|
2014-04-13 07:57:42 +02:00
|
|
|
if err != nil {
|
2014-05-12 21:14:22 +02:00
|
|
|
ctx.Handle(500, "home.Dashboard(GetRepositories)", err)
|
2014-04-13 07:57:42 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["MyRepos"] = repos
|
|
|
|
|
2014-05-12 21:14:22 +02:00
|
|
|
collaRepos, err := models.GetCollaborativeRepos(ctx.User.Name)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "home.Dashboard(GetCollaborativeRepos)", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["CollaborativeRepos"] = collaRepos
|
|
|
|
|
2014-05-09 01:17:43 +02:00
|
|
|
actions, err := models.GetFeeds(ctx.User.Id, 0, false)
|
2014-04-13 07:57:42 +02:00
|
|
|
if err != nil {
|
2014-05-12 21:14:22 +02:00
|
|
|
ctx.Handle(500, "home.Dashboard", err)
|
2014-04-13 07:57:42 +02:00
|
|
|
return
|
|
|
|
}
|
2014-05-09 01:17:43 +02:00
|
|
|
|
|
|
|
feeds := make([]*models.Action, 0, len(actions))
|
|
|
|
for _, act := range actions {
|
|
|
|
if act.IsPrivate {
|
|
|
|
if has, _ := models.HasAccess(ctx.User.Name, act.RepoUserName+"/"+act.RepoName,
|
|
|
|
models.AU_READABLE); !has {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
feeds = append(feeds, act)
|
|
|
|
}
|
|
|
|
|
2014-04-13 07:57:42 +02:00
|
|
|
ctx.Data["Feeds"] = feeds
|
|
|
|
ctx.HTML(200, "user/dashboard")
|
|
|
|
}
|
|
|
|
|
|
|
|
func Profile(ctx *middleware.Context, params martini.Params) {
|
|
|
|
ctx.Data["Title"] = "Profile"
|
|
|
|
|
|
|
|
user, err := models.GetUserByName(params["username"])
|
|
|
|
if err != nil {
|
2014-05-09 02:00:07 +02:00
|
|
|
if err == models.ErrUserNotExist {
|
|
|
|
ctx.Handle(404, "user.Profile", err)
|
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "user.Profile", err)
|
|
|
|
}
|
2014-04-13 07:57:42 +02:00
|
|
|
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 {
|
|
|
|
ctx.Handle(500, "user.Profile", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Feeds"] = feeds
|
|
|
|
default:
|
2014-04-14 00:12:07 +02:00
|
|
|
repos, err := models.GetRepositories(user, ctx.IsSigned && ctx.User.Id == user.Id)
|
2014-04-13 07:57:42 +02:00
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "user.Profile", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Repos"] = repos
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["PageIsUserProfile"] = true
|
|
|
|
ctx.HTML(200, "user/profile")
|
|
|
|
}
|
|
|
|
|
|
|
|
func Email2User(ctx *middleware.Context) {
|
|
|
|
u, err := models.GetUserByEmail(ctx.Query("email"))
|
|
|
|
if err != nil {
|
|
|
|
if err == models.ErrUserNotExist {
|
|
|
|
ctx.Handle(404, "user.Email2User", err)
|
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "user.Email2User(GetUserByEmail)", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Redirect("/user/" + u.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
TPL_FEED = `<i class="icon fa fa-%s"></i>
|
|
|
|
<div class="info"><span class="meta">%s</span><br>%s</div>`
|
|
|
|
)
|
|
|
|
|
|
|
|
func Feeds(ctx *middleware.Context, form auth.FeedsForm) {
|
|
|
|
actions, err := models.GetFeeds(form.UserId, form.Page*20, false)
|
|
|
|
if err != nil {
|
|
|
|
ctx.JSON(500, err)
|
2014-05-09 01:17:43 +02:00
|
|
|
return
|
2014-04-13 07:57:42 +02:00
|
|
|
}
|
|
|
|
|
2014-05-09 01:17:43 +02:00
|
|
|
feeds := make([]string, 0, len(actions))
|
|
|
|
for _, act := range actions {
|
|
|
|
if act.IsPrivate {
|
|
|
|
if has, _ := models.HasAccess(ctx.User.Name, act.RepoUserName+"/"+act.RepoName,
|
|
|
|
models.AU_READABLE); !has {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
feeds = append(feeds, fmt.Sprintf(TPL_FEED, base.ActionIcon(act.OpType),
|
|
|
|
base.TimeSince(act.Created), base.ActionDesc(act)))
|
2014-04-13 07:57:42 +02:00
|
|
|
}
|
|
|
|
ctx.JSON(200, &feeds)
|
|
|
|
}
|
|
|
|
|
|
|
|
func Issues(ctx *middleware.Context) {
|
|
|
|
ctx.Data["Title"] = "Your Issues"
|
|
|
|
|
2014-05-07 18:09:30 +02:00
|
|
|
viewType := ctx.Query("type")
|
|
|
|
types := []string{"assigned", "created_by"}
|
|
|
|
if !com.IsSliceContainsStr(types, viewType) {
|
|
|
|
viewType = "all"
|
|
|
|
}
|
2014-04-13 07:57:42 +02:00
|
|
|
|
2014-05-07 18:09:30 +02:00
|
|
|
isShowClosed := ctx.Query("state") == "closed"
|
2014-04-13 07:57:42 +02:00
|
|
|
|
2014-05-07 18:09:30 +02:00
|
|
|
var assigneeId, posterId int64
|
|
|
|
var filterMode int
|
|
|
|
switch viewType {
|
|
|
|
case "assigned":
|
|
|
|
assigneeId = ctx.User.Id
|
|
|
|
filterMode = models.FM_ASSIGN
|
|
|
|
case "created_by":
|
2014-04-13 07:57:42 +02:00
|
|
|
posterId = ctx.User.Id
|
2014-05-07 18:09:30 +02:00
|
|
|
filterMode = models.FM_CREATE
|
2014-04-13 07:57:42 +02:00
|
|
|
}
|
2014-05-07 18:09:30 +02:00
|
|
|
_, _ = assigneeId, posterId
|
|
|
|
|
|
|
|
rid, _ := base.StrTo(ctx.Query("repoid")).Int64()
|
|
|
|
issueStats := models.GetUserIssueStats(ctx.User.Id, filterMode)
|
2014-04-13 07:57:42 +02:00
|
|
|
|
|
|
|
// Get all repositories.
|
2014-04-14 00:12:07 +02:00
|
|
|
repos, err := models.GetRepositories(ctx.User, true)
|
2014-04-13 07:57:42 +02:00
|
|
|
if err != nil {
|
2014-05-07 22:51:14 +02:00
|
|
|
ctx.Handle(500, "user.Issues(GetRepositories)", err)
|
2014-04-13 07:57:42 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-07 22:51:14 +02:00
|
|
|
rids := make([]int64, 0, len(repos))
|
2014-05-07 18:09:30 +02:00
|
|
|
showRepos := make([]*models.Repository, 0, len(repos))
|
|
|
|
for _, repo := range repos {
|
|
|
|
if repo.NumIssues == 0 {
|
|
|
|
continue
|
2014-04-13 07:57:42 +02:00
|
|
|
}
|
|
|
|
|
2014-05-07 22:51:14 +02:00
|
|
|
rids = append(rids, repo.Id)
|
2014-05-07 18:09:30 +02:00
|
|
|
repo.NumOpenIssues = repo.NumIssues - repo.NumClosedIssues
|
|
|
|
issueStats.AllCount += int64(repo.NumOpenIssues)
|
2014-04-13 07:57:42 +02:00
|
|
|
|
2014-05-07 18:09:30 +02:00
|
|
|
if isShowClosed {
|
|
|
|
if repo.NumClosedIssues > 0 {
|
2014-05-07 22:51:14 +02:00
|
|
|
if filterMode == models.FM_CREATE {
|
|
|
|
repo.NumClosedIssues = int(models.GetIssueCountByPoster(ctx.User.Id, repo.Id, isShowClosed))
|
|
|
|
}
|
2014-05-07 18:09:30 +02:00
|
|
|
showRepos = append(showRepos, repo)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if repo.NumOpenIssues > 0 {
|
2014-05-07 22:51:14 +02:00
|
|
|
if filterMode == models.FM_CREATE {
|
|
|
|
repo.NumOpenIssues = int(models.GetIssueCountByPoster(ctx.User.Id, repo.Id, isShowClosed))
|
|
|
|
}
|
2014-05-07 18:09:30 +02:00
|
|
|
showRepos = append(showRepos, repo)
|
|
|
|
}
|
2014-04-13 07:57:42 +02:00
|
|
|
}
|
2014-05-07 22:51:14 +02:00
|
|
|
}
|
2014-04-13 07:57:42 +02:00
|
|
|
|
2014-05-07 22:51:14 +02:00
|
|
|
if rid > 0 {
|
|
|
|
rids = []int64{rid}
|
|
|
|
}
|
|
|
|
|
|
|
|
page, _ := base.StrTo(ctx.Query("page")).Int()
|
|
|
|
|
|
|
|
// Get all issues.
|
|
|
|
var ius []*models.IssueUser
|
|
|
|
switch viewType {
|
|
|
|
case "assigned":
|
|
|
|
fallthrough
|
|
|
|
case "created_by":
|
|
|
|
ius, err = models.GetIssueUserPairsByMode(ctx.User.Id, rid, isShowClosed, page, filterMode)
|
|
|
|
default:
|
|
|
|
ius, err = models.GetIssueUserPairsByRepoIds(rids, isShowClosed, page)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "user.Issues(GetAllIssueUserPairs)", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
issues := make([]*models.Issue, len(ius))
|
|
|
|
for i := range ius {
|
|
|
|
issues[i], err = models.GetIssueById(ius[i].IssueId)
|
|
|
|
if err != nil {
|
|
|
|
if err == models.ErrIssueNotExist {
|
2014-05-14 14:51:04 +02:00
|
|
|
log.Warn("user.Issues(GetIssueById #%d): issue not exist", ius[i].IssueId)
|
2014-05-07 22:51:14 +02:00
|
|
|
continue
|
|
|
|
} else {
|
2014-05-14 14:51:04 +02:00
|
|
|
ctx.Handle(500, fmt.Sprintf("user.Issues(GetIssueById #%d)", ius[i].IssueId), err)
|
2014-05-07 22:51:14 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
issues[i].Repo, err = models.GetRepositoryById(issues[i].RepoId)
|
|
|
|
if err != nil {
|
2014-05-14 14:51:04 +02:00
|
|
|
if err == models.ErrRepoNotExist {
|
|
|
|
log.Warn("user.Issues(GetRepositoryById #%d): repository not exist", issues[i].RepoId)
|
|
|
|
continue
|
|
|
|
} else {
|
|
|
|
ctx.Handle(500, fmt.Sprintf("user.Issues(GetRepositoryById #%d)", issues[i].RepoId), err)
|
|
|
|
return
|
|
|
|
}
|
2014-05-07 22:51:14 +02:00
|
|
|
}
|
|
|
|
|
2014-05-14 01:26:13 +02:00
|
|
|
if err = issues[i].Repo.GetOwner(); err != nil {
|
2014-05-13 22:37:09 +02:00
|
|
|
ctx.Handle(500, "user.Issues(GetOwner)", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-14 14:51:04 +02:00
|
|
|
if err = issues[i].GetPoster(); err != nil {
|
2014-05-07 22:51:14 +02:00
|
|
|
ctx.Handle(500, "user.Issues(GetUserById)", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2014-05-07 18:09:30 +02:00
|
|
|
|
|
|
|
ctx.Data["RepoId"] = rid
|
2014-04-13 07:57:42 +02:00
|
|
|
ctx.Data["Repos"] = showRepos
|
2014-05-07 22:51:14 +02:00
|
|
|
ctx.Data["Issues"] = issues
|
2014-05-07 18:09:30 +02:00
|
|
|
ctx.Data["ViewType"] = viewType
|
|
|
|
ctx.Data["IssueStats"] = issueStats
|
|
|
|
ctx.Data["IsShowClosed"] = isShowClosed
|
|
|
|
if isShowClosed {
|
|
|
|
ctx.Data["State"] = "closed"
|
|
|
|
ctx.Data["ShowCount"] = issueStats.ClosedCount
|
|
|
|
} else {
|
|
|
|
ctx.Data["ShowCount"] = issueStats.OpenCount
|
|
|
|
}
|
2014-04-13 07:57:42 +02:00
|
|
|
ctx.HTML(200, "issue/user")
|
|
|
|
}
|
|
|
|
|
|
|
|
func Pulls(ctx *middleware.Context) {
|
|
|
|
ctx.HTML(200, "user/pulls")
|
|
|
|
}
|
|
|
|
|
|
|
|
func Stars(ctx *middleware.Context) {
|
|
|
|
ctx.HTML(200, "user/stars")
|
|
|
|
}
|