2014-02-12 23:19:46 +05:30
|
|
|
// 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-13 01:24:09 +05:30
|
|
|
import (
|
2014-09-06 02:58:09 +05:30
|
|
|
"fmt"
|
|
|
|
|
2015-09-01 16:34:35 +05:30
|
|
|
"github.com/Unknwon/paginater"
|
|
|
|
|
2016-11-03 17:59:56 +05:30
|
|
|
"github.com/go-gitea/gitea/models"
|
|
|
|
"github.com/go-gitea/gitea/modules/base"
|
|
|
|
"github.com/go-gitea/gitea/modules/context"
|
|
|
|
"github.com/go-gitea/gitea/modules/setting"
|
|
|
|
"github.com/go-gitea/gitea/routers/user"
|
2014-02-13 01:24:09 +05:30
|
|
|
)
|
|
|
|
|
2014-06-22 22:44:03 +05:30
|
|
|
const (
|
2016-09-01 18:38:05 +05:30
|
|
|
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 22:44:03 +05:30
|
|
|
)
|
|
|
|
|
2016-03-11 22:26:52 +05:30
|
|
|
func Home(ctx *context.Context) {
|
2014-03-15 20:04:33 +05:30
|
|
|
if ctx.IsSigned {
|
2014-08-10 09:32:00 +05:30
|
|
|
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 19:03:17 +05:30
|
|
|
return
|
|
|
|
}
|
2014-03-24 22:13:51 +05:30
|
|
|
|
|
|
|
// Check auto-login.
|
2014-07-26 09:54:27 +05:30
|
|
|
uname := ctx.GetCookie(setting.CookieUserName)
|
|
|
|
if len(uname) != 0 {
|
2014-09-20 05:41:34 +05:30
|
|
|
ctx.Redirect(setting.AppSubUrl + "/user/login")
|
2014-03-24 22:13:51 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-25 00:58:31 +05:30
|
|
|
ctx.Data["PageIsHome"] = true
|
2014-06-22 22:44:03 +05:30
|
|
|
ctx.HTML(200, HOME)
|
2014-02-12 23:19:46 +05:30
|
|
|
}
|
2014-03-16 13:11:22 +05:30
|
|
|
|
2016-03-15 23:53:12 +05:30
|
|
|
type RepoSearchOptions struct {
|
2016-07-24 12:02:46 +05:30
|
|
|
Counter func(bool) int64
|
2016-03-15 23:53:12 +05:30
|
|
|
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 16:34:35 +05:30
|
|
|
page := ctx.QueryInt("page")
|
2016-07-24 12:02:46 +05:30
|
|
|
if page <= 0 {
|
2015-09-01 16:34:35 +05:30
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
|
2016-03-12 02:03:12 +05:30
|
|
|
var (
|
|
|
|
repos []*models.Repository
|
|
|
|
count int64
|
|
|
|
err error
|
|
|
|
)
|
2015-09-01 16:34:35 +05:30
|
|
|
|
2016-03-12 02:03:12 +05:30
|
|
|
keyword := ctx.Query("q")
|
|
|
|
if len(keyword) == 0 {
|
2016-03-15 23:53:12 +05:30
|
|
|
repos, err = opts.Ranger(page, opts.PageSize)
|
2016-03-12 02:03:12 +05:30
|
|
|
if err != nil {
|
2016-03-15 23:53:12 +05:30
|
|
|
ctx.Handle(500, "opts.Ranger", err)
|
2016-03-12 02:03:12 +05:30
|
|
|
return
|
|
|
|
}
|
2016-07-24 12:02:46 +05:30
|
|
|
count = opts.Counter(opts.Private)
|
2016-03-12 02:03:12 +05:30
|
|
|
} else {
|
|
|
|
repos, count, err = models.SearchRepositoryByName(&models.SearchRepoOptions{
|
|
|
|
Keyword: keyword,
|
2016-03-15 23:53:12 +05:30
|
|
|
OrderBy: opts.OrderBy,
|
|
|
|
Private: opts.Private,
|
2016-03-12 02:03:12 +05:30
|
|
|
Page: page,
|
2016-03-15 23:53:12 +05:30
|
|
|
PageSize: opts.PageSize,
|
2016-03-12 02:03:12 +05:30
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "SearchRepositoryByName", err)
|
|
|
|
return
|
|
|
|
}
|
2014-09-06 02:58:09 +05:30
|
|
|
}
|
2016-03-12 02:03:12 +05:30
|
|
|
ctx.Data["Keyword"] = keyword
|
|
|
|
ctx.Data["Total"] = count
|
2016-03-15 23:53:12 +05:30
|
|
|
ctx.Data["Page"] = paginater.New(int(count), opts.PageSize, page, 5)
|
2016-03-12 02:03:12 +05:30
|
|
|
|
2014-09-06 02:58:09 +05:30
|
|
|
for _, repo := range repos {
|
|
|
|
if err = repo.GetOwner(); err != nil {
|
2015-08-08 20:13:14 +05:30
|
|
|
ctx.Handle(500, "GetOwner", fmt.Errorf("%d: %v", repo.ID, err))
|
2014-09-06 02:58:09 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Data["Repos"] = repos
|
|
|
|
|
2016-03-15 23:53:12 +05:30
|
|
|
ctx.HTML(200, opts.TplName)
|
2016-03-12 02:03:12 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
func ExploreRepos(ctx *context.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("explore")
|
|
|
|
ctx.Data["PageIsExplore"] = true
|
|
|
|
ctx.Data["PageIsExploreRepositories"] = true
|
|
|
|
|
2016-03-15 23:53:12 +05:30
|
|
|
RenderRepoSearch(ctx, &RepoSearchOptions{
|
2016-07-24 12:02:46 +05:30
|
|
|
Counter: models.CountRepositories,
|
2016-03-15 23:53:12 +05:30
|
|
|
Ranger: models.GetRecentUpdatedRepositories,
|
2016-07-23 21:53:54 +05:30
|
|
|
PageSize: setting.UI.ExplorePagingNum,
|
2016-03-15 23:53:12 +05:30
|
|
|
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-12 02:03:12 +05:30
|
|
|
}
|
|
|
|
|
2016-03-15 23:53:12 +05:30
|
|
|
func RenderUserSearch(ctx *context.Context, opts *UserSearchOptions) {
|
2016-03-12 02:03:12 +05:30
|
|
|
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 23:53:12 +05:30
|
|
|
users, err = opts.Ranger(page, opts.PageSize)
|
2016-03-12 02:03:12 +05:30
|
|
|
if err != nil {
|
2016-03-15 23:53:12 +05:30
|
|
|
ctx.Handle(500, "opts.Ranger", err)
|
2016-03-12 02:03:12 +05:30
|
|
|
return
|
|
|
|
}
|
2016-03-15 23:53:12 +05:30
|
|
|
count = opts.Counter()
|
2016-03-12 02:03:12 +05:30
|
|
|
} else {
|
|
|
|
users, count, err = models.SearchUserByName(&models.SearchUserOptions{
|
|
|
|
Keyword: keyword,
|
2016-03-15 23:53:12 +05:30
|
|
|
Type: opts.Type,
|
|
|
|
OrderBy: opts.OrderBy,
|
2016-03-12 02:03:12 +05:30
|
|
|
Page: page,
|
2016-03-15 23:53:12 +05:30
|
|
|
PageSize: opts.PageSize,
|
2016-03-12 02:03:12 +05:30
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "SearchUserByName", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Data["Keyword"] = keyword
|
|
|
|
ctx.Data["Total"] = count
|
2016-03-15 23:53:12 +05:30
|
|
|
ctx.Data["Page"] = paginater.New(int(count), opts.PageSize, page, 5)
|
2016-03-12 02:03:12 +05:30
|
|
|
ctx.Data["Users"] = users
|
|
|
|
|
2016-03-15 23:53:12 +05:30
|
|
|
ctx.HTML(200, opts.TplName)
|
2016-03-12 02:03:12 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
func ExploreUsers(ctx *context.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("explore")
|
|
|
|
ctx.Data["PageIsExplore"] = true
|
|
|
|
ctx.Data["PageIsExploreUsers"] = true
|
|
|
|
|
2016-03-15 23:53:12 +05:30
|
|
|
RenderUserSearch(ctx, &UserSearchOptions{
|
|
|
|
Type: models.USER_TYPE_INDIVIDUAL,
|
|
|
|
Counter: models.CountUsers,
|
|
|
|
Ranger: models.Users,
|
2016-07-23 21:53:54 +05:30
|
|
|
PageSize: setting.UI.ExplorePagingNum,
|
2016-03-15 23:53:12 +05:30
|
|
|
OrderBy: "updated_unix DESC",
|
|
|
|
TplName: EXPLORE_USERS,
|
|
|
|
})
|
2014-09-06 02:58:09 +05:30
|
|
|
}
|
|
|
|
|
2016-09-01 18:38:05 +05:30
|
|
|
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 22:26:52 +05:30
|
|
|
func NotFound(ctx *context.Context) {
|
2014-03-23 18:10:40 +05:30
|
|
|
ctx.Data["Title"] = "Page Not Found"
|
2014-03-23 11:18:01 +05:30
|
|
|
ctx.Handle(404, "home.NotFound", nil)
|
|
|
|
}
|