mirror of
https://github.com/go-gitea/gitea.git
synced 2026-07-25 18:21:54 +00:00
before: gitrepo vs git packages after: git package fully handle all git operations by the way, use `WithRepo(repo)` instead of `WithDir(repo.Path)` to hide path details. benefits: 1. remove all unnecessary wrappers, developers no need to struggle with "which package should be used" 2. simplify code, RepositoryFacade can (will) be used everywhere, all "path" details are (will be) hidden
170 lines
4.7 KiB
Go
170 lines
4.7 KiB
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package repository
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"gitea.dev/models/db"
|
|
git_model "gitea.dev/models/git"
|
|
repo_model "gitea.dev/models/repo"
|
|
"gitea.dev/modules/container"
|
|
"gitea.dev/modules/git"
|
|
"gitea.dev/modules/log"
|
|
"gitea.dev/modules/timeutil"
|
|
)
|
|
|
|
// SyncResult describes a reference update detected during sync.
|
|
type SyncResult struct {
|
|
RefName git.RefName
|
|
OldCommitID git.RefName
|
|
NewCommitID git.RefName
|
|
}
|
|
|
|
// SyncRepoBranches synchronizes branch table with repository branches
|
|
func SyncRepoBranches(ctx context.Context, repoID, doerID int64) (int64, error) {
|
|
repo, err := repo_model.GetRepositoryByID(ctx, repoID)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
log.Debug("SyncRepoBranches: in Repo[%d:%s]", repo.ID, repo.FullName())
|
|
|
|
gitRepo, err := git.OpenRepository(repo)
|
|
if err != nil {
|
|
log.Error("OpenRepository[%s]: %w", repo.FullName(), err)
|
|
return 0, err
|
|
}
|
|
defer gitRepo.Close()
|
|
|
|
count, _, err := SyncRepoBranchesWithRepo(ctx, repo, gitRepo, doerID)
|
|
return count, err
|
|
}
|
|
|
|
func SyncRepoBranchesWithRepo(ctx context.Context, repo *repo_model.Repository, gitRepo *git.Repository, doerID int64) (int64, []*SyncResult, error) {
|
|
objFmt, err := gitRepo.GetObjectFormat(ctx)
|
|
if err != nil {
|
|
return 0, nil, fmt.Errorf("GetObjectFormat: %w", err)
|
|
}
|
|
if objFmt.Name() != repo.ObjectFormatName {
|
|
repo.ObjectFormatName = objFmt.Name()
|
|
if err = repo_model.UpdateRepositoryColsWithAutoTime(ctx, repo, "object_format_name"); err != nil {
|
|
return 0, nil, fmt.Errorf("UpdateRepositoryColsWithAutoTime: %w", err)
|
|
}
|
|
}
|
|
|
|
allBranches := container.Set[string]{}
|
|
{
|
|
branches, _, err := gitRepo.GetBranchNames(ctx, 0, 0)
|
|
if err != nil {
|
|
return 0, nil, err
|
|
}
|
|
log.Trace("SyncRepoBranches[%s]: branches[%d]: %v", repo.FullName(), len(branches), branches)
|
|
for _, branch := range branches {
|
|
allBranches.Add(branch)
|
|
}
|
|
}
|
|
|
|
dbBranches := make(map[string]*git_model.Branch)
|
|
{
|
|
branches, err := db.Find[git_model.Branch](ctx, git_model.FindBranchOptions{
|
|
ListOptions: db.ListOptionsAll,
|
|
RepoID: repo.ID,
|
|
})
|
|
if err != nil {
|
|
return 0, nil, err
|
|
}
|
|
for _, branch := range branches {
|
|
dbBranches[branch.Name] = branch
|
|
}
|
|
}
|
|
|
|
var toAdd []*git_model.Branch
|
|
var toUpdate []*git_model.Branch
|
|
var toRemove []int64
|
|
var syncResults []*SyncResult
|
|
for branch := range allBranches {
|
|
dbb := dbBranches[branch]
|
|
commit, err := gitRepo.GetBranchCommit(ctx, branch)
|
|
if err != nil {
|
|
return 0, nil, err
|
|
}
|
|
if dbb == nil {
|
|
toAdd = append(toAdd, &git_model.Branch{
|
|
RepoID: repo.ID,
|
|
Name: branch,
|
|
CommitID: commit.ID.String(),
|
|
CommitMessage: commit.MessageTitle(),
|
|
PusherID: doerID,
|
|
CommitTime: timeutil.TimeStamp(commit.Committer.When.Unix()),
|
|
})
|
|
syncResults = append(syncResults, &SyncResult{
|
|
RefName: git.RefNameFromBranch(branch),
|
|
OldCommitID: "",
|
|
NewCommitID: commit.ID.RefName(),
|
|
})
|
|
} else if commit.ID.String() != dbb.CommitID || dbb.IsDeleted {
|
|
toUpdate = append(toUpdate, &git_model.Branch{
|
|
ID: dbb.ID,
|
|
RepoID: repo.ID,
|
|
Name: branch,
|
|
CommitID: commit.ID.String(),
|
|
CommitMessage: commit.MessageTitle(),
|
|
PusherID: doerID,
|
|
CommitTime: timeutil.TimeStamp(commit.Committer.When.Unix()),
|
|
})
|
|
syncResults = append(syncResults, &SyncResult{
|
|
RefName: git.RefNameFromBranch(branch),
|
|
OldCommitID: git.RefNameFromCommit(dbb.CommitID),
|
|
NewCommitID: commit.ID.RefName(),
|
|
})
|
|
}
|
|
}
|
|
|
|
for _, dbBranch := range dbBranches {
|
|
if !allBranches.Contains(dbBranch.Name) && !dbBranch.IsDeleted {
|
|
toRemove = append(toRemove, dbBranch.ID)
|
|
syncResults = append(syncResults, &SyncResult{
|
|
RefName: git.RefNameFromBranch(dbBranch.Name),
|
|
OldCommitID: git.RefNameFromCommit(dbBranch.CommitID),
|
|
NewCommitID: "",
|
|
})
|
|
}
|
|
}
|
|
|
|
log.Trace("SyncRepoBranches[%s]: toAdd: %v, toUpdate: %v, toRemove: %v", repo.FullName(), toAdd, toUpdate, toRemove)
|
|
|
|
if len(toAdd) == 0 && len(toRemove) == 0 && len(toUpdate) == 0 {
|
|
return int64(len(allBranches)), syncResults, nil
|
|
}
|
|
|
|
if err := db.WithTx(ctx, func(ctx context.Context) error {
|
|
if len(toAdd) > 0 {
|
|
if err := git_model.AddBranches(ctx, toAdd); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
for _, b := range toUpdate {
|
|
if _, err := db.GetEngine(ctx).ID(b.ID).
|
|
Cols("commit_id, commit_message, pusher_id, commit_time, is_deleted").
|
|
Update(b); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
if len(toRemove) > 0 {
|
|
if err := git_model.DeleteBranches(ctx, repo.ID, doerID, toRemove); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}); err != nil {
|
|
return 0, nil, err
|
|
}
|
|
return int64(len(allBranches)), syncResults, nil
|
|
}
|