gitea/routers/user/home.go

398 lines
9.2 KiB
Go
Raw Normal View History

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 (
2014-11-23 08:33:47 +01:00
"bytes"
2014-04-13 07:57:42 +02:00
"fmt"
2014-11-23 08:33:47 +01:00
"strings"
2014-04-13 07:57:42 +02:00
2014-05-07 18:09:30 +02:00
"github.com/Unknwon/com"
2015-08-25 16:58:34 +02:00
"github.com/Unknwon/paginater"
2014-04-13 07:57:42 +02:00
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/base"
"github.com/gogits/gogs/modules/middleware"
"github.com/gogits/gogs/modules/setting"
2014-04-13 07:57:42 +02:00
)
2014-06-23 05:11:12 +02:00
const (
2014-07-26 06:24:27 +02:00
DASHBOARD base.TplName = "user/dashboard/dashboard"
PULLS base.TplName = "user/dashboard/pulls"
2015-08-25 16:58:34 +02:00
ISSUES base.TplName = "user/dashboard/issues"
2014-06-23 05:11:12 +02:00
STARS base.TplName = "user/stars"
2014-07-26 06:24:27 +02:00
PROFILE base.TplName = "user/profile"
2014-06-23 05:11:12 +02:00
)
2015-08-25 16:58:34 +02:00
func getDashboardContextUser(ctx *middleware.Context) *models.User {
ctxUser := ctx.User
orgName := ctx.Params(":org")
if len(orgName) > 0 {
// Organization.
org, err := models.GetUserByName(orgName)
if err != nil {
2015-08-05 05:14:17 +02:00
if models.IsErrUserNotExist(err) {
ctx.Handle(404, "GetUserByName", err)
} else {
ctx.Handle(500, "GetUserByName", err)
}
2015-08-25 16:58:34 +02:00
return nil
}
ctxUser = org
2015-08-25 16:58:34 +02:00
}
ctx.Data["ContextUser"] = ctxUser
if err := ctx.User.GetOrganizations(); err != nil {
ctx.Handle(500, "GetOrganizations", err)
return nil
}
ctx.Data["Orgs"] = ctx.User.Orgs
return ctxUser
}
func Dashboard(ctx *middleware.Context) {
ctx.Data["Title"] = ctx.Tr("dashboard")
ctx.Data["PageIsDashboard"] = true
ctx.Data["PageIsNews"] = true
ctxUser := getDashboardContextUser(ctx)
if ctx.Written() {
return
}
// Check context type.
if !ctxUser.IsOrganization() {
// Normal user.
ctxUser = ctx.User
2015-01-23 08:54:16 +01:00
collaborates, err := ctx.User.GetAccessibleRepositories()
if err != nil {
2015-01-23 08:54:16 +01:00
ctx.Handle(500, "GetAccessibleRepositories", err)
return
}
2015-01-23 08:54:16 +01:00
repositories := make([]*models.Repository, 0, len(collaborates))
for repo := range collaborates {
repositories = append(repositories, repo)
}
ctx.Data["CollaborateCount"] = len(repositories)
ctx.Data["CollaborativeRepos"] = repositories
}
2014-06-25 06:44:48 +02:00
repos, err := models.GetRepositories(ctxUser.Id, true)
2014-04-13 07:57:42 +02:00
if err != nil {
2014-07-26 06:24:27 +02:00
ctx.Handle(500, "GetRepositories", err)
2014-04-13 07:57:42 +02:00
return
}
2014-07-26 06:24:27 +02:00
ctx.Data["Repos"] = repos
2014-04-13 07:57:42 +02:00
// Get mirror repositories.
mirrors := make([]*models.Repository, 0, len(repos)/2)
for _, repo := range repos {
if repo.IsMirror {
2014-08-11 05:11:18 +02:00
if err = repo.GetMirror(); err != nil {
ctx.Handle(500, "GetMirror: "+repo.Name, err)
return
}
mirrors = append(mirrors, repo)
}
}
ctx.Data["MirrorCount"] = len(mirrors)
ctx.Data["Mirrors"] = mirrors
// Get feeds.
actions, err := models.GetFeeds(ctxUser.Id, 0, false)
2014-04-13 07:57:42 +02:00
if err != nil {
2014-07-26 06:24:27 +02:00
ctx.Handle(500, "GetFeeds", err)
2014-04-13 07:57:42 +02:00
return
}
2014-05-24 21:28:31 +02:00
// Check access of private repositories.
feeds := make([]*models.Action, 0, len(actions))
for _, act := range actions {
if act.IsPrivate {
// This prevents having to retrieve the repository for each action
2015-08-08 16:43:14 +02:00
repo := &models.Repository{ID: act.RepoID, IsPrivate: true}
if act.RepoUserName != ctx.User.LowerName {
if has, _ := models.HasAccess(ctx.User, repo, models.ACCESS_MODE_READ); !has {
continue
}
}
}
2014-11-21 16:58:08 +01:00
// FIXME: cache results?
u, err := models.GetUserByName(act.ActUserName)
if err != nil {
2015-08-05 05:14:17 +02:00
if models.IsErrUserNotExist(err) {
2014-12-18 09:26:09 +01:00
continue
}
2014-11-21 16:58:08 +01:00
ctx.Handle(500, "GetUserByName", err)
return
}
act.ActAvatar = u.AvatarLink()
feeds = append(feeds, act)
}
2014-04-13 07:57:42 +02:00
ctx.Data["Feeds"] = feeds
2014-06-23 05:11:12 +02:00
ctx.HTML(200, DASHBOARD)
2014-04-13 07:57:42 +02:00
}
func Pulls(ctx *middleware.Context) {
ctx.Data["Title"] = ctx.Tr("pull_requests")
ctx.Data["PageIsDashboard"] = true
ctx.Data["PageIsPulls"] = true
if err := ctx.User.GetOrganizations(); err != nil {
ctx.Handle(500, "GetOrganizations", err)
return
}
ctx.Data["ContextUser"] = ctx.User
ctx.HTML(200, PULLS)
}
2015-08-25 16:58:34 +02:00
func Issues(ctx *middleware.Context) {
ctx.Data["Title"] = ctx.Tr("issues")
ctx.Data["PageIsIssues"] = true
ctxUser := getDashboardContextUser(ctx)
if ctx.Written() {
return
}
// Organization does not have view type and filter mode.
var (
viewType string
filterMode = models.FM_ALL
assigneeID int64
posterID int64
)
if ctxUser.IsOrganization() {
viewType = "all"
} else {
viewType = ctx.Query("type")
types := []string{"assigned", "created_by"}
if !com.IsSliceContainsStr(types, viewType) {
viewType = "all"
}
switch viewType {
case "assigned":
filterMode = models.FM_ASSIGN
assigneeID = ctxUser.Id
case "created_by":
filterMode = models.FM_CREATE
posterID = ctxUser.Id
}
}
repoID := ctx.QueryInt64("repo")
isShowClosed := ctx.Query("state") == "closed"
// Get repositories.
repos, err := models.GetRepositories(ctxUser.Id, true)
if err != nil {
ctx.Handle(500, "GetRepositories", err)
return
}
2015-08-25 17:22:05 +02:00
allCount := 0
2015-08-25 16:58:34 +02:00
repoIDs := make([]int64, 0, len(repos))
showRepos := make([]*models.Repository, 0, len(repos))
for _, repo := range repos {
if repo.NumIssues == 0 {
continue
}
repoIDs = append(repoIDs, repo.ID)
repo.NumOpenIssues = repo.NumIssues - repo.NumClosedIssues
2015-08-25 17:22:05 +02:00
allCount += repo.NumOpenIssues
2015-08-25 16:58:34 +02:00
2015-08-25 17:22:05 +02:00
if filterMode != models.FM_ALL {
2015-08-25 16:58:34 +02:00
// Calculate repository issue count with filter mode.
numOpen, numClosed := repo.IssueStats(ctxUser.Id, filterMode)
repo.NumOpenIssues, repo.NumClosedIssues = int(numOpen), int(numClosed)
}
if repo.ID == repoID ||
(isShowClosed && repo.NumClosedIssues > 0) ||
(!isShowClosed && repo.NumOpenIssues > 0) {
showRepos = append(showRepos, repo)
}
}
ctx.Data["Repos"] = showRepos
2015-08-25 17:22:05 +02:00
issueStats := models.GetUserIssueStats(repoID, ctxUser.Id, repoIDs, filterMode)
issueStats.AllCount = int64(allCount)
page := ctx.QueryInt("page")
if page <= 1 {
page = 1
}
var total int
if !isShowClosed {
total = int(issueStats.OpenCount)
} else {
total = int(issueStats.ClosedCount)
}
ctx.Data["Page"] = paginater.New(total, setting.IssuePagingNum, page, 5)
2015-08-25 16:58:34 +02:00
// Get issues.
issues, err := models.Issues(ctxUser.Id, assigneeID, repoID, posterID, 0,
2015-08-25 17:22:05 +02:00
repoIDs, page, isShowClosed, false, "", "")
2015-08-25 16:58:34 +02:00
if err != nil {
ctx.Handle(500, "Issues: %v", err)
return
}
// Get posters and repository.
for i := range issues {
issues[i].Repo, err = models.GetRepositoryByID(issues[i].RepoID)
if err != nil {
ctx.Handle(500, "GetRepositoryByID", fmt.Errorf("[#%d]%v", issues[i].ID, err))
return
}
if err = issues[i].Repo.GetOwner(); err != nil {
ctx.Handle(500, "GetOwner", fmt.Errorf("[#%d]%v", issues[i].ID, err))
return
}
if err = issues[i].GetPoster(); err != nil {
ctx.Handle(500, "GetPoster", fmt.Errorf("[#%d]%v", issues[i].ID, err))
return
}
}
ctx.Data["Issues"] = issues
ctx.Data["IssueStats"] = issueStats
ctx.Data["ViewType"] = viewType
ctx.Data["RepoID"] = repoID
ctx.Data["IsShowClosed"] = isShowClosed
if isShowClosed {
ctx.Data["State"] = "closed"
} else {
ctx.Data["State"] = "open"
}
ctx.HTML(200, ISSUES)
}
2014-11-23 08:33:47 +01:00
func ShowSSHKeys(ctx *middleware.Context, uid int64) {
keys, err := models.ListPublicKeys(uid)
if err != nil {
ctx.Handle(500, "ListPublicKeys", err)
return
}
var buf bytes.Buffer
for i := range keys {
buf.WriteString(keys[i].OmitEmail())
buf.WriteString("\n")
2014-11-23 08:33:47 +01:00
}
ctx.RenderData(200, buf.Bytes())
}
2014-07-26 06:24:27 +02:00
func Profile(ctx *middleware.Context) {
2014-04-13 07:57:42 +02:00
ctx.Data["Title"] = "Profile"
2014-05-24 21:28:31 +02:00
ctx.Data["PageIsUserProfile"] = true
2014-04-13 07:57:42 +02:00
2014-08-06 23:21:24 +02:00
uname := ctx.Params(":username")
// Special handle for FireFox requests favicon.ico.
if uname == "favicon.ico" {
2014-09-20 02:11:34 +02:00
ctx.Redirect(setting.AppSubUrl + "/img/favicon.png")
2014-08-06 23:21:24 +02:00
return
}
2014-11-23 08:33:47 +01:00
isShowKeys := false
if strings.HasSuffix(uname, ".keys") {
isShowKeys = true
uname = strings.TrimSuffix(uname, ".keys")
}
2014-08-06 23:21:24 +02:00
u, err := models.GetUserByName(uname)
2014-04-13 07:57:42 +02:00
if err != nil {
2015-08-05 05:14:17 +02:00
if models.IsErrUserNotExist(err) {
2014-08-06 23:21:24 +02:00
ctx.Handle(404, "GetUserByName", err)
2014-05-09 02:00:07 +02:00
} else {
2014-08-06 23:21:24 +02:00
ctx.Handle(500, "GetUserByName", err)
2014-05-09 02:00:07 +02:00
}
2014-04-13 07:57:42 +02:00
return
}
2014-06-28 21:43:25 +02:00
2014-11-23 08:33:47 +01:00
// Show SSH keys.
if isShowKeys {
ShowSSHKeys(ctx, u.Id)
return
}
2014-06-28 21:43:25 +02:00
if u.IsOrganization() {
2014-09-20 02:11:34 +02:00
ctx.Redirect(setting.AppSubUrl + "/org/" + u.Name)
2014-06-28 21:43:25 +02:00
return
}
2014-06-24 01:16:09 +02:00
ctx.Data["Owner"] = u
2014-04-13 07:57:42 +02:00
tab := ctx.Query("tab")
ctx.Data["TabName"] = tab
switch tab {
case "activity":
2014-11-21 17:08:24 +01:00
actions, err := models.GetFeeds(u.Id, 0, false)
2014-04-13 07:57:42 +02:00
if err != nil {
2014-08-06 23:21:24 +02:00
ctx.Handle(500, "GetFeeds", err)
2014-04-13 07:57:42 +02:00
return
}
2014-11-21 17:08:24 +01:00
feeds := make([]*models.Action, 0, len(actions))
for _, act := range actions {
2014-12-17 02:47:10 +01:00
if act.IsPrivate {
if !ctx.IsSigned {
continue
}
// This prevents having to retrieve the repository for each action
2015-08-08 16:43:14 +02:00
repo := &models.Repository{ID: act.RepoID, IsPrivate: true}
if act.RepoUserName != ctx.User.LowerName {
if has, _ := models.HasAccess(ctx.User, repo, models.ACCESS_MODE_READ); !has {
continue
}
2014-12-17 02:47:10 +01:00
}
2014-12-17 02:47:10 +01:00
}
2014-11-21 17:08:24 +01:00
// FIXME: cache results?
u, err := models.GetUserByName(act.ActUserName)
if err != nil {
2015-08-05 05:14:17 +02:00
if models.IsErrUserNotExist(err) {
2014-12-18 09:37:31 +01:00
continue
}
2014-11-21 17:08:24 +01:00
ctx.Handle(500, "GetUserByName", err)
return
}
act.ActAvatar = u.AvatarLink()
feeds = append(feeds, act)
}
ctx.Data["Feeds"] = feeds
2014-04-13 07:57:42 +02:00
default:
2014-06-24 01:16:09 +02:00
ctx.Data["Repos"], err = models.GetRepositories(u.Id, ctx.IsSigned && ctx.User.Id == u.Id)
2014-04-13 07:57:42 +02:00
if err != nil {
2014-08-06 23:21:24 +02:00
ctx.Handle(500, "GetRepositories", err)
2014-04-13 07:57:42 +02:00
return
}
}
2014-06-23 05:11:12 +02:00
ctx.HTML(200, PROFILE)
2014-04-13 07:57:42 +02:00
}
func Email2User(ctx *middleware.Context) {
u, err := models.GetUserByEmail(ctx.Query("email"))
if err != nil {
2015-08-05 05:14:17 +02:00
if models.IsErrUserNotExist(err) {
ctx.Handle(404, "GetUserByEmail", err)
2014-04-13 07:57:42 +02:00
} else {
2015-08-05 05:14:17 +02:00
ctx.Handle(500, "GetUserByEmail", err)
2014-04-13 07:57:42 +02:00
}
return
}
2014-09-20 02:11:34 +02:00
ctx.Redirect(setting.AppSubUrl + "/user/" + u.Name)
2014-04-13 07:57:42 +02:00
}