mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 00:20:25 +08:00 
			
		
		
		
	Make git.OpenRepository accept Context (#19260)
* OpenRepositoryCtx -> OpenRepository * OpenRepository -> openRepositoryWithDefaultContext, only for internal usage
This commit is contained in:
		@@ -122,7 +122,7 @@ func GetArchive(ctx *context.APIContext) {
 | 
			
		||||
 | 
			
		||||
	repoPath := repo_model.RepoPath(ctx.Params(":username"), ctx.Params(":reponame"))
 | 
			
		||||
	if ctx.Repo.GitRepo == nil {
 | 
			
		||||
		gitRepo, err := git.OpenRepositoryCtx(ctx, repoPath)
 | 
			
		||||
		gitRepo, err := git.OpenRepository(ctx, repoPath)
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			ctx.Error(http.StatusInternalServerError, "OpenRepository", err)
 | 
			
		||||
			return
 | 
			
		||||
 
 | 
			
		||||
@@ -136,7 +136,7 @@ func CreateFork(ctx *context.APIContext) {
 | 
			
		||||
		name = *form.Name
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	fork, err := repo_service.ForkRepository(ctx.Doer, forker, repo_service.ForkRepoOptions{
 | 
			
		||||
	fork, err := repo_service.ForkRepository(ctx, ctx.Doer, forker, repo_service.ForkRepoOptions{
 | 
			
		||||
		BaseRepo:    repo,
 | 
			
		||||
		Name:        name,
 | 
			
		||||
		Description: repo.Description,
 | 
			
		||||
 
 | 
			
		||||
@@ -55,7 +55,7 @@ func GetNote(ctx *context.APIContext) {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func getNote(ctx *context.APIContext, identifier string) {
 | 
			
		||||
	gitRepo, err := git.OpenRepositoryCtx(ctx, ctx.Repo.Repository.RepoPath())
 | 
			
		||||
	gitRepo, err := git.OpenRepository(ctx, ctx.Repo.Repository.RepoPath())
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		ctx.Error(http.StatusInternalServerError, "OpenRepository", err)
 | 
			
		||||
		return
 | 
			
		||||
 
 | 
			
		||||
@@ -887,7 +887,7 @@ func MergePullRequest(ctx *context.APIContext) {
 | 
			
		||||
		if ctx.Repo != nil && ctx.Repo.Repository != nil && ctx.Repo.Repository.ID == pr.HeadRepoID && ctx.Repo.GitRepo != nil {
 | 
			
		||||
			headRepo = ctx.Repo.GitRepo
 | 
			
		||||
		} else {
 | 
			
		||||
			headRepo, err = git.OpenRepositoryCtx(ctx, pr.HeadRepo.RepoPath())
 | 
			
		||||
			headRepo, err = git.OpenRepository(ctx, pr.HeadRepo.RepoPath())
 | 
			
		||||
			if err != nil {
 | 
			
		||||
				ctx.ServerError(fmt.Sprintf("OpenRepository[%s]", pr.HeadRepo.RepoPath()), err)
 | 
			
		||||
				return
 | 
			
		||||
@@ -981,7 +981,7 @@ func parseCompareInfo(ctx *context.APIContext, form api.CreatePullRequestOption)
 | 
			
		||||
		headRepo = ctx.Repo.Repository
 | 
			
		||||
		headGitRepo = ctx.Repo.GitRepo
 | 
			
		||||
	} else {
 | 
			
		||||
		headGitRepo, err = git.OpenRepositoryCtx(ctx, repo_model.RepoPath(headUser.Name, headRepo.Name))
 | 
			
		||||
		headGitRepo, err = git.OpenRepository(ctx, repo_model.RepoPath(headUser.Name, headRepo.Name))
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			ctx.Error(http.StatusInternalServerError, "OpenRepository", err)
 | 
			
		||||
			return nil, nil, nil, nil, "", ""
 | 
			
		||||
 
 | 
			
		||||
@@ -711,7 +711,7 @@ func updateBasicProperties(ctx *context.APIContext, opts api.EditRepoOption) err
 | 
			
		||||
 | 
			
		||||
	if ctx.Repo.GitRepo == nil && !repo.IsEmpty {
 | 
			
		||||
		var err error
 | 
			
		||||
		ctx.Repo.GitRepo, err = git.OpenRepositoryCtx(ctx, ctx.Repo.Repository.RepoPath())
 | 
			
		||||
		ctx.Repo.GitRepo, err = git.OpenRepository(ctx, ctx.Repo.Repository.RepoPath())
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			ctx.Error(http.StatusInternalServerError, "Unable to OpenRepository", err)
 | 
			
		||||
			return err
 | 
			
		||||
 
 | 
			
		||||
@@ -458,7 +458,7 @@ func findEntryForFile(commit *git.Commit, target string) (*git.TreeEntry, error)
 | 
			
		||||
// findWikiRepoCommit opens the wiki repo and returns the latest commit, writing to context on error.
 | 
			
		||||
// The caller is responsible for closing the returned repo again
 | 
			
		||||
func findWikiRepoCommit(ctx *context.APIContext) (*git.Repository, *git.Commit) {
 | 
			
		||||
	wikiRepo, err := git.OpenRepositoryCtx(ctx, ctx.Repo.Repository.WikiPath())
 | 
			
		||||
	wikiRepo, err := git.OpenRepository(ctx, ctx.Repo.Repository.WikiPath())
 | 
			
		||||
	if err != nil {
 | 
			
		||||
 | 
			
		||||
		if git.IsErrNotExist(err) || err.Error() == "no such file or directory" {
 | 
			
		||||
 
 | 
			
		||||
@@ -36,7 +36,7 @@ func ResolveRefOrSha(ctx *context.APIContext, ref string) string {
 | 
			
		||||
func GetGitRefs(ctx *context.APIContext, filter string) ([]*git.Reference, string, error) {
 | 
			
		||||
	if ctx.Repo.GitRepo == nil {
 | 
			
		||||
		var err error
 | 
			
		||||
		ctx.Repo.GitRepo, err = git.OpenRepositoryCtx(ctx, ctx.Repo.Repository.RepoPath())
 | 
			
		||||
		ctx.Repo.GitRepo, err = git.OpenRepository(ctx, ctx.Repo.Repository.RepoPath())
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			return nil, "OpenRepository", err
 | 
			
		||||
		}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user