Files
Atay-Makhzan/routers/user/profile.go
T

269 lines
6.5 KiB
Go
Raw Normal View History

2015-12-21 04:24:11 -08:00
// Copyright 2015 The Gogs Authors. All rights reserved.
// Copyright 2019 The Gitea Authors. All rights reserved.
2015-12-21 04:24:11 -08:00
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package user
import (
"fmt"
2015-12-25 05:25:47 -05:00
"path"
2015-12-21 04:24:11 -08:00
"strings"
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/context"
"code.gitea.io/gitea/modules/setting"
"code.gitea.io/gitea/modules/util"
2019-12-14 14:36:59 +08:00
"code.gitea.io/gitea/routers/org"
2015-12-21 04:24:11 -08:00
)
// GetUserByName get user by name
2016-03-11 11:56:52 -05:00
func GetUserByName(ctx *context.Context, name string) *models.User {
2016-01-09 13:28:05 +08:00
user, err := models.GetUserByName(name)
2015-12-21 04:24:11 -08:00
if err != nil {
if models.IsErrUserNotExist(err) {
2018-01-10 22:34:17 +01:00
ctx.NotFound("GetUserByName", nil)
2015-12-21 04:24:11 -08:00
} else {
2018-01-10 22:34:17 +01:00
ctx.ServerError("GetUserByName", err)
2015-12-21 04:24:11 -08:00
}
return nil
}
return user
}
2016-01-09 13:28:05 +08:00
// GetUserByParams returns user whose name is presented in URL paramenter.
2016-03-11 11:56:52 -05:00
func GetUserByParams(ctx *context.Context) *models.User {
2016-01-09 13:28:05 +08:00
return GetUserByName(ctx, ctx.Params(":username"))
}
// Profile render user's profile page
2016-03-11 11:56:52 -05:00
func Profile(ctx *context.Context) {
2015-12-21 04:24:11 -08:00
uname := ctx.Params(":username")
// Special handle for FireFox requests favicon.ico.
if uname == "favicon.ico" {
2015-12-25 05:25:47 -05:00
ctx.ServeFile(path.Join(setting.StaticRootPath, "public/img/favicon.png"))
2015-12-21 04:24:11 -08:00
return
} else if strings.HasSuffix(uname, ".png") {
ctx.Error(404)
return
}
isShowKeys := false
if strings.HasSuffix(uname, ".keys") {
isShowKeys = true
uname = strings.TrimSuffix(uname, ".keys")
2015-12-21 04:24:11 -08:00
}
isShowGPG := false
if strings.HasSuffix(uname, ".gpg") {
isShowGPG = true
uname = strings.TrimSuffix(uname, ".gpg")
}
ctxUser := GetUserByName(ctx, uname)
2015-12-21 04:24:11 -08:00
if ctx.Written() {
return
}
// Show SSH keys.
if isShowKeys {
2016-07-24 14:32:46 +08:00
ShowSSHKeys(ctx, ctxUser.ID)
2015-12-21 04:24:11 -08:00
return
}
// Show GPG keys.
if isShowGPG {
ShowGPGKeys(ctx, ctxUser.ID)
return
}
2016-07-24 14:32:46 +08:00
if ctxUser.IsOrganization() {
2019-12-14 14:36:59 +08:00
org.Home(ctx)
2015-12-21 04:24:11 -08:00
return
}
// Show OpenID URIs
openIDs, err := models.GetUserOpenIDs(ctxUser.ID)
if err != nil {
2018-01-10 22:34:17 +01:00
ctx.ServerError("GetUserOpenIDs", err)
return
}
2016-07-24 14:32:46 +08:00
ctx.Data["Title"] = ctxUser.DisplayName()
2015-12-21 04:24:11 -08:00
ctx.Data["PageIsUserProfile"] = true
2016-07-24 14:32:46 +08:00
ctx.Data["Owner"] = ctxUser
ctx.Data["OpenIDs"] = openIDs
2018-10-23 04:57:42 +02:00
ctx.Data["EnableHeatmap"] = setting.Service.EnableUserHeatmap
ctx.Data["HeatmapUser"] = ctxUser.Name
showPrivate := ctx.IsSigned && (ctx.User.IsAdmin || ctx.User.ID == ctxUser.ID)
orgs, err := models.GetOrgsByUserID(ctxUser.ID, showPrivate)
2016-01-12 03:09:59 +01:00
if err != nil {
2018-01-10 22:34:17 +01:00
ctx.ServerError("GetOrgsByUserIDDesc", err)
2016-01-12 03:09:59 +01:00
return
}
2016-01-12 03:09:59 +01:00
ctx.Data["Orgs"] = orgs
ctx.Data["HasOrgsVisible"] = models.HasOrgsVisible(orgs, ctx.User)
2015-12-21 04:24:11 -08:00
tab := ctx.Query("tab")
ctx.Data["TabName"] = tab
page := ctx.QueryInt("page")
if page <= 0 {
page = 1
}
topicOnly := ctx.QueryBool("topic")
var (
repos []*models.Repository
count int64
total int
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"
2017-10-05 14:02:43 +09:00
orderBy = models.SearchOrderByRecentUpdated
}
keyword := strings.Trim(ctx.Query("q"), " ")
ctx.Data["Keyword"] = keyword
2015-12-21 04:24:11 -08:00
switch tab {
case "followers":
items, err := ctxUser.GetFollowers(models.ListOptions{
PageSize: setting.UI.User.RepoPagingNum,
Page: page,
})
if err != nil {
ctx.ServerError("GetFollowers", err)
return
}
ctx.Data["Cards"] = items
total = ctxUser.NumFollowers
case "following":
items, err := ctxUser.GetFollowing(models.ListOptions{
PageSize: setting.UI.User.RepoPagingNum,
Page: page,
})
if err != nil {
ctx.ServerError("GetFollowing", err)
return
}
ctx.Data["Cards"] = items
total = ctxUser.NumFollowing
2015-12-21 04:24:11 -08:00
case "activity":
retrieveFeeds(ctx, models.GetFeedsOptions{RequestedUser: ctxUser,
2020-01-13 19:33:46 +02:00
Actor: ctx.User,
IncludePrivate: showPrivate,
OnlyPerformedBy: true,
IncludeDeleted: false,
})
2015-12-21 04:24:11 -08:00
if ctx.Written() {
return
}
case "stars":
ctx.Data["PageIsProfileStarList"] = true
repos, count, err = models.SearchRepository(&models.SearchRepoOptions{
2020-01-24 19:00:29 +00:00
ListOptions: models.ListOptions{
PageSize: setting.UI.User.RepoPagingNum,
Page: page,
},
2020-01-13 19:33:46 +02:00
Actor: ctx.User,
Keyword: keyword,
OrderBy: orderBy,
Private: ctx.IsSigned,
StarredByID: ctxUser.ID,
Collaborate: util.OptionalBoolFalse,
TopicOnly: topicOnly,
IncludeDescription: setting.UI.SearchRepoDescription,
})
if err != nil {
ctx.ServerError("SearchRepository", err)
return
}
total = int(count)
2015-12-21 04:24:11 -08:00
default:
repos, count, err = models.SearchRepository(&models.SearchRepoOptions{
2020-01-24 19:00:29 +00:00
ListOptions: models.ListOptions{
PageSize: setting.UI.User.RepoPagingNum,
Page: page,
},
2020-01-13 19:33:46 +02:00
Actor: ctx.User,
Keyword: keyword,
OwnerID: ctxUser.ID,
OrderBy: orderBy,
Private: ctx.IsSigned,
IsProfile: true,
Collaborate: util.OptionalBoolFalse,
TopicOnly: topicOnly,
IncludeDescription: setting.UI.SearchRepoDescription,
})
if err != nil {
ctx.ServerError("SearchRepository", err)
return
2015-12-21 04:24:11 -08:00
}
total = int(count)
2015-12-21 04:24:11 -08:00
}
ctx.Data["Repos"] = repos
ctx.Data["Total"] = total
pager := context.NewPagination(total, setting.UI.User.RepoPagingNum, page, 5)
pager.SetDefaultParams(ctx)
ctx.Data["Page"] = pager
2015-12-21 04:24:11 -08:00
ctx.Data["ShowUserEmail"] = len(ctxUser.Email) > 0 && ctx.IsSigned && (!ctxUser.KeepEmailPrivate || ctxUser.ID == ctx.User.ID)
ctx.HTML(200, tplProfile)
2015-12-21 04:24:11 -08:00
}
// Action response for follow/unfollow user request
2016-03-11 11:56:52 -05:00
func Action(ctx *context.Context) {
2015-12-21 04:24:11 -08:00
u := GetUserByParams(ctx)
if ctx.Written() {
return
}
var err error
switch ctx.Params(":action") {
case "follow":
2016-07-24 01:08:22 +08:00
err = models.FollowUser(ctx.User.ID, u.ID)
2015-12-21 04:24:11 -08:00
case "unfollow":
2016-07-24 01:08:22 +08:00
err = models.UnfollowUser(ctx.User.ID, u.ID)
2015-12-21 04:24:11 -08:00
}
if err != nil {
2018-01-10 22:34:17 +01:00
ctx.ServerError(fmt.Sprintf("Action (%s)", ctx.Params(":action")), err)
2015-12-21 04:24:11 -08:00
return
}
ctx.RedirectToFirst(ctx.Query("redirect_to"), u.HomeLink())
2015-12-21 04:24:11 -08:00
}