mirror of https://github.com/gogs/gogs.git
476 lines
11 KiB
Go
476 lines
11 KiB
Go
// 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 (
|
|
"bytes"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/unknwon/com"
|
|
"github.com/unknwon/paginater"
|
|
|
|
"gogs.io/gogs/internal/conf"
|
|
"gogs.io/gogs/internal/context"
|
|
"gogs.io/gogs/internal/db"
|
|
)
|
|
|
|
const (
|
|
DASHBOARD = "user/dashboard/dashboard"
|
|
NEWS_FEED = "user/dashboard/feeds"
|
|
ISSUES = "user/dashboard/issues"
|
|
PROFILE = "user/profile"
|
|
ORG_HOME = "org/home"
|
|
)
|
|
|
|
// getDashboardContextUser finds out dashboard is viewing as which context user.
|
|
func getDashboardContextUser(c *context.Context) *db.User {
|
|
ctxUser := c.User
|
|
orgName := c.Params(":org")
|
|
if len(orgName) > 0 {
|
|
// Organization.
|
|
org, err := db.Users.GetByUsername(c.Req.Context(), orgName)
|
|
if err != nil {
|
|
c.NotFoundOrError(err, "get user by name")
|
|
return nil
|
|
}
|
|
ctxUser = org
|
|
}
|
|
c.Data["ContextUser"] = ctxUser
|
|
|
|
orgs, err := db.Orgs.List(
|
|
c.Req.Context(),
|
|
db.ListOrgsOptions{
|
|
MemberID: c.User.ID,
|
|
IncludePrivateMembers: true,
|
|
},
|
|
)
|
|
if err != nil {
|
|
c.Error(err, "list organizations")
|
|
return nil
|
|
}
|
|
c.Data["Orgs"] = orgs
|
|
|
|
return ctxUser
|
|
}
|
|
|
|
// 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.
|
|
func retrieveFeeds(c *context.Context, ctxUser *db.User, userID int64, isProfile bool) {
|
|
afterID := c.QueryInt64("after_id")
|
|
|
|
var err error
|
|
var actions []*db.Action
|
|
if ctxUser.IsOrganization() {
|
|
actions, err = db.Actions.ListByOrganization(c.Req.Context(), ctxUser.ID, userID, afterID)
|
|
} else {
|
|
actions, err = db.Actions.ListByUser(c.Req.Context(), ctxUser.ID, userID, afterID, isProfile)
|
|
}
|
|
if err != nil {
|
|
c.Error(err, "list actions")
|
|
return
|
|
}
|
|
|
|
// Check access of private repositories.
|
|
feeds := make([]*db.Action, 0, len(actions))
|
|
unameAvatars := make(map[string]string)
|
|
for _, act := range actions {
|
|
// Cache results to reduce queries.
|
|
_, ok := unameAvatars[act.ActUserName]
|
|
if !ok {
|
|
u, err := db.Users.GetByUsername(c.Req.Context(), act.ActUserName)
|
|
if err != nil {
|
|
if db.IsErrUserNotExist(err) {
|
|
continue
|
|
}
|
|
c.Error(err, "get user by name")
|
|
return
|
|
}
|
|
unameAvatars[act.ActUserName] = u.AvatarURLPath()
|
|
}
|
|
|
|
act.ActAvatar = unameAvatars[act.ActUserName]
|
|
feeds = append(feeds, act)
|
|
}
|
|
c.Data["Feeds"] = feeds
|
|
if len(feeds) > 0 {
|
|
afterID := feeds[len(feeds)-1].ID
|
|
c.Data["AfterID"] = afterID
|
|
c.Header().Set("X-AJAX-URL", fmt.Sprintf("%s?after_id=%d", c.Data["Link"], afterID))
|
|
}
|
|
}
|
|
|
|
func Dashboard(c *context.Context) {
|
|
ctxUser := getDashboardContextUser(c)
|
|
if c.Written() {
|
|
return
|
|
}
|
|
|
|
retrieveFeeds(c, ctxUser, c.User.ID, false)
|
|
if c.Written() {
|
|
return
|
|
}
|
|
|
|
if c.Req.Header.Get("X-AJAX") == "true" {
|
|
c.Success(NEWS_FEED)
|
|
return
|
|
}
|
|
|
|
c.Data["Title"] = ctxUser.DisplayName() + " - " + c.Tr("dashboard")
|
|
c.Data["PageIsDashboard"] = true
|
|
c.Data["PageIsNews"] = true
|
|
|
|
// Only user can have collaborative repositories.
|
|
if !ctxUser.IsOrganization() {
|
|
collaborateRepos, err := db.Repos.GetByCollaboratorID(c.Req.Context(), c.User.ID, conf.UI.User.RepoPagingNum, "updated_unix DESC")
|
|
if err != nil {
|
|
c.Error(err, "get accessible repositories by collaborator")
|
|
return
|
|
} else if err = db.RepositoryList(collaborateRepos).LoadAttributes(); err != nil {
|
|
c.Error(err, "load attributes")
|
|
return
|
|
}
|
|
c.Data["CollaborativeRepos"] = collaborateRepos
|
|
}
|
|
|
|
var err error
|
|
var repos, mirrors []*db.Repository
|
|
var repoCount int64
|
|
if ctxUser.IsOrganization() {
|
|
repos, repoCount, err = db.Orgs.AccessibleRepositoriesByUser(
|
|
c.Req.Context(),
|
|
ctxUser.ID,
|
|
c.User.ID,
|
|
1,
|
|
conf.UI.User.RepoPagingNum,
|
|
db.AccessibleRepositoriesByUserOptions{},
|
|
)
|
|
if err != nil {
|
|
c.Error(err, "get user repositories")
|
|
return
|
|
}
|
|
|
|
mirrors, err = ctxUser.GetUserMirrorRepositories(c.User.ID)
|
|
if err != nil {
|
|
c.Error(err, "get user mirror repositories")
|
|
return
|
|
}
|
|
} else {
|
|
repos, err = db.GetUserRepositories(
|
|
&db.UserRepoOptions{
|
|
UserID: ctxUser.ID,
|
|
Private: true,
|
|
Page: 1,
|
|
PageSize: conf.UI.User.RepoPagingNum,
|
|
},
|
|
)
|
|
if err != nil {
|
|
c.Error(err, "get repositories")
|
|
return
|
|
}
|
|
repoCount = int64(ctxUser.NumRepos)
|
|
|
|
mirrors, err = db.GetUserMirrorRepositories(ctxUser.ID)
|
|
if err != nil {
|
|
c.Error(err, "get mirror repositories")
|
|
return
|
|
}
|
|
}
|
|
c.Data["Repos"] = repos
|
|
c.Data["RepoCount"] = repoCount
|
|
c.Data["MaxShowRepoNum"] = conf.UI.User.RepoPagingNum
|
|
|
|
if err := db.MirrorRepositoryList(mirrors).LoadAttributes(); err != nil {
|
|
c.Error(err, "load attributes")
|
|
return
|
|
}
|
|
c.Data["MirrorCount"] = len(mirrors)
|
|
c.Data["Mirrors"] = mirrors
|
|
|
|
c.Success(DASHBOARD)
|
|
}
|
|
|
|
func Issues(c *context.Context) {
|
|
isPullList := c.Params(":type") == "pulls"
|
|
if isPullList {
|
|
c.Data["Title"] = c.Tr("pull_requests")
|
|
c.Data["PageIsPulls"] = true
|
|
} else {
|
|
c.Data["Title"] = c.Tr("issues")
|
|
c.Data["PageIsIssues"] = true
|
|
}
|
|
|
|
ctxUser := getDashboardContextUser(c)
|
|
if c.Written() {
|
|
return
|
|
}
|
|
|
|
var (
|
|
sortType = c.Query("sort")
|
|
filterMode = db.FILTER_MODE_YOUR_REPOS
|
|
)
|
|
|
|
// Note: Organization does not have view type and filter mode.
|
|
if !ctxUser.IsOrganization() {
|
|
viewType := c.Query("type")
|
|
types := []string{
|
|
string(db.FILTER_MODE_YOUR_REPOS),
|
|
string(db.FILTER_MODE_ASSIGN),
|
|
string(db.FILTER_MODE_CREATE),
|
|
}
|
|
if !com.IsSliceContainsStr(types, viewType) {
|
|
viewType = string(db.FILTER_MODE_YOUR_REPOS)
|
|
}
|
|
filterMode = db.FilterMode(viewType)
|
|
}
|
|
|
|
page := c.QueryInt("page")
|
|
if page <= 1 {
|
|
page = 1
|
|
}
|
|
|
|
repoID := c.QueryInt64("repo")
|
|
isShowClosed := c.Query("state") == "closed"
|
|
|
|
// Get repositories.
|
|
var (
|
|
err error
|
|
repos []*db.Repository
|
|
userRepoIDs []int64
|
|
showRepos = make([]*db.Repository, 0, 10)
|
|
)
|
|
if ctxUser.IsOrganization() {
|
|
repos, _, err = db.Orgs.AccessibleRepositoriesByUser(
|
|
c.Req.Context(),
|
|
ctxUser.ID,
|
|
c.User.ID,
|
|
1,
|
|
ctxUser.NumRepos,
|
|
db.AccessibleRepositoriesByUserOptions{SkipCount: true},
|
|
)
|
|
if err != nil {
|
|
c.Error(err, "get repositories")
|
|
return
|
|
}
|
|
} else {
|
|
repos, err = db.GetUserRepositories(
|
|
&db.UserRepoOptions{
|
|
UserID: ctxUser.ID,
|
|
Private: true,
|
|
Page: 1,
|
|
PageSize: ctxUser.NumRepos,
|
|
},
|
|
)
|
|
if err != nil {
|
|
c.Error(err, "get repositories")
|
|
return
|
|
}
|
|
}
|
|
|
|
userRepoIDs = make([]int64, 0, len(repos))
|
|
for _, repo := range repos {
|
|
userRepoIDs = append(userRepoIDs, repo.ID)
|
|
|
|
if filterMode != db.FILTER_MODE_YOUR_REPOS {
|
|
continue
|
|
}
|
|
|
|
if isPullList {
|
|
if isShowClosed && repo.NumClosedPulls == 0 ||
|
|
!isShowClosed && repo.NumOpenPulls == 0 {
|
|
continue
|
|
}
|
|
} else {
|
|
if !repo.EnableIssues || repo.EnableExternalTracker ||
|
|
isShowClosed && repo.NumClosedIssues == 0 ||
|
|
!isShowClosed && repo.NumOpenIssues == 0 {
|
|
continue
|
|
}
|
|
}
|
|
|
|
showRepos = append(showRepos, repo)
|
|
}
|
|
|
|
// Filter repositories if the page shows issues.
|
|
if !isPullList {
|
|
userRepoIDs, err = db.FilterRepositoryWithIssues(userRepoIDs)
|
|
if err != nil {
|
|
c.Error(err, "filter repositories with issues")
|
|
return
|
|
}
|
|
}
|
|
|
|
issueOptions := &db.IssuesOptions{
|
|
RepoID: repoID,
|
|
Page: page,
|
|
IsClosed: isShowClosed,
|
|
IsPull: isPullList,
|
|
SortType: sortType,
|
|
}
|
|
switch filterMode {
|
|
case db.FILTER_MODE_YOUR_REPOS:
|
|
// Get all issues from repositories from this user.
|
|
if userRepoIDs == nil {
|
|
issueOptions.RepoIDs = []int64{-1}
|
|
} else {
|
|
issueOptions.RepoIDs = userRepoIDs
|
|
}
|
|
|
|
case db.FILTER_MODE_ASSIGN:
|
|
// Get all issues assigned to this user.
|
|
issueOptions.AssigneeID = ctxUser.ID
|
|
|
|
case db.FILTER_MODE_CREATE:
|
|
// Get all issues created by this user.
|
|
issueOptions.PosterID = ctxUser.ID
|
|
}
|
|
|
|
issues, err := db.Issues(issueOptions)
|
|
if err != nil {
|
|
c.Error(err, "list issues")
|
|
return
|
|
}
|
|
|
|
if repoID > 0 {
|
|
repo, err := db.GetRepositoryByID(repoID)
|
|
if err != nil {
|
|
c.Error(err, "get repository by ID")
|
|
return
|
|
}
|
|
|
|
if err = repo.GetOwner(); err != nil {
|
|
c.Error(err, "get owner")
|
|
return
|
|
}
|
|
|
|
// Check if user has access to given repository.
|
|
if !repo.IsOwnedBy(ctxUser.ID) && !repo.HasAccess(ctxUser.ID) {
|
|
c.NotFound()
|
|
return
|
|
}
|
|
}
|
|
|
|
for _, issue := range issues {
|
|
if err = issue.Repo.GetOwner(); err != nil {
|
|
c.Error(err, "get owner")
|
|
return
|
|
}
|
|
}
|
|
|
|
issueStats := db.GetUserIssueStats(repoID, ctxUser.ID, userRepoIDs, filterMode, isPullList)
|
|
|
|
var total int
|
|
if !isShowClosed {
|
|
total = int(issueStats.OpenCount)
|
|
} else {
|
|
total = int(issueStats.ClosedCount)
|
|
}
|
|
|
|
c.Data["Issues"] = issues
|
|
c.Data["Repos"] = showRepos
|
|
c.Data["Page"] = paginater.New(total, conf.UI.IssuePagingNum, page, 5)
|
|
c.Data["IssueStats"] = issueStats
|
|
c.Data["ViewType"] = string(filterMode)
|
|
c.Data["SortType"] = sortType
|
|
c.Data["RepoID"] = repoID
|
|
c.Data["IsShowClosed"] = isShowClosed
|
|
|
|
if isShowClosed {
|
|
c.Data["State"] = "closed"
|
|
} else {
|
|
c.Data["State"] = "open"
|
|
}
|
|
|
|
c.Success(ISSUES)
|
|
}
|
|
|
|
func ShowSSHKeys(c *context.Context, uid int64) {
|
|
keys, err := db.ListPublicKeys(uid)
|
|
if err != nil {
|
|
c.Error(err, "list public keys")
|
|
return
|
|
}
|
|
|
|
var buf bytes.Buffer
|
|
for i := range keys {
|
|
buf.WriteString(keys[i].OmitEmail())
|
|
buf.WriteString("\n")
|
|
}
|
|
c.PlainText(http.StatusOK, buf.String())
|
|
}
|
|
|
|
func showOrgProfile(c *context.Context) {
|
|
c.SetParams(":org", c.Params(":username"))
|
|
context.HandleOrgAssignment(c)
|
|
if c.Written() {
|
|
return
|
|
}
|
|
|
|
org := c.Org.Organization
|
|
c.Data["Title"] = org.FullName
|
|
|
|
page := c.QueryInt("page")
|
|
if page <= 0 {
|
|
page = 1
|
|
}
|
|
|
|
var (
|
|
repos []*db.Repository
|
|
count int64
|
|
err error
|
|
)
|
|
if c.IsLogged && !c.User.IsAdmin {
|
|
repos, count, err = db.Orgs.AccessibleRepositoriesByUser(
|
|
c.Req.Context(),
|
|
org.ID,
|
|
c.User.ID,
|
|
page,
|
|
conf.UI.User.RepoPagingNum,
|
|
db.AccessibleRepositoriesByUserOptions{},
|
|
)
|
|
if err != nil {
|
|
c.Error(err, "get user repositories")
|
|
return
|
|
}
|
|
c.Data["Repos"] = repos
|
|
} else {
|
|
showPrivate := c.IsLogged && c.User.IsAdmin
|
|
repos, err = db.GetUserRepositories(&db.UserRepoOptions{
|
|
UserID: org.ID,
|
|
Private: showPrivate,
|
|
Page: page,
|
|
PageSize: conf.UI.User.RepoPagingNum,
|
|
})
|
|
if err != nil {
|
|
c.Error(err, "get user repositories")
|
|
return
|
|
}
|
|
c.Data["Repos"] = repos
|
|
count = db.CountUserRepositories(org.ID, showPrivate)
|
|
}
|
|
c.Data["Page"] = paginater.New(int(count), conf.UI.User.RepoPagingNum, page, 5)
|
|
|
|
members, err := db.Orgs.ListMembers(c.Req.Context(), org.ID, db.ListOrgMembersOptions{Limit: 12})
|
|
if err != nil {
|
|
c.Error(err, "list members")
|
|
return
|
|
}
|
|
c.Data["Members"] = members
|
|
|
|
c.Data["Teams"] = org.Teams
|
|
|
|
c.Success(ORG_HOME)
|
|
}
|
|
|
|
func Email2User(c *context.Context) {
|
|
u, err := db.Users.GetByEmail(c.Req.Context(), c.Query("email"))
|
|
if err != nil {
|
|
c.NotFoundOrError(err, "get user by email")
|
|
return
|
|
}
|
|
c.Redirect(conf.Server.Subpath + "/user/" + u.Name)
|
|
}
|