2015-12-21 05:24:11 -07:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2019-02-18 09:00:27 -07:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2015-12-21 05:24:11 -07:00
|
|
|
|
|
|
|
package user
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2021-04-05 09:30:52 -06:00
|
|
|
"net/http"
|
2024-01-15 01:49:24 -07:00
|
|
|
"path"
|
2015-12-21 05:24:11 -07:00
|
|
|
"strings"
|
|
|
|
|
2022-08-24 20:31:57 -06:00
|
|
|
activities_model "code.gitea.io/gitea/models/activities"
|
2021-09-24 05:32:56 -06:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-12-09 18:27:50 -07:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-11 00:03:30 -07:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2024-01-30 07:45:54 -07:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2023-05-08 23:57:24 -06:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2023-07-06 12:59:24 -06:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2021-04-19 16:25:08 -06:00
|
|
|
"code.gitea.io/gitea/modules/markup"
|
2020-08-05 01:48:37 -06:00
|
|
|
"code.gitea.io/gitea/modules/markup/markdown"
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2017-10-26 15:16:13 -06:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2021-10-16 08:21:16 -06:00
|
|
|
"code.gitea.io/gitea/routers/web/feed"
|
2021-06-08 17:33:54 -06:00
|
|
|
"code.gitea.io/gitea/routers/web/org"
|
2023-07-06 12:59:24 -06:00
|
|
|
shared_user "code.gitea.io/gitea/routers/web/shared/user"
|
2015-12-21 05:24:11 -07:00
|
|
|
)
|
|
|
|
|
2024-01-30 07:45:54 -07:00
|
|
|
const (
|
|
|
|
tplProfileBigAvatar base.TplName = "shared/user/profile_big_avatar"
|
2024-02-16 22:13:37 -07:00
|
|
|
tplFollowUnfollow base.TplName = "shared/user/follow_unfollow"
|
2024-01-30 07:45:54 -07:00
|
|
|
)
|
|
|
|
|
2023-07-06 12:59:24 -06:00
|
|
|
// OwnerProfile render profile page for a user or a organization (aka, repo owner)
|
|
|
|
func OwnerProfile(ctx *context.Context) {
|
2022-03-26 03:04:22 -06:00
|
|
|
if strings.Contains(ctx.Req.Header.Get("Accept"), "application/rss+xml") {
|
|
|
|
feed.ShowUserFeedRSS(ctx)
|
2015-12-21 05:24:11 -07:00
|
|
|
return
|
2021-04-28 06:35:06 -06:00
|
|
|
}
|
2022-03-26 03:04:22 -06:00
|
|
|
if strings.Contains(ctx.Req.Header.Get("Accept"), "application/atom+xml") {
|
|
|
|
feed.ShowUserFeedAtom(ctx)
|
2015-12-21 05:24:11 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-26 03:04:22 -06:00
|
|
|
if ctx.ContextUser.IsOrganization() {
|
2021-06-26 13:53:14 -06:00
|
|
|
org.Home(ctx)
|
2023-07-06 12:59:24 -06:00
|
|
|
} else {
|
|
|
|
userProfile(ctx)
|
2021-06-26 13:53:14 -06:00
|
|
|
}
|
2023-07-06 12:59:24 -06:00
|
|
|
}
|
2021-06-26 13:53:14 -06:00
|
|
|
|
2023-07-06 12:59:24 -06:00
|
|
|
func userProfile(ctx *context.Context) {
|
2021-06-26 13:53:14 -06:00
|
|
|
// check view permissions
|
2022-05-20 08:08:52 -06:00
|
|
|
if !user_model.IsUserVisibleToViewer(ctx, ctx.ContextUser, ctx.Doer) {
|
2022-03-26 03:04:22 -06:00
|
|
|
ctx.NotFound("user", fmt.Errorf(ctx.ContextUser.Name))
|
2021-10-16 08:21:16 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-26 03:04:22 -06:00
|
|
|
ctx.Data["Title"] = ctx.ContextUser.DisplayName()
|
2015-12-21 05:24:11 -07:00
|
|
|
ctx.Data["PageIsUserProfile"] = true
|
2020-11-18 15:00:16 -07:00
|
|
|
|
2023-07-06 12:59:24 -06:00
|
|
|
// prepare heatmap data
|
2021-03-04 15:59:13 -07:00
|
|
|
if setting.Service.EnableUserHeatmap {
|
2023-09-25 07:17:37 -06:00
|
|
|
data, err := activities_model.GetUserHeatmapDataByUser(ctx, ctx.ContextUser, ctx.Doer)
|
2020-11-18 15:00:16 -07:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetUserHeatmapDataByUser", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["HeatmapData"] = data
|
2023-04-17 12:26:01 -06:00
|
|
|
ctx.Data["HeatmapTotalContributions"] = activities_model.GetTotalContributionsInHeatmap(data)
|
2020-11-18 15:00:16 -07:00
|
|
|
}
|
|
|
|
|
2023-12-27 01:32:27 -07:00
|
|
|
profileDbRepo, profileGitRepo, profileReadmeBlob, profileClose := shared_user.FindUserProfileReadme(ctx, ctx.Doer)
|
2023-07-06 12:59:24 -06:00
|
|
|
defer profileClose()
|
2023-05-08 23:57:24 -06:00
|
|
|
|
2022-03-26 03:04:22 -06:00
|
|
|
showPrivate := ctx.IsSigned && (ctx.Doer.IsAdmin || ctx.Doer.ID == ctx.ContextUser.ID)
|
2023-12-27 01:32:27 -07:00
|
|
|
prepareUserProfileTabData(ctx, showPrivate, profileDbRepo, profileGitRepo, profileReadmeBlob)
|
2023-07-06 12:59:24 -06:00
|
|
|
// call PrepareContextForProfileBigAvatar later to avoid re-querying the NumFollowers & NumFollowing
|
|
|
|
shared_user.PrepareContextForProfileBigAvatar(ctx)
|
|
|
|
ctx.HTML(http.StatusOK, tplProfile)
|
|
|
|
}
|
2016-01-30 14:51:11 -07:00
|
|
|
|
2023-12-27 01:32:27 -07:00
|
|
|
func prepareUserProfileTabData(ctx *context.Context, showPrivate bool, profileDbRepo *repo_model.Repository, profileGitRepo *git.Repository, profileReadme *git.Blob) {
|
2023-07-06 12:59:24 -06:00
|
|
|
// if there is a profile readme, default to "overview" page, otherwise, default to "repositories" page
|
2023-09-19 19:48:44 -06:00
|
|
|
// if there is not a profile readme, the overview tab should be treated as the repositories tab
|
2021-08-10 18:31:13 -06:00
|
|
|
tab := ctx.FormString("tab")
|
2023-09-19 19:48:44 -06:00
|
|
|
if tab == "" || tab == "overview" {
|
2023-07-06 12:59:24 -06:00
|
|
|
if profileReadme != nil {
|
|
|
|
tab = "overview"
|
|
|
|
} else {
|
|
|
|
tab = "repositories"
|
|
|
|
}
|
|
|
|
}
|
2015-12-21 05:24:11 -07:00
|
|
|
ctx.Data["TabName"] = tab
|
2023-07-06 12:59:24 -06:00
|
|
|
ctx.Data["HasProfileReadme"] = profileReadme != nil
|
2017-02-14 00:28:22 -07:00
|
|
|
|
2021-07-28 19:42:15 -06:00
|
|
|
page := ctx.FormInt("page")
|
2017-02-14 00:28:22 -07:00
|
|
|
if page <= 0 {
|
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
|
2023-02-24 14:15:10 -07:00
|
|
|
pagingNum := setting.UI.User.RepoPagingNum
|
2021-07-28 19:42:15 -06:00
|
|
|
topicOnly := ctx.FormBool("topic")
|
2017-02-14 00:28:22 -07:00
|
|
|
var (
|
2021-12-09 18:27:50 -07:00
|
|
|
repos []*repo_model.Repository
|
2017-02-14 00:28:22 -07:00
|
|
|
count int64
|
2019-04-19 22:15:19 -06:00
|
|
|
total int
|
2021-11-24 02:49:20 -07:00
|
|
|
orderBy db.SearchOrderBy
|
2017-02-14 00:28:22 -07:00
|
|
|
)
|
|
|
|
|
2021-08-10 18:31:13 -06:00
|
|
|
ctx.Data["SortType"] = ctx.FormString("sort")
|
|
|
|
switch ctx.FormString("sort") {
|
2017-02-14 00:28:22 -07:00
|
|
|
case "newest":
|
2021-11-24 02:49:20 -07:00
|
|
|
orderBy = db.SearchOrderByNewest
|
2017-02-14 00:28:22 -07:00
|
|
|
case "oldest":
|
2021-11-24 02:49:20 -07:00
|
|
|
orderBy = db.SearchOrderByOldest
|
2017-02-14 00:28:22 -07:00
|
|
|
case "recentupdate":
|
2021-11-24 02:49:20 -07:00
|
|
|
orderBy = db.SearchOrderByRecentUpdated
|
2017-02-14 00:28:22 -07:00
|
|
|
case "leastupdate":
|
2021-11-24 02:49:20 -07:00
|
|
|
orderBy = db.SearchOrderByLeastUpdated
|
2017-02-14 00:28:22 -07:00
|
|
|
case "reversealphabetically":
|
2021-11-24 02:49:20 -07:00
|
|
|
orderBy = db.SearchOrderByAlphabeticallyReverse
|
2017-02-14 00:28:22 -07:00
|
|
|
case "alphabetically":
|
2021-11-24 02:49:20 -07:00
|
|
|
orderBy = db.SearchOrderByAlphabetically
|
2018-05-23 19:03:42 -06:00
|
|
|
case "moststars":
|
2021-11-24 02:49:20 -07:00
|
|
|
orderBy = db.SearchOrderByStarsReverse
|
2018-05-23 19:03:42 -06:00
|
|
|
case "feweststars":
|
2021-11-24 02:49:20 -07:00
|
|
|
orderBy = db.SearchOrderByStars
|
2018-05-23 19:03:42 -06:00
|
|
|
case "mostforks":
|
2021-11-24 02:49:20 -07:00
|
|
|
orderBy = db.SearchOrderByForksReverse
|
2018-05-23 19:03:42 -06:00
|
|
|
case "fewestforks":
|
2021-11-24 02:49:20 -07:00
|
|
|
orderBy = db.SearchOrderByForks
|
2017-02-14 00:28:22 -07:00
|
|
|
default:
|
|
|
|
ctx.Data["SortType"] = "recentupdate"
|
2021-11-24 02:49:20 -07:00
|
|
|
orderBy = db.SearchOrderByRecentUpdated
|
2017-02-14 00:28:22 -07:00
|
|
|
}
|
|
|
|
|
2021-08-11 09:08:52 -06:00
|
|
|
keyword := ctx.FormTrim("q")
|
2017-02-14 00:28:22 -07:00
|
|
|
ctx.Data["Keyword"] = keyword
|
2022-01-28 04:29:04 -07:00
|
|
|
|
|
|
|
language := ctx.FormTrim("language")
|
|
|
|
ctx.Data["Language"] = language
|
|
|
|
|
2023-04-29 13:13:58 -06:00
|
|
|
followers, numFollowers, err := user_model.GetUserFollowers(ctx, ctx.ContextUser, ctx.Doer, db.ListOptions{
|
|
|
|
PageSize: pagingNum,
|
|
|
|
Page: page,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetUserFollowers", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["NumFollowers"] = numFollowers
|
|
|
|
following, numFollowing, err := user_model.GetUserFollowing(ctx, ctx.ContextUser, ctx.Doer, db.ListOptions{
|
|
|
|
PageSize: pagingNum,
|
|
|
|
Page: page,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetUserFollowing", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["NumFollowing"] = numFollowing
|
|
|
|
|
2015-12-21 05:24:11 -07:00
|
|
|
switch tab {
|
2020-02-09 13:18:01 -07:00
|
|
|
case "followers":
|
2023-04-29 13:13:58 -06:00
|
|
|
ctx.Data["Cards"] = followers
|
2023-09-19 09:24:54 -06:00
|
|
|
total = int(numFollowers)
|
2020-02-09 13:18:01 -07:00
|
|
|
case "following":
|
2023-04-29 13:13:58 -06:00
|
|
|
ctx.Data["Cards"] = following
|
2023-09-19 09:24:54 -06:00
|
|
|
total = int(numFollowing)
|
2015-12-21 05:24:11 -07:00
|
|
|
case "activity":
|
2023-02-24 14:15:10 -07:00
|
|
|
date := ctx.FormString("date")
|
2023-07-06 12:59:24 -06:00
|
|
|
pagingNum = setting.UI.FeedPagingNum
|
2023-02-24 14:15:10 -07:00
|
|
|
items, count, err := activities_model.GetFeeds(ctx, activities_model.GetFeedsOptions{
|
2022-03-26 03:04:22 -06:00
|
|
|
RequestedUser: ctx.ContextUser,
|
2022-03-22 01:03:22 -06:00
|
|
|
Actor: ctx.Doer,
|
2017-08-22 19:30:54 -06:00
|
|
|
IncludePrivate: showPrivate,
|
|
|
|
OnlyPerformedBy: true,
|
|
|
|
IncludeDeleted: false,
|
2023-02-24 14:15:10 -07:00
|
|
|
Date: date,
|
|
|
|
ListOptions: db.ListOptions{
|
|
|
|
PageSize: pagingNum,
|
|
|
|
Page: page,
|
|
|
|
},
|
2017-08-22 19:30:54 -06:00
|
|
|
})
|
2022-03-13 10:40:47 -06:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetFeeds", err)
|
2015-12-21 05:24:11 -07:00
|
|
|
return
|
|
|
|
}
|
2023-02-24 14:15:10 -07:00
|
|
|
ctx.Data["Feeds"] = items
|
|
|
|
ctx.Data["Date"] = date
|
|
|
|
|
|
|
|
total = int(count)
|
2016-12-29 07:58:24 -07:00
|
|
|
case "stars":
|
2017-02-14 00:28:22 -07:00
|
|
|
ctx.Data["PageIsProfileStarList"] = true
|
2022-11-19 01:12:33 -07:00
|
|
|
repos, count, err = repo_model.SearchRepository(ctx, &repo_model.SearchRepoOptions{
|
2021-09-24 05:32:56 -06:00
|
|
|
ListOptions: db.ListOptions{
|
2023-02-24 14:15:10 -07:00
|
|
|
PageSize: pagingNum,
|
2020-01-24 12:00:29 -07:00
|
|
|
Page: page,
|
|
|
|
},
|
2022-03-22 01:03:22 -06:00
|
|
|
Actor: ctx.Doer,
|
2019-08-25 11:06:36 -06:00
|
|
|
Keyword: keyword,
|
|
|
|
OrderBy: orderBy,
|
|
|
|
Private: ctx.IsSigned,
|
2022-03-26 03:04:22 -06:00
|
|
|
StarredByID: ctx.ContextUser.ID,
|
2019-08-25 11:06:36 -06:00
|
|
|
Collaborate: util.OptionalBoolFalse,
|
|
|
|
TopicOnly: topicOnly,
|
2022-01-28 04:29:04 -07:00
|
|
|
Language: language,
|
2019-08-25 11:06:36 -06:00
|
|
|
IncludeDescription: setting.UI.SearchRepoDescription,
|
2019-05-15 09:24:39 -06:00
|
|
|
})
|
|
|
|
if err != nil {
|
2019-08-25 11:06:36 -06:00
|
|
|
ctx.ServerError("SearchRepository", err)
|
2019-05-15 09:24:39 -06:00
|
|
|
return
|
2017-02-07 04:54:16 -07:00
|
|
|
}
|
|
|
|
|
2019-04-19 22:15:19 -06:00
|
|
|
total = int(count)
|
2021-04-15 10:53:57 -06:00
|
|
|
case "watching":
|
2022-11-19 01:12:33 -07:00
|
|
|
repos, count, err = repo_model.SearchRepository(ctx, &repo_model.SearchRepoOptions{
|
2021-09-24 05:32:56 -06:00
|
|
|
ListOptions: db.ListOptions{
|
2023-02-24 14:15:10 -07:00
|
|
|
PageSize: pagingNum,
|
2021-04-15 10:53:57 -06:00
|
|
|
Page: page,
|
|
|
|
},
|
2022-03-22 01:03:22 -06:00
|
|
|
Actor: ctx.Doer,
|
2021-04-15 10:53:57 -06:00
|
|
|
Keyword: keyword,
|
|
|
|
OrderBy: orderBy,
|
|
|
|
Private: ctx.IsSigned,
|
2022-03-26 03:04:22 -06:00
|
|
|
WatchedByID: ctx.ContextUser.ID,
|
2021-04-15 10:53:57 -06:00
|
|
|
Collaborate: util.OptionalBoolFalse,
|
|
|
|
TopicOnly: topicOnly,
|
2022-01-28 04:29:04 -07:00
|
|
|
Language: language,
|
2021-04-15 10:53:57 -06:00
|
|
|
IncludeDescription: setting.UI.SearchRepoDescription,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("SearchRepository", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
total = int(count)
|
2023-07-06 12:59:24 -06:00
|
|
|
case "overview":
|
|
|
|
if bytes, err := profileReadme.GetBlobContent(setting.UI.MaxDisplayFileSize); err != nil {
|
|
|
|
log.Error("failed to GetBlobContent: %v", err)
|
|
|
|
} else {
|
2023-07-19 16:22:32 -06:00
|
|
|
if profileContent, err := markdown.RenderString(&markup.RenderContext{
|
2024-01-15 01:49:24 -07:00
|
|
|
Ctx: ctx,
|
|
|
|
GitRepo: profileGitRepo,
|
|
|
|
Links: markup.Links{
|
|
|
|
// Give the repo link to the markdown render for the full link of media element.
|
|
|
|
// the media link usually be like /[user]/[repoName]/media/branch/[branchName],
|
|
|
|
// Eg. /Tom/.profile/media/branch/main
|
|
|
|
// The branch shown on the profile page is the default branch, this need to be in sync with doc, see:
|
|
|
|
// https://docs.gitea.com/usage/profile-readme
|
|
|
|
Base: profileDbRepo.Link(),
|
|
|
|
BranchPath: path.Join("branch", util.PathEscapeSegments(profileDbRepo.DefaultBranch)),
|
|
|
|
},
|
|
|
|
Metas: map[string]string{"mode": "document"},
|
2023-07-19 16:22:32 -06:00
|
|
|
}, bytes); err != nil {
|
2023-07-06 12:59:24 -06:00
|
|
|
log.Error("failed to RenderString: %v", err)
|
|
|
|
} else {
|
|
|
|
ctx.Data["ProfileReadme"] = profileContent
|
|
|
|
}
|
|
|
|
}
|
|
|
|
default: // default to "repositories"
|
2022-11-19 01:12:33 -07:00
|
|
|
repos, count, err = repo_model.SearchRepository(ctx, &repo_model.SearchRepoOptions{
|
2021-09-24 05:32:56 -06:00
|
|
|
ListOptions: db.ListOptions{
|
2023-02-24 14:15:10 -07:00
|
|
|
PageSize: pagingNum,
|
2020-01-24 12:00:29 -07:00
|
|
|
Page: page,
|
|
|
|
},
|
2022-03-22 01:03:22 -06:00
|
|
|
Actor: ctx.Doer,
|
2019-08-25 11:06:36 -06:00
|
|
|
Keyword: keyword,
|
2022-03-26 03:04:22 -06:00
|
|
|
OwnerID: ctx.ContextUser.ID,
|
2019-08-25 11:06:36 -06:00
|
|
|
OrderBy: orderBy,
|
|
|
|
Private: ctx.IsSigned,
|
|
|
|
Collaborate: util.OptionalBoolFalse,
|
|
|
|
TopicOnly: topicOnly,
|
2022-01-28 04:29:04 -07:00
|
|
|
Language: language,
|
2019-08-25 11:06:36 -06:00
|
|
|
IncludeDescription: setting.UI.SearchRepoDescription,
|
2019-05-15 09:24:39 -06:00
|
|
|
})
|
|
|
|
if err != nil {
|
2019-08-25 11:06:36 -06:00
|
|
|
ctx.ServerError("SearchRepository", err)
|
2019-05-15 09:24:39 -06:00
|
|
|
return
|
2015-12-21 05:24:11 -07:00
|
|
|
}
|
2019-05-15 09:24:39 -06:00
|
|
|
|
|
|
|
total = int(count)
|
2015-12-21 05:24:11 -07:00
|
|
|
}
|
2019-04-19 22:15:19 -06:00
|
|
|
ctx.Data["Repos"] = repos
|
|
|
|
ctx.Data["Total"] = total
|
|
|
|
|
2023-08-11 11:08:05 -06:00
|
|
|
err = shared_user.LoadHeaderCount(ctx)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("LoadHeaderCount", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-02-24 14:15:10 -07:00
|
|
|
pager := context.NewPagination(total, pagingNum, page, 5)
|
2019-04-19 22:15:19 -06:00
|
|
|
pager.SetDefaultParams(ctx)
|
2022-06-15 09:05:32 -06:00
|
|
|
pager.AddParam(ctx, "tab", "TabName")
|
2022-01-28 04:29:04 -07:00
|
|
|
if tab != "followers" && tab != "following" && tab != "activity" && tab != "projects" {
|
|
|
|
pager.AddParam(ctx, "language", "Language")
|
|
|
|
}
|
2023-02-24 14:15:10 -07:00
|
|
|
if tab == "activity" {
|
|
|
|
pager.AddParam(ctx, "date", "Date")
|
|
|
|
}
|
2019-04-19 22:15:19 -06:00
|
|
|
ctx.Data["Page"] = pager
|
2015-12-21 05:24:11 -07:00
|
|
|
}
|
|
|
|
|
2016-11-17 20:03:03 -07:00
|
|
|
// Action response for follow/unfollow user request
|
2016-03-11 09:56:52 -07:00
|
|
|
func Action(ctx *context.Context) {
|
2015-12-21 05:24:11 -07:00
|
|
|
var err error
|
2021-12-20 10:18:26 -07:00
|
|
|
switch ctx.FormString("action") {
|
2015-12-21 05:24:11 -07:00
|
|
|
case "follow":
|
2023-09-16 08:39:12 -06:00
|
|
|
err = user_model.FollowUser(ctx, ctx.Doer.ID, ctx.ContextUser.ID)
|
2015-12-21 05:24:11 -07:00
|
|
|
case "unfollow":
|
2023-09-16 08:39:12 -06:00
|
|
|
err = user_model.UnfollowUser(ctx, ctx.Doer.ID, ctx.ContextUser.ID)
|
2015-12-21 05:24:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
2023-07-07 09:27:12 -06:00
|
|
|
log.Error("Failed to apply action %q: %v", ctx.FormString("action"), err)
|
2024-01-30 07:45:54 -07:00
|
|
|
ctx.Error(http.StatusBadRequest, fmt.Sprintf("Action %q failed", ctx.FormString("action")))
|
2015-12-21 05:24:11 -07:00
|
|
|
return
|
|
|
|
}
|
2024-01-30 07:45:54 -07:00
|
|
|
|
2024-02-16 22:13:37 -07:00
|
|
|
if ctx.ContextUser.IsIndividual() {
|
|
|
|
shared_user.PrepareContextForProfileBigAvatar(ctx)
|
|
|
|
ctx.HTML(http.StatusOK, tplProfileBigAvatar)
|
|
|
|
return
|
|
|
|
} else if ctx.ContextUser.IsOrganization() {
|
|
|
|
ctx.Data["IsFollowing"] = ctx.Doer != nil && user_model.IsFollowing(ctx, ctx.Doer.ID, ctx.ContextUser.ID)
|
|
|
|
ctx.HTML(http.StatusOK, tplFollowUnfollow)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Error("Failed to apply action %q: unsupport context user type: %s", ctx.FormString("action"), ctx.ContextUser.Type)
|
|
|
|
ctx.Error(http.StatusBadRequest, fmt.Sprintf("Action %q failed", ctx.FormString("action")))
|
2015-12-21 05:24:11 -07:00
|
|
|
}
|