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-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
|
|
|
|
2016-11-10 17:24:48 +01: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 03:43:02 +01:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2014-04-13 07:57:42 +02:00
|
|
|
)
|
|
|
|
|
2014-06-23 05:11:12 +02:00
|
|
|
const (
|
2016-11-18 04:03:03 +01:00
|
|
|
tplDashborad base.TplName = "user/dashboard/dashboard"
|
|
|
|
tplIssues base.TplName = "user/dashboard/issues"
|
|
|
|
tplProfile base.TplName = "user/profile"
|
|
|
|
tplOrgHome base.TplName = "org/home"
|
2014-06-23 05:11:12 +02:00
|
|
|
)
|
|
|
|
|
2016-07-23 19:08:22 +02:00
|
|
|
// getDashboardContextUser finds out dashboard is viewing as which context user.
|
2016-03-11 17:56:52 +01:00
|
|
|
func getDashboardContextUser(ctx *context.Context) *models.User {
|
2015-08-25 16:58:34 +02:00
|
|
|
ctxUser := ctx.User
|
2014-07-27 05:53:16 +02:00
|
|
|
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) {
|
2014-07-27 05:53:16 +02:00
|
|
|
ctx.Handle(404, "GetUserByName", err)
|
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "GetUserByName", err)
|
|
|
|
}
|
2015-08-25 16:58:34 +02:00
|
|
|
return nil
|
2014-07-27 05:53:16 +02:00
|
|
|
}
|
|
|
|
ctxUser = org
|
2015-08-25 16:58:34 +02:00
|
|
|
}
|
|
|
|
ctx.Data["ContextUser"] = ctxUser
|
|
|
|
|
2015-12-17 08:28:47 +01:00
|
|
|
if err := ctx.User.GetOrganizations(true); err != nil {
|
2015-08-25 16:58:34 +02:00
|
|
|
ctx.Handle(500, "GetOrganizations", err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
ctx.Data["Orgs"] = ctx.User.Orgs
|
|
|
|
|
|
|
|
return ctxUser
|
|
|
|
}
|
|
|
|
|
2016-07-23 19:08:22 +02:00
|
|
|
// retrieveFeeds loads feeds from database by given context user.
|
|
|
|
// The user could be organization so it is not always the logged in user,
|
|
|
|
// which is why we have to explicitly pass the context user ID.
|
2016-07-24 08:32:46 +02:00
|
|
|
func retrieveFeeds(ctx *context.Context, ctxUser *models.User, userID, offset int64, isProfile bool) {
|
|
|
|
actions, err := models.GetFeeds(ctxUser, userID, offset, isProfile)
|
2015-11-22 07:32:09 +01:00
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "GetFeeds", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check access of private repositories.
|
|
|
|
feeds := make([]*models.Action, 0, len(actions))
|
2017-02-03 06:27:10 +01:00
|
|
|
unameAvatars := map[string]string{
|
|
|
|
ctxUser.Name: ctxUser.RelAvatarLink(),
|
|
|
|
}
|
2015-11-22 07:32:09 +01:00
|
|
|
for _, act := range actions {
|
|
|
|
// Cache results to reduce queries.
|
|
|
|
_, ok := unameAvatars[act.ActUserName]
|
|
|
|
if !ok {
|
|
|
|
u, err := models.GetUserByName(act.ActUserName)
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrUserNotExist(err) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
ctx.Handle(500, "GetUserByName", err)
|
|
|
|
return
|
|
|
|
}
|
2016-08-05 21:12:54 +02:00
|
|
|
unameAvatars[act.ActUserName] = u.RelAvatarLink()
|
2015-11-22 07:32:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
act.ActAvatar = unameAvatars[act.ActUserName]
|
|
|
|
feeds = append(feeds, act)
|
|
|
|
}
|
|
|
|
ctx.Data["Feeds"] = feeds
|
|
|
|
}
|
|
|
|
|
2016-11-18 04:03:03 +01:00
|
|
|
// Dashboard render the dashborad page
|
2016-03-11 17:56:52 +01:00
|
|
|
func Dashboard(ctx *context.Context) {
|
2016-03-10 05:56:03 +01:00
|
|
|
ctxUser := getDashboardContextUser(ctx)
|
2015-08-25 16:58:34 +02:00
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-07-23 19:08:22 +02:00
|
|
|
ctx.Data["Title"] = ctxUser.DisplayName() + " - " + ctx.Tr("dashboard")
|
|
|
|
ctx.Data["PageIsDashboard"] = true
|
|
|
|
ctx.Data["PageIsNews"] = true
|
|
|
|
|
|
|
|
// Only user can have collaborative repositories.
|
2015-08-25 16:58:34 +02:00
|
|
|
if !ctxUser.IsOrganization() {
|
2016-07-24 08:32:46 +02:00
|
|
|
collaborateRepos, err := ctx.User.GetAccessibleRepositories(setting.UI.User.RepoPagingNum)
|
2014-07-27 05:53:16 +02:00
|
|
|
if err != nil {
|
2015-01-23 08:54:16 +01:00
|
|
|
ctx.Handle(500, "GetAccessibleRepositories", err)
|
2014-07-27 05:53:16 +02:00
|
|
|
return
|
2016-07-24 08:32:46 +02:00
|
|
|
} else if err = models.RepositoryList(collaborateRepos).LoadAttributes(); err != nil {
|
|
|
|
ctx.Handle(500, "RepositoryList.LoadAttributes", err)
|
|
|
|
return
|
2014-07-27 05:53:16 +02:00
|
|
|
}
|
2015-11-13 23:37:02 +01:00
|
|
|
ctx.Data["CollaborativeRepos"] = collaborateRepos
|
2014-07-27 05:53:16 +02:00
|
|
|
}
|
2014-06-25 06:44:48 +02:00
|
|
|
|
2016-07-24 08:32:46 +02:00
|
|
|
var err error
|
|
|
|
var repos, mirrors []*models.Repository
|
2016-02-02 20:29:35 +01:00
|
|
|
if ctxUser.IsOrganization() {
|
2017-01-25 16:41:38 +01:00
|
|
|
env, err := ctxUser.AccessibleReposEnv(ctx.User.ID)
|
2016-07-24 08:32:46 +02:00
|
|
|
if err != nil {
|
2017-01-25 16:41:38 +01:00
|
|
|
ctx.Handle(500, "AccessibleReposEnv", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
repos, err = env.Repos(1, setting.UI.User.RepoPagingNum)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "env.Repos", err)
|
2016-02-02 20:29:35 +01:00
|
|
|
return
|
|
|
|
}
|
2016-07-24 08:32:46 +02:00
|
|
|
|
2017-01-25 16:41:38 +01:00
|
|
|
mirrors, err = env.MirrorRepos()
|
2016-02-02 20:29:35 +01:00
|
|
|
if err != nil {
|
2017-01-25 16:41:38 +01:00
|
|
|
ctx.Handle(500, "env.MirrorRepos", err)
|
2016-07-24 08:32:46 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if err = ctxUser.GetRepositories(1, setting.UI.User.RepoPagingNum); err != nil {
|
2016-02-02 20:29:35 +01:00
|
|
|
ctx.Handle(500, "GetRepositories", err)
|
|
|
|
return
|
|
|
|
}
|
2016-07-24 08:32:46 +02:00
|
|
|
repos = ctxUser.Repos
|
|
|
|
|
|
|
|
mirrors, err = ctxUser.GetMirrorRepositories()
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "GetMirrorRepositories", err)
|
|
|
|
return
|
|
|
|
}
|
2014-04-13 07:57:42 +02:00
|
|
|
}
|
2014-07-26 06:24:27 +02:00
|
|
|
ctx.Data["Repos"] = repos
|
2016-07-24 08:32:46 +02:00
|
|
|
ctx.Data["MaxShowRepoNum"] = setting.UI.User.RepoPagingNum
|
2014-04-13 07:57:42 +02:00
|
|
|
|
2016-07-24 08:32:46 +02:00
|
|
|
if err := models.MirrorRepositoryList(mirrors).LoadAttributes(); err != nil {
|
|
|
|
ctx.Handle(500, "MirrorRepositoryList.LoadAttributes", err)
|
|
|
|
return
|
2014-07-26 08:28:04 +02:00
|
|
|
}
|
2014-07-27 05:53:16 +02:00
|
|
|
ctx.Data["MirrorCount"] = len(mirrors)
|
|
|
|
ctx.Data["Mirrors"] = mirrors
|
2014-05-12 21:14:22 +02:00
|
|
|
|
2016-07-24 08:32:46 +02:00
|
|
|
retrieveFeeds(ctx, ctxUser, ctx.User.ID, 0, false)
|
2015-11-22 07:32:09 +01:00
|
|
|
if ctx.Written() {
|
2014-04-13 07:57:42 +02:00
|
|
|
return
|
|
|
|
}
|
2016-11-18 04:03:03 +01:00
|
|
|
ctx.HTML(200, tplDashborad)
|
2014-04-13 07:57:42 +02:00
|
|
|
}
|
|
|
|
|
2016-11-18 04:03:03 +01:00
|
|
|
// Issues render the user issues page
|
2016-03-11 17:56:52 +01:00
|
|
|
func Issues(ctx *context.Context) {
|
2015-09-02 22:18:09 +02: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 16:58:34 +02:00
|
|
|
|
|
|
|
ctxUser := getDashboardContextUser(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Organization does not have view type and filter mode.
|
|
|
|
var (
|
|
|
|
viewType string
|
2015-11-04 18:50:02 +01:00
|
|
|
sortType = ctx.Query("sort")
|
2016-11-07 17:24:59 +01:00
|
|
|
filterMode = models.FilterModeAll
|
2015-08-25 16:58:34 +02:00
|
|
|
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":
|
2016-11-07 17:24:59 +01:00
|
|
|
filterMode = models.FilterModeAssign
|
2016-07-23 19:08:22 +02:00
|
|
|
assigneeID = ctxUser.ID
|
2015-08-25 16:58:34 +02:00
|
|
|
case "created_by":
|
2016-11-07 17:24:59 +01:00
|
|
|
filterMode = models.FilterModeCreate
|
2016-07-23 19:08:22 +02:00
|
|
|
posterID = ctxUser.ID
|
2015-08-25 16:58:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
repoID := ctx.QueryInt64("repo")
|
|
|
|
isShowClosed := ctx.Query("state") == "closed"
|
|
|
|
|
|
|
|
// Get repositories.
|
2016-07-24 08:32:46 +02:00
|
|
|
var err error
|
|
|
|
var repos []*models.Repository
|
2016-01-31 21:12:03 +01:00
|
|
|
if ctxUser.IsOrganization() {
|
2017-01-25 16:41:38 +01:00
|
|
|
env, err := ctxUser.AccessibleReposEnv(ctx.User.ID)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "AccessibleReposEnv", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
repos, err = env.Repos(1, ctxUser.NumRepos)
|
2016-07-24 08:32:46 +02:00
|
|
|
if err != nil {
|
2016-01-31 21:12:03 +01:00
|
|
|
ctx.Handle(500, "GetRepositories", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
2016-07-24 08:32:46 +02:00
|
|
|
if err := ctxUser.GetRepositories(1, ctx.User.NumRepos); err != nil {
|
2016-01-31 21:12:03 +01:00
|
|
|
ctx.Handle(500, "GetRepositories", err)
|
|
|
|
return
|
|
|
|
}
|
2016-07-24 08:32:46 +02:00
|
|
|
repos = ctxUser.Repos
|
2015-08-25 16:58:34 +02:00
|
|
|
}
|
|
|
|
|
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 {
|
2015-09-02 22:18:09 +02:00
|
|
|
if (isPullList && repo.NumPulls == 0) ||
|
2016-08-05 21:46:26 +02:00
|
|
|
(!isPullList &&
|
2017-02-04 16:53:46 +01:00
|
|
|
(!repo.EnableUnit(models.UnitTypeIssues) || repo.NumIssues == 0)) {
|
2015-08-25 16:58:34 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
repoIDs = append(repoIDs, repo.ID)
|
2015-09-02 22:18:09 +02:00
|
|
|
|
|
|
|
if isPullList {
|
|
|
|
allCount += repo.NumOpenPulls
|
|
|
|
repo.NumOpenIssues = repo.NumOpenPulls
|
|
|
|
repo.NumClosedIssues = repo.NumClosedPulls
|
|
|
|
} else {
|
|
|
|
allCount += repo.NumOpenIssues
|
|
|
|
}
|
2015-08-25 16:58:34 +02:00
|
|
|
|
2016-11-07 17:24:59 +01:00
|
|
|
if filterMode != models.FilterModeAll {
|
2015-08-25 16:58:34 +02:00
|
|
|
// Calculate repository issue count with filter mode.
|
2016-07-23 19:08:22 +02:00
|
|
|
numOpen, numClosed := repo.IssueStats(ctxUser.ID, filterMode, isPullList)
|
2015-08-25 16:58:34 +02:00
|
|
|
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
|
2016-12-23 01:26:01 +01:00
|
|
|
if len(repoIDs) == 0 {
|
|
|
|
repoIDs = []int64{-1}
|
|
|
|
}
|
2015-08-25 16:58:34 +02:00
|
|
|
|
2016-07-23 19:08:22 +02:00
|
|
|
issueStats := models.GetUserIssueStats(repoID, ctxUser.ID, repoIDs, filterMode, isPullList)
|
2015-08-25 17:22:05 +02:00
|
|
|
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)
|
|
|
|
}
|
2016-07-23 18:23:54 +02:00
|
|
|
ctx.Data["Page"] = paginater.New(total, setting.UI.IssuePagingNum, page, 5)
|
2015-08-25 17:22:05 +02:00
|
|
|
|
2015-08-25 16:58:34 +02:00
|
|
|
// Get issues.
|
2015-09-02 22:18:09 +02:00
|
|
|
issues, err := models.Issues(&models.IssuesOptions{
|
|
|
|
AssigneeID: assigneeID,
|
|
|
|
RepoID: repoID,
|
|
|
|
PosterID: posterID,
|
|
|
|
RepoIDs: repoIDs,
|
|
|
|
Page: page,
|
2017-01-25 03:43:02 +01:00
|
|
|
IsClosed: util.OptionalBoolOf(isShowClosed),
|
|
|
|
IsPull: util.OptionalBoolOf(isPullList),
|
2015-11-04 18:50:02 +01:00
|
|
|
SortType: sortType,
|
2015-09-02 22:18:09 +02:00
|
|
|
})
|
2015-08-25 16:58:34 +02:00
|
|
|
if err != nil {
|
2016-03-28 00:21:37 +02:00
|
|
|
ctx.Handle(500, "Issues", err)
|
2015-08-25 16:58:34 +02:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Data["Issues"] = issues
|
|
|
|
|
|
|
|
ctx.Data["IssueStats"] = issueStats
|
|
|
|
ctx.Data["ViewType"] = viewType
|
2015-11-04 18:50:02 +01:00
|
|
|
ctx.Data["SortType"] = sortType
|
2015-08-25 16:58:34 +02:00
|
|
|
ctx.Data["RepoID"] = repoID
|
|
|
|
ctx.Data["IsShowClosed"] = isShowClosed
|
|
|
|
if isShowClosed {
|
|
|
|
ctx.Data["State"] = "closed"
|
|
|
|
} else {
|
|
|
|
ctx.Data["State"] = "open"
|
|
|
|
}
|
|
|
|
|
2016-11-18 04:03:03 +01:00
|
|
|
ctx.HTML(200, tplIssues)
|
2015-08-25 16:58:34 +02:00
|
|
|
}
|
|
|
|
|
2016-11-27 12:59:12 +01:00
|
|
|
// ShowSSHKeys output all the ssh keys of user by uid
|
2016-03-11 17:56:52 +01:00
|
|
|
func ShowSSHKeys(ctx *context.Context, uid int64) {
|
2014-11-23 08:33:47 +01:00
|
|
|
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())
|
2015-06-08 09:40:38 +02:00
|
|
|
buf.WriteString("\n")
|
2014-11-23 08:33:47 +01:00
|
|
|
}
|
2015-10-16 03:28:12 +02:00
|
|
|
ctx.PlainText(200, buf.Bytes())
|
2014-11-23 08:33:47 +01:00
|
|
|
}
|
|
|
|
|
2016-03-11 17:56:52 +01:00
|
|
|
func showOrgProfile(ctx *context.Context) {
|
2015-11-25 01:14:00 +01:00
|
|
|
ctx.SetParams(":org", ctx.Params(":username"))
|
2016-03-11 17:56:52 +01:00
|
|
|
context.HandleOrgAssignment(ctx)
|
2015-11-25 01:14:00 +01:00
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
org := ctx.Org.Organization
|
|
|
|
ctx.Data["Title"] = org.FullName
|
|
|
|
|
2016-07-24 08:32:46 +02: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 16:41:38 +01:00
|
|
|
env, err := org.AccessibleReposEnv(ctx.User.ID)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "AccessibleReposEnv", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
repos, err = env.Repos(page, setting.UI.User.RepoPagingNum)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "env.Repos", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
count, err = env.CountRepos()
|
2016-07-24 08:32:46 +02:00
|
|
|
if err != nil {
|
2017-01-25 16:41:38 +01:00
|
|
|
ctx.Handle(500, "env.CountRepos", err)
|
2016-07-24 08:32:46 +02:00
|
|
|
return
|
2016-01-31 19:13:39 +01:00
|
|
|
}
|
2016-07-24 08:32:46 +02:00
|
|
|
ctx.Data["Repos"] = repos
|
2016-01-31 19:13:39 +01:00
|
|
|
} else {
|
2016-07-24 08:32:46 +02:00
|
|
|
showPrivate := ctx.IsSigned && ctx.User.IsAdmin
|
2017-02-04 13:20:20 +01:00
|
|
|
repos, err = models.GetUserRepositories(org.ID, showPrivate, page, setting.UI.User.RepoPagingNum, "")
|
2016-02-04 18:13:56 +01:00
|
|
|
if err != nil {
|
2016-01-31 19:13:39 +01:00
|
|
|
ctx.Handle(500, "GetRepositories", err)
|
|
|
|
return
|
|
|
|
}
|
2016-02-04 18:13:56 +01:00
|
|
|
ctx.Data["Repos"] = repos
|
2016-07-24 08:32:46 +02:00
|
|
|
count = models.CountUserRepositories(org.ID, showPrivate)
|
2015-11-25 01:14:00 +01:00
|
|
|
}
|
2016-07-24 08:32:46 +02:00
|
|
|
ctx.Data["Page"] = paginater.New(int(count), setting.UI.User.RepoPagingNum, page, 5)
|
2015-11-25 01:14:00 +01:00
|
|
|
|
2016-01-31 11:46:04 +01:00
|
|
|
if err := org.GetMembers(); err != nil {
|
2015-11-25 01:14:00 +01:00
|
|
|
ctx.Handle(500, "GetMembers", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Members"] = org.Members
|
|
|
|
|
2016-01-31 20:08:20 +01:00
|
|
|
ctx.Data["Teams"] = org.Teams
|
2015-11-25 01:14:00 +01:00
|
|
|
|
2016-11-18 04:03:03 +01:00
|
|
|
ctx.HTML(200, tplOrgHome)
|
2015-11-25 01:14:00 +01:00
|
|
|
}
|
|
|
|
|
2016-11-18 04:03:03 +01:00
|
|
|
// Email2User show user page via email
|
2016-03-11 17:56:52 +01:00
|
|
|
func Email2User(ctx *context.Context) {
|
2014-04-13 07:57:42 +02:00
|
|
|
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
|
|
|
|
}
|
2016-11-27 11:14:25 +01:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/" + u.Name)
|
2014-04-13 07:57:42 +02:00
|
|
|
}
|