2015-12-21 17:54:11 +05:30
|
|
|
// 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"
|
2015-12-25 15:55:47 +05:30
|
|
|
"path"
|
2015-12-21 17:54:11 +05:30
|
|
|
"strings"
|
|
|
|
|
2016-07-24 12:02:46 +05:30
|
|
|
"github.com/Unknwon/paginater"
|
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"code.gitea.io/gitea/routers/repo"
|
2015-12-21 17:54:11 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2016-11-18 08:33:03 +05:30
|
|
|
tplFollowers base.TplName = "user/meta/followers"
|
|
|
|
tplStars base.TplName = "user/meta/stars"
|
2015-12-21 17:54:11 +05:30
|
|
|
)
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// GetUserByName get user by name
|
2016-03-11 22:26:52 +05:30
|
|
|
func GetUserByName(ctx *context.Context, name string) *models.User {
|
2016-01-09 10:58:05 +05:30
|
|
|
user, err := models.GetUserByName(name)
|
2015-12-21 17:54:11 +05:30
|
|
|
if err != nil {
|
|
|
|
if models.IsErrUserNotExist(err) {
|
2016-02-01 00:03:36 +05:30
|
|
|
ctx.Handle(404, "GetUserByName", nil)
|
2015-12-21 17:54:11 +05:30
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "GetUserByName", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return user
|
|
|
|
}
|
|
|
|
|
2016-01-09 10:58:05 +05:30
|
|
|
// GetUserByParams returns user whose name is presented in URL paramenter.
|
2016-03-11 22:26:52 +05:30
|
|
|
func GetUserByParams(ctx *context.Context) *models.User {
|
2016-01-09 10:58:05 +05:30
|
|
|
return GetUserByName(ctx, ctx.Params(":username"))
|
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// Profile render user's profile page
|
2016-03-11 22:26:52 +05:30
|
|
|
func Profile(ctx *context.Context) {
|
2015-12-21 17:54:11 +05:30
|
|
|
uname := ctx.Params(":username")
|
|
|
|
// Special handle for FireFox requests favicon.ico.
|
|
|
|
if uname == "favicon.ico" {
|
2015-12-25 15:55:47 +05:30
|
|
|
ctx.ServeFile(path.Join(setting.StaticRootPath, "public/img/favicon.png"))
|
2015-12-21 17:54:11 +05:30
|
|
|
return
|
|
|
|
} else if strings.HasSuffix(uname, ".png") {
|
|
|
|
ctx.Error(404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
isShowKeys := false
|
|
|
|
if strings.HasSuffix(uname, ".keys") {
|
|
|
|
isShowKeys = true
|
|
|
|
}
|
|
|
|
|
2016-07-24 12:02:46 +05:30
|
|
|
ctxUser := GetUserByName(ctx, strings.TrimSuffix(uname, ".keys"))
|
2015-12-21 17:54:11 +05:30
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Show SSH keys.
|
|
|
|
if isShowKeys {
|
2016-07-24 12:02:46 +05:30
|
|
|
ShowSSHKeys(ctx, ctxUser.ID)
|
2015-12-21 17:54:11 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-07-24 12:02:46 +05:30
|
|
|
if ctxUser.IsOrganization() {
|
2015-12-21 17:54:11 +05:30
|
|
|
showOrgProfile(ctx)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-07-24 12:02:46 +05:30
|
|
|
ctx.Data["Title"] = ctxUser.DisplayName()
|
2015-12-21 17:54:11 +05:30
|
|
|
ctx.Data["PageIsUserProfile"] = true
|
2016-07-24 12:02:46 +05:30
|
|
|
ctx.Data["Owner"] = ctxUser
|
2016-01-31 03:21:11 +05:30
|
|
|
|
2016-07-24 12:02:46 +05:30
|
|
|
orgs, err := models.GetOrgsByUserID(ctxUser.ID, ctx.IsSigned && (ctx.User.IsAdmin || ctx.User.ID == ctxUser.ID))
|
2016-01-12 07:39:59 +05:30
|
|
|
if err != nil {
|
2016-02-07 14:50:58 +05:30
|
|
|
ctx.Handle(500, "GetOrgsByUserIDDesc", err)
|
2016-01-12 07:39:59 +05:30
|
|
|
return
|
|
|
|
}
|
2016-02-07 14:50:58 +05:30
|
|
|
|
2016-01-12 07:39:59 +05:30
|
|
|
ctx.Data["Orgs"] = orgs
|
2015-12-21 17:54:11 +05:30
|
|
|
|
|
|
|
tab := ctx.Query("tab")
|
|
|
|
ctx.Data["TabName"] = tab
|
|
|
|
switch tab {
|
|
|
|
case "activity":
|
2016-07-24 12:02:46 +05:30
|
|
|
retrieveFeeds(ctx, ctxUser, -1, 0, true)
|
2015-12-21 17:54:11 +05:30
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
default:
|
2016-07-24 12:02:46 +05:30
|
|
|
page := ctx.QueryInt("page")
|
|
|
|
if page <= 0 {
|
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Repos"], err = models.GetUserRepositories(ctxUser.ID, ctx.IsSigned && ctx.User.ID == ctxUser.ID, page, setting.UI.User.RepoPagingNum)
|
2015-12-21 17:54:11 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "GetRepositories", err)
|
|
|
|
return
|
|
|
|
}
|
2016-07-24 12:02:46 +05:30
|
|
|
ctx.Data["Page"] = paginater.New(ctxUser.NumRepos, setting.UI.User.RepoPagingNum, page, 5)
|
2015-12-21 17:54:11 +05:30
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
ctx.HTML(200, tplProfile)
|
2015-12-21 17:54:11 +05:30
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// Followers render user's followers page
|
2016-03-11 22:26:52 +05:30
|
|
|
func Followers(ctx *context.Context) {
|
2015-12-21 17:54:11 +05:30
|
|
|
u := GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Title"] = u.DisplayName()
|
|
|
|
ctx.Data["CardsTitle"] = ctx.Tr("user.followers")
|
|
|
|
ctx.Data["PageIsFollowers"] = true
|
|
|
|
ctx.Data["Owner"] = u
|
2016-11-18 08:33:03 +05:30
|
|
|
repo.RenderUserCards(ctx, u.NumFollowers, u.GetFollowers, tplFollowers)
|
2015-12-21 17:54:11 +05:30
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// Following render user's followering page
|
2016-03-11 22:26:52 +05:30
|
|
|
func Following(ctx *context.Context) {
|
2015-12-21 17:54:11 +05:30
|
|
|
u := GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Title"] = u.DisplayName()
|
|
|
|
ctx.Data["CardsTitle"] = ctx.Tr("user.following")
|
|
|
|
ctx.Data["PageIsFollowing"] = true
|
|
|
|
ctx.Data["Owner"] = u
|
2016-11-18 08:33:03 +05:30
|
|
|
repo.RenderUserCards(ctx, u.NumFollowing, u.GetFollowing, tplFollowers)
|
2015-12-21 17:54:11 +05:30
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// Stars show repositories user starred
|
2016-03-11 22:26:52 +05:30
|
|
|
func Stars(ctx *context.Context) {
|
2015-12-21 17:54:11 +05:30
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-11-18 08:33:03 +05:30
|
|
|
// Action response for follow/unfollow user request
|
2016-03-11 22:26:52 +05:30
|
|
|
func Action(ctx *context.Context) {
|
2015-12-21 17:54:11 +05:30
|
|
|
u := GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var err error
|
|
|
|
switch ctx.Params(":action") {
|
|
|
|
case "follow":
|
2016-07-23 22:38:22 +05:30
|
|
|
err = models.FollowUser(ctx.User.ID, u.ID)
|
2015-12-21 17:54:11 +05:30
|
|
|
case "unfollow":
|
2016-07-23 22:38:22 +05:30
|
|
|
err = models.UnfollowUser(ctx.User.ID, u.ID)
|
2015-12-21 17:54:11 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, fmt.Sprintf("Action (%s)", ctx.Params(":action")), err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
redirectTo := ctx.Query("redirect_to")
|
|
|
|
if len(redirectTo) == 0 {
|
|
|
|
redirectTo = u.HomeLink()
|
|
|
|
}
|
|
|
|
ctx.Redirect(redirectTo)
|
|
|
|
}
|