2019-09-18 05:39:45 +00:00
|
|
|
// Copyright 2019 The Gitea Authors.
|
|
|
|
// All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package pull
|
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/git"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
// IsCommitStatusContextSuccess returns true if all required status check contexts succeed.
|
|
|
|
func IsCommitStatusContextSuccess(commitStatuses []*models.CommitStatus, requiredContexts []string) bool {
|
2019-09-30 02:33:40 +00:00
|
|
|
// If no specific context is required, require that last commit status is a success
|
|
|
|
if len(requiredContexts) == 0 {
|
|
|
|
status := models.CalcCommitStatus(commitStatuses)
|
|
|
|
if status == nil || status.State != models.CommitStatusSuccess {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2019-09-18 05:39:45 +00:00
|
|
|
for _, ctx := range requiredContexts {
|
|
|
|
var found bool
|
|
|
|
for _, commitStatus := range commitStatuses {
|
|
|
|
if commitStatus.Context == ctx {
|
|
|
|
if commitStatus.State != models.CommitStatusSuccess {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsPullCommitStatusPass returns if all required status checks PASS
|
|
|
|
func IsPullCommitStatusPass(pr *models.PullRequest) (bool, error) {
|
|
|
|
if err := pr.LoadProtectedBranch(); err != nil {
|
|
|
|
return false, errors.Wrap(err, "GetLatestCommitStatus")
|
|
|
|
}
|
|
|
|
if pr.ProtectedBranch == nil || !pr.ProtectedBranch.EnableStatusCheck {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if all required status checks are successful
|
|
|
|
headGitRepo, err := git.OpenRepository(pr.HeadRepo.RepoPath())
|
|
|
|
if err != nil {
|
|
|
|
return false, errors.Wrap(err, "OpenRepository")
|
|
|
|
}
|
2019-11-13 07:01:19 +00:00
|
|
|
defer headGitRepo.Close()
|
2019-09-18 05:39:45 +00:00
|
|
|
|
|
|
|
if !headGitRepo.IsBranchExist(pr.HeadBranch) {
|
|
|
|
return false, errors.New("Head branch does not exist, can not merge")
|
|
|
|
}
|
|
|
|
|
|
|
|
sha, err := headGitRepo.GetBranchCommitID(pr.HeadBranch)
|
|
|
|
if err != nil {
|
|
|
|
return false, errors.Wrap(err, "GetBranchCommitID")
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := pr.LoadBaseRepo(); err != nil {
|
|
|
|
return false, errors.Wrap(err, "LoadBaseRepo")
|
|
|
|
}
|
|
|
|
|
|
|
|
commitStatuses, err := models.GetLatestCommitStatus(pr.BaseRepo, sha, 0)
|
|
|
|
if err != nil {
|
|
|
|
return false, errors.Wrap(err, "GetLatestCommitStatus")
|
|
|
|
}
|
|
|
|
|
|
|
|
return IsCommitStatusContextSuccess(commitStatuses, pr.ProtectedBranch.StatusCheckContexts), nil
|
|
|
|
}
|