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"
2014-09-06 01:28:09 +04:00
"github.com/gogits/gogs/models"
2014-06-22 21:14:03 +04:00
"github.com/gogits/gogs/modules/base"
2016-03-11 19:56:52 +03:00
"github.com/gogits/gogs/modules/context"
2014-05-26 04:11:25 +04:00
"github.com/gogits/gogs/modules/setting"
2014-03-08 01:05:18 +04:00
"github.com/gogits/gogs/routers/user"
2014-02-12 23:54:09 +04:00
)
2014-06-22 21:14:03 +04:00
const (
2016-09-01 16:08:05 +03:00
HOME base . TplName = "home"
EXPLORE_REPOS base . TplName = "explore/repos"
EXPLORE_USERS base . TplName = "explore/users"
EXPLORE_ORGANIZATIONS base . TplName = "explore/organizations"
2014-06-22 21:14:03 +04:00
)
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" )
ctx . HTML ( 200 , user . ACTIVATE )
} 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
2014-06-22 21:14:03 +04:00
ctx . HTML ( 200 , HOME )
2014-02-12 21:49:46 +04:00
}
2014-03-16 11:41:22 +04:00
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
}
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
}
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" ,
TplName : EXPLORE_REPOS ,
} )
}
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-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
}
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 {
Type : models . USER_TYPE_INDIVIDUAL ,
Counter : models . CountUsers ,
Ranger : models . Users ,
2016-07-23 19:23:54 +03:00
PageSize : setting . UI . ExplorePagingNum ,
2016-03-15 21:23:12 +03:00
OrderBy : "updated_unix DESC" ,
TplName : EXPLORE_USERS ,
} )
2014-09-06 01:28:09 +04:00
}
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 {
Type : models . USER_TYPE_ORGANIZATION ,
Counter : models . CountOrganizations ,
Ranger : models . Organizations ,
PageSize : setting . UI . ExplorePagingNum ,
OrderBy : "updated_unix DESC" ,
TplName : EXPLORE_ORGANIZATIONS ,
} )
}
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 )
}