2015-12-21 07:24:11 -05:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2019-02-18 11:00:27 -05:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2015-12-21 07:24:11 -05:00
|
|
|
|
|
|
|
package user
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2021-04-05 11:30:52 -04:00
|
|
|
"net/http"
|
2015-12-21 07:24:11 -05:00
|
|
|
"strings"
|
|
|
|
|
2022-08-24 22:31:57 -04:00
|
|
|
activities_model "code.gitea.io/gitea/models/activities"
|
2021-09-24 07:32:56 -04:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-03-29 02:29:02 -04:00
|
|
|
"code.gitea.io/gitea/models/organization"
|
2022-03-29 10:16:31 -04:00
|
|
|
project_model "code.gitea.io/gitea/models/project"
|
2021-12-09 20:27:50 -05:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-11 02:03:30 -05:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2016-11-10 11:24:48 -05:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2021-04-19 18:25:08 -04:00
|
|
|
"code.gitea.io/gitea/modules/markup"
|
2020-08-05 03:48:37 -04:00
|
|
|
"code.gitea.io/gitea/modules/markup/markdown"
|
2016-11-10 11:24:48 -05:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2017-10-26 17:16:13 -04:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2021-10-16 10:21:16 -04:00
|
|
|
"code.gitea.io/gitea/routers/web/feed"
|
2021-06-08 19:33:54 -04:00
|
|
|
"code.gitea.io/gitea/routers/web/org"
|
2015-12-21 07:24:11 -05:00
|
|
|
)
|
|
|
|
|
2016-11-17 22:03:03 -05:00
|
|
|
// Profile render user's profile page
|
2016-03-11 11:56:52 -05:00
|
|
|
func Profile(ctx *context.Context) {
|
2022-03-26 05:04:22 -04:00
|
|
|
if strings.Contains(ctx.Req.Header.Get("Accept"), "application/rss+xml") {
|
|
|
|
feed.ShowUserFeedRSS(ctx)
|
2015-12-21 07:24:11 -05:00
|
|
|
return
|
2021-04-28 08:35:06 -04:00
|
|
|
}
|
2022-03-26 05:04:22 -04:00
|
|
|
if strings.Contains(ctx.Req.Header.Get("Accept"), "application/atom+xml") {
|
|
|
|
feed.ShowUserFeedAtom(ctx)
|
2015-12-21 07:24:11 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-26 05:04:22 -04:00
|
|
|
if ctx.ContextUser.IsOrganization() {
|
2021-06-26 15:53:14 -04:00
|
|
|
org.Home(ctx)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// check view permissions
|
2022-05-20 10:08:52 -04:00
|
|
|
if !user_model.IsUserVisibleToViewer(ctx, ctx.ContextUser, ctx.Doer) {
|
2022-03-26 05:04:22 -04:00
|
|
|
ctx.NotFound("user", fmt.Errorf(ctx.ContextUser.Name))
|
2021-10-16 10:21:16 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-13 12:40:47 -04:00
|
|
|
// advertise feed via meta tag
|
2023-02-11 01:34:11 -05:00
|
|
|
ctx.Data["FeedURL"] = ctx.ContextUser.HomeLink()
|
2022-03-13 12:40:47 -04:00
|
|
|
|
2017-03-20 04:31:08 -04:00
|
|
|
// Show OpenID URIs
|
2022-03-26 05:04:22 -04:00
|
|
|
openIDs, err := user_model.GetUserOpenIDs(ctx.ContextUser.ID)
|
2017-03-20 04:31:08 -04:00
|
|
|
if err != nil {
|
2018-01-10 16:34:17 -05:00
|
|
|
ctx.ServerError("GetUserOpenIDs", err)
|
2017-03-20 04:31:08 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-22 10:21:55 -05:00
|
|
|
var isFollowing bool
|
2022-03-26 05:04:22 -04:00
|
|
|
if ctx.Doer != nil {
|
|
|
|
isFollowing = user_model.IsFollowing(ctx.Doer.ID, ctx.ContextUser.ID)
|
2021-11-22 10:21:55 -05:00
|
|
|
}
|
|
|
|
|
2022-03-26 05:04:22 -04:00
|
|
|
ctx.Data["Title"] = ctx.ContextUser.DisplayName()
|
2015-12-21 07:24:11 -05:00
|
|
|
ctx.Data["PageIsUserProfile"] = true
|
2022-03-26 05:04:22 -04:00
|
|
|
ctx.Data["Owner"] = ctx.ContextUser
|
2017-03-20 04:31:08 -04:00
|
|
|
ctx.Data["OpenIDs"] = openIDs
|
2021-11-22 10:21:55 -05:00
|
|
|
ctx.Data["IsFollowing"] = isFollowing
|
2020-11-18 17:00:16 -05:00
|
|
|
|
2021-03-04 17:59:13 -05:00
|
|
|
if setting.Service.EnableUserHeatmap {
|
2022-08-24 22:31:57 -04:00
|
|
|
data, err := activities_model.GetUserHeatmapDataByUser(ctx.ContextUser, ctx.Doer)
|
2020-11-18 17:00:16 -05:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetUserHeatmapDataByUser", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["HeatmapData"] = data
|
|
|
|
}
|
|
|
|
|
2022-03-26 05:04:22 -04:00
|
|
|
if len(ctx.ContextUser.Description) != 0 {
|
2021-04-19 18:25:08 -04:00
|
|
|
content, err := markdown.RenderString(&markup.RenderContext{
|
|
|
|
URLPrefix: ctx.Repo.RepoLink,
|
|
|
|
Metas: map[string]string{"mode": "document"},
|
2021-06-20 18:39:12 -04:00
|
|
|
GitRepo: ctx.Repo.GitRepo,
|
2021-08-28 16:15:56 -04:00
|
|
|
Ctx: ctx,
|
2022-03-26 05:04:22 -04:00
|
|
|
}, ctx.ContextUser.Description)
|
2021-04-19 18:25:08 -04:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("RenderString", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["RenderedDescription"] = content
|
2020-08-05 03:48:37 -04:00
|
|
|
}
|
|
|
|
|
2022-03-26 05:04:22 -04:00
|
|
|
showPrivate := ctx.IsSigned && (ctx.Doer.IsAdmin || ctx.Doer.ID == ctx.ContextUser.ID)
|
2016-01-30 16:51:11 -05:00
|
|
|
|
2022-03-29 02:29:02 -04:00
|
|
|
orgs, err := organization.FindOrgs(organization.FindOrgOptions{
|
2022-03-26 05:04:22 -04:00
|
|
|
UserID: ctx.ContextUser.ID,
|
2021-11-22 08:51:45 -05:00
|
|
|
IncludePrivate: showPrivate,
|
|
|
|
})
|
2016-01-11 21:09:59 -05:00
|
|
|
if err != nil {
|
2021-11-22 08:51:45 -05:00
|
|
|
ctx.ServerError("FindOrgs", err)
|
2016-01-11 21:09:59 -05:00
|
|
|
return
|
|
|
|
}
|
2016-02-07 04:20:58 -05:00
|
|
|
|
2016-01-11 21:09:59 -05:00
|
|
|
ctx.Data["Orgs"] = orgs
|
2022-03-29 02:29:02 -04:00
|
|
|
ctx.Data["HasOrgsVisible"] = organization.HasOrgsVisible(orgs, ctx.Doer)
|
2015-12-21 07:24:11 -05:00
|
|
|
|
2022-08-17 19:25:25 -04:00
|
|
|
badges, _, err := user_model.GetUserBadges(ctx, ctx.ContextUser)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetUserBadges", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Badges"] = badges
|
|
|
|
|
2021-08-10 20:31:13 -04:00
|
|
|
tab := ctx.FormString("tab")
|
2015-12-21 07:24:11 -05:00
|
|
|
ctx.Data["TabName"] = tab
|
2017-02-14 02:28:22 -05:00
|
|
|
|
2021-07-28 21:42:15 -04:00
|
|
|
page := ctx.FormInt("page")
|
2017-02-14 02:28:22 -05:00
|
|
|
if page <= 0 {
|
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
|
2023-02-24 16:15:10 -05:00
|
|
|
pagingNum := setting.UI.User.RepoPagingNum
|
|
|
|
if tab == "activity" {
|
|
|
|
pagingNum = setting.UI.FeedPagingNum
|
|
|
|
}
|
|
|
|
|
2021-07-28 21:42:15 -04:00
|
|
|
topicOnly := ctx.FormBool("topic")
|
2018-09-12 22:33:48 -04:00
|
|
|
|
2017-02-14 02:28:22 -05:00
|
|
|
var (
|
2021-12-09 20:27:50 -05:00
|
|
|
repos []*repo_model.Repository
|
2017-02-14 02:28:22 -05:00
|
|
|
count int64
|
2019-04-20 00:15:19 -04:00
|
|
|
total int
|
2021-11-24 04:49:20 -05:00
|
|
|
orderBy db.SearchOrderBy
|
2017-02-14 02:28:22 -05:00
|
|
|
)
|
|
|
|
|
2021-08-10 20:31:13 -04:00
|
|
|
ctx.Data["SortType"] = ctx.FormString("sort")
|
|
|
|
switch ctx.FormString("sort") {
|
2017-02-14 02:28:22 -05:00
|
|
|
case "newest":
|
2021-11-24 04:49:20 -05:00
|
|
|
orderBy = db.SearchOrderByNewest
|
2017-02-14 02:28:22 -05:00
|
|
|
case "oldest":
|
2021-11-24 04:49:20 -05:00
|
|
|
orderBy = db.SearchOrderByOldest
|
2017-02-14 02:28:22 -05:00
|
|
|
case "recentupdate":
|
2021-11-24 04:49:20 -05:00
|
|
|
orderBy = db.SearchOrderByRecentUpdated
|
2017-02-14 02:28:22 -05:00
|
|
|
case "leastupdate":
|
2021-11-24 04:49:20 -05:00
|
|
|
orderBy = db.SearchOrderByLeastUpdated
|
2017-02-14 02:28:22 -05:00
|
|
|
case "reversealphabetically":
|
2021-11-24 04:49:20 -05:00
|
|
|
orderBy = db.SearchOrderByAlphabeticallyReverse
|
2017-02-14 02:28:22 -05:00
|
|
|
case "alphabetically":
|
2021-11-24 04:49:20 -05:00
|
|
|
orderBy = db.SearchOrderByAlphabetically
|
2018-05-23 21:03:42 -04:00
|
|
|
case "moststars":
|
2021-11-24 04:49:20 -05:00
|
|
|
orderBy = db.SearchOrderByStarsReverse
|
2018-05-23 21:03:42 -04:00
|
|
|
case "feweststars":
|
2021-11-24 04:49:20 -05:00
|
|
|
orderBy = db.SearchOrderByStars
|
2018-05-23 21:03:42 -04:00
|
|
|
case "mostforks":
|
2021-11-24 04:49:20 -05:00
|
|
|
orderBy = db.SearchOrderByForksReverse
|
2018-05-23 21:03:42 -04:00
|
|
|
case "fewestforks":
|
2021-11-24 04:49:20 -05:00
|
|
|
orderBy = db.SearchOrderByForks
|
2017-02-14 02:28:22 -05:00
|
|
|
default:
|
|
|
|
ctx.Data["SortType"] = "recentupdate"
|
2021-11-24 04:49:20 -05:00
|
|
|
orderBy = db.SearchOrderByRecentUpdated
|
2017-02-14 02:28:22 -05:00
|
|
|
}
|
|
|
|
|
2021-08-11 11:08:52 -04:00
|
|
|
keyword := ctx.FormTrim("q")
|
2017-02-14 02:28:22 -05:00
|
|
|
ctx.Data["Keyword"] = keyword
|
2022-01-28 06:29:04 -05:00
|
|
|
|
|
|
|
language := ctx.FormTrim("language")
|
|
|
|
ctx.Data["Language"] = language
|
|
|
|
|
2015-12-21 07:24:11 -05:00
|
|
|
switch tab {
|
2020-02-09 15:18:01 -05:00
|
|
|
case "followers":
|
2022-07-05 11:47:45 -04:00
|
|
|
items, count, err := user_model.GetUserFollowers(ctx, ctx.ContextUser, ctx.Doer, db.ListOptions{
|
2023-02-24 16:15:10 -05:00
|
|
|
PageSize: pagingNum,
|
2020-02-09 15:18:01 -05:00
|
|
|
Page: page,
|
|
|
|
})
|
|
|
|
if err != nil {
|
2021-11-22 10:21:55 -05:00
|
|
|
ctx.ServerError("GetUserFollowers", err)
|
2020-02-09 15:18:01 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Cards"] = items
|
|
|
|
|
2022-07-05 11:47:45 -04:00
|
|
|
total = int(count)
|
2020-02-09 15:18:01 -05:00
|
|
|
case "following":
|
2022-07-05 11:47:45 -04:00
|
|
|
items, count, err := user_model.GetUserFollowing(ctx, ctx.ContextUser, ctx.Doer, db.ListOptions{
|
2023-02-24 16:15:10 -05:00
|
|
|
PageSize: pagingNum,
|
2020-02-09 15:18:01 -05:00
|
|
|
Page: page,
|
|
|
|
})
|
|
|
|
if err != nil {
|
2021-11-22 10:21:55 -05:00
|
|
|
ctx.ServerError("GetUserFollowing", err)
|
2020-02-09 15:18:01 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Cards"] = items
|
|
|
|
|
2022-07-05 11:47:45 -04:00
|
|
|
total = int(count)
|
2015-12-21 07:24:11 -05:00
|
|
|
case "activity":
|
2023-02-24 16:15:10 -05:00
|
|
|
date := ctx.FormString("date")
|
|
|
|
items, count, err := activities_model.GetFeeds(ctx, activities_model.GetFeedsOptions{
|
2022-03-26 05:04:22 -04:00
|
|
|
RequestedUser: ctx.ContextUser,
|
2022-03-22 03:03:22 -04:00
|
|
|
Actor: ctx.Doer,
|
2017-08-22 21:30:54 -04:00
|
|
|
IncludePrivate: showPrivate,
|
|
|
|
OnlyPerformedBy: true,
|
|
|
|
IncludeDeleted: false,
|
2023-02-24 16:15:10 -05:00
|
|
|
Date: date,
|
|
|
|
ListOptions: db.ListOptions{
|
|
|
|
PageSize: pagingNum,
|
|
|
|
Page: page,
|
|
|
|
},
|
2017-08-22 21:30:54 -04:00
|
|
|
})
|
2022-03-13 12:40:47 -04:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetFeeds", err)
|
2015-12-21 07:24:11 -05:00
|
|
|
return
|
|
|
|
}
|
2023-02-24 16:15:10 -05:00
|
|
|
ctx.Data["Feeds"] = items
|
|
|
|
ctx.Data["Date"] = date
|
|
|
|
|
|
|
|
total = int(count)
|
2016-12-29 09:58:24 -05:00
|
|
|
case "stars":
|
2017-02-14 02:28:22 -05:00
|
|
|
ctx.Data["PageIsProfileStarList"] = true
|
2022-11-19 03:12:33 -05:00
|
|
|
repos, count, err = repo_model.SearchRepository(ctx, &repo_model.SearchRepoOptions{
|
2021-09-24 07:32:56 -04:00
|
|
|
ListOptions: db.ListOptions{
|
2023-02-24 16:15:10 -05:00
|
|
|
PageSize: pagingNum,
|
2020-01-24 14:00:29 -05:00
|
|
|
Page: page,
|
|
|
|
},
|
2022-03-22 03:03:22 -04:00
|
|
|
Actor: ctx.Doer,
|
2019-08-25 13:06:36 -04:00
|
|
|
Keyword: keyword,
|
|
|
|
OrderBy: orderBy,
|
|
|
|
Private: ctx.IsSigned,
|
2022-03-26 05:04:22 -04:00
|
|
|
StarredByID: ctx.ContextUser.ID,
|
2019-08-25 13:06:36 -04:00
|
|
|
Collaborate: util.OptionalBoolFalse,
|
|
|
|
TopicOnly: topicOnly,
|
2022-01-28 06:29:04 -05:00
|
|
|
Language: language,
|
2019-08-25 13:06:36 -04:00
|
|
|
IncludeDescription: setting.UI.SearchRepoDescription,
|
2019-05-15 11:24:39 -04:00
|
|
|
})
|
|
|
|
if err != nil {
|
2019-08-25 13:06:36 -04:00
|
|
|
ctx.ServerError("SearchRepository", err)
|
2019-05-15 11:24:39 -04:00
|
|
|
return
|
2017-02-07 06:54:16 -05:00
|
|
|
}
|
|
|
|
|
2019-04-20 00:15:19 -04:00
|
|
|
total = int(count)
|
2020-08-16 23:07:38 -04:00
|
|
|
case "projects":
|
2023-01-20 06:42:33 -05:00
|
|
|
ctx.Data["OpenProjects"], _, err = project_model.FindProjects(ctx, project_model.SearchOptions{
|
2020-08-16 23:07:38 -04:00
|
|
|
Page: -1,
|
|
|
|
IsClosed: util.OptionalBoolFalse,
|
2022-03-29 10:16:31 -04:00
|
|
|
Type: project_model.TypeIndividual,
|
2020-08-16 23:07:38 -04:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetProjects", err)
|
|
|
|
return
|
|
|
|
}
|
2021-04-15 12:53:57 -04:00
|
|
|
case "watching":
|
2022-11-19 03:12:33 -05:00
|
|
|
repos, count, err = repo_model.SearchRepository(ctx, &repo_model.SearchRepoOptions{
|
2021-09-24 07:32:56 -04:00
|
|
|
ListOptions: db.ListOptions{
|
2023-02-24 16:15:10 -05:00
|
|
|
PageSize: pagingNum,
|
2021-04-15 12:53:57 -04:00
|
|
|
Page: page,
|
|
|
|
},
|
2022-03-22 03:03:22 -04:00
|
|
|
Actor: ctx.Doer,
|
2021-04-15 12:53:57 -04:00
|
|
|
Keyword: keyword,
|
|
|
|
OrderBy: orderBy,
|
|
|
|
Private: ctx.IsSigned,
|
2022-03-26 05:04:22 -04:00
|
|
|
WatchedByID: ctx.ContextUser.ID,
|
2021-04-15 12:53:57 -04:00
|
|
|
Collaborate: util.OptionalBoolFalse,
|
|
|
|
TopicOnly: topicOnly,
|
2022-01-28 06:29:04 -05:00
|
|
|
Language: language,
|
2021-04-15 12:53:57 -04:00
|
|
|
IncludeDescription: setting.UI.SearchRepoDescription,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("SearchRepository", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
total = int(count)
|
2015-12-21 07:24:11 -05:00
|
|
|
default:
|
2022-11-19 03:12:33 -05:00
|
|
|
repos, count, err = repo_model.SearchRepository(ctx, &repo_model.SearchRepoOptions{
|
2021-09-24 07:32:56 -04:00
|
|
|
ListOptions: db.ListOptions{
|
2023-02-24 16:15:10 -05:00
|
|
|
PageSize: pagingNum,
|
2020-01-24 14:00:29 -05:00
|
|
|
Page: page,
|
|
|
|
},
|
2022-03-22 03:03:22 -04:00
|
|
|
Actor: ctx.Doer,
|
2019-08-25 13:06:36 -04:00
|
|
|
Keyword: keyword,
|
2022-03-26 05:04:22 -04:00
|
|
|
OwnerID: ctx.ContextUser.ID,
|
2019-08-25 13:06:36 -04:00
|
|
|
OrderBy: orderBy,
|
|
|
|
Private: ctx.IsSigned,
|
|
|
|
Collaborate: util.OptionalBoolFalse,
|
|
|
|
TopicOnly: topicOnly,
|
2022-01-28 06:29:04 -05:00
|
|
|
Language: language,
|
2019-08-25 13:06:36 -04:00
|
|
|
IncludeDescription: setting.UI.SearchRepoDescription,
|
2019-05-15 11:24:39 -04:00
|
|
|
})
|
|
|
|
if err != nil {
|
2019-08-25 13:06:36 -04:00
|
|
|
ctx.ServerError("SearchRepository", err)
|
2019-05-15 11:24:39 -04:00
|
|
|
return
|
2015-12-21 07:24:11 -05:00
|
|
|
}
|
2019-05-15 11:24:39 -04:00
|
|
|
|
|
|
|
total = int(count)
|
2015-12-21 07:24:11 -05:00
|
|
|
}
|
2019-04-20 00:15:19 -04:00
|
|
|
ctx.Data["Repos"] = repos
|
|
|
|
ctx.Data["Total"] = total
|
|
|
|
|
2023-02-24 16:15:10 -05:00
|
|
|
pager := context.NewPagination(total, pagingNum, page, 5)
|
2019-04-20 00:15:19 -04:00
|
|
|
pager.SetDefaultParams(ctx)
|
2022-06-15 11:05:32 -04:00
|
|
|
pager.AddParam(ctx, "tab", "TabName")
|
2022-01-28 06:29:04 -05:00
|
|
|
if tab != "followers" && tab != "following" && tab != "activity" && tab != "projects" {
|
|
|
|
pager.AddParam(ctx, "language", "Language")
|
|
|
|
}
|
2023-02-24 16:15:10 -05:00
|
|
|
if tab == "activity" {
|
|
|
|
pager.AddParam(ctx, "date", "Date")
|
|
|
|
}
|
2019-04-20 00:15:19 -04:00
|
|
|
ctx.Data["Page"] = pager
|
2023-03-10 10:18:20 -05:00
|
|
|
ctx.Data["IsProjectEnabled"] = true
|
2022-03-31 13:31:53 -04:00
|
|
|
ctx.Data["IsPackageEnabled"] = setting.Packages.Enabled
|
2022-10-10 19:12:03 -04:00
|
|
|
ctx.Data["IsRepoIndexerEnabled"] = setting.Indexer.RepoIndexerEnabled
|
2015-12-21 07:24:11 -05:00
|
|
|
|
2022-03-26 05:04:22 -04:00
|
|
|
ctx.Data["ShowUserEmail"] = len(ctx.ContextUser.Email) > 0 && ctx.IsSigned && (!ctx.ContextUser.KeepEmailPrivate || ctx.ContextUser.ID == ctx.Doer.ID)
|
2017-08-17 05:08:03 -04:00
|
|
|
|
2021-04-05 11:30:52 -04:00
|
|
|
ctx.HTML(http.StatusOK, tplProfile)
|
2015-12-21 07:24:11 -05:00
|
|
|
}
|
|
|
|
|
2016-11-17 22:03:03 -05:00
|
|
|
// Action response for follow/unfollow user request
|
2016-03-11 11:56:52 -05:00
|
|
|
func Action(ctx *context.Context) {
|
2015-12-21 07:24:11 -05:00
|
|
|
var err error
|
2021-12-20 12:18:26 -05:00
|
|
|
switch ctx.FormString("action") {
|
2015-12-21 07:24:11 -05:00
|
|
|
case "follow":
|
2022-03-26 05:04:22 -04:00
|
|
|
err = user_model.FollowUser(ctx.Doer.ID, ctx.ContextUser.ID)
|
2015-12-21 07:24:11 -05:00
|
|
|
case "unfollow":
|
2022-03-26 05:04:22 -04:00
|
|
|
err = user_model.UnfollowUser(ctx.Doer.ID, ctx.ContextUser.ID)
|
2015-12-21 07:24:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
2021-12-20 12:18:26 -05:00
|
|
|
ctx.ServerError(fmt.Sprintf("Action (%s)", ctx.FormString("action")), err)
|
2015-12-21 07:24:11 -05:00
|
|
|
return
|
|
|
|
}
|
2021-11-16 13:18:25 -05:00
|
|
|
// FIXME: We should check this URL and make sure that it's a valid Gitea URL
|
2022-03-26 05:04:22 -04:00
|
|
|
ctx.RedirectToFirst(ctx.FormString("redirect_to"), ctx.ContextUser.HomeLink())
|
2015-12-21 07:24:11 -05:00
|
|
|
}
|