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