mirror of
https://github.com/go-gitea/gitea.git
synced 2026-07-22 17:02:41 +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
54 lines
1.3 KiB
Go
54 lines
1.3 KiB
Go
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package renderhelper
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
|
|
repo_model "gitea.dev/models/repo"
|
|
"gitea.dev/modules/git"
|
|
"gitea.dev/modules/log"
|
|
)
|
|
|
|
type commitChecker struct {
|
|
ctx context.Context
|
|
commitCache map[string]bool
|
|
repo *repo_model.Repository
|
|
|
|
gitRepo *git.Repository
|
|
gitRepoCloser io.Closer
|
|
}
|
|
|
|
func newCommitChecker(ctx context.Context, repo *repo_model.Repository) *commitChecker {
|
|
return &commitChecker{ctx: ctx, commitCache: make(map[string]bool), repo: repo}
|
|
}
|
|
|
|
func (c *commitChecker) Close() error {
|
|
if c != nil && c.gitRepoCloser != nil {
|
|
return c.gitRepoCloser.Close()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *commitChecker) IsCommitIDExisting(commitID string) bool {
|
|
exist, inCache := c.commitCache[commitID]
|
|
if inCache {
|
|
return exist
|
|
}
|
|
|
|
if c.gitRepo == nil {
|
|
r, closer, err := git.RepositoryFromContextOrOpen(c.ctx, c.repo)
|
|
if err != nil {
|
|
log.Error("Unable to open repository: %s, error: %v", c.repo.FullName(), err)
|
|
return false
|
|
}
|
|
c.gitRepo, c.gitRepoCloser = r, closer
|
|
}
|
|
|
|
exist = c.gitRepo.IsReferenceExist(c.ctx, commitID) // Don't use IsObjectExist since it doesn't support short hashes with gogit edition.
|
|
c.commitCache[commitID] = exist
|
|
return exist
|
|
}
|