mirror of https://github.com/go-gitea/gitea.git
Ref: #29878 Backport #29884 Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
parent
408c92938b
commit
5f7b6b55a5
|
@ -575,23 +575,27 @@ func SearchRepo(ctx *context.Context) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var err error
|
// To improve performance when only the count is requested
|
||||||
|
if ctx.FormBool("count_only") {
|
||||||
|
if count, err := repo_model.CountRepository(ctx, opts); err != nil {
|
||||||
|
log.Error("CountRepository: %v", err)
|
||||||
|
ctx.JSON(http.StatusInternalServerError, nil) // frontend JS doesn't handle error response (same as below)
|
||||||
|
} else {
|
||||||
|
ctx.SetTotalCountHeader(count)
|
||||||
|
ctx.JSONOK()
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
repos, count, err := repo_model.SearchRepository(ctx, opts)
|
repos, count, err := repo_model.SearchRepository(ctx, opts)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.JSON(http.StatusInternalServerError, api.SearchError{
|
log.Error("SearchRepository: %v", err)
|
||||||
OK: false,
|
ctx.JSON(http.StatusInternalServerError, nil)
|
||||||
Error: err.Error(),
|
|
||||||
})
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx.SetTotalCountHeader(count)
|
ctx.SetTotalCountHeader(count)
|
||||||
|
|
||||||
// To improve performance when only the count is requested
|
|
||||||
if ctx.FormBool("count_only") {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// collect the latest commit of each repo
|
// collect the latest commit of each repo
|
||||||
// at most there are dozens of repos (limited by MaxResponseItems), so it's not a big problem at the moment
|
// at most there are dozens of repos (limited by MaxResponseItems), so it's not a big problem at the moment
|
||||||
repoBranchNames := make(map[int64]string, len(repos))
|
repoBranchNames := make(map[int64]string, len(repos))
|
||||||
|
|
|
@ -236,7 +236,7 @@ const sfc = {
|
||||||
if (!this.reposTotalCount) {
|
if (!this.reposTotalCount) {
|
||||||
const totalCountSearchURL = `${this.subUrl}/repo/search?count_only=1&uid=${this.uid}&team_id=${this.teamId}&q=&page=1&mode=`;
|
const totalCountSearchURL = `${this.subUrl}/repo/search?count_only=1&uid=${this.uid}&team_id=${this.teamId}&q=&page=1&mode=`;
|
||||||
response = await GET(totalCountSearchURL);
|
response = await GET(totalCountSearchURL);
|
||||||
this.reposTotalCount = response.headers.get('X-Total-Count');
|
this.reposTotalCount = response.headers.get('X-Total-Count') ?? '?';
|
||||||
}
|
}
|
||||||
|
|
||||||
response = await GET(searchedURL);
|
response = await GET(searchedURL);
|
||||||
|
|
Loading…
Reference in New Issue