2015-12-21 15:24:11 +03:00
// 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 13:25:47 +03:00
"path"
2015-12-21 15:24:11 +03:00
"strings"
2016-07-24 09:32:46 +03:00
"github.com/Unknwon/paginater"
2016-11-03 15:29:56 +03:00
"github.com/go-gitea/gitea/models"
"github.com/go-gitea/gitea/modules/base"
"github.com/go-gitea/gitea/modules/context"
"github.com/go-gitea/gitea/modules/setting"
"github.com/go-gitea/gitea/routers/repo"
2015-12-21 15:24:11 +03:00
)
const (
FOLLOWERS base . TplName = "user/meta/followers"
STARS base . TplName = "user/meta/stars"
)
2016-03-11 19:56:52 +03:00
func GetUserByName ( ctx * context . Context , name string ) * models . User {
2016-01-09 08:28:05 +03:00
user , err := models . GetUserByName ( name )
2015-12-21 15:24:11 +03:00
if err != nil {
if models . IsErrUserNotExist ( err ) {
2016-01-31 21:33:36 +03:00
ctx . Handle ( 404 , "GetUserByName" , nil )
2015-12-21 15:24:11 +03:00
} else {
ctx . Handle ( 500 , "GetUserByName" , err )
}
return nil
}
return user
}
2016-01-09 08:28:05 +03:00
// GetUserByParams returns user whose name is presented in URL paramenter.
2016-03-11 19:56:52 +03:00
func GetUserByParams ( ctx * context . Context ) * models . User {
2016-01-09 08:28:05 +03:00
return GetUserByName ( ctx , ctx . Params ( ":username" ) )
}
2016-03-11 19:56:52 +03:00
func Profile ( ctx * context . Context ) {
2015-12-21 15:24:11 +03:00
uname := ctx . Params ( ":username" )
// Special handle for FireFox requests favicon.ico.
if uname == "favicon.ico" {
2015-12-25 13:25:47 +03:00
ctx . ServeFile ( path . Join ( setting . StaticRootPath , "public/img/favicon.png" ) )
2015-12-21 15:24:11 +03:00
return
} else if strings . HasSuffix ( uname , ".png" ) {
ctx . Error ( 404 )
return
}
isShowKeys := false
if strings . HasSuffix ( uname , ".keys" ) {
isShowKeys = true
}
2016-07-24 09:32:46 +03:00
ctxUser := GetUserByName ( ctx , strings . TrimSuffix ( uname , ".keys" ) )
2015-12-21 15:24:11 +03:00
if ctx . Written ( ) {
return
}
// Show SSH keys.
if isShowKeys {
2016-07-24 09:32:46 +03:00
ShowSSHKeys ( ctx , ctxUser . ID )
2015-12-21 15:24:11 +03:00
return
}
2016-07-24 09:32:46 +03:00
if ctxUser . IsOrganization ( ) {
2015-12-21 15:24:11 +03:00
showOrgProfile ( ctx )
return
}
2016-07-24 09:32:46 +03:00
ctx . Data [ "Title" ] = ctxUser . DisplayName ( )
2015-12-21 15:24:11 +03:00
ctx . Data [ "PageIsUserProfile" ] = true
2016-07-24 09:32:46 +03:00
ctx . Data [ "Owner" ] = ctxUser
2016-01-31 00:51:11 +03:00
2016-07-24 09:32:46 +03:00
orgs , err := models . GetOrgsByUserID ( ctxUser . ID , ctx . IsSigned && ( ctx . User . IsAdmin || ctx . User . ID == ctxUser . ID ) )
2016-01-12 05:09:59 +03:00
if err != nil {
2016-02-07 12:20:58 +03:00
ctx . Handle ( 500 , "GetOrgsByUserIDDesc" , err )
2016-01-12 05:09:59 +03:00
return
}
2016-02-07 12:20:58 +03:00
2016-01-12 05:09:59 +03:00
ctx . Data [ "Orgs" ] = orgs
2015-12-21 15:24:11 +03:00
tab := ctx . Query ( "tab" )
ctx . Data [ "TabName" ] = tab
switch tab {
case "activity" :
2016-07-24 09:32:46 +03:00
retrieveFeeds ( ctx , ctxUser , - 1 , 0 , true )
2015-12-21 15:24:11 +03:00
if ctx . Written ( ) {
return
}
default :
2016-07-24 09:32:46 +03:00
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 15:24:11 +03:00
if err != nil {
ctx . Handle ( 500 , "GetRepositories" , err )
return
}
2016-07-24 09:32:46 +03:00
ctx . Data [ "Page" ] = paginater . New ( ctxUser . NumRepos , setting . UI . User . RepoPagingNum , page , 5 )
2015-12-21 15:24:11 +03:00
}
ctx . HTML ( 200 , PROFILE )
}
2016-03-11 19:56:52 +03:00
func Followers ( ctx * context . Context ) {
2015-12-21 15:24:11 +03:00
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
repo . RenderUserCards ( ctx , u . NumFollowers , u . GetFollowers , FOLLOWERS )
}
2016-03-11 19:56:52 +03:00
func Following ( ctx * context . Context ) {
2015-12-21 15:24:11 +03:00
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
repo . RenderUserCards ( ctx , u . NumFollowing , u . GetFollowing , FOLLOWERS )
}
2016-03-11 19:56:52 +03:00
func Stars ( ctx * context . Context ) {
2015-12-21 15:24:11 +03:00
}
2016-03-11 19:56:52 +03:00
func Action ( ctx * context . Context ) {
2015-12-21 15:24:11 +03:00
u := GetUserByParams ( ctx )
if ctx . Written ( ) {
return
}
var err error
switch ctx . Params ( ":action" ) {
case "follow" :
2016-07-23 20:08:22 +03:00
err = models . FollowUser ( ctx . User . ID , u . ID )
2015-12-21 15:24:11 +03:00
case "unfollow" :
2016-07-23 20:08:22 +03:00
err = models . UnfollowUser ( ctx . User . ID , u . ID )
2015-12-21 15:24:11 +03:00
}
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 )
}