aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--models/git/branch_list.go17
-rw-r--r--routers/web/repo/repo.go14
2 files changed, 25 insertions, 6 deletions
diff --git a/models/git/branch_list.go b/models/git/branch_list.go
index da78248c0b..836d4ffc41 100644
--- a/models/git/branch_list.go
+++ b/models/git/branch_list.go
@@ -130,3 +130,20 @@ func FindBranchNames(ctx context.Context, opts FindBranchOptions) ([]string, err
}
return branches, nil
}
+
+func FindBranchesByRepoAndBranchName(ctx context.Context, repoBranches map[int64]string) (map[int64]string, error) {
+ cond := builder.NewCond()
+ for repoID, branchName := range repoBranches {
+ cond = cond.Or(builder.And(builder.Eq{"repo_id": repoID}, builder.Eq{"name": branchName}))
+ }
+ var branches []*Branch
+ if err := db.GetEngine(ctx).
+ Where(cond).Find(&branches); err != nil {
+ return nil, err
+ }
+ branchMap := make(map[int64]string, len(branches))
+ for _, branch := range branches {
+ branchMap[branch.RepoID] = branch.CommitID
+ }
+ return branchMap, nil
+}
diff --git a/routers/web/repo/repo.go b/routers/web/repo/repo.go
index a1e1346b38..781a12b2d9 100644
--- a/routers/web/repo/repo.go
+++ b/routers/web/repo/repo.go
@@ -579,13 +579,15 @@ func SearchRepo(ctx *context.Context) {
// 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
- repoIDsToLatestCommitSHAs := make(map[int64]string, len(repos))
+ repoBranchNames := make(map[int64]string, len(repos))
for _, repo := range repos {
- commitID, err := repo_service.GetBranchCommitID(ctx, repo, repo.DefaultBranch)
- if err != nil {
- continue
- }
- repoIDsToLatestCommitSHAs[repo.ID] = commitID
+ repoBranchNames[repo.ID] = repo.DefaultBranch
+ }
+
+ repoIDsToLatestCommitSHAs, err := git_model.FindBranchesByRepoAndBranchName(ctx, repoBranchNames)
+ if err != nil {
+ log.Error("FindBranchesByRepoAndBranchName: %v", err)
+ return
}
// call the database O(1) times to get the commit statuses for all repos