]> source.dussan.org Git - gitea.git/commitdiff
Remove heads pointing to missing old refs (#17076)
author99rgosse <61579380+99rgosse@users.noreply.github.com>
Fri, 8 Oct 2021 09:59:35 +0000 (11:59 +0200)
committerGitHub <noreply@github.com>
Fri, 8 Oct 2021 09:59:35 +0000 (12:59 +0300)
Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: Lauris BH <lauris@nix.lv>
Co-authored-by: 6543 <6543@obermui.de>
modules/migrations/base/pullrequest.go
modules/migrations/gitea_uploader.go

index 84b302d18fada8bdc552c8c451e548004fc8967b..b51a14e47c52f1d40f97964bab3fe8a61be259e3 100644 (file)
@@ -41,6 +41,11 @@ func (p *PullRequest) IsForkPullRequest() bool {
        return p.Head.RepoPath() != p.Base.RepoPath()
 }
 
+// GetGitRefName returns pull request relative path to head
+func (p PullRequest) GetGitRefName() string {
+       return fmt.Sprintf("refs/pull/%d/head", p.Number)
+}
+
 // PullRequestBranch represents a pull request branch
 type PullRequestBranch struct {
        CloneURL  string `yaml:"clone_url"`
index 3e8d396ed1672d399e28909eea5cdf74c402e92e..62e8924e5447e5a68d17bc5cd565786bdc3c301e 100644 (file)
@@ -690,6 +690,23 @@ func (g *GiteaLocalUploader) newPullRequest(pr *base.PullRequest) (*models.PullR
                }
        } else {
                head = pr.Head.Ref
+               // Ensure the closed PR SHA still points to an existing ref
+               _, err = git.NewCommand("rev-list", "--quiet", "-1", pr.Head.SHA).RunInDir(g.repo.RepoPath())
+               if err != nil {
+                       if pr.Head.SHA != "" {
+                               // Git update-ref remove bad references with a relative path
+                               log.Warn("Deprecated local head, removing : %v", pr.Head.SHA)
+                               relPath := pr.GetGitRefName()
+                               _, err = git.NewCommand("update-ref", "--no-deref", "-d", relPath).RunInDir(g.repo.RepoPath())
+                       } else {
+                               // The SHA is empty, remove the head file
+                               log.Warn("Empty reference, removing : %v", pullHead)
+                               err = os.Remove(filepath.Join(pullHead, "head"))
+                       }
+                       if err != nil {
+                               log.Error("Cannot remove local head ref, %v", err)
+                       }
+               }
        }
 
        if pr.Created.IsZero() {