2014-02-12 10:49:46 -07:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2019-02-18 09:00:27 -07:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2014-02-12 10:49:46 -07:00
|
|
|
// 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 12:54:09 -07:00
|
|
|
import (
|
2017-02-10 21:00:01 -07:00
|
|
|
"bytes"
|
|
|
|
"strings"
|
2014-09-05 15:28:09 -06:00
|
|
|
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-12-23 05:31:16 -07:00
|
|
|
code_indexer "code.gitea.io/gitea/modules/indexer/code"
|
2019-02-19 00:19:28 -07:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2020-01-12 08:43:44 -07:00
|
|
|
"code.gitea.io/gitea/modules/structs"
|
2017-10-24 11:36:19 -06:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/routers/user"
|
2014-02-12 12:54:09 -07:00
|
|
|
)
|
|
|
|
|
2014-06-22 11:14:03 -06:00
|
|
|
const (
|
2016-11-17 20:03:03 -07: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"
|
2018-03-16 08:04:33 -06:00
|
|
|
// tplExploreCode explore code page template
|
|
|
|
tplExploreCode base.TplName = "explore/code"
|
2014-06-22 11:14:03 -06:00
|
|
|
)
|
|
|
|
|
2016-11-17 20:03:03 -07:00
|
|
|
// Home render home page
|
2016-03-11 09:56:52 -07:00
|
|
|
func Home(ctx *context.Context) {
|
2014-03-15 08:34:33 -06:00
|
|
|
if ctx.IsSigned {
|
2014-08-09 22:02:00 -06:00
|
|
|
if !ctx.User.IsActive && setting.Service.RegisterEmailConfirm {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.active_your_account")
|
2016-11-17 20:03:03 -07:00
|
|
|
ctx.HTML(200, user.TplActivate)
|
2019-02-19 00:19:28 -07:00
|
|
|
} else if !ctx.User.IsActive || ctx.User.ProhibitLogin {
|
|
|
|
log.Info("Failed authentication attempt for %s from %s", ctx.User.Name, ctx.RemoteAddr())
|
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.prohibit_login")
|
|
|
|
ctx.HTML(200, "user/auth/prohibit_login")
|
2019-02-28 01:01:42 -07:00
|
|
|
} else if ctx.User.MustChangePassword {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("auth.must_change_password")
|
|
|
|
ctx.Data["ChangePasscodeLink"] = setting.AppSubURL + "/user/change_password"
|
2019-12-23 17:11:12 -07:00
|
|
|
ctx.SetCookie("redirect_to", setting.AppSubURL+ctx.Req.URL.RequestURI(), 0, setting.AppSubURL)
|
2019-02-28 01:01:42 -07:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/change_password")
|
2014-08-09 22:02:00 -06:00
|
|
|
} else {
|
|
|
|
user.Dashboard(ctx)
|
|
|
|
}
|
2014-03-06 06:33:17 -07:00
|
|
|
return
|
2018-06-14 21:42:46 -06:00
|
|
|
// Check non-logged users landing page.
|
|
|
|
} else if setting.LandingPageURL != setting.LandingPageHome {
|
|
|
|
ctx.Redirect(setting.AppSubURL + string(setting.LandingPageURL))
|
|
|
|
return
|
2014-03-06 06:33:17 -07:00
|
|
|
}
|
2014-03-24 10:43:51 -06:00
|
|
|
|
|
|
|
// Check auto-login.
|
2014-07-25 22:24:27 -06:00
|
|
|
uname := ctx.GetCookie(setting.CookieUserName)
|
|
|
|
if len(uname) != 0 {
|
2016-11-27 03:14:25 -07:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/login")
|
2014-03-24 10:43:51 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-24 13:28:31 -06:00
|
|
|
ctx.Data["PageIsHome"] = true
|
2018-03-16 08:04:33 -06:00
|
|
|
ctx.Data["IsRepoIndexerEnabled"] = setting.Indexer.RepoIndexerEnabled
|
2016-11-17 20:03:03 -07:00
|
|
|
ctx.HTML(200, tplHome)
|
2014-02-12 10:49:46 -07:00
|
|
|
}
|
2014-03-16 01:41:22 -06:00
|
|
|
|
2016-11-17 20:03:03 -07:00
|
|
|
// RepoSearchOptions when calling search repositories
|
2016-03-15 12:23:12 -06:00
|
|
|
type RepoSearchOptions struct {
|
2020-01-13 10:33:46 -07:00
|
|
|
OwnerID int64
|
|
|
|
Private bool
|
|
|
|
Restricted bool
|
|
|
|
PageSize int
|
|
|
|
TplName base.TplName
|
2016-03-15 12:23:12 -06:00
|
|
|
}
|
|
|
|
|
2016-12-01 03:52:57 -07:00
|
|
|
var (
|
|
|
|
nullByte = []byte{0x00}
|
|
|
|
)
|
|
|
|
|
|
|
|
func isKeywordValid(keyword string) bool {
|
|
|
|
return !bytes.Contains([]byte(keyword), nullByte)
|
|
|
|
}
|
|
|
|
|
2016-11-17 20:03:03 -07:00
|
|
|
// RenderRepoSearch render repositories search page
|
2016-03-15 12:23:12 -06:00
|
|
|
func RenderRepoSearch(ctx *context.Context, opts *RepoSearchOptions) {
|
2015-09-01 05:04:35 -06:00
|
|
|
page := ctx.QueryInt("page")
|
2016-07-24 00:32:46 -06:00
|
|
|
if page <= 0 {
|
2015-09-01 05:04:35 -06:00
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
|
2016-03-11 13:33:12 -07:00
|
|
|
var (
|
2016-12-24 07:42:26 -07:00
|
|
|
repos []*models.Repository
|
|
|
|
count int64
|
|
|
|
err error
|
2017-09-22 06:53:21 -06:00
|
|
|
orderBy models.SearchOrderBy
|
2016-03-11 13:33:12 -07:00
|
|
|
)
|
2016-12-24 07:42:26 -07:00
|
|
|
|
2017-10-04 23:02:43 -06:00
|
|
|
ctx.Data["SortType"] = ctx.Query("sort")
|
2016-12-24 07:42:26 -07:00
|
|
|
switch ctx.Query("sort") {
|
2017-10-04 23:02:43 -06:00
|
|
|
case "newest":
|
|
|
|
orderBy = models.SearchOrderByNewest
|
2016-12-24 07:42:26 -07:00
|
|
|
case "oldest":
|
2017-09-22 06:53:21 -06:00
|
|
|
orderBy = models.SearchOrderByOldest
|
2016-12-24 07:42:26 -07:00
|
|
|
case "recentupdate":
|
2017-09-22 06:53:21 -06:00
|
|
|
orderBy = models.SearchOrderByRecentUpdated
|
2016-12-24 07:42:26 -07:00
|
|
|
case "leastupdate":
|
2017-09-22 06:53:21 -06:00
|
|
|
orderBy = models.SearchOrderByLeastUpdated
|
2016-12-24 07:42:26 -07:00
|
|
|
case "reversealphabetically":
|
2017-09-22 06:53:21 -06:00
|
|
|
orderBy = models.SearchOrderByAlphabeticallyReverse
|
2016-12-24 07:42:26 -07:00
|
|
|
case "alphabetically":
|
2017-09-22 06:53:21 -06:00
|
|
|
orderBy = models.SearchOrderByAlphabetically
|
2017-05-02 02:34:28 -06:00
|
|
|
case "reversesize":
|
2017-09-22 06:53:21 -06:00
|
|
|
orderBy = models.SearchOrderBySizeReverse
|
2017-05-02 02:34:28 -06:00
|
|
|
case "size":
|
2017-09-22 06:53:21 -06:00
|
|
|
orderBy = models.SearchOrderBySize
|
2018-05-23 19:03:42 -06:00
|
|
|
case "moststars":
|
|
|
|
orderBy = models.SearchOrderByStarsReverse
|
|
|
|
case "feweststars":
|
|
|
|
orderBy = models.SearchOrderByStars
|
|
|
|
case "mostforks":
|
|
|
|
orderBy = models.SearchOrderByForksReverse
|
|
|
|
case "fewestforks":
|
|
|
|
orderBy = models.SearchOrderByForks
|
2016-12-24 07:42:26 -07:00
|
|
|
default:
|
2017-10-04 23:02:43 -06:00
|
|
|
ctx.Data["SortType"] = "recentupdate"
|
|
|
|
orderBy = models.SearchOrderByRecentUpdated
|
2016-12-24 07:42:26 -07:00
|
|
|
}
|
2015-09-01 05:04:35 -06:00
|
|
|
|
2017-02-10 21:00:01 -07:00
|
|
|
keyword := strings.Trim(ctx.Query("q"), " ")
|
2018-09-12 20:33:48 -06:00
|
|
|
topicOnly := ctx.QueryBool("topic")
|
2019-11-20 02:07:09 -07:00
|
|
|
ctx.Data["TopicOnly"] = topicOnly
|
2017-10-10 14:37:18 -06:00
|
|
|
|
2019-08-25 11:06:36 -06:00
|
|
|
repos, count, err = models.SearchRepository(&models.SearchRepoOptions{
|
2020-01-24 12:00:29 -07:00
|
|
|
ListOptions: models.ListOptions{
|
|
|
|
Page: page,
|
|
|
|
PageSize: opts.PageSize,
|
|
|
|
},
|
2020-01-13 10:33:46 -07:00
|
|
|
Actor: ctx.User,
|
2019-08-25 11:06:36 -06:00
|
|
|
OrderBy: orderBy,
|
|
|
|
Private: opts.Private,
|
|
|
|
Keyword: keyword,
|
|
|
|
OwnerID: opts.OwnerID,
|
|
|
|
AllPublic: true,
|
2020-01-05 11:48:47 -07:00
|
|
|
AllLimited: true,
|
2019-08-25 11:06:36 -06:00
|
|
|
TopicOnly: topicOnly,
|
|
|
|
IncludeDescription: setting.UI.SearchRepoDescription,
|
2017-10-10 14:37:18 -06:00
|
|
|
})
|
|
|
|
if err != nil {
|
2019-08-25 11:06:36 -06:00
|
|
|
ctx.ServerError("SearchRepository", err)
|
2017-10-10 14:37:18 -06:00
|
|
|
return
|
2014-09-05 15:28:09 -06:00
|
|
|
}
|
2016-03-11 13:33:12 -07:00
|
|
|
ctx.Data["Keyword"] = keyword
|
|
|
|
ctx.Data["Total"] = count
|
2014-09-05 15:28:09 -06:00
|
|
|
ctx.Data["Repos"] = repos
|
2018-03-16 08:04:33 -06:00
|
|
|
ctx.Data["IsRepoIndexerEnabled"] = setting.Indexer.RepoIndexerEnabled
|
2014-09-05 15:28:09 -06:00
|
|
|
|
2019-04-19 22:15:19 -06:00
|
|
|
pager := context.NewPagination(int(count), opts.PageSize, page, 5)
|
|
|
|
pager.SetDefaultParams(ctx)
|
2019-11-20 02:07:09 -07:00
|
|
|
pager.AddParam(ctx, "topic", "TopicOnly")
|
2019-04-19 22:15:19 -06:00
|
|
|
ctx.Data["Page"] = pager
|
|
|
|
|
2016-03-15 12:23:12 -06:00
|
|
|
ctx.HTML(200, opts.TplName)
|
2016-03-11 13:33:12 -07:00
|
|
|
}
|
|
|
|
|
2016-11-17 20:03:03 -07:00
|
|
|
// ExploreRepos render explore repositories page
|
2016-03-11 13:33:12 -07:00
|
|
|
func ExploreRepos(ctx *context.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("explore")
|
|
|
|
ctx.Data["PageIsExplore"] = true
|
|
|
|
ctx.Data["PageIsExploreRepositories"] = true
|
2018-03-16 08:04:33 -06:00
|
|
|
ctx.Data["IsRepoIndexerEnabled"] = setting.Indexer.RepoIndexerEnabled
|
2016-03-11 13:33:12 -07:00
|
|
|
|
2017-10-10 14:37:18 -06:00
|
|
|
var ownerID int64
|
|
|
|
if ctx.User != nil && !ctx.User.IsAdmin {
|
|
|
|
ownerID = ctx.User.ID
|
|
|
|
}
|
|
|
|
|
2016-03-15 12:23:12 -06:00
|
|
|
RenderRepoSearch(ctx, &RepoSearchOptions{
|
2016-07-23 10:23:54 -06:00
|
|
|
PageSize: setting.UI.ExplorePagingNum,
|
2017-10-10 14:37:18 -06:00
|
|
|
OwnerID: ownerID,
|
|
|
|
Private: ctx.User != nil,
|
2016-11-17 20:03:03 -07:00
|
|
|
TplName: tplExploreRepos,
|
2016-03-15 12:23:12 -06:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-11-17 20:03:03 -07:00
|
|
|
// RenderUserSearch render user search page
|
2017-10-24 11:36:19 -06:00
|
|
|
func RenderUserSearch(ctx *context.Context, opts *models.SearchUserOptions, tplName base.TplName) {
|
|
|
|
opts.Page = ctx.QueryInt("page")
|
|
|
|
if opts.Page <= 1 {
|
|
|
|
opts.Page = 1
|
2016-03-11 13:33:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2016-12-24 07:42:26 -07:00
|
|
|
users []*models.User
|
|
|
|
count int64
|
|
|
|
err error
|
2018-05-23 19:03:42 -06:00
|
|
|
orderBy models.SearchOrderBy
|
2016-03-11 13:33:12 -07:00
|
|
|
)
|
|
|
|
|
2016-12-24 07:42:26 -07:00
|
|
|
ctx.Data["SortType"] = ctx.Query("sort")
|
|
|
|
switch ctx.Query("sort") {
|
2017-10-04 23:02:43 -06:00
|
|
|
case "newest":
|
2018-05-23 19:03:42 -06:00
|
|
|
orderBy = models.SearchOrderByIDReverse
|
2016-12-24 07:42:26 -07:00
|
|
|
case "oldest":
|
2018-05-23 19:03:42 -06:00
|
|
|
orderBy = models.SearchOrderByID
|
2016-12-24 07:42:26 -07:00
|
|
|
case "recentupdate":
|
2018-05-23 19:03:42 -06:00
|
|
|
orderBy = models.SearchOrderByRecentUpdated
|
2016-12-24 07:42:26 -07:00
|
|
|
case "leastupdate":
|
2018-05-23 19:03:42 -06:00
|
|
|
orderBy = models.SearchOrderByLeastUpdated
|
2016-12-24 07:42:26 -07:00
|
|
|
case "reversealphabetically":
|
2018-05-23 19:03:42 -06:00
|
|
|
orderBy = models.SearchOrderByAlphabeticallyReverse
|
2016-12-24 07:42:26 -07:00
|
|
|
case "alphabetically":
|
2018-05-23 19:03:42 -06:00
|
|
|
orderBy = models.SearchOrderByAlphabetically
|
2016-12-24 07:42:26 -07:00
|
|
|
default:
|
2017-10-04 23:02:43 -06:00
|
|
|
ctx.Data["SortType"] = "alphabetically"
|
2018-05-23 19:03:42 -06:00
|
|
|
orderBy = models.SearchOrderByAlphabetically
|
2016-12-24 07:42:26 -07:00
|
|
|
}
|
|
|
|
|
2017-10-24 11:36:19 -06:00
|
|
|
opts.Keyword = strings.Trim(ctx.Query("q"), " ")
|
|
|
|
opts.OrderBy = orderBy
|
|
|
|
if len(opts.Keyword) == 0 || isKeywordValid(opts.Keyword) {
|
|
|
|
users, count, err = models.SearchUsers(opts)
|
2016-03-11 13:33:12 -07:00
|
|
|
if err != nil {
|
2018-01-10 14:34:17 -07:00
|
|
|
ctx.ServerError("SearchUsers", err)
|
2016-03-11 13:33:12 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2017-10-24 11:36:19 -06:00
|
|
|
ctx.Data["Keyword"] = opts.Keyword
|
2016-03-11 13:33:12 -07:00
|
|
|
ctx.Data["Total"] = count
|
|
|
|
ctx.Data["Users"] = users
|
2016-12-31 19:51:10 -07:00
|
|
|
ctx.Data["ShowUserEmail"] = setting.UI.ShowUserEmail
|
2018-03-16 08:04:33 -06:00
|
|
|
ctx.Data["IsRepoIndexerEnabled"] = setting.Indexer.RepoIndexerEnabled
|
2016-03-11 13:33:12 -07:00
|
|
|
|
2019-04-19 22:15:19 -06:00
|
|
|
pager := context.NewPagination(int(count), opts.PageSize, opts.Page, 5)
|
|
|
|
pager.SetDefaultParams(ctx)
|
|
|
|
ctx.Data["Page"] = pager
|
|
|
|
|
2017-10-24 11:36:19 -06:00
|
|
|
ctx.HTML(200, tplName)
|
2016-03-11 13:33:12 -07:00
|
|
|
}
|
|
|
|
|
2016-11-17 20:03:03 -07:00
|
|
|
// ExploreUsers render explore users page
|
2016-03-11 13:33:12 -07:00
|
|
|
func ExploreUsers(ctx *context.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("explore")
|
|
|
|
ctx.Data["PageIsExplore"] = true
|
|
|
|
ctx.Data["PageIsExploreUsers"] = true
|
2018-03-16 08:04:33 -06:00
|
|
|
ctx.Data["IsRepoIndexerEnabled"] = setting.Indexer.RepoIndexerEnabled
|
2016-03-11 13:33:12 -07:00
|
|
|
|
2017-10-24 11:36:19 -06:00
|
|
|
RenderUserSearch(ctx, &models.SearchUserOptions{
|
2020-05-18 00:21:00 -06:00
|
|
|
Actor: ctx.User,
|
2020-01-24 12:00:29 -07:00
|
|
|
Type: models.UserTypeIndividual,
|
|
|
|
ListOptions: models.ListOptions{PageSize: setting.UI.ExplorePagingNum},
|
|
|
|
IsActive: util.OptionalBoolTrue,
|
|
|
|
Visible: []structs.VisibleType{structs.VisibleTypePublic, structs.VisibleTypeLimited, structs.VisibleTypePrivate},
|
2017-10-24 11:36:19 -06:00
|
|
|
}, tplExploreUsers)
|
2014-09-05 15:28:09 -06:00
|
|
|
}
|
|
|
|
|
2016-11-17 20:03:03 -07:00
|
|
|
// ExploreOrganizations render explore organizations page
|
2016-09-01 07:08:05 -06:00
|
|
|
func ExploreOrganizations(ctx *context.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("explore")
|
|
|
|
ctx.Data["PageIsExplore"] = true
|
|
|
|
ctx.Data["PageIsExploreOrganizations"] = true
|
2018-03-16 08:04:33 -06:00
|
|
|
ctx.Data["IsRepoIndexerEnabled"] = setting.Indexer.RepoIndexerEnabled
|
2016-09-01 07:08:05 -06:00
|
|
|
|
2020-01-13 10:33:46 -07:00
|
|
|
visibleTypes := []structs.VisibleType{structs.VisibleTypePublic}
|
|
|
|
if ctx.User != nil {
|
|
|
|
visibleTypes = append(visibleTypes, structs.VisibleTypeLimited, structs.VisibleTypePrivate)
|
2019-02-18 09:00:27 -07:00
|
|
|
}
|
|
|
|
|
2020-01-13 10:33:46 -07:00
|
|
|
RenderUserSearch(ctx, &models.SearchUserOptions{
|
2020-05-18 00:21:00 -06:00
|
|
|
Actor: ctx.User,
|
2020-01-24 12:00:29 -07:00
|
|
|
Type: models.UserTypeOrganization,
|
|
|
|
ListOptions: models.ListOptions{PageSize: setting.UI.ExplorePagingNum},
|
|
|
|
Visible: visibleTypes,
|
2020-01-13 10:33:46 -07:00
|
|
|
}, tplExploreOrganizations)
|
2016-09-01 07:08:05 -06:00
|
|
|
}
|
|
|
|
|
2018-03-16 08:04:33 -06:00
|
|
|
// ExploreCode render explore code page
|
|
|
|
func ExploreCode(ctx *context.Context) {
|
|
|
|
if !setting.Indexer.RepoIndexerEnabled {
|
2019-10-23 15:04:22 -06:00
|
|
|
ctx.Redirect(setting.AppSubURL+"/explore", 302)
|
2018-03-16 08:04:33 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["IsRepoIndexerEnabled"] = setting.Indexer.RepoIndexerEnabled
|
|
|
|
ctx.Data["Title"] = ctx.Tr("explore")
|
|
|
|
ctx.Data["PageIsExplore"] = true
|
|
|
|
ctx.Data["PageIsExploreCode"] = true
|
|
|
|
|
2020-02-20 12:53:55 -07:00
|
|
|
language := strings.TrimSpace(ctx.Query("l"))
|
2018-03-16 08:04:33 -06:00
|
|
|
keyword := strings.TrimSpace(ctx.Query("q"))
|
|
|
|
page := ctx.QueryInt("page")
|
|
|
|
if page <= 0 {
|
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
repoIDs []int64
|
|
|
|
err error
|
|
|
|
isAdmin bool
|
|
|
|
userID int64
|
|
|
|
)
|
|
|
|
if ctx.User != nil {
|
|
|
|
userID = ctx.User.ID
|
|
|
|
isAdmin = ctx.User.IsAdmin
|
|
|
|
}
|
|
|
|
|
|
|
|
// guest user or non-admin user
|
|
|
|
if ctx.User == nil || !isAdmin {
|
2020-01-13 10:33:46 -07:00
|
|
|
repoIDs, err = models.FindUserAccessibleRepoIDs(ctx.User)
|
2018-03-16 08:04:33 -06:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("SearchResults", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2020-02-20 12:53:55 -07:00
|
|
|
total int
|
|
|
|
searchResults []*code_indexer.Result
|
|
|
|
searchResultLanguages []*code_indexer.SearchResultLanguages
|
2018-03-16 08:04:33 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
// if non-admin login user, we need check UnitTypeCode at first
|
|
|
|
if ctx.User != nil && len(repoIDs) > 0 {
|
|
|
|
repoMaps, err := models.GetRepositoriesMapByIDs(repoIDs)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("SearchResults", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var rightRepoMap = make(map[int64]*models.Repository, len(repoMaps))
|
|
|
|
repoIDs = make([]int64, 0, len(repoMaps))
|
|
|
|
for id, repo := range repoMaps {
|
|
|
|
if repo.CheckUnitUser(userID, isAdmin, models.UnitTypeCode) {
|
|
|
|
rightRepoMap[id] = repo
|
|
|
|
repoIDs = append(repoIDs, id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["RepoMaps"] = rightRepoMap
|
|
|
|
|
2020-02-20 12:53:55 -07:00
|
|
|
total, searchResults, searchResultLanguages, err = code_indexer.PerformSearch(repoIDs, language, keyword, page, setting.UI.RepoSearchPagingNum)
|
2018-03-16 08:04:33 -06:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("SearchResults", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// if non-login user or isAdmin, no need to check UnitTypeCode
|
|
|
|
} else if (ctx.User == nil && len(repoIDs) > 0) || isAdmin {
|
2020-02-20 12:53:55 -07:00
|
|
|
total, searchResults, searchResultLanguages, err = code_indexer.PerformSearch(repoIDs, language, keyword, page, setting.UI.RepoSearchPagingNum)
|
2018-03-16 08:04:33 -06:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("SearchResults", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var loadRepoIDs = make([]int64, 0, len(searchResults))
|
|
|
|
for _, result := range searchResults {
|
|
|
|
var find bool
|
|
|
|
for _, id := range loadRepoIDs {
|
|
|
|
if id == result.RepoID {
|
|
|
|
find = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !find {
|
|
|
|
loadRepoIDs = append(loadRepoIDs, result.RepoID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
repoMaps, err := models.GetRepositoriesMapByIDs(loadRepoIDs)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("SearchResults", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["RepoMaps"] = repoMaps
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Keyword"] = keyword
|
2020-02-20 12:53:55 -07:00
|
|
|
ctx.Data["Language"] = language
|
2018-03-16 08:04:33 -06:00
|
|
|
ctx.Data["SearchResults"] = searchResults
|
2020-02-20 12:53:55 -07:00
|
|
|
ctx.Data["SearchResultLanguages"] = searchResultLanguages
|
2018-03-16 08:04:33 -06:00
|
|
|
ctx.Data["RequireHighlightJS"] = true
|
|
|
|
ctx.Data["PageIsViewCode"] = true
|
2019-04-19 22:15:19 -06:00
|
|
|
|
|
|
|
pager := context.NewPagination(total, setting.UI.RepoSearchPagingNum, page, 5)
|
|
|
|
pager.SetDefaultParams(ctx)
|
2020-02-20 12:53:55 -07:00
|
|
|
pager.AddParam(ctx, "l", "Language")
|
2019-04-19 22:15:19 -06:00
|
|
|
ctx.Data["Page"] = pager
|
|
|
|
|
2018-03-16 08:04:33 -06:00
|
|
|
ctx.HTML(200, tplExploreCode)
|
|
|
|
}
|
|
|
|
|
2016-11-17 20:03:03 -07:00
|
|
|
// NotFound render 404 page
|
2016-03-11 09:56:52 -07:00
|
|
|
func NotFound(ctx *context.Context) {
|
2014-03-23 06:40:40 -06:00
|
|
|
ctx.Data["Title"] = "Page Not Found"
|
2018-01-10 14:34:17 -07:00
|
|
|
ctx.NotFound("home.NotFound", nil)
|
2014-03-22 23:48:01 -06:00
|
|
|
}
|