2017-10-27 06:10:54 +00:00
|
|
|
// Copyright 2017 The Gitea 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 repo
|
|
|
|
|
|
|
|
import (
|
2021-04-05 15:30:52 +00:00
|
|
|
"net/http"
|
2017-10-27 06:10:54 +00:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-12-23 12:31:16 +00:00
|
|
|
code_indexer "code.gitea.io/gitea/modules/indexer/code"
|
2017-10-27 06:10:54 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
)
|
|
|
|
|
|
|
|
const tplSearch base.TplName = "repo/search"
|
|
|
|
|
|
|
|
// Search render repository search page
|
|
|
|
func Search(ctx *context.Context) {
|
|
|
|
if !setting.Indexer.RepoIndexerEnabled {
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink, 302)
|
|
|
|
return
|
|
|
|
}
|
2021-08-11 15:08:52 +00:00
|
|
|
language := ctx.FormTrim("l")
|
|
|
|
keyword := ctx.FormTrim("q")
|
2021-07-29 01:42:15 +00:00
|
|
|
page := ctx.FormInt("page")
|
2017-10-27 06:10:54 +00:00
|
|
|
if page <= 0 {
|
|
|
|
page = 1
|
|
|
|
}
|
2021-08-11 15:08:52 +00:00
|
|
|
queryType := ctx.FormTrim("t")
|
2021-01-27 10:00:35 +00:00
|
|
|
isMatch := queryType == "match"
|
|
|
|
|
2020-02-20 19:53:55 +00:00
|
|
|
total, searchResults, searchResultLanguages, err := code_indexer.PerformSearch([]int64{ctx.Repo.Repository.ID},
|
2021-01-27 10:00:35 +00:00
|
|
|
language, keyword, page, setting.UI.RepoSearchPagingNum, isMatch)
|
2017-10-27 06:10:54 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("SearchResults", err)
|
2017-10-27 06:10:54 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Keyword"] = keyword
|
2020-02-20 19:53:55 +00:00
|
|
|
ctx.Data["Language"] = language
|
2021-01-27 10:00:35 +00:00
|
|
|
ctx.Data["queryType"] = queryType
|
2021-04-14 15:59:42 +00:00
|
|
|
ctx.Data["SourcePath"] = ctx.Repo.Repository.HTMLURL()
|
2017-10-27 06:10:54 +00:00
|
|
|
ctx.Data["SearchResults"] = searchResults
|
2020-02-20 19:53:55 +00:00
|
|
|
ctx.Data["SearchResultLanguages"] = searchResultLanguages
|
2017-10-27 06:10:54 +00:00
|
|
|
ctx.Data["RequireHighlightJS"] = true
|
|
|
|
ctx.Data["PageIsViewCode"] = true
|
2019-04-20 04:15:19 +00:00
|
|
|
|
|
|
|
pager := context.NewPagination(total, setting.UI.RepoSearchPagingNum, page, 5)
|
|
|
|
pager.SetDefaultParams(ctx)
|
2020-02-20 19:53:55 +00:00
|
|
|
pager.AddParam(ctx, "l", "Language")
|
2019-04-20 04:15:19 +00:00
|
|
|
ctx.Data["Page"] = pager
|
|
|
|
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplSearch)
|
2017-10-27 06:10:54 +00:00
|
|
|
}
|