aboutsummaryrefslogtreecommitdiff
path: root/internal/route/user/profile.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/route/user/profile.go')
-rw-r--r--internal/route/user/profile.go126
1 files changed, 126 insertions, 0 deletions
diff --git a/internal/route/user/profile.go b/internal/route/user/profile.go
new file mode 100644
index 00000000..39d36ad0
--- /dev/null
+++ b/internal/route/user/profile.go
@@ -0,0 +1,126 @@
+// Copyright 2015 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 (
+ "fmt"
+ repo2 "gogs.io/gogs/internal/route/repo"
+ "strings"
+
+ "github.com/unknwon/paginater"
+
+ "gogs.io/gogs/internal/context"
+ "gogs.io/gogs/internal/db"
+ "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/tool"
+)
+
+const (
+ FOLLOWERS = "user/meta/followers"
+ STARS = "user/meta/stars"
+)
+
+func Profile(c *context.Context, puser *context.ParamsUser) {
+ isShowKeys := false
+ if strings.HasSuffix(c.Params(":username"), ".keys") {
+ isShowKeys = true
+ }
+
+ // Show SSH keys.
+ if isShowKeys {
+ ShowSSHKeys(c, puser.ID)
+ return
+ }
+
+ if puser.IsOrganization() {
+ showOrgProfile(c)
+ return
+ }
+
+ c.Title(puser.DisplayName())
+ c.PageIs("UserProfile")
+ c.Data["Owner"] = puser
+
+ orgs, err := db.GetOrgsByUserID(puser.ID, c.IsLogged && (c.User.IsAdmin || c.User.ID == puser.ID))
+ if err != nil {
+ c.ServerError("GetOrgsByUserIDDesc", err)
+ return
+ }
+
+ c.Data["Orgs"] = orgs
+
+ tab := c.Query("tab")
+ c.Data["TabName"] = tab
+ switch tab {
+ case "activity":
+ retrieveFeeds(c, puser.User, -1, true)
+ if c.Written() {
+ return
+ }
+ default:
+ page := c.QueryInt("page")
+ if page <= 0 {
+ page = 1
+ }
+
+ showPrivate := c.IsLogged && (puser.ID == c.User.ID || c.User.IsAdmin)
+ c.Data["Repos"], err = db.GetUserRepositories(&db.UserRepoOptions{
+ UserID: puser.ID,
+ Private: showPrivate,
+ Page: page,
+ PageSize: setting.UI.User.RepoPagingNum,
+ })
+ if err != nil {
+ c.ServerError("GetRepositories", err)
+ return
+ }
+
+ count := db.CountUserRepositories(puser.ID, showPrivate)
+ c.Data["Page"] = paginater.New(int(count), setting.UI.User.RepoPagingNum, page, 5)
+ }
+
+ c.Success(PROFILE)
+}
+
+func Followers(c *context.Context, puser *context.ParamsUser) {
+ c.Title(puser.DisplayName())
+ c.PageIs("Followers")
+ c.Data["CardsTitle"] = c.Tr("user.followers")
+ c.Data["Owner"] = puser
+ repo2.RenderUserCards(c, puser.NumFollowers, puser.GetFollowers, FOLLOWERS)
+}
+
+func Following(c *context.Context, puser *context.ParamsUser) {
+ c.Title(puser.DisplayName())
+ c.PageIs("Following")
+ c.Data["CardsTitle"] = c.Tr("user.following")
+ c.Data["Owner"] = puser
+ repo2.RenderUserCards(c, puser.NumFollowing, puser.GetFollowing, FOLLOWERS)
+}
+
+func Stars(c *context.Context) {
+
+}
+
+func Action(c *context.Context, puser *context.ParamsUser) {
+ var err error
+ switch c.Params(":action") {
+ case "follow":
+ err = db.FollowUser(c.UserID(), puser.ID)
+ case "unfollow":
+ err = db.UnfollowUser(c.UserID(), puser.ID)
+ }
+
+ if err != nil {
+ c.ServerError(fmt.Sprintf("Action (%s)", c.Params(":action")), err)
+ return
+ }
+
+ redirectTo := c.Query("redirect_to")
+ if !tool.IsSameSiteURLPath(redirectTo) {
+ redirectTo = puser.HomeLink()
+ }
+ c.Redirect(redirectTo)
+}