2015-12-21 15:24:11 +03:00
// Copyright 2015 The Gogs Authors. All rights reserved.
2019-02-18 19:00:27 +03:00
// Copyright 2019 The Gitea Authors. All rights reserved.
2015-12-21 15:24:11 +03:00
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package user
import (
"fmt"
2021-04-05 18:30:52 +03:00
"net/http"
2015-12-25 13:25:47 +03:00
"path"
2015-12-21 15:24:11 +03:00
"strings"
2016-11-10 19:24:48 +03:00
"code.gitea.io/gitea/models"
2021-09-24 14:32:56 +03:00
"code.gitea.io/gitea/models/db"
2021-12-10 04:27:50 +03:00
repo_model "code.gitea.io/gitea/models/repo"
2021-11-11 10:03:30 +03:00
user_model "code.gitea.io/gitea/models/user"
2016-11-10 19:24:48 +03:00
"code.gitea.io/gitea/modules/context"
2021-04-20 01:25:08 +03:00
"code.gitea.io/gitea/modules/markup"
2020-08-05 10:48:37 +03:00
"code.gitea.io/gitea/modules/markup/markdown"
2016-11-10 19:24:48 +03:00
"code.gitea.io/gitea/modules/setting"
2017-10-27 00:16:13 +03:00
"code.gitea.io/gitea/modules/util"
2021-10-16 17:21:16 +03:00
"code.gitea.io/gitea/routers/web/feed"
2021-06-09 02:33:54 +03:00
"code.gitea.io/gitea/routers/web/org"
2015-12-21 15:24:11 +03:00
)
2016-11-18 06:03:03 +03:00
// GetUserByName get user by name
2021-11-24 12:49:20 +03:00
func GetUserByName ( ctx * context . Context , name string ) * user_model . User {
user , err := user_model . GetUserByName ( name )
2015-12-21 15:24:11 +03:00
if err != nil {
2021-11-24 12:49:20 +03:00
if user_model . IsErrUserNotExist ( err ) {
2021-11-11 10:03:30 +03:00
if redirectUserID , err := user_model . LookupUserRedirect ( name ) ; err == nil {
2021-01-24 18:23:05 +03:00
context . RedirectToUser ( ctx , name , redirectUserID )
} else {
ctx . NotFound ( "GetUserByName" , err )
}
2015-12-21 15:24:11 +03:00
} else {
2018-01-11 00:34:17 +03:00
ctx . ServerError ( "GetUserByName" , err )
2015-12-21 15:24:11 +03:00
}
return nil
}
return user
}
2016-01-09 08:28:05 +03:00
// GetUserByParams returns user whose name is presented in URL paramenter.
2021-11-24 12:49:20 +03:00
func GetUserByParams ( ctx * context . Context ) * user_model . User {
2016-01-09 08:28:05 +03:00
return GetUserByName ( ctx , ctx . Params ( ":username" ) )
}
2016-11-18 06:03:03 +03:00
// Profile render user's profile page
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" )
2021-04-28 15:35:06 +03:00
2015-12-21 15:24:11 +03:00
// 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
2021-04-28 15:35:06 +03:00
}
if strings . HasSuffix ( uname , ".png" ) {
2021-04-05 18:30:52 +03:00
ctx . Error ( http . StatusNotFound )
2015-12-21 15:24:11 +03:00
return
}
isShowKeys := false
if strings . HasSuffix ( uname , ".keys" ) {
isShowKeys = true
2019-04-14 19:43:56 +03:00
uname = strings . TrimSuffix ( uname , ".keys" )
2015-12-21 15:24:11 +03:00
}
2019-04-14 19:43:56 +03:00
isShowGPG := false
if strings . HasSuffix ( uname , ".gpg" ) {
isShowGPG = true
uname = strings . TrimSuffix ( uname , ".gpg" )
}
2021-10-16 17:21:16 +03:00
showFeedType := ""
if strings . HasSuffix ( uname , ".rss" ) {
showFeedType = "rss"
uname = strings . TrimSuffix ( uname , ".rss" )
} else if strings . Contains ( ctx . Req . Header . Get ( "Accept" ) , "application/rss+xml" ) {
showFeedType = "rss"
}
if strings . HasSuffix ( uname , ".atom" ) {
showFeedType = "atom"
uname = strings . TrimSuffix ( uname , ".atom" )
} else if strings . Contains ( ctx . Req . Header . Get ( "Accept" ) , "application/atom+xml" ) {
showFeedType = "atom"
}
2019-04-14 19:43:56 +03:00
ctxUser := GetUserByName ( ctx , uname )
2015-12-21 15:24:11 +03:00
if ctx . Written ( ) {
return
}
2021-06-26 22:53:14 +03:00
if ctxUser . IsOrganization ( ) {
2021-10-16 17:21:16 +03:00
/ *
// TODO: enable after rss.RetrieveFeeds() do handle org correctly
// Show Org RSS feed
if len ( showFeedType ) != 0 {
rss . ShowUserFeed ( ctx , ctxUser , showFeedType )
return
}
* /
2021-06-26 22:53:14 +03:00
org . Home ( ctx )
return
}
// check view permissions
2021-11-22 18:21:55 +03:00
if ! models . IsUserVisibleToViewer ( ctxUser , ctx . User ) {
2021-06-26 22:53:14 +03:00
ctx . NotFound ( "user" , fmt . Errorf ( uname ) )
return
}
2015-12-21 15:24:11 +03:00
// 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
}
2019-04-14 19:43:56 +03:00
// Show GPG keys.
if isShowGPG {
ShowGPGKeys ( ctx , ctxUser . ID )
return
}
2021-10-16 17:21:16 +03:00
// Show User RSS feed
if len ( showFeedType ) != 0 {
feed . ShowUserFeed ( ctx , ctxUser , showFeedType )
return
}
2017-03-20 11:31:08 +03:00
// Show OpenID URIs
2021-11-17 12:58:31 +03:00
openIDs , err := user_model . GetUserOpenIDs ( ctxUser . ID )
2017-03-20 11:31:08 +03:00
if err != nil {
2018-01-11 00:34:17 +03:00
ctx . ServerError ( "GetUserOpenIDs" , err )
2017-03-20 11:31:08 +03:00
return
}
2021-11-22 18:21:55 +03:00
var isFollowing bool
if ctx . User != nil && ctxUser != nil {
isFollowing = user_model . IsFollowing ( ctx . User . ID , ctxUser . ID )
}
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
2017-03-20 11:31:08 +03:00
ctx . Data [ "OpenIDs" ] = openIDs
2021-11-22 18:21:55 +03:00
ctx . Data [ "IsFollowing" ] = isFollowing
2020-11-19 01:00:16 +03:00
2021-03-05 01:59:13 +03:00
if setting . Service . EnableUserHeatmap {
2020-12-22 05:53:37 +03:00
data , err := models . GetUserHeatmapDataByUser ( ctxUser , ctx . User )
2020-11-19 01:00:16 +03:00
if err != nil {
ctx . ServerError ( "GetUserHeatmapDataByUser" , err )
return
}
ctx . Data [ "HeatmapData" ] = data
}
2020-08-05 10:48:37 +03:00
if len ( ctxUser . Description ) != 0 {
2021-04-20 01:25:08 +03:00
content , err := markdown . RenderString ( & markup . RenderContext {
URLPrefix : ctx . Repo . RepoLink ,
Metas : map [ string ] string { "mode" : "document" } ,
2021-06-21 01:39:12 +03:00
GitRepo : ctx . Repo . GitRepo ,
2021-08-28 23:15:56 +03:00
Ctx : ctx ,
2021-04-20 01:25:08 +03:00
} , ctxUser . Description )
if err != nil {
ctx . ServerError ( "RenderString" , err )
return
}
ctx . Data [ "RenderedDescription" ] = content
2020-08-05 10:48:37 +03:00
}
2017-02-02 15:32:40 +03:00
showPrivate := ctx . IsSigned && ( ctx . User . IsAdmin || ctx . User . ID == ctxUser . ID )
2016-01-31 00:51:11 +03:00
2021-11-22 16:51:45 +03:00
orgs , err := models . FindOrgs ( models . FindOrgOptions {
UserID : ctxUser . ID ,
IncludePrivate : showPrivate ,
} )
2016-01-12 05:09:59 +03:00
if err != nil {
2021-11-22 16:51:45 +03:00
ctx . ServerError ( "FindOrgs" , 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
2019-02-18 19:00:27 +03:00
ctx . Data [ "HasOrgsVisible" ] = models . HasOrgsVisible ( orgs , ctx . User )
2015-12-21 15:24:11 +03:00
2021-08-11 03:31:13 +03:00
tab := ctx . FormString ( "tab" )
2015-12-21 15:24:11 +03:00
ctx . Data [ "TabName" ] = tab
2017-02-14 10:28:22 +03:00
2021-07-29 04:42:15 +03:00
page := ctx . FormInt ( "page" )
2017-02-14 10:28:22 +03:00
if page <= 0 {
page = 1
}
2021-07-29 04:42:15 +03:00
topicOnly := ctx . FormBool ( "topic" )
2018-09-13 05:33:48 +03:00
2017-02-14 10:28:22 +03:00
var (
2021-12-10 04:27:50 +03:00
repos [ ] * repo_model . Repository
2017-02-14 10:28:22 +03:00
count int64
2019-04-20 07:15:19 +03:00
total int
2021-11-24 12:49:20 +03:00
orderBy db . SearchOrderBy
2017-02-14 10:28:22 +03:00
)
2021-08-11 03:31:13 +03:00
ctx . Data [ "SortType" ] = ctx . FormString ( "sort" )
switch ctx . FormString ( "sort" ) {
2017-02-14 10:28:22 +03:00
case "newest" :
2021-11-24 12:49:20 +03:00
orderBy = db . SearchOrderByNewest
2017-02-14 10:28:22 +03:00
case "oldest" :
2021-11-24 12:49:20 +03:00
orderBy = db . SearchOrderByOldest
2017-02-14 10:28:22 +03:00
case "recentupdate" :
2021-11-24 12:49:20 +03:00
orderBy = db . SearchOrderByRecentUpdated
2017-02-14 10:28:22 +03:00
case "leastupdate" :
2021-11-24 12:49:20 +03:00
orderBy = db . SearchOrderByLeastUpdated
2017-02-14 10:28:22 +03:00
case "reversealphabetically" :
2021-11-24 12:49:20 +03:00
orderBy = db . SearchOrderByAlphabeticallyReverse
2017-02-14 10:28:22 +03:00
case "alphabetically" :
2021-11-24 12:49:20 +03:00
orderBy = db . SearchOrderByAlphabetically
2018-05-24 04:03:42 +03:00
case "moststars" :
2021-11-24 12:49:20 +03:00
orderBy = db . SearchOrderByStarsReverse
2018-05-24 04:03:42 +03:00
case "feweststars" :
2021-11-24 12:49:20 +03:00
orderBy = db . SearchOrderByStars
2018-05-24 04:03:42 +03:00
case "mostforks" :
2021-11-24 12:49:20 +03:00
orderBy = db . SearchOrderByForksReverse
2018-05-24 04:03:42 +03:00
case "fewestforks" :
2021-11-24 12:49:20 +03:00
orderBy = db . SearchOrderByForks
2017-02-14 10:28:22 +03:00
default :
ctx . Data [ "SortType" ] = "recentupdate"
2021-11-24 12:49:20 +03:00
orderBy = db . SearchOrderByRecentUpdated
2017-02-14 10:28:22 +03:00
}
2021-08-11 18:08:52 +03:00
keyword := ctx . FormTrim ( "q" )
2017-02-14 10:28:22 +03:00
ctx . Data [ "Keyword" ] = keyword
2015-12-21 15:24:11 +03:00
switch tab {
2020-02-09 23:18:01 +03:00
case "followers" :
2021-11-24 12:49:20 +03:00
items , err := user_model . GetUserFollowers ( ctxUser , db . ListOptions {
2020-02-09 23:18:01 +03:00
PageSize : setting . UI . User . RepoPagingNum ,
Page : page ,
} )
if err != nil {
2021-11-22 18:21:55 +03:00
ctx . ServerError ( "GetUserFollowers" , err )
2020-02-09 23:18:01 +03:00
return
}
ctx . Data [ "Cards" ] = items
total = ctxUser . NumFollowers
case "following" :
2021-11-24 12:49:20 +03:00
items , err := user_model . GetUserFollowing ( ctxUser , db . ListOptions {
2020-02-09 23:18:01 +03:00
PageSize : setting . UI . User . RepoPagingNum ,
Page : page ,
} )
if err != nil {
2021-11-22 18:21:55 +03:00
ctx . ServerError ( "GetUserFollowing" , err )
2020-02-09 23:18:01 +03:00
return
}
ctx . Data [ "Cards" ] = items
total = ctxUser . NumFollowing
2015-12-21 15:24:11 +03:00
case "activity" :
2022-01-20 20:46:10 +03:00
ctx . Data [ "Feeds" ] = feed . RetrieveFeeds ( ctx , models . GetFeedsOptions {
RequestedUser : ctxUser ,
2020-01-13 20:33:46 +03:00
Actor : ctx . User ,
2017-08-23 04:30:54 +03:00
IncludePrivate : showPrivate ,
OnlyPerformedBy : true ,
IncludeDeleted : false ,
2021-08-11 03:31:13 +03:00
Date : ctx . FormString ( "date" ) ,
2017-08-23 04:30:54 +03:00
} )
2015-12-21 15:24:11 +03:00
if ctx . Written ( ) {
return
}
2016-12-29 17:58:24 +03:00
case "stars" :
2017-02-14 10:28:22 +03:00
ctx . Data [ "PageIsProfileStarList" ] = true
2019-08-25 20:06:36 +03:00
repos , count , err = models . SearchRepository ( & models . SearchRepoOptions {
2021-09-24 14:32:56 +03:00
ListOptions : db . ListOptions {
2020-01-24 22:00:29 +03:00
PageSize : setting . UI . User . RepoPagingNum ,
Page : page ,
} ,
2020-01-13 20:33:46 +03:00
Actor : ctx . User ,
2019-08-25 20:06:36 +03:00
Keyword : keyword ,
OrderBy : orderBy ,
Private : ctx . IsSigned ,
StarredByID : ctxUser . ID ,
Collaborate : util . OptionalBoolFalse ,
TopicOnly : topicOnly ,
IncludeDescription : setting . UI . SearchRepoDescription ,
2019-05-15 18:24:39 +03:00
} )
if err != nil {
2019-08-25 20:06:36 +03:00
ctx . ServerError ( "SearchRepository" , err )
2019-05-15 18:24:39 +03:00
return
2017-02-07 14:54:16 +03:00
}
2019-04-20 07:15:19 +03:00
total = int ( count )
2020-08-17 06:07:38 +03:00
case "projects" :
ctx . Data [ "OpenProjects" ] , _ , err = models . GetProjects ( models . ProjectSearchOptions {
Page : - 1 ,
IsClosed : util . OptionalBoolFalse ,
Type : models . ProjectTypeIndividual ,
} )
if err != nil {
ctx . ServerError ( "GetProjects" , err )
return
}
2021-04-15 19:53:57 +03:00
case "watching" :
repos , count , err = models . SearchRepository ( & models . SearchRepoOptions {
2021-09-24 14:32:56 +03:00
ListOptions : db . ListOptions {
2021-04-15 19:53:57 +03:00
PageSize : setting . UI . User . RepoPagingNum ,
Page : page ,
} ,
Actor : ctx . User ,
Keyword : keyword ,
OrderBy : orderBy ,
Private : ctx . IsSigned ,
WatchedByID : ctxUser . ID ,
Collaborate : util . OptionalBoolFalse ,
TopicOnly : topicOnly ,
IncludeDescription : setting . UI . SearchRepoDescription ,
} )
if err != nil {
ctx . ServerError ( "SearchRepository" , err )
return
}
total = int ( count )
2015-12-21 15:24:11 +03:00
default :
2019-08-25 20:06:36 +03:00
repos , count , err = models . SearchRepository ( & models . SearchRepoOptions {
2021-09-24 14:32:56 +03:00
ListOptions : db . ListOptions {
2020-01-24 22:00:29 +03:00
PageSize : setting . UI . User . RepoPagingNum ,
Page : page ,
} ,
2020-01-13 20:33:46 +03:00
Actor : ctx . User ,
2019-08-25 20:06:36 +03:00
Keyword : keyword ,
OwnerID : ctxUser . ID ,
OrderBy : orderBy ,
Private : ctx . IsSigned ,
Collaborate : util . OptionalBoolFalse ,
TopicOnly : topicOnly ,
IncludeDescription : setting . UI . SearchRepoDescription ,
2019-05-15 18:24:39 +03:00
} )
if err != nil {
2019-08-25 20:06:36 +03:00
ctx . ServerError ( "SearchRepository" , err )
2019-05-15 18:24:39 +03:00
return
2015-12-21 15:24:11 +03:00
}
2019-05-15 18:24:39 +03:00
total = int ( count )
2015-12-21 15:24:11 +03:00
}
2019-04-20 07:15:19 +03:00
ctx . Data [ "Repos" ] = repos
ctx . Data [ "Total" ] = total
pager := context . NewPagination ( total , setting . UI . User . RepoPagingNum , page , 5 )
pager . SetDefaultParams ( ctx )
ctx . Data [ "Page" ] = pager
2015-12-21 15:24:11 +03:00
2019-02-19 17:11:50 +03:00
ctx . Data [ "ShowUserEmail" ] = len ( ctxUser . Email ) > 0 && ctx . IsSigned && ( ! ctxUser . KeepEmailPrivate || ctxUser . ID == ctx . User . ID )
2017-08-17 12:08:03 +03:00
2021-04-05 18:30:52 +03:00
ctx . HTML ( http . StatusOK , tplProfile )
2015-12-21 15:24:11 +03:00
}
2016-11-18 06:03:03 +03:00
// Action response for follow/unfollow user request
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
2021-12-20 20:18:26 +03:00
switch ctx . FormString ( "action" ) {
2015-12-21 15:24:11 +03:00
case "follow" :
2021-11-17 12:58:31 +03:00
err = user_model . FollowUser ( ctx . User . ID , u . ID )
2015-12-21 15:24:11 +03:00
case "unfollow" :
2021-11-17 12:58:31 +03:00
err = user_model . UnfollowUser ( ctx . User . ID , u . ID )
2015-12-21 15:24:11 +03:00
}
if err != nil {
2021-12-20 20:18:26 +03:00
ctx . ServerError ( fmt . Sprintf ( "Action (%s)" , ctx . FormString ( "action" ) ) , err )
2015-12-21 15:24:11 +03:00
return
}
2021-11-16 21:18:25 +03:00
// FIXME: We should check this URL and make sure that it's a valid Gitea URL
2021-08-11 03:31:13 +03:00
ctx . RedirectToFirst ( ctx . FormString ( "redirect_to" ) , u . HomeLink ( ) )
2015-12-21 15:24:11 +03:00
}