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"
|
2021-04-05 21:00:52 +05:30
|
|
|
"net/http"
|
2019-12-02 09:20:36 +05:30
|
|
|
"regexp"
|
2017-12-04 10:09:01 +05:30
|
|
|
"sort"
|
2019-12-02 09:20:36 +05:30
|
|
|
"strconv"
|
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"
|
2021-12-10 13:44:24 +05:30
|
|
|
asymkey_model "code.gitea.io/gitea/models/asymkey"
|
2021-09-24 17:02:56 +05:30
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-12-10 06:57:50 +05:30
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-10 01:27:58 +05:30
|
|
|
"code.gitea.io/gitea/models/unit"
|
2021-11-24 15:19:20 +05:30
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2020-02-29 12:22:05 +05:30
|
|
|
issue_indexer "code.gitea.io/gitea/modules/indexer/issues"
|
2021-07-24 21:33:58 +05:30
|
|
|
"code.gitea.io/gitea/modules/json"
|
2019-10-08 23:25:16 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
2021-04-20 03:55:08 +05:30
|
|
|
"code.gitea.io/gitea/modules/markup"
|
2019-12-15 19:50:08 +05:30
|
|
|
"code.gitea.io/gitea/modules/markup/markdown"
|
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"
|
2021-10-16 19:51:16 +05:30
|
|
|
"code.gitea.io/gitea/routers/web/feed"
|
2020-05-15 04:25:43 +05:30
|
|
|
issue_service "code.gitea.io/gitea/services/issue"
|
2020-04-10 16:56:37 +05:30
|
|
|
pull_service "code.gitea.io/gitea/services/pull"
|
2017-12-26 04:55:16 +05:30
|
|
|
|
2019-04-14 22:13:56 +05:30
|
|
|
"github.com/keybase/go-crypto/openpgp"
|
|
|
|
"github.com/keybase/go-crypto/openpgp/armor"
|
2020-03-31 13:17:00 +05:30
|
|
|
"xorm.io/builder"
|
2014-04-13 11:27:42 +05:30
|
|
|
)
|
|
|
|
|
2014-06-23 08:41:12 +05:30
|
|
|
const (
|
2019-12-15 19:50:08 +05:30
|
|
|
tplDashboard base.TplName = "user/dashboard/dashboard"
|
|
|
|
tplIssues base.TplName = "user/dashboard/issues"
|
|
|
|
tplMilestones base.TplName = "user/dashboard/milestones"
|
|
|
|
tplProfile base.TplName = "user/profile"
|
2014-06-23 08:41:12 +05:30
|
|
|
)
|
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
// getDashboardContextUser finds out which context user dashboard is being viewed as .
|
2021-11-24 15:19:20 +05:30
|
|
|
func getDashboardContextUser(ctx *context.Context) *user_model.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 {
|
2021-11-19 17:11:40 +05:30
|
|
|
ctxUser = ctx.Org.Organization.AsUser()
|
|
|
|
ctx.Data["Teams"] = ctx.Org.Teams
|
2015-08-25 20:28:34 +05:30
|
|
|
}
|
|
|
|
ctx.Data["ContextUser"] = ctxUser
|
|
|
|
|
2021-09-01 11:01:42 +05:30
|
|
|
orgs, err := models.GetUserOrgsList(ctx.User)
|
2021-06-14 17:48:09 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetUserOrgsList", err)
|
2015-08-25 20:28:34 +05:30
|
|
|
return nil
|
|
|
|
}
|
2021-06-14 17:48:09 +05:30
|
|
|
ctx.Data["Orgs"] = orgs
|
2015-08-25 20:28:34 +05:30
|
|
|
|
|
|
|
return ctxUser
|
|
|
|
}
|
|
|
|
|
2020-08-17 08:37:38 +05:30
|
|
|
// Dashboard render the dashboard 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
|
2021-11-22 20:51:55 +05:30
|
|
|
cnt, _ := models.GetOrganizationCount(db.DefaultContext, ctxUser)
|
|
|
|
ctx.Data["UserOrgsCount"] = cnt
|
2021-10-15 08:05:26 +05:30
|
|
|
|
2021-10-19 10:08:33 +05:30
|
|
|
var uid int64
|
|
|
|
if ctxUser != nil {
|
|
|
|
uid = ctxUser.ID
|
|
|
|
}
|
|
|
|
|
2021-10-15 08:05:26 +05:30
|
|
|
ctx.PageData["dashboardRepoList"] = map[string]interface{}{
|
|
|
|
"searchLimit": setting.UI.User.RepoPagingNum,
|
2021-10-19 10:08:33 +05:30
|
|
|
"uid": uid,
|
2021-10-15 08:05:26 +05:30
|
|
|
}
|
2020-12-28 01:28:03 +05:30
|
|
|
|
2021-03-05 04:29:13 +05:30
|
|
|
if setting.Service.EnableUserHeatmap {
|
2020-12-28 01:28:03 +05:30
|
|
|
data, err := models.GetUserHeatmapDataByUserTeam(ctxUser, ctx.Org.Team, ctx.User)
|
2020-11-19 03:30:16 +05:30
|
|
|
if err != nil {
|
2020-12-28 01:28:03 +05:30
|
|
|
ctx.ServerError("GetUserHeatmapDataByUserTeam", err)
|
2020-11-19 03:30:16 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["HeatmapData"] = data
|
|
|
|
}
|
2016-07-23 22:38:22 +05:30
|
|
|
|
2016-07-24 12:02:46 +05:30
|
|
|
var err error
|
2021-12-10 06:57:50 +05:30
|
|
|
var mirrors []*repo_model.Repository
|
2016-02-03 00:59:35 +05:30
|
|
|
if ctxUser.IsOrganization() {
|
2020-12-28 01:28:03 +05:30
|
|
|
var env models.AccessibleReposEnvironment
|
|
|
|
if ctx.Org.Team != nil {
|
2021-11-19 17:11:40 +05:30
|
|
|
env = models.OrgFromUser(ctxUser).AccessibleTeamReposEnv(ctx.Org.Team)
|
2020-12-28 01:28:03 +05:30
|
|
|
} else {
|
2021-11-19 17:11:40 +05:30
|
|
|
env, err = models.OrgFromUser(ctxUser).AccessibleReposEnv(ctx.User.ID)
|
2020-12-28 01:28:03 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("AccessibleReposEnv", err)
|
|
|
|
return
|
|
|
|
}
|
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 {
|
2021-12-10 06:57:50 +05:30
|
|
|
mirrors, err = repo_model.GetUserMirrorRepositories(ctxUser.ID)
|
2016-07-24 12:02:46 +05:30
|
|
|
if err != nil {
|
2021-11-22 20:51:55 +05:30
|
|
|
ctx.ServerError("GetUserMirrorRepositories", 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
|
|
|
|
2021-12-10 06:57:50 +05:30
|
|
|
if err := repo_model.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
|
|
|
|
2021-10-16 19:51:16 +05:30
|
|
|
ctx.Data["Feeds"] = feed.RetrieveFeeds(ctx, models.GetFeedsOptions{
|
2018-02-21 16:25:34 +05:30
|
|
|
RequestedUser: ctxUser,
|
2020-12-28 01:28:03 +05:30
|
|
|
RequestedTeam: ctx.Org.Team,
|
2020-01-13 23:03:46 +05:30
|
|
|
Actor: ctx.User,
|
2017-08-23 07:00:54 +05:30
|
|
|
IncludePrivate: true,
|
|
|
|
OnlyPerformedBy: false,
|
|
|
|
IncludeDeleted: false,
|
2021-08-11 06:01:13 +05:30
|
|
|
Date: ctx.FormString("date"),
|
2017-08-23 07:00:54 +05:30
|
|
|
})
|
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
|
|
|
|
}
|
2021-10-16 19:51:16 +05:30
|
|
|
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.HTML(http.StatusOK, tplDashboard)
|
2014-04-13 11:27:42 +05:30
|
|
|
}
|
|
|
|
|
2019-12-15 19:50:08 +05:30
|
|
|
// Milestones render the user milestones page
|
|
|
|
func Milestones(ctx *context.Context) {
|
2021-11-10 01:27:58 +05:30
|
|
|
if unit.TypeIssues.UnitGlobalDisabled() && unit.TypePullRequests.UnitGlobalDisabled() {
|
2020-01-17 13:04:37 +05:30
|
|
|
log.Debug("Milestones overview page not available as both issues and pull requests are globally disabled")
|
|
|
|
ctx.Status(404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-12-15 19:50:08 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("milestones")
|
|
|
|
ctx.Data["PageIsMilestonesDashboard"] = true
|
|
|
|
|
|
|
|
ctxUser := getDashboardContextUser(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-28 01:28:03 +05:30
|
|
|
repoOpts := models.SearchRepoOptions{
|
|
|
|
Actor: ctxUser,
|
|
|
|
OwnerID: ctxUser.ID,
|
|
|
|
Private: true,
|
|
|
|
AllPublic: false, // Include also all public repositories of users and public organisations
|
|
|
|
AllLimited: false, // Include also all public repositories of limited organisations
|
|
|
|
HasMilestones: util.OptionalBoolTrue, // Just needs display repos has milestones
|
|
|
|
}
|
|
|
|
|
|
|
|
if ctxUser.IsOrganization() && ctx.Org.Team != nil {
|
|
|
|
repoOpts.TeamID = ctx.Org.Team.ID
|
|
|
|
}
|
2019-12-15 19:50:08 +05:30
|
|
|
|
2020-12-28 01:28:03 +05:30
|
|
|
var (
|
2020-03-31 13:17:00 +05:30
|
|
|
userRepoCond = models.SearchRepositoryCondition(&repoOpts) // all repo condition user could visit
|
|
|
|
repoCond = userRepoCond
|
|
|
|
repoIDs []int64
|
2019-12-15 19:50:08 +05:30
|
|
|
|
2021-08-11 06:01:13 +05:30
|
|
|
reposQuery = ctx.FormString("repos")
|
|
|
|
isShowClosed = ctx.FormString("state") == "closed"
|
|
|
|
sortType = ctx.FormString("sort")
|
2021-07-29 07:12:15 +05:30
|
|
|
page = ctx.FormInt("page")
|
2021-08-11 20:38:52 +05:30
|
|
|
keyword = ctx.FormTrim("q")
|
2020-03-31 13:17:00 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
if page <= 1 {
|
|
|
|
page = 1
|
2019-12-15 19:50:08 +05:30
|
|
|
}
|
|
|
|
|
2020-01-05 06:53:29 +05:30
|
|
|
if len(reposQuery) != 0 {
|
|
|
|
if issueReposQueryPattern.MatchString(reposQuery) {
|
|
|
|
// remove "[" and "]" from string
|
|
|
|
reposQuery = reposQuery[1 : len(reposQuery)-1]
|
|
|
|
//for each ID (delimiter ",") add to int to repoIDs
|
2020-03-31 13:17:00 +05:30
|
|
|
|
2020-01-05 06:53:29 +05:30
|
|
|
for _, rID := range strings.Split(reposQuery, ",") {
|
|
|
|
// Ensure nonempty string entries
|
|
|
|
if rID != "" && rID != "0" {
|
|
|
|
rIDint64, err := strconv.ParseInt(rID, 10, 64)
|
|
|
|
// If the repo id specified by query is not parseable or not accessible by user, just ignore it.
|
2020-03-31 13:17:00 +05:30
|
|
|
if err == nil {
|
2020-01-05 06:53:29 +05:30
|
|
|
repoIDs = append(repoIDs, rIDint64)
|
|
|
|
}
|
2019-12-15 19:50:08 +05:30
|
|
|
}
|
|
|
|
}
|
2020-03-31 13:17:00 +05:30
|
|
|
if len(repoIDs) > 0 {
|
|
|
|
// Don't just let repoCond = builder.In("id", repoIDs) because user may has no permission on repoIDs
|
|
|
|
// But the original repoCond has a limitation
|
|
|
|
repoCond = repoCond.And(builder.In("id", repoIDs))
|
2020-01-05 06:53:29 +05:30
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log.Warn("issueReposQueryPattern not match with query")
|
2019-12-15 19:50:08 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-08 17:23:59 +05:30
|
|
|
counts, err := models.CountMilestonesByRepoCondAndKw(userRepoCond, keyword, isShowClosed)
|
2019-12-15 19:50:08 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("CountMilestonesByRepoIDs", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-04-08 17:23:59 +05:30
|
|
|
milestones, err := models.SearchMilestones(repoCond, page, isShowClosed, sortType, keyword)
|
2019-12-15 19:50:08 +05:30
|
|
|
if err != nil {
|
2021-04-08 17:23:59 +05:30
|
|
|
ctx.ServerError("SearchMilestones", err)
|
2019-12-15 19:50:08 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-03-31 13:17:00 +05:30
|
|
|
showRepos, _, err := models.SearchRepositoryByCondition(&repoOpts, userRepoCond, false)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("SearchRepositoryByCondition", err)
|
2019-12-15 19:50:08 +05:30
|
|
|
return
|
|
|
|
}
|
2020-03-31 13:17:00 +05:30
|
|
|
sort.Sort(showRepos)
|
2019-12-15 19:50:08 +05:30
|
|
|
|
2020-03-31 13:17:00 +05:30
|
|
|
for i := 0; i < len(milestones); {
|
|
|
|
for _, repo := range showRepos {
|
|
|
|
if milestones[i].RepoID == repo.ID {
|
|
|
|
milestones[i].Repo = repo
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if milestones[i].Repo == nil {
|
|
|
|
log.Warn("Cannot find milestone %d 's repository %d", milestones[i].ID, milestones[i].RepoID)
|
|
|
|
milestones = append(milestones[:i], milestones[i+1:]...)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2021-04-20 03:55:08 +05:30
|
|
|
milestones[i].RenderedContent, err = markdown.RenderString(&markup.RenderContext{
|
|
|
|
URLPrefix: milestones[i].Repo.Link(),
|
|
|
|
Metas: milestones[i].Repo.ComposeMetas(),
|
2021-08-29 01:45:56 +05:30
|
|
|
Ctx: ctx,
|
2021-04-20 03:55:08 +05:30
|
|
|
}, milestones[i].Content)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("RenderString", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-03-31 13:17:00 +05:30
|
|
|
if milestones[i].Repo.IsTimetrackerEnabled() {
|
|
|
|
err := milestones[i].LoadTotalTrackedTime()
|
2019-12-15 19:50:08 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("LoadTotalTrackedTime", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2020-03-31 13:17:00 +05:30
|
|
|
i++
|
2019-12-15 19:50:08 +05:30
|
|
|
}
|
|
|
|
|
2021-04-08 17:23:59 +05:30
|
|
|
milestoneStats, err := models.GetMilestonesStatsByRepoCondAndKw(repoCond, keyword)
|
2019-12-15 19:50:08 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetMilestoneStats", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-03-31 13:17:00 +05:30
|
|
|
var totalMilestoneStats *models.MilestonesStats
|
|
|
|
if len(repoIDs) == 0 {
|
|
|
|
totalMilestoneStats = milestoneStats
|
|
|
|
} else {
|
2021-04-08 17:23:59 +05:30
|
|
|
totalMilestoneStats, err = models.GetMilestonesStatsByRepoCondAndKw(userRepoCond, keyword)
|
2020-03-31 13:17:00 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetMilestoneStats", err)
|
|
|
|
return
|
|
|
|
}
|
2019-12-15 19:50:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
var pagerCount int
|
|
|
|
if isShowClosed {
|
|
|
|
ctx.Data["State"] = "closed"
|
|
|
|
ctx.Data["Total"] = totalMilestoneStats.ClosedCount
|
|
|
|
pagerCount = int(milestoneStats.ClosedCount)
|
|
|
|
} else {
|
|
|
|
ctx.Data["State"] = "open"
|
|
|
|
ctx.Data["Total"] = totalMilestoneStats.OpenCount
|
|
|
|
pagerCount = int(milestoneStats.OpenCount)
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Milestones"] = milestones
|
|
|
|
ctx.Data["Repos"] = showRepos
|
|
|
|
ctx.Data["Counts"] = counts
|
|
|
|
ctx.Data["MilestoneStats"] = milestoneStats
|
|
|
|
ctx.Data["SortType"] = sortType
|
2021-04-08 17:23:59 +05:30
|
|
|
ctx.Data["Keyword"] = keyword
|
2020-03-31 13:17:00 +05:30
|
|
|
if milestoneStats.Total() != totalMilestoneStats.Total() {
|
2019-12-15 19:50:08 +05:30
|
|
|
ctx.Data["RepoIDs"] = repoIDs
|
|
|
|
}
|
|
|
|
ctx.Data["IsShowClosed"] = isShowClosed
|
|
|
|
|
|
|
|
pager := context.NewPagination(pagerCount, setting.UI.IssuePagingNum, page, 5)
|
2021-04-08 17:23:59 +05:30
|
|
|
pager.AddParam(ctx, "q", "Keyword")
|
2019-12-15 19:50:08 +05:30
|
|
|
pager.AddParam(ctx, "repos", "RepoIDs")
|
|
|
|
pager.AddParam(ctx, "sort", "SortType")
|
|
|
|
pager.AddParam(ctx, "state", "State")
|
|
|
|
ctx.Data["Page"] = pager
|
|
|
|
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.HTML(http.StatusOK, tplMilestones)
|
2019-12-15 19:50:08 +05:30
|
|
|
}
|
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
// Pulls renders the user's pull request overview page
|
|
|
|
func Pulls(ctx *context.Context) {
|
2021-11-10 01:27:58 +05:30
|
|
|
if unit.TypePullRequests.UnitGlobalDisabled() {
|
2021-01-13 09:49:17 +05:30
|
|
|
log.Debug("Pull request overview page not available as it is globally disabled.")
|
|
|
|
ctx.Status(404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Title"] = ctx.Tr("pull_requests")
|
|
|
|
ctx.Data["PageIsPulls"] = true
|
2021-11-10 01:27:58 +05:30
|
|
|
buildIssueOverview(ctx, unit.TypePullRequests)
|
2021-01-13 09:49:17 +05:30
|
|
|
}
|
2019-12-02 09:20:36 +05:30
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
// Issues renders the user's issues overview page
|
2016-03-11 22:26:52 +05:30
|
|
|
func Issues(ctx *context.Context) {
|
2021-11-10 01:27:58 +05:30
|
|
|
if unit.TypeIssues.UnitGlobalDisabled() {
|
2021-01-13 09:49:17 +05:30
|
|
|
log.Debug("Issues overview page not available as it is globally disabled.")
|
|
|
|
ctx.Status(404)
|
|
|
|
return
|
|
|
|
}
|
2020-01-17 13:04:37 +05:30
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("issues")
|
|
|
|
ctx.Data["PageIsIssues"] = true
|
2021-11-10 01:27:58 +05:30
|
|
|
buildIssueOverview(ctx, unit.TypeIssues)
|
2021-01-13 09:49:17 +05:30
|
|
|
}
|
2020-01-17 13:04:37 +05:30
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
// Regexp for repos query
|
|
|
|
var issueReposQueryPattern = regexp.MustCompile(`^\[\d+(,\d+)*,?\]$`)
|
|
|
|
|
2021-11-10 01:27:58 +05:30
|
|
|
func buildIssueOverview(ctx *context.Context, unitType unit.Type) {
|
2021-01-13 09:49:17 +05:30
|
|
|
|
|
|
|
// ----------------------------------------------------
|
|
|
|
// Determine user; can be either user or organization.
|
|
|
|
// Return with NotFound or ServerError if unsuccessful.
|
|
|
|
// ----------------------------------------------------
|
2015-08-25 20:28:34 +05:30
|
|
|
|
|
|
|
ctxUser := getDashboardContextUser(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
viewType string
|
2021-08-11 06:01:13 +05:30
|
|
|
sortType = ctx.FormString("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
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
// Distinguish User from Organization.
|
|
|
|
// Org:
|
|
|
|
// - Remember pre-determined viewType string for later. Will be posted to ctx.Data.
|
|
|
|
// Organization does not have view type and filter mode.
|
|
|
|
// User:
|
2021-08-11 06:01:13 +05:30
|
|
|
// - Use ctx.FormString("type") to determine filterMode.
|
2021-01-13 09:49:17 +05:30
|
|
|
// The type is set when clicking for example "assigned to me" on the overview page.
|
|
|
|
// - Remember either this or a fallback. Will be posted to ctx.Data.
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// TODO: distinguish during routing
|
|
|
|
|
2021-08-11 06:01:13 +05:30
|
|
|
viewType = ctx.FormString("type")
|
2021-01-03 22:59:12 +05:30
|
|
|
switch viewType {
|
|
|
|
case "assigned":
|
|
|
|
filterMode = models.FilterModeAssign
|
|
|
|
case "created_by":
|
|
|
|
filterMode = models.FilterModeCreate
|
|
|
|
case "mentioned":
|
|
|
|
filterMode = models.FilterModeMention
|
2021-01-17 22:04:19 +05:30
|
|
|
case "review_requested":
|
|
|
|
filterMode = models.FilterModeReviewRequested
|
2021-01-03 22:59:12 +05:30
|
|
|
case "your_repositories": // filterMode already set to All
|
|
|
|
default:
|
2019-12-03 11:31:29 +05:30
|
|
|
viewType = "your_repositories"
|
2015-08-25 20:28:34 +05:30
|
|
|
}
|
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
// Build opts (IssuesOptions), which contains filter information.
|
|
|
|
// Will eventually be used to retrieve issues relevant for the overview page.
|
|
|
|
// Note: Non-final states of opts are used in-between, namely for:
|
|
|
|
// - Keyword search
|
|
|
|
// - Count Issues by repo
|
|
|
|
// --------------------------------------------------------------------------
|
2017-02-14 19:45:18 +05:30
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
// Get repository IDs where User/Org/Team has access.
|
|
|
|
var team *models.Team
|
2021-12-29 18:32:12 +05:30
|
|
|
var org *models.Organization
|
2021-01-13 09:49:17 +05:30
|
|
|
if ctx.Org != nil {
|
2021-12-29 18:32:12 +05:30
|
|
|
org = ctx.Org.Organization
|
2021-01-13 09:49:17 +05:30
|
|
|
team = ctx.Org.Team
|
2017-02-17 06:28:19 +05:30
|
|
|
}
|
2021-12-29 18:32:12 +05:30
|
|
|
|
|
|
|
isPullList := unitType == unit.TypePullRequests
|
|
|
|
opts := &models.IssuesOptions{
|
|
|
|
IsPull: util.OptionalBoolOf(isPullList),
|
|
|
|
SortType: sortType,
|
|
|
|
IsArchived: util.OptionalBoolFalse,
|
|
|
|
Org: org,
|
|
|
|
Team: team,
|
|
|
|
User: ctx.User,
|
2019-10-08 23:25:16 +05:30
|
|
|
}
|
|
|
|
|
2017-02-14 19:45:18 +05:30
|
|
|
switch filterMode {
|
2019-10-08 23:25:16 +05:30
|
|
|
case models.FilterModeAll:
|
2017-02-14 19:45:18 +05:30
|
|
|
case models.FilterModeAssign:
|
2021-01-03 22:59:12 +05:30
|
|
|
opts.AssigneeID = ctx.User.ID
|
2017-02-14 19:45:18 +05:30
|
|
|
case models.FilterModeCreate:
|
2021-01-03 22:59:12 +05:30
|
|
|
opts.PosterID = ctx.User.ID
|
2017-02-14 19:45:18 +05:30
|
|
|
case models.FilterModeMention:
|
2021-03-12 08:36:33 +05:30
|
|
|
opts.MentionedID = ctx.User.ID
|
2021-01-17 22:04:19 +05:30
|
|
|
case models.FilterModeReviewRequested:
|
2021-03-12 08:36:33 +05:30
|
|
|
opts.ReviewRequestedID = ctx.User.ID
|
2021-01-03 22:59:12 +05:30
|
|
|
}
|
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
// keyword holds the search term entered into the search field.
|
2021-08-11 06:01:13 +05:30
|
|
|
keyword := strings.Trim(ctx.FormString("q"), " ")
|
2021-01-13 09:49:17 +05:30
|
|
|
ctx.Data["Keyword"] = keyword
|
2020-02-29 12:22:05 +05:30
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
// Execute keyword search for issues.
|
|
|
|
// USING NON-FINAL STATE OF opts FOR A QUERY.
|
|
|
|
issueIDsFromSearch, err := issueIDsFromSearch(ctxUser, keyword, opts)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("issueIDsFromSearch", err)
|
|
|
|
return
|
2020-02-29 12:22:05 +05:30
|
|
|
}
|
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
// Ensure no issues are returned if a keyword was provided that didn't match any issues.
|
|
|
|
var forceEmpty bool
|
|
|
|
|
|
|
|
if len(issueIDsFromSearch) > 0 {
|
|
|
|
opts.IssueIDs = issueIDsFromSearch
|
|
|
|
} else if len(keyword) > 0 {
|
|
|
|
forceEmpty = true
|
|
|
|
}
|
2020-02-29 12:22:05 +05:30
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
// Educated guess: Do or don't show closed issues.
|
2021-08-11 06:01:13 +05:30
|
|
|
isShowClosed := ctx.FormString("state") == "closed"
|
2020-02-29 12:22:05 +05:30
|
|
|
opts.IsClosed = util.OptionalBoolOf(isShowClosed)
|
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
// Filter repos and count issues in them. Count will be used later.
|
|
|
|
// USING NON-FINAL STATE OF opts FOR A QUERY.
|
|
|
|
var issueCountByRepo map[int64]int64
|
2020-02-29 12:22:05 +05:30
|
|
|
if !forceEmpty {
|
2021-01-13 09:49:17 +05:30
|
|
|
issueCountByRepo, err = models.CountIssuesByRepo(opts)
|
2020-02-29 12:22:05 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("CountIssuesByRepo", err)
|
|
|
|
return
|
|
|
|
}
|
2019-10-08 23:25:16 +05:30
|
|
|
}
|
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
// Make sure page number is at least 1. Will be posted to ctx.Data.
|
2021-07-29 07:12:15 +05:30
|
|
|
page := ctx.FormInt("page")
|
2021-01-13 09:49:17 +05:30
|
|
|
if page <= 1 {
|
|
|
|
page = 1
|
|
|
|
}
|
2019-10-08 23:25:16 +05:30
|
|
|
opts.Page = page
|
|
|
|
opts.PageSize = setting.UI.IssuePagingNum
|
2021-01-13 09:49:17 +05:30
|
|
|
|
|
|
|
// Get IDs for labels (a filter option for issues/pulls).
|
|
|
|
// Required for IssuesOptions.
|
2019-01-23 09:40:38 +05:30
|
|
|
var labelIDs []int64
|
2021-08-11 06:01:13 +05:30
|
|
|
selectedLabels := ctx.FormString("labels")
|
2021-01-13 09:49:17 +05:30
|
|
|
if len(selectedLabels) > 0 && selectedLabels != "0" {
|
|
|
|
labelIDs, err = base.StringsToInt64s(strings.Split(selectedLabels, ","))
|
2019-01-23 09:40:38 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("StringsToInt64s", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
opts.LabelIDs = labelIDs
|
2018-10-28 12:25:01 +05:30
|
|
|
|
2021-08-11 06:01:13 +05:30
|
|
|
// Parse ctx.FormString("repos") and remember matched repo IDs for later.
|
2021-01-13 09:49:17 +05:30
|
|
|
// Gets set when clicking filters on the issues overview page.
|
2021-08-11 06:01:13 +05:30
|
|
|
repoIDs := getRepoIDs(ctx.FormString("repos"))
|
2019-12-03 12:56:02 +05:30
|
|
|
if len(repoIDs) > 0 {
|
|
|
|
opts.RepoIDs = repoIDs
|
|
|
|
}
|
2019-12-02 09:20:36 +05:30
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
// ------------------------------
|
|
|
|
// Get issues as defined by opts.
|
|
|
|
// ------------------------------
|
|
|
|
|
|
|
|
// Slice of Issues that will be displayed on the overview page
|
|
|
|
// USING FINAL STATE OF opts FOR A QUERY.
|
2020-02-29 12:22:05 +05:30
|
|
|
var issues []*models.Issue
|
|
|
|
if !forceEmpty {
|
|
|
|
issues, err = models.Issues(opts)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("Issues", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
issues = []*models.Issue{}
|
2017-02-17 06:28:19 +05:30
|
|
|
}
|
2015-09-03 01:48:09 +05:30
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
// ----------------------------------
|
|
|
|
// Add repository pointers to Issues.
|
|
|
|
// ----------------------------------
|
2019-10-08 23:25:16 +05:30
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
// showReposMap maps repository IDs to their Repository pointers.
|
2021-12-29 18:32:12 +05:30
|
|
|
showReposMap, err := loadRepoByIDs(ctxUser, issueCountByRepo, unitType)
|
2021-01-13 09:49:17 +05:30
|
|
|
if err != nil {
|
2021-12-10 06:57:50 +05:30
|
|
|
if repo_model.IsErrRepoNotExist(err) {
|
2021-01-13 09:49:17 +05:30
|
|
|
ctx.NotFound("GetRepositoryByID", err)
|
|
|
|
return
|
2019-10-08 23:25:16 +05:30
|
|
|
}
|
2021-12-29 18:32:12 +05:30
|
|
|
ctx.ServerError("loadRepoByIDs", err)
|
2021-01-13 09:49:17 +05:30
|
|
|
return
|
2019-10-08 23:25:16 +05:30
|
|
|
}
|
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
// a RepositoryList
|
2017-08-03 10:39:16 +05:30
|
|
|
showRepos := models.RepositoryListOfMap(showReposMap)
|
2017-12-04 10:09:01 +05:30
|
|
|
sort.Sort(showRepos)
|
2015-08-25 20:52:05 +05:30
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
// maps pull request IDs to their CommitStatus. Will be posted to ctx.Data.
|
2017-08-03 10:39:16 +05:30
|
|
|
for _, issue := range issues {
|
2021-12-29 18:32:12 +05:30
|
|
|
if issue.Repo == nil {
|
|
|
|
issue.Repo = showReposMap[issue.RepoID]
|
|
|
|
}
|
2021-04-15 23:04:43 +05:30
|
|
|
}
|
2019-04-03 01:24:29 +05:30
|
|
|
|
2021-04-15 23:04:43 +05:30
|
|
|
commitStatus, err := pull_service.GetIssuesLastCommitStatus(issues)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetIssuesLastCommitStatus", err)
|
|
|
|
return
|
2017-08-03 10:39:16 +05:30
|
|
|
}
|
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
// -------------------------------
|
|
|
|
// Fill stats to post to ctx.Data.
|
|
|
|
// -------------------------------
|
2021-12-29 18:32:12 +05:30
|
|
|
var issueStats *models.IssueStats
|
2020-02-29 12:22:05 +05:30
|
|
|
if !forceEmpty {
|
|
|
|
statsOpts := models.UserIssueStatsOptions{
|
2021-12-29 18:32:12 +05:30
|
|
|
UserID: ctx.User.ID,
|
|
|
|
FilterMode: filterMode,
|
|
|
|
IsPull: isPullList,
|
|
|
|
IsClosed: isShowClosed,
|
|
|
|
IssueIDs: issueIDsFromSearch,
|
|
|
|
IsArchived: util.OptionalBoolFalse,
|
|
|
|
LabelIDs: opts.LabelIDs,
|
|
|
|
Org: org,
|
|
|
|
Team: team,
|
2020-02-29 12:22:05 +05:30
|
|
|
}
|
|
|
|
if len(repoIDs) > 0 {
|
|
|
|
statsOpts.RepoIDs = repoIDs
|
|
|
|
}
|
2021-12-29 18:32:12 +05:30
|
|
|
issueStats, err = models.GetUserIssueStats(statsOpts)
|
2020-02-29 12:22:05 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetUserIssueStats Shown", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
2021-12-29 18:32:12 +05:30
|
|
|
issueStats = &models.IssueStats{}
|
2019-12-02 09:20:36 +05:30
|
|
|
}
|
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
// Will be posted to ctx.Data.
|
2019-12-02 09:20:36 +05:30
|
|
|
var shownIssues int
|
2015-08-25 20:52:05 +05:30
|
|
|
if !isShowClosed {
|
2021-12-29 18:32:12 +05:30
|
|
|
shownIssues = int(issueStats.OpenCount)
|
|
|
|
ctx.Data["TotalIssueCount"] = shownIssues
|
2015-08-25 20:52:05 +05:30
|
|
|
} else {
|
2021-12-29 18:32:12 +05:30
|
|
|
shownIssues = int(issueStats.ClosedCount)
|
|
|
|
ctx.Data["TotalIssueCount"] = shownIssues
|
2015-08-25 20:52:05 +05:30
|
|
|
}
|
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
ctx.Data["IsShowClosed"] = isShowClosed
|
|
|
|
|
2020-05-15 04:25:43 +05:30
|
|
|
ctx.Data["IssueRefEndNames"], ctx.Data["IssueRefURLs"] =
|
2021-08-11 06:01:13 +05:30
|
|
|
issue_service.GetRefEndNamesAndURLs(issues, ctx.FormString("RepoLink"))
|
2020-05-15 04:25:43 +05:30
|
|
|
|
2015-08-25 20:28:34 +05:30
|
|
|
ctx.Data["Issues"] = issues
|
2021-01-13 09:49:17 +05:30
|
|
|
|
|
|
|
approvalCounts, err := models.IssueList(issues).GetApprovalCounts()
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("ApprovalCounts", err)
|
|
|
|
return
|
|
|
|
}
|
2020-03-06 09:14:06 +05:30
|
|
|
ctx.Data["ApprovalCounts"] = func(issueID int64, typ string) int64 {
|
|
|
|
counts, ok := approvalCounts[issueID]
|
|
|
|
if !ok || len(counts) == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
reviewTyp := models.ReviewTypeApprove
|
|
|
|
if typ == "reject" {
|
|
|
|
reviewTyp = models.ReviewTypeReject
|
2020-04-06 22:03:34 +05:30
|
|
|
} else if typ == "waiting" {
|
|
|
|
reviewTyp = models.ReviewTypeRequest
|
2020-03-06 09:14:06 +05:30
|
|
|
}
|
|
|
|
for _, count := range counts {
|
|
|
|
if count.Type == reviewTyp {
|
|
|
|
return count.Count
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
2019-04-03 01:24:29 +05:30
|
|
|
ctx.Data["CommitStatus"] = commitStatus
|
2017-02-14 19:45:18 +05:30
|
|
|
ctx.Data["Repos"] = showRepos
|
2021-01-13 09:49:17 +05:30
|
|
|
ctx.Data["Counts"] = issueCountByRepo
|
2021-12-29 18:32:12 +05:30
|
|
|
ctx.Data["IssueStats"] = issueStats
|
2015-08-25 20:28:34 +05:30
|
|
|
ctx.Data["ViewType"] = viewType
|
2015-11-04 23:20:02 +05:30
|
|
|
ctx.Data["SortType"] = sortType
|
2019-12-02 09:20:36 +05:30
|
|
|
ctx.Data["RepoIDs"] = repoIDs
|
2015-08-25 20:28:34 +05:30
|
|
|
ctx.Data["IsShowClosed"] = isShowClosed
|
2021-01-13 09:49:17 +05:30
|
|
|
ctx.Data["SelectLabels"] = selectedLabels
|
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-12-02 09:20:36 +05:30
|
|
|
// Convert []int64 to string
|
|
|
|
reposParam, _ := json.Marshal(repoIDs)
|
|
|
|
|
|
|
|
ctx.Data["ReposParam"] = string(reposParam)
|
|
|
|
|
|
|
|
pager := context.NewPagination(shownIssues, setting.UI.IssuePagingNum, page, 5)
|
2020-02-29 12:22:05 +05:30
|
|
|
pager.AddParam(ctx, "q", "Keyword")
|
2019-04-20 09:45:19 +05:30
|
|
|
pager.AddParam(ctx, "type", "ViewType")
|
2019-12-02 09:20:36 +05:30
|
|
|
pager.AddParam(ctx, "repos", "ReposParam")
|
2019-04-20 09:45:19 +05:30
|
|
|
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
|
|
|
|
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.HTML(http.StatusOK, tplIssues)
|
2015-08-25 20:28:34 +05:30
|
|
|
}
|
|
|
|
|
2021-01-13 09:49:17 +05:30
|
|
|
func getRepoIDs(reposQuery string) []int64 {
|
2021-03-12 08:36:33 +05:30
|
|
|
if len(reposQuery) == 0 || reposQuery == "[]" {
|
2021-01-13 09:49:17 +05:30
|
|
|
return []int64{}
|
|
|
|
}
|
|
|
|
if !issueReposQueryPattern.MatchString(reposQuery) {
|
|
|
|
log.Warn("issueReposQueryPattern does not match query")
|
|
|
|
return []int64{}
|
|
|
|
}
|
|
|
|
|
|
|
|
var repoIDs []int64
|
|
|
|
// remove "[" and "]" from string
|
|
|
|
reposQuery = reposQuery[1 : len(reposQuery)-1]
|
|
|
|
//for each ID (delimiter ",") add to int to repoIDs
|
|
|
|
for _, rID := range strings.Split(reposQuery, ",") {
|
|
|
|
// Ensure nonempty string entries
|
|
|
|
if rID != "" && rID != "0" {
|
|
|
|
rIDint64, err := strconv.ParseInt(rID, 10, 64)
|
|
|
|
if err == nil {
|
|
|
|
repoIDs = append(repoIDs, rIDint64)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return repoIDs
|
|
|
|
}
|
|
|
|
|
2021-11-24 15:19:20 +05:30
|
|
|
func issueIDsFromSearch(ctxUser *user_model.User, keyword string, opts *models.IssuesOptions) ([]int64, error) {
|
2021-01-13 09:49:17 +05:30
|
|
|
if len(keyword) == 0 {
|
|
|
|
return []int64{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
searchRepoIDs, err := models.GetRepoIDsForIssuesOptions(opts, ctxUser)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("GetRepoIDsForIssuesOptions: %v", err)
|
|
|
|
}
|
|
|
|
issueIDsFromSearch, err := issue_indexer.SearchIssuesByKeyword(searchRepoIDs, keyword)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("SearchIssuesByKeyword: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return issueIDsFromSearch, nil
|
|
|
|
}
|
|
|
|
|
2021-12-29 18:32:12 +05:30
|
|
|
func loadRepoByIDs(ctxUser *user_model.User, issueCountByRepo map[int64]int64, unitType unit.Type) (map[int64]*repo_model.Repository, error) {
|
|
|
|
var totalRes = make(map[int64]*repo_model.Repository, len(issueCountByRepo))
|
|
|
|
var repoIDs = make([]int64, 0, 500)
|
2021-01-13 09:49:17 +05:30
|
|
|
for id := range issueCountByRepo {
|
|
|
|
if id <= 0 {
|
|
|
|
continue
|
|
|
|
}
|
2021-12-29 18:32:12 +05:30
|
|
|
repoIDs = append(repoIDs, id)
|
|
|
|
if len(repoIDs) == 500 {
|
|
|
|
if err := repo_model.FindReposMapByIDs(repoIDs, totalRes); err != nil {
|
2021-01-13 09:49:17 +05:30
|
|
|
return nil, err
|
|
|
|
}
|
2021-12-29 18:32:12 +05:30
|
|
|
repoIDs = repoIDs[:0]
|
2021-01-13 09:49:17 +05:30
|
|
|
}
|
2021-12-29 18:32:12 +05:30
|
|
|
}
|
|
|
|
if len(repoIDs) > 0 {
|
|
|
|
if err := repo_model.FindReposMapByIDs(repoIDs, totalRes); err != nil {
|
|
|
|
return nil, err
|
2021-01-13 09:49:17 +05:30
|
|
|
}
|
|
|
|
}
|
2021-12-29 18:32:12 +05:30
|
|
|
return totalRes, nil
|
2021-01-13 09:49:17 +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) {
|
2021-12-10 13:44:24 +05:30
|
|
|
keys, err := asymkey_model.ListPublicKeys(uid, db.ListOptions{})
|
2014-11-23 13:03:47 +05:30
|
|
|
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
|
|
|
}
|
2021-12-15 12:29:57 +05:30
|
|
|
ctx.PlainTextBytes(http.StatusOK, 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) {
|
2021-12-10 13:44:24 +05:30
|
|
|
keys, err := asymkey_model.ListGPGKeys(db.DefaultContext, uid, db.ListOptions{})
|
2019-04-14 22:13:56 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("ListGPGKeys", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
entities := make([]*openpgp.Entity, 0)
|
|
|
|
failedEntitiesID := make([]string, 0)
|
|
|
|
for _, k := range keys {
|
2021-12-10 13:44:24 +05:30
|
|
|
e, err := asymkey_model.GPGKeyToEntity(k)
|
2019-04-14 22:13:56 +05:30
|
|
|
if err != nil {
|
2021-12-10 13:44:24 +05:30
|
|
|
if asymkey_model.IsErrGPGKeyImportNotExist(err) {
|
2019-04-14 22:13:56 +05:30
|
|
|
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()
|
2021-12-15 12:29:57 +05:30
|
|
|
ctx.PlainTextBytes(http.StatusOK, buf.Bytes())
|
2019-04-14 22:13:56 +05:30
|
|
|
}
|