2014-04-13 11:27:42 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2019-02-08 22:15:43 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2014-04-13 11:27:42 +05:30
|
|
|
// 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 13:03:47 +05:30
|
|
|
"bytes"
|
2014-04-13 11:27:42 +05:30
|
|
|
"fmt"
|
2017-12-04 10:09:01 +05:30
|
|
|
"sort"
|
2019-01-23 09:40:38 +05:30
|
|
|
"strings"
|
2014-04-13 11:27:42 +05:30
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-04-23 02:10:51 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2017-01-25 08:13:02 +05:30
|
|
|
"code.gitea.io/gitea/modules/util"
|
2017-12-26 04:55:16 +05:30
|
|
|
|
|
|
|
"github.com/Unknwon/com"
|
2019-04-14 22:13:56 +05:30
|
|
|
"github.com/keybase/go-crypto/openpgp"
|
|
|
|
"github.com/keybase/go-crypto/openpgp/armor"
|
2014-04-13 11:27:42 +05:30
|
|
|
)
|
|
|
|
|
2014-06-23 08:41:12 +05:30
|
|
|
const (
|
2017-08-18 16:51:46 +05:30
|
|
|
tplDashboard base.TplName = "user/dashboard/dashboard"
|
2016-11-18 08:33:03 +05:30
|
|
|
tplIssues base.TplName = "user/dashboard/issues"
|
|
|
|
tplProfile base.TplName = "user/profile"
|
|
|
|
tplOrgHome base.TplName = "org/home"
|
2014-06-23 08:41:12 +05:30
|
|
|
)
|
|
|
|
|
2016-07-23 22:38:22 +05:30
|
|
|
// getDashboardContextUser finds out dashboard is viewing as which context user.
|
2016-03-11 22:26:52 +05:30
|
|
|
func getDashboardContextUser(ctx *context.Context) *models.User {
|
2015-08-25 20:28:34 +05:30
|
|
|
ctxUser := ctx.User
|
2014-07-27 09:23:16 +05:30
|
|
|
orgName := ctx.Params(":org")
|
|
|
|
if len(orgName) > 0 {
|
|
|
|
// Organization.
|
|
|
|
org, err := models.GetUserByName(orgName)
|
|
|
|
if err != nil {
|
2015-08-05 08:44:17 +05:30
|
|
|
if models.IsErrUserNotExist(err) {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("GetUserByName", err)
|
2014-07-27 09:23:16 +05:30
|
|
|
} else {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetUserByName", err)
|
2014-07-27 09:23:16 +05:30
|
|
|
}
|
2015-08-25 20:28:34 +05:30
|
|
|
return nil
|
2014-07-27 09:23:16 +05:30
|
|
|
}
|
|
|
|
ctxUser = org
|
2015-08-25 20:28:34 +05:30
|
|
|
}
|
|
|
|
ctx.Data["ContextUser"] = ctxUser
|
|
|
|
|
2015-12-17 12:58:47 +05:30
|
|
|
if err := ctx.User.GetOrganizations(true); err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetOrganizations", err)
|
2015-08-25 20:28:34 +05:30
|
|
|
return nil
|
|
|
|
}
|
|
|
|
ctx.Data["Orgs"] = ctx.User.Orgs
|
|
|
|
|
|
|
|
return ctxUser
|
|
|
|
}
|
|
|
|
|
2017-06-02 06:12:25 +05:30
|
|
|
// retrieveFeeds loads feeds for the specified user
|
2017-08-23 07:00:54 +05:30
|
|
|
func retrieveFeeds(ctx *context.Context, options models.GetFeedsOptions) {
|
|
|
|
actions, err := models.GetFeeds(options)
|
2015-11-22 12:02:09 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetFeeds", err)
|
2015-11-22 12:02:09 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-08-23 07:00:54 +05:30
|
|
|
userCache := map[int64]*models.User{options.RequestedUser.ID: options.RequestedUser}
|
2017-06-08 07:41:41 +05:30
|
|
|
if ctx.User != nil {
|
|
|
|
userCache[ctx.User.ID] = ctx.User
|
|
|
|
}
|
2015-11-22 12:02:09 +05:30
|
|
|
for _, act := range actions {
|
2018-02-21 16:25:34 +05:30
|
|
|
if act.ActUser != nil {
|
|
|
|
userCache[act.ActUserID] = act.ActUser
|
2017-05-26 07:08:18 +05:30
|
|
|
}
|
|
|
|
|
2018-02-21 16:25:34 +05:30
|
|
|
repoOwner, ok := userCache[act.Repo.OwnerID]
|
2017-05-26 07:08:18 +05:30
|
|
|
if !ok {
|
2018-02-21 16:25:34 +05:30
|
|
|
repoOwner, err = models.GetUserByID(act.Repo.OwnerID)
|
2017-05-26 07:08:18 +05:30
|
|
|
if err != nil {
|
|
|
|
if models.IsErrUserNotExist(err) {
|
|
|
|
continue
|
|
|
|
}
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetUserByID", err)
|
2015-11-22 12:02:09 +05:30
|
|
|
return
|
|
|
|
}
|
2018-02-21 16:25:34 +05:30
|
|
|
userCache[repoOwner.ID] = repoOwner
|
2015-11-22 12:02:09 +05:30
|
|
|
}
|
2018-02-21 16:25:34 +05:30
|
|
|
act.Repo.Owner = repoOwner
|
2015-11-22 12:02:09 +05:30
|
|
|
}
|
2017-06-02 06:12:25 +05:30
|
|
|
ctx.Data["Feeds"] = actions
|
2015-11-22 12:02:09 +05:30
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// Dashboard render the dashborad page
|
2016-03-11 22:26:52 +05:30
|
|
|
func Dashboard(ctx *context.Context) {
|
2016-03-10 10:26:03 +05:30
|
|
|
ctxUser := getDashboardContextUser(ctx)
|
2015-08-25 20:28:34 +05:30
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-07-23 22:38:22 +05:30
|
|
|
ctx.Data["Title"] = ctxUser.DisplayName() + " - " + ctx.Tr("dashboard")
|
|
|
|
ctx.Data["PageIsDashboard"] = true
|
|
|
|
ctx.Data["PageIsNews"] = true
|
2017-08-17 07:01:34 +05:30
|
|
|
ctx.Data["SearchLimit"] = setting.UI.User.RepoPagingNum
|
2018-10-23 08:27:42 +05:30
|
|
|
ctx.Data["EnableHeatmap"] = setting.Service.EnableUserHeatmap
|
|
|
|
ctx.Data["HeatmapUser"] = ctxUser.Name
|
2016-07-23 22:38:22 +05:30
|
|
|
|
2016-07-24 12:02:46 +05:30
|
|
|
var err error
|
2017-08-23 07:00:54 +05:30
|
|
|
var mirrors []*models.Repository
|
2016-02-03 00:59:35 +05:30
|
|
|
if ctxUser.IsOrganization() {
|
2017-01-25 21:11:38 +05:30
|
|
|
env, err := ctxUser.AccessibleReposEnv(ctx.User.ID)
|
2016-07-24 12:02:46 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("AccessibleReposEnv", err)
|
2017-01-25 21:11:38 +05:30
|
|
|
return
|
|
|
|
}
|
2016-07-24 12:02:46 +05:30
|
|
|
|
2017-01-25 21:11:38 +05:30
|
|
|
mirrors, err = env.MirrorRepos()
|
2016-02-03 00:59:35 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("env.MirrorRepos", err)
|
2016-07-24 12:02:46 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mirrors, err = ctxUser.GetMirrorRepositories()
|
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetMirrorRepositories", err)
|
2016-07-24 12:02:46 +05:30
|
|
|
return
|
|
|
|
}
|
2014-04-13 11:27:42 +05:30
|
|
|
}
|
2016-07-24 12:02:46 +05:30
|
|
|
ctx.Data["MaxShowRepoNum"] = setting.UI.User.RepoPagingNum
|
2014-04-13 11:27:42 +05:30
|
|
|
|
2016-07-24 12:02:46 +05:30
|
|
|
if err := models.MirrorRepositoryList(mirrors).LoadAttributes(); err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("MirrorRepositoryList.LoadAttributes", err)
|
2016-07-24 12:02:46 +05:30
|
|
|
return
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
2014-07-27 09:23:16 +05:30
|
|
|
ctx.Data["MirrorCount"] = len(mirrors)
|
|
|
|
ctx.Data["Mirrors"] = mirrors
|
2014-05-13 00:44:22 +05:30
|
|
|
|
2018-02-21 16:25:34 +05:30
|
|
|
retrieveFeeds(ctx, models.GetFeedsOptions{
|
|
|
|
RequestedUser: ctxUser,
|
2017-08-23 07:00:54 +05:30
|
|
|
IncludePrivate: true,
|
|
|
|
OnlyPerformedBy: false,
|
|
|
|
IncludeDeleted: false,
|
|
|
|
})
|
2018-12-13 21:25:43 +05:30
|
|
|
|
2015-11-22 12:02:09 +05:30
|
|
|
if ctx.Written() {
|
2014-04-13 11:27:42 +05:30
|
|
|
return
|
|
|
|
}
|
2017-08-18 16:51:46 +05:30
|
|
|
ctx.HTML(200, tplDashboard)
|
2014-04-13 11:27:42 +05:30
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// Issues render the user issues page
|
2016-03-11 22:26:52 +05:30
|
|
|
func Issues(ctx *context.Context) {
|
2015-09-03 01:48:09 +05:30
|
|
|
isPullList := ctx.Params(":type") == "pulls"
|
|
|
|
if isPullList {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("pull_requests")
|
|
|
|
ctx.Data["PageIsPulls"] = true
|
|
|
|
} else {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("issues")
|
|
|
|
ctx.Data["PageIsIssues"] = true
|
|
|
|
}
|
2015-08-25 20:28:34 +05:30
|
|
|
|
|
|
|
ctxUser := getDashboardContextUser(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Organization does not have view type and filter mode.
|
|
|
|
var (
|
|
|
|
viewType string
|
2015-11-04 23:20:02 +05:30
|
|
|
sortType = ctx.Query("sort")
|
2016-11-07 21:54:59 +05:30
|
|
|
filterMode = models.FilterModeAll
|
2015-08-25 20:28:34 +05:30
|
|
|
)
|
2017-02-14 19:45:18 +05:30
|
|
|
|
2015-08-25 20:28:34 +05:30
|
|
|
if ctxUser.IsOrganization() {
|
|
|
|
viewType = "all"
|
|
|
|
} else {
|
|
|
|
viewType = ctx.Query("type")
|
|
|
|
switch viewType {
|
|
|
|
case "assigned":
|
2016-11-07 21:54:59 +05:30
|
|
|
filterMode = models.FilterModeAssign
|
2015-08-25 20:28:34 +05:30
|
|
|
case "created_by":
|
2016-11-07 21:54:59 +05:30
|
|
|
filterMode = models.FilterModeCreate
|
2017-12-08 06:32:34 +05:30
|
|
|
case "all": // filterMode already set to All
|
|
|
|
default:
|
|
|
|
viewType = "all"
|
2015-08-25 20:28:34 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-14 19:45:18 +05:30
|
|
|
page := ctx.QueryInt("page")
|
|
|
|
if page <= 1 {
|
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
|
2015-08-25 20:28:34 +05:30
|
|
|
repoID := ctx.QueryInt64("repo")
|
|
|
|
isShowClosed := ctx.Query("state") == "closed"
|
|
|
|
|
|
|
|
// Get repositories.
|
2016-07-24 12:02:46 +05:30
|
|
|
var err error
|
2017-02-17 06:28:19 +05:30
|
|
|
var userRepoIDs []int64
|
2016-02-01 01:42:03 +05:30
|
|
|
if ctxUser.IsOrganization() {
|
2017-01-25 21:11:38 +05:30
|
|
|
env, err := ctxUser.AccessibleReposEnv(ctx.User.ID)
|
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("AccessibleReposEnv", err)
|
2017-01-25 21:11:38 +05:30
|
|
|
return
|
|
|
|
}
|
2017-02-17 06:28:19 +05:30
|
|
|
userRepoIDs, err = env.RepoIDs(1, ctxUser.NumRepos)
|
2016-07-24 12:02:46 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("env.RepoIDs", err)
|
2016-02-01 01:42:03 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
2018-06-21 21:30:13 +05:30
|
|
|
unitType := models.UnitTypeIssues
|
|
|
|
if isPullList {
|
|
|
|
unitType = models.UnitTypePullRequests
|
|
|
|
}
|
|
|
|
userRepoIDs, err = ctxUser.GetAccessRepoIDs(unitType)
|
2017-02-17 06:28:19 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("ctxUser.GetAccessRepoIDs", err)
|
2016-02-01 01:42:03 +05:30
|
|
|
return
|
|
|
|
}
|
2017-02-17 06:28:19 +05:30
|
|
|
}
|
2018-10-21 02:55:14 +05:30
|
|
|
if len(userRepoIDs) == 0 {
|
2017-02-17 06:28:19 +05:30
|
|
|
userRepoIDs = []int64{-1}
|
2017-02-14 19:45:18 +05:30
|
|
|
}
|
|
|
|
|
2017-08-03 10:39:16 +05:30
|
|
|
opts := &models.IssuesOptions{
|
|
|
|
IsClosed: util.OptionalBoolOf(isShowClosed),
|
|
|
|
IsPull: util.OptionalBoolOf(isPullList),
|
|
|
|
SortType: sortType,
|
|
|
|
}
|
|
|
|
|
2017-12-26 04:55:16 +05:30
|
|
|
if repoID > 0 {
|
|
|
|
opts.RepoIDs = []int64{repoID}
|
|
|
|
}
|
|
|
|
|
2017-02-14 19:45:18 +05:30
|
|
|
switch filterMode {
|
|
|
|
case models.FilterModeAll:
|
2017-12-26 04:55:16 +05:30
|
|
|
if repoID > 0 {
|
|
|
|
if !com.IsSliceContainsInt64(userRepoIDs, repoID) {
|
|
|
|
// force an empty result
|
|
|
|
opts.RepoIDs = []int64{-1}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
opts.RepoIDs = userRepoIDs
|
|
|
|
}
|
2017-02-14 19:45:18 +05:30
|
|
|
case models.FilterModeAssign:
|
2017-08-03 10:39:16 +05:30
|
|
|
opts.AssigneeID = ctxUser.ID
|
2017-02-14 19:45:18 +05:30
|
|
|
case models.FilterModeCreate:
|
2017-08-03 10:39:16 +05:30
|
|
|
opts.PosterID = ctxUser.ID
|
2017-02-14 19:45:18 +05:30
|
|
|
case models.FilterModeMention:
|
2017-08-03 10:39:16 +05:30
|
|
|
opts.MentionedID = ctxUser.ID
|
2017-02-14 19:45:18 +05:30
|
|
|
}
|
|
|
|
|
2017-08-03 10:39:16 +05:30
|
|
|
counts, err := models.CountIssuesByRepo(opts)
|
2017-02-14 19:45:18 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("CountIssuesByRepo", err)
|
2017-02-14 19:45:18 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-08-03 10:39:16 +05:30
|
|
|
opts.Page = page
|
|
|
|
opts.PageSize = setting.UI.IssuePagingNum
|
2019-01-23 09:40:38 +05:30
|
|
|
var labelIDs []int64
|
|
|
|
selectLabels := ctx.Query("labels")
|
|
|
|
if len(selectLabels) > 0 && selectLabels != "0" {
|
|
|
|
labelIDs, err = base.StringsToInt64s(strings.Split(selectLabels, ","))
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("StringsToInt64s", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
opts.LabelIDs = labelIDs
|
2018-10-28 12:25:01 +05:30
|
|
|
|
2017-08-03 10:39:16 +05:30
|
|
|
issues, err := models.Issues(opts)
|
2017-02-17 06:28:19 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("Issues", err)
|
2017-02-17 06:28:19 +05:30
|
|
|
return
|
|
|
|
}
|
2015-09-03 01:48:09 +05:30
|
|
|
|
2017-08-03 10:39:16 +05:30
|
|
|
showReposMap := make(map[int64]*models.Repository, len(counts))
|
|
|
|
for repoID := range counts {
|
|
|
|
repo, err := models.GetRepositoryByID(repoID)
|
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetRepositoryByID", err)
|
2017-08-03 10:39:16 +05:30
|
|
|
return
|
2015-09-03 01:48:09 +05:30
|
|
|
}
|
2017-08-03 10:39:16 +05:30
|
|
|
showReposMap[repoID] = repo
|
|
|
|
}
|
2015-08-25 20:28:34 +05:30
|
|
|
|
2017-08-03 10:39:16 +05:30
|
|
|
if repoID > 0 {
|
|
|
|
if _, ok := showReposMap[repoID]; !ok {
|
|
|
|
repo, err := models.GetRepositoryByID(repoID)
|
2019-01-30 21:43:39 +05:30
|
|
|
if models.IsErrRepoNotExist(err) {
|
|
|
|
ctx.NotFound("GetRepositoryByID", err)
|
|
|
|
return
|
|
|
|
} else if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetRepositoryByID", fmt.Errorf("[%d]%v", repoID, err))
|
2017-02-17 06:28:19 +05:30
|
|
|
return
|
|
|
|
}
|
2017-08-03 10:39:16 +05:30
|
|
|
showReposMap[repoID] = repo
|
2015-08-25 20:28:34 +05:30
|
|
|
}
|
|
|
|
|
2017-08-03 10:39:16 +05:30
|
|
|
repo := showReposMap[repoID]
|
|
|
|
|
2017-02-14 19:45:18 +05:30
|
|
|
// Check if user has access to given repository.
|
2018-11-28 16:56:14 +05:30
|
|
|
perm, err := models.GetUserRepoPermission(repo, ctxUser)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetUserRepoPermission", fmt.Errorf("[%d]%v", repoID, err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if !perm.CanRead(models.UnitTypeIssues) {
|
2019-04-23 02:10:51 +05:30
|
|
|
if log.IsTrace() {
|
|
|
|
log.Trace("Permission Denied: User %-v cannot read %-v of repo %-v\n"+
|
|
|
|
"User in repo has Permissions: %-+v",
|
|
|
|
ctxUser,
|
|
|
|
models.UnitTypeIssues,
|
|
|
|
repo,
|
|
|
|
perm)
|
|
|
|
}
|
2017-08-03 10:39:16 +05:30
|
|
|
ctx.Status(404)
|
2017-02-14 19:45:18 +05:30
|
|
|
return
|
2015-08-25 20:28:34 +05:30
|
|
|
}
|
2016-12-23 05:56:01 +05:30
|
|
|
}
|
2015-08-25 20:28:34 +05:30
|
|
|
|
2017-08-03 10:39:16 +05:30
|
|
|
showRepos := models.RepositoryListOfMap(showReposMap)
|
2017-12-04 10:09:01 +05:30
|
|
|
sort.Sort(showRepos)
|
2017-08-03 10:39:16 +05:30
|
|
|
if err = showRepos.LoadAttributes(); err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("LoadAttributes", err)
|
2017-02-17 06:28:19 +05:30
|
|
|
return
|
2015-08-25 20:52:05 +05:30
|
|
|
}
|
|
|
|
|
2019-04-03 01:24:29 +05:30
|
|
|
var commitStatus = make(map[int64]*models.CommitStatus, len(issues))
|
2017-08-03 10:39:16 +05:30
|
|
|
for _, issue := range issues {
|
|
|
|
issue.Repo = showReposMap[issue.RepoID]
|
2019-04-03 01:24:29 +05:30
|
|
|
|
|
|
|
if isPullList {
|
|
|
|
commitStatus[issue.PullRequest.ID], _ = issue.PullRequest.GetLastCommitStatus()
|
|
|
|
}
|
2017-08-03 10:39:16 +05:30
|
|
|
}
|
|
|
|
|
2017-12-26 04:55:16 +05:30
|
|
|
issueStats, err := models.GetUserIssueStats(models.UserIssueStatsOptions{
|
|
|
|
UserID: ctxUser.ID,
|
|
|
|
RepoID: repoID,
|
|
|
|
UserRepoIDs: userRepoIDs,
|
|
|
|
FilterMode: filterMode,
|
|
|
|
IsPull: isPullList,
|
|
|
|
IsClosed: isShowClosed,
|
|
|
|
})
|
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetUserIssueStats", err)
|
2017-12-26 04:55:16 +05:30
|
|
|
return
|
|
|
|
}
|
2017-02-14 19:45:18 +05:30
|
|
|
|
2015-08-25 20:52:05 +05:30
|
|
|
var total int
|
|
|
|
if !isShowClosed {
|
|
|
|
total = int(issueStats.OpenCount)
|
|
|
|
} else {
|
|
|
|
total = int(issueStats.ClosedCount)
|
|
|
|
}
|
|
|
|
|
2015-08-25 20:28:34 +05:30
|
|
|
ctx.Data["Issues"] = issues
|
2019-04-03 01:24:29 +05:30
|
|
|
ctx.Data["CommitStatus"] = commitStatus
|
2017-02-14 19:45:18 +05:30
|
|
|
ctx.Data["Repos"] = showRepos
|
2017-08-03 10:39:16 +05:30
|
|
|
ctx.Data["Counts"] = counts
|
2015-08-25 20:28:34 +05:30
|
|
|
ctx.Data["IssueStats"] = issueStats
|
|
|
|
ctx.Data["ViewType"] = viewType
|
2015-11-04 23:20:02 +05:30
|
|
|
ctx.Data["SortType"] = sortType
|
2015-08-25 20:28:34 +05:30
|
|
|
ctx.Data["RepoID"] = repoID
|
|
|
|
ctx.Data["IsShowClosed"] = isShowClosed
|
2017-02-14 19:45:18 +05:30
|
|
|
|
2015-08-25 20:28:34 +05:30
|
|
|
if isShowClosed {
|
|
|
|
ctx.Data["State"] = "closed"
|
|
|
|
} else {
|
|
|
|
ctx.Data["State"] = "open"
|
|
|
|
}
|
|
|
|
|
2019-04-20 09:45:19 +05:30
|
|
|
pager := context.NewPagination(total, setting.UI.IssuePagingNum, page, 5)
|
|
|
|
pager.AddParam(ctx, "type", "ViewType")
|
|
|
|
pager.AddParam(ctx, "repo", "RepoID")
|
|
|
|
pager.AddParam(ctx, "sort", "SortType")
|
|
|
|
pager.AddParam(ctx, "state", "State")
|
|
|
|
pager.AddParam(ctx, "labels", "SelectLabels")
|
|
|
|
pager.AddParam(ctx, "milestone", "MilestoneID")
|
|
|
|
pager.AddParam(ctx, "assignee", "AssigneeID")
|
|
|
|
ctx.Data["Page"] = pager
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.HTML(200, tplIssues)
|
2015-08-25 20:28:34 +05:30
|
|
|
}
|
|
|
|
|
2016-11-27 17:29:12 +05:30
|
|
|
// ShowSSHKeys output all the ssh keys of user by uid
|
2016-03-11 22:26:52 +05:30
|
|
|
func ShowSSHKeys(ctx *context.Context, uid int64) {
|
2014-11-23 13:03:47 +05:30
|
|
|
keys, err := models.ListPublicKeys(uid)
|
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("ListPublicKeys", err)
|
2014-11-23 13:03:47 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var buf bytes.Buffer
|
|
|
|
for i := range keys {
|
|
|
|
buf.WriteString(keys[i].OmitEmail())
|
2015-06-08 13:10:38 +05:30
|
|
|
buf.WriteString("\n")
|
2014-11-23 13:03:47 +05:30
|
|
|
}
|
2015-10-16 06:58:12 +05:30
|
|
|
ctx.PlainText(200, buf.Bytes())
|
2014-11-23 13:03:47 +05:30
|
|
|
}
|
|
|
|
|
2019-04-14 22:13:56 +05:30
|
|
|
// ShowGPGKeys output all the public GPG keys of user by uid
|
|
|
|
func ShowGPGKeys(ctx *context.Context, uid int64) {
|
|
|
|
keys, err := models.ListGPGKeys(uid)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("ListGPGKeys", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
entities := make([]*openpgp.Entity, 0)
|
|
|
|
failedEntitiesID := make([]string, 0)
|
|
|
|
for _, k := range keys {
|
|
|
|
e, err := models.GPGKeyToEntity(k)
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrGPGKeyImportNotExist(err) {
|
|
|
|
failedEntitiesID = append(failedEntitiesID, k.KeyID)
|
|
|
|
continue //Skip previous import without backup of imported armored key
|
|
|
|
}
|
|
|
|
ctx.ServerError("ShowGPGKeys", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
entities = append(entities, e)
|
|
|
|
}
|
|
|
|
var buf bytes.Buffer
|
|
|
|
|
|
|
|
headers := make(map[string]string)
|
|
|
|
if len(failedEntitiesID) > 0 { //If some key need re-import to be exported
|
|
|
|
headers["Note"] = fmt.Sprintf("The keys with the following IDs couldn't be exported and need to be reuploaded %s", strings.Join(failedEntitiesID, ", "))
|
|
|
|
}
|
|
|
|
writer, _ := armor.Encode(&buf, "PGP PUBLIC KEY BLOCK", headers)
|
|
|
|
for _, e := range entities {
|
|
|
|
err = e.Serialize(writer) //TODO find why key are exported with a different cipherTypeByte as original (should not be blocking but strange)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("ShowGPGKeys", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
writer.Close()
|
|
|
|
ctx.PlainText(200, buf.Bytes())
|
|
|
|
}
|
|
|
|
|
2016-03-11 22:26:52 +05:30
|
|
|
func showOrgProfile(ctx *context.Context) {
|
2015-11-25 05:44:00 +05:30
|
|
|
ctx.SetParams(":org", ctx.Params(":username"))
|
2016-03-11 22:26:52 +05:30
|
|
|
context.HandleOrgAssignment(ctx)
|
2015-11-25 05:44:00 +05:30
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
org := ctx.Org.Organization
|
2019-02-18 21:30:27 +05:30
|
|
|
|
|
|
|
if !models.HasOrgVisible(org, ctx.User) {
|
|
|
|
ctx.NotFound("HasOrgVisible", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-04-15 07:32:46 +05:30
|
|
|
ctx.Data["Title"] = org.DisplayName()
|
2015-11-25 05:44:00 +05:30
|
|
|
|
2019-02-08 22:15:43 +05:30
|
|
|
var orderBy models.SearchOrderBy
|
|
|
|
ctx.Data["SortType"] = ctx.Query("sort")
|
|
|
|
switch ctx.Query("sort") {
|
|
|
|
case "newest":
|
|
|
|
orderBy = models.SearchOrderByNewest
|
|
|
|
case "oldest":
|
|
|
|
orderBy = models.SearchOrderByOldest
|
|
|
|
case "recentupdate":
|
|
|
|
orderBy = models.SearchOrderByRecentUpdated
|
|
|
|
case "leastupdate":
|
|
|
|
orderBy = models.SearchOrderByLeastUpdated
|
|
|
|
case "reversealphabetically":
|
|
|
|
orderBy = models.SearchOrderByAlphabeticallyReverse
|
|
|
|
case "alphabetically":
|
|
|
|
orderBy = models.SearchOrderByAlphabetically
|
|
|
|
case "moststars":
|
|
|
|
orderBy = models.SearchOrderByStarsReverse
|
|
|
|
case "feweststars":
|
|
|
|
orderBy = models.SearchOrderByStars
|
|
|
|
case "mostforks":
|
|
|
|
orderBy = models.SearchOrderByForksReverse
|
|
|
|
case "fewestforks":
|
|
|
|
orderBy = models.SearchOrderByForks
|
|
|
|
default:
|
|
|
|
ctx.Data["SortType"] = "recentupdate"
|
|
|
|
orderBy = models.SearchOrderByRecentUpdated
|
|
|
|
}
|
|
|
|
|
|
|
|
keyword := strings.Trim(ctx.Query("q"), " ")
|
|
|
|
ctx.Data["Keyword"] = keyword
|
|
|
|
|
2016-07-24 12:02:46 +05:30
|
|
|
page := ctx.QueryInt("page")
|
|
|
|
if page <= 0 {
|
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
repos []*models.Repository
|
|
|
|
count int64
|
|
|
|
err error
|
|
|
|
)
|
2019-05-15 20:54:39 +05:30
|
|
|
repos, count, err = models.SearchRepositoryByName(&models.SearchRepoOptions{
|
|
|
|
Keyword: keyword,
|
|
|
|
OwnerID: org.ID,
|
|
|
|
OrderBy: orderBy,
|
|
|
|
Private: ctx.IsSigned,
|
|
|
|
UserIsAdmin: ctx.IsUserSiteAdmin(),
|
|
|
|
UserID: ctx.Data["SignedUserID"].(int64),
|
|
|
|
Page: page,
|
|
|
|
IsProfile: true,
|
|
|
|
PageSize: setting.UI.User.RepoPagingNum,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("SearchRepositoryByName", err)
|
|
|
|
return
|
2015-11-25 05:44:00 +05:30
|
|
|
}
|
|
|
|
|
2016-01-31 16:16:04 +05:30
|
|
|
if err := org.GetMembers(); err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetMembers", err)
|
2015-11-25 05:44:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-02-08 22:15:43 +05:30
|
|
|
ctx.Data["Repos"] = repos
|
|
|
|
ctx.Data["Total"] = count
|
|
|
|
ctx.Data["Members"] = org.Members
|
2016-02-01 00:38:20 +05:30
|
|
|
ctx.Data["Teams"] = org.Teams
|
2015-11-25 05:44:00 +05:30
|
|
|
|
2019-04-20 09:45:19 +05:30
|
|
|
pager := context.NewPagination(int(count), setting.UI.User.RepoPagingNum, page, 5)
|
|
|
|
pager.SetDefaultParams(ctx)
|
|
|
|
ctx.Data["Page"] = pager
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.HTML(200, tplOrgHome)
|
2015-11-25 05:44:00 +05:30
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// Email2User show user page via email
|
2016-03-11 22:26:52 +05:30
|
|
|
func Email2User(ctx *context.Context) {
|
2014-04-13 11:27:42 +05:30
|
|
|
u, err := models.GetUserByEmail(ctx.Query("email"))
|
|
|
|
if err != nil {
|
2015-08-05 08:44:17 +05:30
|
|
|
if models.IsErrUserNotExist(err) {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("GetUserByEmail", err)
|
2014-04-13 11:27:42 +05:30
|
|
|
} else {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetUserByEmail", err)
|
2014-04-13 11:27:42 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2016-11-27 15:44:25 +05:30
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/" + u.Name)
|
2014-04-13 11:27:42 +05:30
|
|
|
}
|