2014-02-12 12:49:46 -05:00
// Copyright 2014 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 routers
2014-02-12 14:54:09 -05:00
import (
2017-02-11 12:00:01 +08:00
"bytes"
"strings"
2014-09-05 17:28:09 -04:00
2016-11-10 17:24:48 +01:00
"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/user"
2017-02-15 14:01:50 +08:00
"github.com/Unknwon/paginater"
2014-02-12 14:54:09 -05:00
)
2014-06-22 13:14:03 -04:00
const (
2016-11-18 11:03:03 +08:00
// tplHome home page template
tplHome base . TplName = "home"
// tplExploreRepos explore repositories page template
tplExploreRepos base . TplName = "explore/repos"
// tplExploreUsers explore users page template
tplExploreUsers base . TplName = "explore/users"
// tplExploreOrganizations explore organizations page template
tplExploreOrganizations base . TplName = "explore/organizations"
2014-06-22 13:14:03 -04:00
)
2016-11-18 11:03:03 +08:00
// Home render home page
2016-03-11 11:56:52 -05:00
func Home ( ctx * context . Context ) {
2014-03-15 22:34:33 +08:00
if ctx . IsSigned {
2014-08-09 21:02:00 -07:00
if ! ctx . User . IsActive && setting . Service . RegisterEmailConfirm {
ctx . Data [ "Title" ] = ctx . Tr ( "auth.active_your_account" )
2016-11-18 11:03:03 +08:00
ctx . HTML ( 200 , user . TplActivate )
2014-08-09 21:02:00 -07:00
} else {
user . Dashboard ( ctx )
}
2014-03-06 21:33:17 +08:00
return
}
2014-03-24 12:43:51 -04:00
// Check auto-login.
2014-07-26 00:24:27 -04:00
uname := ctx . GetCookie ( setting . CookieUserName )
if len ( uname ) != 0 {
2016-11-27 18:14:25 +08:00
ctx . Redirect ( setting . AppSubURL + "/user/login" )
2014-03-24 12:43:51 -04:00
return
}
2014-05-24 15:28:31 -04:00
ctx . Data [ "PageIsHome" ] = true
2016-11-18 11:03:03 +08:00
ctx . HTML ( 200 , tplHome )
2014-02-12 12:49:46 -05:00
}
2014-03-16 03:41:22 -04:00
2016-11-18 11:03:03 +08:00
// RepoSearchOptions when calling search repositories
2016-03-15 14:23:12 -04:00
type RepoSearchOptions struct {
2017-02-26 13:59:31 +08:00
Ranger func ( * models . SearchRepoOptions ) ( models . RepositoryList , int64 , error )
2016-12-24 15:42:26 +01:00
Searcher * models . User
2016-03-15 14:23:12 -04:00
Private bool
PageSize int
TplName base . TplName
}
2016-12-01 18:52:57 +08:00
var (
nullByte = [ ] byte { 0x00 }
)
func isKeywordValid ( keyword string ) bool {
return ! bytes . Contains ( [ ] byte ( keyword ) , nullByte )
}
2016-11-18 11:03:03 +08:00
// RenderRepoSearch render repositories search page
2016-03-15 14:23:12 -04:00
func RenderRepoSearch ( ctx * context . Context , opts * RepoSearchOptions ) {
2015-09-01 07:04:35 -04:00
page := ctx . QueryInt ( "page" )
2016-07-24 14:32:46 +08:00
if page <= 0 {
2015-09-01 07:04:35 -04:00
page = 1
}
2016-03-11 15:33:12 -05:00
var (
2016-12-24 15:42:26 +01:00
repos [ ] * models . Repository
count int64
err error
orderBy string
2016-03-11 15:33:12 -05:00
)
2016-12-24 15:42:26 +01:00
ctx . Data [ "SortType" ] = ctx . Query ( "sort" )
switch ctx . Query ( "sort" ) {
case "oldest" :
orderBy = "created_unix ASC"
case "recentupdate" :
orderBy = "updated_unix DESC"
case "leastupdate" :
orderBy = "updated_unix ASC"
case "reversealphabetically" :
orderBy = "name DESC"
case "alphabetically" :
orderBy = "name ASC"
default :
orderBy = "created_unix DESC"
}
2015-09-01 07:04:35 -04:00
2017-02-11 12:00:01 +08:00
keyword := strings . Trim ( ctx . Query ( "q" ) , " " )
2016-03-11 15:33:12 -05:00
if len ( keyword ) == 0 {
2017-02-26 13:59:31 +08:00
repos , count , err = opts . Ranger ( & models . SearchRepoOptions {
2016-12-24 15:42:26 +01:00
Page : page ,
PageSize : opts . PageSize ,
Searcher : ctx . User ,
OrderBy : orderBy ,
2017-02-26 13:59:31 +08:00
Private : opts . Private ,
2016-12-24 15:42:26 +01:00
} )
2016-03-11 15:33:12 -05:00
if err != nil {
2016-03-15 14:23:12 -04:00
ctx . Handle ( 500 , "opts.Ranger" , err )
2016-03-11 15:33:12 -05:00
return
}
} else {
2016-12-01 18:52:57 +08:00
if isKeywordValid ( keyword ) {
repos , count , err = models . SearchRepositoryByName ( & models . SearchRepoOptions {
Keyword : keyword ,
2016-12-24 15:42:26 +01:00
OrderBy : orderBy ,
2016-12-01 18:52:57 +08:00
Private : opts . Private ,
Page : page ,
PageSize : opts . PageSize ,
2016-12-24 15:42:26 +01:00
Searcher : ctx . User ,
2016-12-01 18:52:57 +08:00
} )
if err != nil {
ctx . Handle ( 500 , "SearchRepositoryByName" , err )
return
}
2016-03-11 15:33:12 -05:00
}
2014-09-05 17:28:09 -04:00
}
2016-03-11 15:33:12 -05:00
ctx . Data [ "Keyword" ] = keyword
ctx . Data [ "Total" ] = count
2016-03-15 14:23:12 -04:00
ctx . Data [ "Page" ] = paginater . New ( int ( count ) , opts . PageSize , page , 5 )
2014-09-05 17:28:09 -04:00
ctx . Data [ "Repos" ] = repos
2016-03-15 14:23:12 -04:00
ctx . HTML ( 200 , opts . TplName )
2016-03-11 15:33:12 -05:00
}
2016-11-18 11:03:03 +08:00
// ExploreRepos render explore repositories page
2016-03-11 15:33:12 -05:00
func ExploreRepos ( ctx * context . Context ) {
ctx . Data [ "Title" ] = ctx . Tr ( "explore" )
ctx . Data [ "PageIsExplore" ] = true
ctx . Data [ "PageIsExploreRepositories" ] = true
2016-03-15 14:23:12 -04:00
RenderRepoSearch ( ctx , & RepoSearchOptions {
Ranger : models . GetRecentUpdatedRepositories ,
2016-07-24 00:23:54 +08:00
PageSize : setting . UI . ExplorePagingNum ,
2016-12-24 15:42:26 +01:00
Searcher : ctx . User ,
2017-02-26 13:59:31 +08:00
Private : ctx . User != nil && ctx . User . IsAdmin ,
2016-11-18 11:03:03 +08:00
TplName : tplExploreRepos ,
2016-03-15 14:23:12 -04:00
} )
}
2016-11-18 11:03:03 +08:00
// UserSearchOptions options when render search user page
2016-03-15 14:23:12 -04:00
type UserSearchOptions struct {
Type models . UserType
Counter func ( ) int64
2016-12-24 15:42:26 +01:00
Ranger func ( * models . SearchUserOptions ) ( [ ] * models . User , error )
2016-03-15 14:23:12 -04:00
PageSize int
TplName base . TplName
2016-03-11 15:33:12 -05:00
}
2016-11-18 11:03:03 +08:00
// RenderUserSearch render user search page
2016-03-15 14:23:12 -04:00
func RenderUserSearch ( ctx * context . Context , opts * UserSearchOptions ) {
2016-03-11 15:33:12 -05:00
page := ctx . QueryInt ( "page" )
if page <= 1 {
page = 1
}
var (
2016-12-24 15:42:26 +01:00
users [ ] * models . User
count int64
err error
orderBy string
2016-03-11 15:33:12 -05:00
)
2016-12-24 15:42:26 +01:00
ctx . Data [ "SortType" ] = ctx . Query ( "sort" )
switch ctx . Query ( "sort" ) {
case "oldest" :
orderBy = "id ASC"
case "recentupdate" :
orderBy = "updated_unix DESC"
case "leastupdate" :
orderBy = "updated_unix ASC"
case "reversealphabetically" :
orderBy = "name DESC"
case "alphabetically" :
orderBy = "name ASC"
default :
orderBy = "id DESC"
}
2017-02-11 12:00:01 +08:00
keyword := strings . Trim ( ctx . Query ( "q" ) , " " )
2016-03-11 15:33:12 -05:00
if len ( keyword ) == 0 {
2017-02-26 13:59:31 +08:00
users , err = opts . Ranger ( & models . SearchUserOptions {
OrderBy : orderBy ,
2016-12-24 15:42:26 +01:00
Page : page ,
PageSize : opts . PageSize ,
} )
2016-03-11 15:33:12 -05:00
if err != nil {
2016-03-15 14:23:12 -04:00
ctx . Handle ( 500 , "opts.Ranger" , err )
2016-03-11 15:33:12 -05:00
return
}
2016-03-15 14:23:12 -04:00
count = opts . Counter ( )
2016-03-11 15:33:12 -05:00
} else {
2016-12-01 18:52:57 +08:00
if isKeywordValid ( keyword ) {
users , count , err = models . SearchUserByName ( & models . SearchUserOptions {
Keyword : keyword ,
Type : opts . Type ,
2016-12-24 15:42:26 +01:00
OrderBy : orderBy ,
2016-12-01 18:52:57 +08:00
Page : page ,
PageSize : opts . PageSize ,
} )
if err != nil {
ctx . Handle ( 500 , "SearchUserByName" , err )
return
}
2016-03-11 15:33:12 -05:00
}
}
ctx . Data [ "Keyword" ] = keyword
ctx . Data [ "Total" ] = count
2016-03-15 14:23:12 -04:00
ctx . Data [ "Page" ] = paginater . New ( int ( count ) , opts . PageSize , page , 5 )
2016-03-11 15:33:12 -05:00
ctx . Data [ "Users" ] = users
2017-01-01 00:51:10 -02:00
ctx . Data [ "ShowUserEmail" ] = setting . UI . ShowUserEmail
2016-03-11 15:33:12 -05:00
2016-03-15 14:23:12 -04:00
ctx . HTML ( 200 , opts . TplName )
2016-03-11 15:33:12 -05:00
}
2016-11-18 11:03:03 +08:00
// ExploreUsers render explore users page
2016-03-11 15:33:12 -05:00
func ExploreUsers ( ctx * context . Context ) {
ctx . Data [ "Title" ] = ctx . Tr ( "explore" )
ctx . Data [ "PageIsExplore" ] = true
ctx . Data [ "PageIsExploreUsers" ] = true
2016-03-15 14:23:12 -04:00
RenderUserSearch ( ctx , & UserSearchOptions {
2016-11-07 17:53:22 +01:00
Type : models . UserTypeIndividual ,
2016-03-15 14:23:12 -04:00
Counter : models . CountUsers ,
Ranger : models . Users ,
2016-07-24 00:23:54 +08:00
PageSize : setting . UI . ExplorePagingNum ,
2016-11-18 11:03:03 +08:00
TplName : tplExploreUsers ,
2016-03-15 14:23:12 -04:00
} )
2014-09-05 17:28:09 -04:00
}
2016-11-18 11:03:03 +08:00
// ExploreOrganizations render explore organizations page
2016-09-01 23:08:05 +10:00
func ExploreOrganizations ( ctx * context . Context ) {
ctx . Data [ "Title" ] = ctx . Tr ( "explore" )
ctx . Data [ "PageIsExplore" ] = true
ctx . Data [ "PageIsExploreOrganizations" ] = true
RenderUserSearch ( ctx , & UserSearchOptions {
2016-11-07 17:53:22 +01:00
Type : models . UserTypeOrganization ,
2016-09-01 23:08:05 +10:00
Counter : models . CountOrganizations ,
Ranger : models . Organizations ,
PageSize : setting . UI . ExplorePagingNum ,
2016-11-18 11:03:03 +08:00
TplName : tplExploreOrganizations ,
2016-09-01 23:08:05 +10:00
} )
}
2016-11-18 11:03:03 +08:00
// NotFound render 404 page
2016-03-11 11:56:52 -05:00
func NotFound ( ctx * context . Context ) {
2014-03-23 08:40:40 -04:00
ctx . Data [ "Title" ] = "Page Not Found"
2014-03-23 13:48:01 +08:00
ctx . Handle ( 404 , "home.NotFound" , nil )
}