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 (
2014-09-06 01:28:09 +04:00
"fmt"
2015-09-01 14:04:35 +03:00
"github.com/Unknwon/paginater"
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"
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"
// 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 {
2014-09-20 04:11:34 +04: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
2016-11-18 06:03:03 +03:00
// RepoSearchOptions when calling search repositories
2016-03-15 21:23:12 +03:00
type RepoSearchOptions struct {
2016-07-24 09:32:46 +03:00
Counter func ( bool ) int64
2016-03-15 21:23:12 +03:00
Ranger func ( int , int ) ( [ ] * models . Repository , error )
Private bool
PageSize int
OrderBy string
TplName base . TplName
}
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 (
repos [ ] * models . Repository
count int64
err error
)
2015-09-01 14:04:35 +03:00
2016-03-11 23:33:12 +03:00
keyword := ctx . Query ( "q" )
if len ( keyword ) == 0 {
2016-03-15 21:23:12 +03:00
repos , err = opts . Ranger ( page , 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-07-24 09:32:46 +03:00
count = opts . Counter ( opts . Private )
2016-03-11 23:33:12 +03:00
} else {
repos , count , err = models . SearchRepositoryByName ( & models . SearchRepoOptions {
Keyword : keyword ,
2016-03-15 21:23:12 +03:00
OrderBy : opts . OrderBy ,
Private : opts . Private ,
2016-03-11 23:33:12 +03:00
Page : page ,
2016-03-15 21:23:12 +03:00
PageSize : opts . PageSize ,
2016-03-11 23:33:12 +03:00
} )
if err != nil {
ctx . Handle ( 500 , "SearchRepositoryByName" , err )
return
}
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 )
2016-03-11 23:33:12 +03:00
2014-09-06 01:28:09 +04:00
for _ , repo := range repos {
if err = repo . GetOwner ( ) ; err != nil {
2015-08-08 17:43:14 +03:00
ctx . Handle ( 500 , "GetOwner" , fmt . Errorf ( "%d: %v" , repo . ID , err ) )
2014-09-06 01:28:09 +04:00
return
}
}
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 {
2016-07-24 09:32:46 +03:00
Counter : models . CountRepositories ,
2016-03-15 21:23:12 +03:00
Ranger : models . GetRecentUpdatedRepositories ,
2016-07-23 19:23:54 +03:00
PageSize : setting . UI . ExplorePagingNum ,
2016-03-15 21:23:12 +03:00
OrderBy : "updated_unix DESC" ,
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
Ranger func ( int , int ) ( [ ] * models . User , error )
PageSize int
OrderBy string
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 (
users [ ] * models . User
count int64
err error
)
keyword := ctx . Query ( "q" )
if len ( keyword ) == 0 {
2016-03-15 21:23:12 +03:00
users , err = opts . Ranger ( page , 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 {
users , count , err = models . SearchUserByName ( & models . SearchUserOptions {
Keyword : keyword ,
2016-03-15 21:23:12 +03:00
Type : opts . Type ,
OrderBy : opts . OrderBy ,
2016-03-11 23:33:12 +03:00
Page : page ,
2016-03-15 21:23:12 +03:00
PageSize : opts . PageSize ,
2016-03-11 23:33:12 +03:00
} )
if err != nil {
ctx . Handle ( 500 , "SearchUserByName" , err )
return
}
}
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
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-10 11:10:35 +03:00
OrderBy : "name ASC" ,
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-10 11:10:35 +03:00
OrderBy : "name ASC" ,
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 )
}