tools/eksDistroBuildToolingOpsTools/pkg/eksGoRelease/createPatch.go (67 lines of code) (raw):

package eksGoRelease import ( "context" "fmt" "github.com/go-git/go-git/v5/plumbing/transport/http" "github.com/aws/eks-distro-build-tooling/tools/eksDistroBuildToolingOpsTools/pkg/constants" "github.com/aws/eks-distro-build-tooling/tools/eksDistroBuildToolingOpsTools/pkg/git" "github.com/aws/eks-distro-build-tooling/tools/eksDistroBuildToolingOpsTools/pkg/github" "github.com/aws/eks-distro-build-tooling/tools/eksDistroBuildToolingOpsTools/pkg/logger" ) const ( backportCommitMsgFmt = "Update EKS Go version %s files" backportPRDescriptionFailureFmt = "This PR failed create a patch for %s to EKS Go Patch Version: %s\n The patch will need to be manually created from commit: %s\n\n/hold\n\nSPEC FILE STILL NEEDS THE '%%changelog' UPDATED\nPLEASE UPDATE WITH THE FOLLOWING FORMAT\n```\n* Wed Sep 06 2023 Cameron Rozean <rcrozean@amazon.com> - 1.20.8-1\n- Patch CVE-<cve#> in EKS Go version 1.20.8\n```" backportPRDescriptionSuccessFmt = "This PR created a patch for %s from %s to EKS Go Patch Version: %s\n\n/hold\n\nSPEC FILE STILL NEEDS THE '%%changelog' UPDATED\nPLEASE UPDATE WITH THE FOLLOWING FORMAT\n```\n* Wed Sep 06 2023 Cameron Rozean <rcrozean@amazon.com> - 1.20.8-1\n- Patch CVE-<cve#> in EKS Go version 1.20.8\n```" backportPRSubjectFmt = "Patch %s to EKS Go %s" ) // BackportPatchVersion is for updating the files in https://github.com/aws/eks-distro-build-tooling/golang/go for golang versions no longer maintained by upstream. func BackportToRelease(ctx context.Context, r *Release, dryrun bool, cve, commit, email, user string) error { // Setup Git Clients token, err := github.GetGithubToken() if err != nil { logger.V(4).Error(err, "no github token found") return fmt.Errorf("getting Github PAT from environment at variable %s: %v", github.PersonalAccessTokenEnvVar, err) } ghUser := github.NewGitHubUser(user, email, token) // Creating git client in memory and clone 'eks-distro-build-tooling forkUrl := fmt.Sprintf(constants.EksGoRepoUrl, ghUser.User()) gClient := git.NewClient(git.WithInMemoryFilesystem(), git.WithRepositoryUrl(forkUrl), git.WithAuth(&http.BasicAuth{Username: ghUser.User(), Password: ghUser.Token()})) if err := gClient.Clone(ctx); err != nil { logger.Error(err, "Cloning repo", "user", ghUser.User()) return err } // Increment Release if err := bumpRelease(gClient, r); err != nil { logger.Error(err, "increment release") return err } // Create new branch commitBranch := r.EksGoReleaseVersion() if err := gClient.Branch(commitBranch); err != nil { logger.Error(err, "git branch", "branch name", r.EksGoReleaseVersion(), "repo", forkUrl, "client", gClient) return err } // Update files for new patch versions of golang if err := updateVersionReadme(gClient, r); err != nil { logger.Error(err, "Update Readme") return err } if err := updateGitTag(gClient, r); err != nil { logger.Error(err, "Update GitTag") return err } /* ----- * Begin applying previous patches and attempting to cherry-pick the new commit. Any errors from here on out should result in cutting a pr without a new patch, * but shouldn't fail the automation because the patch can be generated manually ----- */ prSubject := fmt.Sprintf(backportPRSubjectFmt, r.EksGoReleaseVersion(), cve) commitMsg := fmt.Sprintf(backportCommitMsgFmt, r.EksGoReleaseVersion()) golangClient := git.NewClient(git.WithInMemoryFilesystem(), git.WithRepositoryUrl(constants.GoRepoUrl), git.WithAuth(&http.BasicAuth{Username: user, Password: token})) if err := createPatchFile(ctx, r, gClient, golangClient, commit); err != nil { logger.V(3).Info("Generate Patch failed, continuing with PR") // no longer update gospec with patch file since no patch was created if !dryrun { prFailureDescription := fmt.Sprintf(backportPRDescriptionFailureFmt, cve, r.EksGoReleaseVersion(), commit) if err := createReleasePR(ctx, dryrun, r, ghUser, gClient, prSubject, prFailureDescription, commitMsg, commitBranch); err != nil { logger.Error(err, "Create Release PR") return err } } } if !dryrun { prSuccessDescription := fmt.Sprintf(backportPRDescriptionSuccessFmt, cve, commit, r.EksGoReleaseVersion()) if err := createReleasePR(ctx, dryrun, r, ghUser, gClient, prSubject, prSuccessDescription, commitMsg, commitBranch); err != nil { logger.Error(err, "Create Release PR") } } return nil }