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