mirror of https://github.com/gogs/gogs.git
127 lines
2.8 KiB
Go
127 lines
2.8 KiB
Go
// 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"
|
|
"strings"
|
|
|
|
"github.com/Unknwon/paginater"
|
|
|
|
"github.com/gogs/gogs/models"
|
|
"github.com/gogs/gogs/pkg/context"
|
|
"github.com/gogs/gogs/pkg/setting"
|
|
"github.com/gogs/gogs/pkg/tool"
|
|
"github.com/gogs/gogs/routes/repo"
|
|
)
|
|
|
|
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 := models.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 = models.GetUserRepositories(&models.UserRepoOptions{
|
|
UserID: puser.ID,
|
|
Private: showPrivate,
|
|
Page: page,
|
|
PageSize: setting.UI.User.RepoPagingNum,
|
|
})
|
|
if err != nil {
|
|
c.ServerError("GetRepositories", err)
|
|
return
|
|
}
|
|
|
|
count := models.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
|
|
repo.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
|
|
repo.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 = models.FollowUser(c.UserID(), puser.ID)
|
|
case "unfollow":
|
|
err = models.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)
|
|
}
|