101 lines
3.2 KiB
Go
101 lines
3.2 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"src.opensuse.org/autogits/common"
|
|
)
|
|
|
|
type PullRequestOpened struct{}
|
|
|
|
func (o *PullRequestOpened) CreateOrUpdatePrjGitPR(req *common.PullRequestWebhookEvent, git common.Git, config *common.AutogitConfig) error {
|
|
// create PrjGit branch for buidling the pull request
|
|
branchName := prGitBranchNameForPR(req)
|
|
// TODO: fix this for config.Organization
|
|
|
|
org, prj, _ := config.GetPrjGit()
|
|
prjGit, err := Gitea.CreateRepositoryIfNotExist(git, org, prj)
|
|
common.PanicOnErrorWithMsg(err, "Error creating a prjgitrepo:", err)
|
|
|
|
remoteName, err := git.GitClone(common.DefaultGitPrj, config.Branch, prjGit.SSHURL)
|
|
common.PanicOnError(err)
|
|
|
|
// check if branch already there, and check that out if available
|
|
if err := git.GitExec(common.DefaultGitPrj, "fetch", remoteName, branchName); err == nil {
|
|
git.GitExecOrPanic(common.DefaultGitPrj, "checkout", "-B", branchName, remoteName+"/"+branchName)
|
|
}
|
|
|
|
prOrg := req.Pull_Request.Base.Repo.Owner.Username
|
|
prRepo := req.Pull_Request.Base.Repo.Name
|
|
|
|
commitMsg := fmt.Sprintf(`auto-created for %s
|
|
|
|
This commit was autocreated by %s
|
|
referencing
|
|
|
|
`+common.PrPattern,
|
|
prOrg,
|
|
prRepo,
|
|
GitAuthor,
|
|
prRepo,
|
|
req.Pull_Request.Number,
|
|
)
|
|
|
|
subList, err := git.GitSubmoduleList(common.DefaultGitPrj, "HEAD")
|
|
common.PanicOnError(err)
|
|
|
|
if id := subList[prRepo]; id != req.Pull_Request.Head.Sha {
|
|
updateSubmoduleInPR(req, git)
|
|
status, err := git.GitStatus(common.DefaultGitPrj)
|
|
common.LogDebug("status:", status)
|
|
common.LogDebug("submodule", prRepo, " hash:", id, " -> ", req.Pull_Request.Head.Sha)
|
|
common.PanicOnError(err)
|
|
common.PanicOnError(git.GitExec(common.DefaultGitPrj, "commit", "-a", "-m", commitMsg))
|
|
common.PanicOnError(git.GitExec(common.DefaultGitPrj, "push", remoteName, "+HEAD:"+branchName))
|
|
}
|
|
|
|
_, err = Gitea.CreatePullRequestIfNotExist(prjGit, branchName, prjGit.DefaultBranch,
|
|
fmt.Sprintf("Forwarded PR: %s", prRepo),
|
|
fmt.Sprintf(`This is a forwarded pull request by %s
|
|
referencing the following pull request:
|
|
|
|
`+common.PrPattern,
|
|
GitAuthor, prOrg, prRepo, req.Pull_Request.Number),
|
|
)
|
|
|
|
return err
|
|
}
|
|
|
|
func (o *PullRequestOpened) Process(req *common.PullRequestWebhookEvent, git common.Git, config *common.AutogitConfig) error {
|
|
// requests against project are not handled here
|
|
common.LogInfo("processing opened PR:", req.Pull_Request.Url)
|
|
prOrg := req.Pull_Request.Base.Repo.Owner.Username
|
|
prRepo := req.Pull_Request.Base.Repo.Name
|
|
if prjGitOrg, prjGitRepo, _ := config.GetPrjGit(); prOrg != prjGitOrg || prRepo != prjGitRepo {
|
|
if err := o.CreateOrUpdatePrjGitPR(req, git, config); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
prset, err := common.FetchPRSet(Gitea, prOrg, prRepo, req.Number, config)
|
|
if err != nil {
|
|
common.LogError("Cannot fetch PRSet:", err)
|
|
return err
|
|
}
|
|
common.LogInfo("fetched PRSet of size:", len(prset.PRs))
|
|
|
|
// request build review
|
|
PR, err := prset.GetPrjGitPR()
|
|
if err != nil {
|
|
common.LogError("Error fetching PrjGitPR:", err)
|
|
return nil
|
|
}
|
|
common.LogDebug(" num of reviewers:", len(PR.RequestedReviewers))
|
|
org, repo, branch := config.GetPrjGit()
|
|
maintainers, err := common.FetchProjectMaintainershipData(Gitea, org, repo, branch)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return prset.AssignReviewers(Gitea, maintainers)
|
|
}
|