2014-04-13 05:57:42 +00: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 07:33:47 +00:00
|
|
|
"bytes"
|
2014-04-13 05:57:42 +00:00
|
|
|
"fmt"
|
2017-12-04 04:39:01 +00:00
|
|
|
"sort"
|
2019-01-23 04:10:38 +00:00
|
|
|
"strings"
|
2014-04-13 05:57:42 +00:00
|
|
|
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2017-01-25 02:43:02 +00:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2017-12-25 23:25:16 +00:00
|
|
|
|
|
|
|
"github.com/Unknwon/com"
|
|
|
|
"github.com/Unknwon/paginater"
|
2014-04-13 05:57:42 +00:00
|
|
|
)
|
|
|
|
|
2014-06-23 03:11:12 +00:00
|
|
|
const (
|
2017-08-18 11:21:46 +00:00
|
|
|
tplDashboard base.TplName = "user/dashboard/dashboard"
|
2016-11-18 03:03:03 +00:00
|
|
|
tplIssues base.TplName = "user/dashboard/issues"
|
|
|
|
tplProfile base.TplName = "user/profile"
|
|
|
|
tplOrgHome base.TplName = "org/home"
|
2014-06-23 03:11:12 +00:00
|
|
|
)
|
|
|
|
|
2016-07-23 17:08:22 +00:00
|
|
|
// getDashboardContextUser finds out dashboard is viewing as which context user.
|
2016-03-11 16:56:52 +00:00
|
|
|
func getDashboardContextUser(ctx *context.Context) *models.User {
|
2015-08-25 14:58:34 +00:00
|
|
|
ctxUser := ctx.User
|
2014-07-27 03:53:16 +00:00
|
|
|
orgName := ctx.Params(":org")
|
|
|
|
if len(orgName) > 0 {
|
|
|
|
// Organization.
|
|
|
|
org, err := models.GetUserByName(orgName)
|
|
|
|
if err != nil {
|
2015-08-05 03:14:17 +00:00
|
|
|
if models.IsErrUserNotExist(err) {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.NotFound("GetUserByName", err)
|
2014-07-27 03:53:16 +00:00
|
|
|
} else {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("GetUserByName", err)
|
2014-07-27 03:53:16 +00:00
|
|
|
}
|
2015-08-25 14:58:34 +00:00
|
|
|
return nil
|
2014-07-27 03:53:16 +00:00
|
|
|
}
|
|
|
|
ctxUser = org
|
2015-08-25 14:58:34 +00:00
|
|
|
}
|
|
|
|
ctx.Data["ContextUser"] = ctxUser
|
|
|
|
|
2015-12-17 07:28:47 +00:00
|
|
|
if err := ctx.User.GetOrganizations(true); err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("GetOrganizations", err)
|
2015-08-25 14:58:34 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
ctx.Data["Orgs"] = ctx.User.Orgs
|
|
|
|
|
|
|
|
return ctxUser
|
|
|
|
}
|
|
|
|
|
2017-06-02 00:42:25 +00:00
|
|
|
// retrieveFeeds loads feeds for the specified user
|
2017-08-23 01:30:54 +00:00
|
|
|
func retrieveFeeds(ctx *context.Context, options models.GetFeedsOptions) {
|
|
|
|
actions, err := models.GetFeeds(options)
|
2015-11-22 06:32:09 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("GetFeeds", err)
|
2015-11-22 06:32:09 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-08-23 01:30:54 +00:00
|
|
|
userCache := map[int64]*models.User{options.RequestedUser.ID: options.RequestedUser}
|
2017-06-08 02:11:41 +00:00
|
|
|
if ctx.User != nil {
|
|
|
|
userCache[ctx.User.ID] = ctx.User
|
|
|
|
}
|
2015-11-22 06:32:09 +00:00
|
|
|
for _, act := range actions {
|
2018-02-21 10:55:34 +00:00
|
|
|
if act.ActUser != nil {
|
|
|
|
userCache[act.ActUserID] = act.ActUser
|
2017-05-26 01:38:18 +00:00
|
|
|
}
|
|
|
|
|
2018-02-21 10:55:34 +00:00
|
|
|
repoOwner, ok := userCache[act.Repo.OwnerID]
|
2017-05-26 01:38:18 +00:00
|
|
|
if !ok {
|
2018-02-21 10:55:34 +00:00
|
|
|
repoOwner, err = models.GetUserByID(act.Repo.OwnerID)
|
2017-05-26 01:38:18 +00:00
|
|
|
if err != nil {
|
|
|
|
if models.IsErrUserNotExist(err) {
|
|
|
|
continue
|
|
|
|
}
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("GetUserByID", err)
|
2015-11-22 06:32:09 +00:00
|
|
|
return
|
|
|
|
}
|
2018-02-21 10:55:34 +00:00
|
|
|
userCache[repoOwner.ID] = repoOwner
|
2015-11-22 06:32:09 +00:00
|
|
|
}
|
2018-02-21 10:55:34 +00:00
|
|
|
act.Repo.Owner = repoOwner
|
2015-11-22 06:32:09 +00:00
|
|
|
}
|
2017-06-02 00:42:25 +00:00
|
|
|
ctx.Data["Feeds"] = actions
|
2015-11-22 06:32:09 +00:00
|
|
|
}
|
|
|
|
|
2016-11-18 03:03:03 +00:00
|
|
|
// Dashboard render the dashborad page
|
2016-03-11 16:56:52 +00:00
|
|
|
func Dashboard(ctx *context.Context) {
|
2016-03-10 04:56:03 +00:00
|
|
|
ctxUser := getDashboardContextUser(ctx)
|
2015-08-25 14:58:34 +00:00
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-07-23 17:08:22 +00:00
|
|
|
ctx.Data["Title"] = ctxUser.DisplayName() + " - " + ctx.Tr("dashboard")
|
|
|
|
ctx.Data["PageIsDashboard"] = true
|
|
|
|
ctx.Data["PageIsNews"] = true
|
2017-08-17 01:31:34 +00:00
|
|
|
ctx.Data["SearchLimit"] = setting.UI.User.RepoPagingNum
|
2018-10-23 02:57:42 +00:00
|
|
|
ctx.Data["EnableHeatmap"] = setting.Service.EnableUserHeatmap
|
|
|
|
ctx.Data["HeatmapUser"] = ctxUser.Name
|
2016-07-23 17:08:22 +00:00
|
|
|
|
2016-07-24 06:32:46 +00:00
|
|
|
var err error
|
2017-08-23 01:30:54 +00:00
|
|
|
var mirrors []*models.Repository
|
2016-02-02 19:29:35 +00:00
|
|
|
if ctxUser.IsOrganization() {
|
2017-01-25 15:41:38 +00:00
|
|
|
env, err := ctxUser.AccessibleReposEnv(ctx.User.ID)
|
2016-07-24 06:32:46 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("AccessibleReposEnv", err)
|
2017-01-25 15:41:38 +00:00
|
|
|
return
|
|
|
|
}
|
2016-07-24 06:32:46 +00:00
|
|
|
|
2017-01-25 15:41:38 +00:00
|
|
|
mirrors, err = env.MirrorRepos()
|
2016-02-02 19:29:35 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("env.MirrorRepos", err)
|
2016-07-24 06:32:46 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mirrors, err = ctxUser.GetMirrorRepositories()
|
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("GetMirrorRepositories", err)
|
2016-07-24 06:32:46 +00:00
|
|
|
return
|
|
|
|
}
|
2014-04-13 05:57:42 +00:00
|
|
|
}
|
2016-07-24 06:32:46 +00:00
|
|
|
ctx.Data["MaxShowRepoNum"] = setting.UI.User.RepoPagingNum
|
2014-04-13 05:57:42 +00:00
|
|
|
|
2016-07-24 06:32:46 +00:00
|
|
|
if err := models.MirrorRepositoryList(mirrors).LoadAttributes(); err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("MirrorRepositoryList.LoadAttributes", err)
|
2016-07-24 06:32:46 +00:00
|
|
|
return
|
2014-07-26 06:28:04 +00:00
|
|
|
}
|
2014-07-27 03:53:16 +00:00
|
|
|
ctx.Data["MirrorCount"] = len(mirrors)
|
|
|
|
ctx.Data["Mirrors"] = mirrors
|
2014-05-12 19:14:22 +00:00
|
|
|
|
2018-02-21 10:55:34 +00:00
|
|
|
retrieveFeeds(ctx, models.GetFeedsOptions{
|
|
|
|
RequestedUser: ctxUser,
|
2017-08-23 01:30:54 +00:00
|
|
|
IncludePrivate: true,
|
|
|
|
OnlyPerformedBy: false,
|
|
|
|
IncludeDeleted: false,
|
|
|
|
})
|
2018-12-13 15:55:43 +00:00
|
|
|
|
2015-11-22 06:32:09 +00:00
|
|
|
if ctx.Written() {
|
2014-04-13 05:57:42 +00:00
|
|
|
return
|
|
|
|
}
|
2017-08-18 11:21:46 +00:00
|
|
|
ctx.HTML(200, tplDashboard)
|
2014-04-13 05:57:42 +00:00
|
|
|
}
|
|
|
|
|
2016-11-18 03:03:03 +00:00
|
|
|
// Issues render the user issues page
|
2016-03-11 16:56:52 +00:00
|
|
|
func Issues(ctx *context.Context) {
|
2015-09-02 20:18:09 +00:00
|
|
|
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 14:58:34 +00:00
|
|
|
|
|
|
|
ctxUser := getDashboardContextUser(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Organization does not have view type and filter mode.
|
|
|
|
var (
|
|
|
|
viewType string
|
2015-11-04 17:50:02 +00:00
|
|
|
sortType = ctx.Query("sort")
|
2016-11-07 16:24:59 +00:00
|
|
|
filterMode = models.FilterModeAll
|
2015-08-25 14:58:34 +00:00
|
|
|
)
|
2017-02-14 14:15:18 +00:00
|
|
|
|
2015-08-25 14:58:34 +00:00
|
|
|
if ctxUser.IsOrganization() {
|
|
|
|
viewType = "all"
|
|
|
|
} else {
|
|
|
|
viewType = ctx.Query("type")
|
|
|
|
switch viewType {
|
|
|
|
case "assigned":
|
2016-11-07 16:24:59 +00:00
|
|
|
filterMode = models.FilterModeAssign
|
2015-08-25 14:58:34 +00:00
|
|
|
case "created_by":
|
2016-11-07 16:24:59 +00:00
|
|
|
filterMode = models.FilterModeCreate
|
2017-12-08 01:02:34 +00:00
|
|
|
case "all": // filterMode already set to All
|
|
|
|
default:
|
|
|
|
viewType = "all"
|
2015-08-25 14:58:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-14 14:15:18 +00:00
|
|
|
page := ctx.QueryInt("page")
|
|
|
|
if page <= 1 {
|
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
|
2015-08-25 14:58:34 +00:00
|
|
|
repoID := ctx.QueryInt64("repo")
|
|
|
|
isShowClosed := ctx.Query("state") == "closed"
|
|
|
|
|
|
|
|
// Get repositories.
|
2016-07-24 06:32:46 +00:00
|
|
|
var err error
|
2017-02-17 00:58:19 +00:00
|
|
|
var userRepoIDs []int64
|
2016-01-31 20:12:03 +00:00
|
|
|
if ctxUser.IsOrganization() {
|
2017-01-25 15:41:38 +00:00
|
|
|
env, err := ctxUser.AccessibleReposEnv(ctx.User.ID)
|
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("AccessibleReposEnv", err)
|
2017-01-25 15:41:38 +00:00
|
|
|
return
|
|
|
|
}
|
2017-02-17 00:58:19 +00:00
|
|
|
userRepoIDs, err = env.RepoIDs(1, ctxUser.NumRepos)
|
2016-07-24 06:32:46 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("env.RepoIDs", err)
|
2016-01-31 20:12:03 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
2018-06-21 16:00:13 +00:00
|
|
|
unitType := models.UnitTypeIssues
|
|
|
|
if isPullList {
|
|
|
|
unitType = models.UnitTypePullRequests
|
|
|
|
}
|
|
|
|
userRepoIDs, err = ctxUser.GetAccessRepoIDs(unitType)
|
2017-02-17 00:58:19 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("ctxUser.GetAccessRepoIDs", err)
|
2016-01-31 20:12:03 +00:00
|
|
|
return
|
|
|
|
}
|
2017-02-17 00:58:19 +00:00
|
|
|
}
|
2018-10-20 21:25:14 +00:00
|
|
|
if len(userRepoIDs) == 0 {
|
2017-02-17 00:58:19 +00:00
|
|
|
userRepoIDs = []int64{-1}
|
2017-02-14 14:15:18 +00:00
|
|
|
}
|
|
|
|
|
2017-08-03 05:09:16 +00:00
|
|
|
opts := &models.IssuesOptions{
|
|
|
|
IsClosed: util.OptionalBoolOf(isShowClosed),
|
|
|
|
IsPull: util.OptionalBoolOf(isPullList),
|
|
|
|
SortType: sortType,
|
|
|
|
}
|
|
|
|
|
2017-12-25 23:25:16 +00:00
|
|
|
if repoID > 0 {
|
|
|
|
opts.RepoIDs = []int64{repoID}
|
|
|
|
}
|
|
|
|
|
2017-02-14 14:15:18 +00:00
|
|
|
switch filterMode {
|
|
|
|
case models.FilterModeAll:
|
2017-12-25 23:25:16 +00:00
|
|
|
if repoID > 0 {
|
|
|
|
if !com.IsSliceContainsInt64(userRepoIDs, repoID) {
|
|
|
|
// force an empty result
|
|
|
|
opts.RepoIDs = []int64{-1}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
opts.RepoIDs = userRepoIDs
|
|
|
|
}
|
2017-02-14 14:15:18 +00:00
|
|
|
case models.FilterModeAssign:
|
2017-08-03 05:09:16 +00:00
|
|
|
opts.AssigneeID = ctxUser.ID
|
2017-02-14 14:15:18 +00:00
|
|
|
case models.FilterModeCreate:
|
2017-08-03 05:09:16 +00:00
|
|
|
opts.PosterID = ctxUser.ID
|
2017-02-14 14:15:18 +00:00
|
|
|
case models.FilterModeMention:
|
2017-08-03 05:09:16 +00:00
|
|
|
opts.MentionedID = ctxUser.ID
|
2017-02-14 14:15:18 +00:00
|
|
|
}
|
|
|
|
|
2017-08-03 05:09:16 +00:00
|
|
|
counts, err := models.CountIssuesByRepo(opts)
|
2017-02-14 14:15:18 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("CountIssuesByRepo", err)
|
2017-02-14 14:15:18 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-08-03 05:09:16 +00:00
|
|
|
opts.Page = page
|
|
|
|
opts.PageSize = setting.UI.IssuePagingNum
|
2019-01-23 04:10:38 +00:00
|
|
|
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 06:55:01 +00:00
|
|
|
|
2017-08-03 05:09:16 +00:00
|
|
|
issues, err := models.Issues(opts)
|
2017-02-17 00:58:19 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("Issues", err)
|
2017-02-17 00:58:19 +00:00
|
|
|
return
|
|
|
|
}
|
2015-09-02 20:18:09 +00:00
|
|
|
|
2017-08-03 05:09:16 +00:00
|
|
|
showReposMap := make(map[int64]*models.Repository, len(counts))
|
|
|
|
for repoID := range counts {
|
|
|
|
repo, err := models.GetRepositoryByID(repoID)
|
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("GetRepositoryByID", err)
|
2017-08-03 05:09:16 +00:00
|
|
|
return
|
2015-09-02 20:18:09 +00:00
|
|
|
}
|
2017-08-03 05:09:16 +00:00
|
|
|
showReposMap[repoID] = repo
|
|
|
|
}
|
2015-08-25 14:58:34 +00:00
|
|
|
|
2017-08-03 05:09:16 +00:00
|
|
|
if repoID > 0 {
|
|
|
|
if _, ok := showReposMap[repoID]; !ok {
|
|
|
|
repo, err := models.GetRepositoryByID(repoID)
|
2019-01-30 16:13:39 +00:00
|
|
|
if models.IsErrRepoNotExist(err) {
|
|
|
|
ctx.NotFound("GetRepositoryByID", err)
|
|
|
|
return
|
|
|
|
} else if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("GetRepositoryByID", fmt.Errorf("[%d]%v", repoID, err))
|
2017-02-17 00:58:19 +00:00
|
|
|
return
|
|
|
|
}
|
2017-08-03 05:09:16 +00:00
|
|
|
showReposMap[repoID] = repo
|
2015-08-25 14:58:34 +00:00
|
|
|
}
|
|
|
|
|
2017-08-03 05:09:16 +00:00
|
|
|
repo := showReposMap[repoID]
|
|
|
|
|
2017-02-14 14:15:18 +00:00
|
|
|
// Check if user has access to given repository.
|
2018-11-28 11:26:14 +00:00
|
|
|
perm, err := models.GetUserRepoPermission(repo, ctxUser)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetUserRepoPermission", fmt.Errorf("[%d]%v", repoID, err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if !perm.CanRead(models.UnitTypeIssues) {
|
2017-08-03 05:09:16 +00:00
|
|
|
ctx.Status(404)
|
2017-02-14 14:15:18 +00:00
|
|
|
return
|
2015-08-25 14:58:34 +00:00
|
|
|
}
|
2016-12-23 00:26:01 +00:00
|
|
|
}
|
2015-08-25 14:58:34 +00:00
|
|
|
|
2017-08-03 05:09:16 +00:00
|
|
|
showRepos := models.RepositoryListOfMap(showReposMap)
|
2017-12-04 04:39:01 +00:00
|
|
|
sort.Sort(showRepos)
|
2017-08-03 05:09:16 +00:00
|
|
|
if err = showRepos.LoadAttributes(); err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("LoadAttributes", err)
|
2017-02-17 00:58:19 +00:00
|
|
|
return
|
2015-08-25 15:22:05 +00:00
|
|
|
}
|
|
|
|
|
2017-08-03 05:09:16 +00:00
|
|
|
for _, issue := range issues {
|
|
|
|
issue.Repo = showReposMap[issue.RepoID]
|
|
|
|
}
|
|
|
|
|
2017-12-25 23:25:16 +00:00
|
|
|
issueStats, err := models.GetUserIssueStats(models.UserIssueStatsOptions{
|
|
|
|
UserID: ctxUser.ID,
|
|
|
|
RepoID: repoID,
|
|
|
|
UserRepoIDs: userRepoIDs,
|
|
|
|
FilterMode: filterMode,
|
|
|
|
IsPull: isPullList,
|
|
|
|
IsClosed: isShowClosed,
|
|
|
|
})
|
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("GetUserIssueStats", err)
|
2017-12-25 23:25:16 +00:00
|
|
|
return
|
|
|
|
}
|
2017-02-14 14:15:18 +00:00
|
|
|
|
2015-08-25 15:22:05 +00:00
|
|
|
var total int
|
|
|
|
if !isShowClosed {
|
|
|
|
total = int(issueStats.OpenCount)
|
|
|
|
} else {
|
|
|
|
total = int(issueStats.ClosedCount)
|
|
|
|
}
|
|
|
|
|
2015-08-25 14:58:34 +00:00
|
|
|
ctx.Data["Issues"] = issues
|
2017-02-14 14:15:18 +00:00
|
|
|
ctx.Data["Repos"] = showRepos
|
2017-08-03 05:09:16 +00:00
|
|
|
ctx.Data["Counts"] = counts
|
2017-02-14 14:15:18 +00:00
|
|
|
ctx.Data["Page"] = paginater.New(total, setting.UI.IssuePagingNum, page, 5)
|
2015-08-25 14:58:34 +00:00
|
|
|
ctx.Data["IssueStats"] = issueStats
|
|
|
|
ctx.Data["ViewType"] = viewType
|
2015-11-04 17:50:02 +00:00
|
|
|
ctx.Data["SortType"] = sortType
|
2015-08-25 14:58:34 +00:00
|
|
|
ctx.Data["RepoID"] = repoID
|
|
|
|
ctx.Data["IsShowClosed"] = isShowClosed
|
2017-02-14 14:15:18 +00:00
|
|
|
|
2015-08-25 14:58:34 +00:00
|
|
|
if isShowClosed {
|
|
|
|
ctx.Data["State"] = "closed"
|
|
|
|
} else {
|
|
|
|
ctx.Data["State"] = "open"
|
|
|
|
}
|
|
|
|
|
2016-11-18 03:03:03 +00:00
|
|
|
ctx.HTML(200, tplIssues)
|
2015-08-25 14:58:34 +00:00
|
|
|
}
|
|
|
|
|
2016-11-27 11:59:12 +00:00
|
|
|
// ShowSSHKeys output all the ssh keys of user by uid
|
2016-03-11 16:56:52 +00:00
|
|
|
func ShowSSHKeys(ctx *context.Context, uid int64) {
|
2014-11-23 07:33:47 +00:00
|
|
|
keys, err := models.ListPublicKeys(uid)
|
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("ListPublicKeys", err)
|
2014-11-23 07:33:47 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var buf bytes.Buffer
|
|
|
|
for i := range keys {
|
|
|
|
buf.WriteString(keys[i].OmitEmail())
|
2015-06-08 07:40:38 +00:00
|
|
|
buf.WriteString("\n")
|
2014-11-23 07:33:47 +00:00
|
|
|
}
|
2015-10-16 01:28:12 +00:00
|
|
|
ctx.PlainText(200, buf.Bytes())
|
2014-11-23 07:33:47 +00:00
|
|
|
}
|
|
|
|
|
2016-03-11 16:56:52 +00:00
|
|
|
func showOrgProfile(ctx *context.Context) {
|
2015-11-25 00:14:00 +00:00
|
|
|
ctx.SetParams(":org", ctx.Params(":username"))
|
2016-03-11 16:56:52 +00:00
|
|
|
context.HandleOrgAssignment(ctx)
|
2015-11-25 00:14:00 +00:00
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
org := ctx.Org.Organization
|
2017-04-15 02:02:46 +00:00
|
|
|
ctx.Data["Title"] = org.DisplayName()
|
2015-11-25 00:14:00 +00:00
|
|
|
|
2016-07-24 06:32:46 +00:00
|
|
|
page := ctx.QueryInt("page")
|
|
|
|
if page <= 0 {
|
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
repos []*models.Repository
|
|
|
|
count int64
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
if ctx.IsSigned && !ctx.User.IsAdmin {
|
2017-01-25 15:41:38 +00:00
|
|
|
env, err := org.AccessibleReposEnv(ctx.User.ID)
|
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("AccessibleReposEnv", err)
|
2017-01-25 15:41:38 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
repos, err = env.Repos(page, setting.UI.User.RepoPagingNum)
|
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("env.Repos", err)
|
2017-01-25 15:41:38 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
count, err = env.CountRepos()
|
2016-07-24 06:32:46 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("env.CountRepos", err)
|
2016-07-24 06:32:46 +00:00
|
|
|
return
|
2016-01-31 18:13:39 +00:00
|
|
|
}
|
2016-07-24 06:32:46 +00:00
|
|
|
ctx.Data["Repos"] = repos
|
2016-01-31 18:13:39 +00:00
|
|
|
} else {
|
2016-07-24 06:32:46 +00:00
|
|
|
showPrivate := ctx.IsSigned && ctx.User.IsAdmin
|
2017-02-04 12:20:20 +00:00
|
|
|
repos, err = models.GetUserRepositories(org.ID, showPrivate, page, setting.UI.User.RepoPagingNum, "")
|
2016-02-04 17:13:56 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("GetRepositories", err)
|
2016-01-31 18:13:39 +00:00
|
|
|
return
|
|
|
|
}
|
2016-02-04 17:13:56 +00:00
|
|
|
ctx.Data["Repos"] = repos
|
2016-07-24 06:32:46 +00:00
|
|
|
count = models.CountUserRepositories(org.ID, showPrivate)
|
2015-11-25 00:14:00 +00:00
|
|
|
}
|
2016-07-24 06:32:46 +00:00
|
|
|
ctx.Data["Page"] = paginater.New(int(count), setting.UI.User.RepoPagingNum, page, 5)
|
2015-11-25 00:14:00 +00:00
|
|
|
|
2016-01-31 10:46:04 +00:00
|
|
|
if err := org.GetMembers(); err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("GetMembers", err)
|
2015-11-25 00:14:00 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Members"] = org.Members
|
|
|
|
|
2016-01-31 19:08:20 +00:00
|
|
|
ctx.Data["Teams"] = org.Teams
|
2015-11-25 00:14:00 +00:00
|
|
|
|
2016-11-18 03:03:03 +00:00
|
|
|
ctx.HTML(200, tplOrgHome)
|
2015-11-25 00:14:00 +00:00
|
|
|
}
|
|
|
|
|
2016-11-18 03:03:03 +00:00
|
|
|
// Email2User show user page via email
|
2016-03-11 16:56:52 +00:00
|
|
|
func Email2User(ctx *context.Context) {
|
2014-04-13 05:57:42 +00:00
|
|
|
u, err := models.GetUserByEmail(ctx.Query("email"))
|
|
|
|
if err != nil {
|
2015-08-05 03:14:17 +00:00
|
|
|
if models.IsErrUserNotExist(err) {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.NotFound("GetUserByEmail", err)
|
2014-04-13 05:57:42 +00:00
|
|
|
} else {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("GetUserByEmail", err)
|
2014-04-13 05:57:42 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2016-11-27 10:14:25 +00:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/" + u.Name)
|
2014-04-13 05:57:42 +00:00
|
|
|
}
|