1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/githubPublishRelease.go

218 lines
7.2 KiB
Go
Raw Normal View History

2019-11-04 17:07:30 +02:00
package cmd
import (
"context"
"fmt"
2019-11-05 15:37:44 +02:00
"mime"
"os"
"path/filepath"
2019-11-04 17:07:30 +02:00
"strings"
2019-11-05 15:37:44 +02:00
"github.com/SAP/jenkins-library/pkg/log"
"github.com/SAP/jenkins-library/pkg/telemetry"
"github.com/google/go-github/v32/github"
2019-11-04 17:07:30 +02:00
"github.com/pkg/errors"
piperGithub "github.com/SAP/jenkins-library/pkg/github"
)
type githubRepoClient interface {
CreateRelease(ctx context.Context, owner string, repo string, release *github.RepositoryRelease) (*github.RepositoryRelease, *github.Response, error)
2019-11-05 15:37:44 +02:00
DeleteReleaseAsset(ctx context.Context, owner string, repo string, id int64) (*github.Response, error)
GetLatestRelease(ctx context.Context, owner string, repo string) (*github.RepositoryRelease, *github.Response, error)
ListReleaseAssets(ctx context.Context, owner string, repo string, id int64, opt *github.ListOptions) ([]*github.ReleaseAsset, *github.Response, error)
UploadReleaseAsset(ctx context.Context, owner string, repo string, id int64, opt *github.UploadOptions, file *os.File) (*github.ReleaseAsset, *github.Response, error)
2019-11-04 17:07:30 +02:00
}
type githubIssueClient interface {
ListByRepo(ctx context.Context, owner string, repo string, opt *github.IssueListByRepoOptions) ([]*github.Issue, *github.Response, error)
}
func githubPublishRelease(config githubPublishReleaseOptions, telemetryData *telemetry.CustomData) {
ctx, client, err := piperGithub.NewClient(config.Token, config.APIURL, config.UploadURL)
2019-11-04 17:07:30 +02:00
if err != nil {
2019-11-05 15:37:44 +02:00
log.Entry().WithError(err).Fatal("Failed to get GitHub client.")
2019-11-04 17:07:30 +02:00
}
err = runGithubPublishRelease(ctx, &config, client.Repositories, client.Issues)
2019-11-04 17:07:30 +02:00
if err != nil {
2019-11-05 15:37:44 +02:00
log.Entry().WithError(err).Fatal("Failed to publish GitHub release.")
2019-11-04 17:07:30 +02:00
}
}
func runGithubPublishRelease(ctx context.Context, config *githubPublishReleaseOptions, ghRepoClient githubRepoClient, ghIssueClient githubIssueClient) error {
2019-11-04 17:07:30 +02:00
var publishedAt github.Timestamp
2019-11-05 15:37:44 +02:00
lastRelease, resp, err := ghRepoClient.GetLatestRelease(ctx, config.Owner, config.Repository)
2019-11-04 17:07:30 +02:00
if err != nil {
if resp != nil && resp.StatusCode == 404 {
2019-11-05 15:37:44 +02:00
//no previous release found -> first release
config.AddDeltaToLastRelease = false
2019-11-05 15:37:44 +02:00
log.Entry().Debug("This is the first release.")
2019-11-04 17:07:30 +02:00
} else {
return errors.Wrapf(err, "Error occurred when retrieving latest GitHub release (%v/%v)", config.Owner, config.Repository)
2019-11-04 17:07:30 +02:00
}
}
2019-11-05 15:37:44 +02:00
publishedAt = lastRelease.GetPublishedAt()
log.Entry().Debugf("Previous GitHub release published: '%v'", publishedAt)
//updating assets only supported on latest release
if len(config.AssetPath) > 0 && config.Version == "latest" {
return uploadReleaseAsset(ctx, lastRelease.GetID(), config, ghRepoClient)
2019-11-05 15:37:44 +02:00
}
2019-11-04 17:07:30 +02:00
releaseBody := ""
if len(config.ReleaseBodyHeader) > 0 {
releaseBody += config.ReleaseBodyHeader + "\n"
2019-11-04 17:07:30 +02:00
}
if config.AddClosedIssues {
releaseBody += getClosedIssuesText(ctx, publishedAt, config, ghIssueClient)
2019-11-04 17:07:30 +02:00
}
if config.AddDeltaToLastRelease {
releaseBody += getReleaseDeltaText(config, lastRelease)
2019-11-04 17:07:30 +02:00
}
release := github.RepositoryRelease{
TagName: &config.Version,
TargetCommitish: &config.Commitish,
Name: &config.Version,
2019-11-04 17:07:30 +02:00
Body: &releaseBody,
Prerelease: &config.PreRelease,
2019-11-04 17:07:30 +02:00
}
createdRelease, _, err := ghRepoClient.CreateRelease(ctx, config.Owner, config.Repository, &release)
2019-11-04 17:07:30 +02:00
if err != nil {
2019-11-05 15:37:44 +02:00
return errors.Wrapf(err, "Creation of release '%v' failed", *release.TagName)
2019-11-04 17:07:30 +02:00
}
log.Entry().Infof("Release %v created on %v/%v", *createdRelease.TagName, config.Owner, config.Repository)
2019-11-04 17:07:30 +02:00
if len(config.AssetPath) > 0 {
return uploadReleaseAsset(ctx, createdRelease.GetID(), config, ghRepoClient)
2019-11-05 15:37:44 +02:00
}
2019-11-04 17:07:30 +02:00
return nil
}
func getClosedIssuesText(ctx context.Context, publishedAt github.Timestamp, config *githubPublishReleaseOptions, ghIssueClient githubIssueClient) string {
2019-11-04 17:07:30 +02:00
closedIssuesText := ""
2019-11-05 15:37:44 +02:00
2019-11-04 17:07:30 +02:00
options := github.IssueListByRepoOptions{
State: "closed",
Direction: "asc",
Since: publishedAt.Time,
}
if len(config.Labels) > 0 {
options.Labels = config.Labels
2019-11-04 17:07:30 +02:00
}
ghIssues, _, err := ghIssueClient.ListByRepo(ctx, config.Owner, config.Repository, &options)
2019-11-04 17:07:30 +02:00
if err != nil {
2019-11-05 15:37:44 +02:00
log.Entry().WithError(err).Error("Failed to get GitHub issues.")
2019-11-04 17:07:30 +02:00
}
2019-11-05 18:33:00 +02:00
prTexts := []string{"**List of closed pull-requests since last release**"}
issueTexts := []string{"**List of closed issues since last release**"}
2019-11-04 17:07:30 +02:00
for _, issue := range ghIssues {
if issue.IsPullRequest() && !isExcluded(issue, config.ExcludeLabels) {
2019-11-04 17:07:30 +02:00
prTexts = append(prTexts, fmt.Sprintf("[#%v](%v): %v", issue.GetNumber(), issue.GetHTMLURL(), issue.GetTitle()))
2019-11-05 15:37:44 +02:00
log.Entry().Debugf("Added PR #%v to release", issue.GetNumber())
} else if !issue.IsPullRequest() && !isExcluded(issue, config.ExcludeLabels) {
2019-11-04 17:07:30 +02:00
issueTexts = append(issueTexts, fmt.Sprintf("[#%v](%v): %v", issue.GetNumber(), issue.GetHTMLURL(), issue.GetTitle()))
2019-11-05 15:37:44 +02:00
log.Entry().Debugf("Added Issue #%v to release", issue.GetNumber())
2019-11-04 17:07:30 +02:00
}
}
if len(prTexts) > 1 {
2019-11-05 18:33:00 +02:00
closedIssuesText += "\n" + strings.Join(prTexts, "\n") + "\n"
2019-11-04 17:07:30 +02:00
}
if len(issueTexts) > 1 {
2019-11-05 18:33:00 +02:00
closedIssuesText += "\n" + strings.Join(issueTexts, "\n") + "\n"
2019-11-04 17:07:30 +02:00
}
return closedIssuesText
}
func getReleaseDeltaText(config *githubPublishReleaseOptions, lastRelease *github.RepositoryRelease) string {
2019-11-04 17:07:30 +02:00
releaseDeltaText := ""
//add delta link to previous release
2019-11-05 15:37:44 +02:00
releaseDeltaText += "\n**Changes**\n"
2019-11-04 17:07:30 +02:00
releaseDeltaText += fmt.Sprintf(
2019-11-05 15:37:44 +02:00
"[%v...%v](%v/%v/%v/compare/%v...%v)\n",
2019-11-04 17:07:30 +02:00
lastRelease.GetTagName(),
config.Version,
config.ServerURL,
config.Owner,
config.Repository,
lastRelease.GetTagName(), config.Version,
2019-11-04 17:07:30 +02:00
)
return releaseDeltaText
}
func uploadReleaseAsset(ctx context.Context, releaseID int64, config *githubPublishReleaseOptions, ghRepoClient githubRepoClient) error {
2019-11-05 15:37:44 +02:00
assets, _, err := ghRepoClient.ListReleaseAssets(ctx, config.Owner, config.Repository, releaseID, &github.ListOptions{})
2019-11-05 15:37:44 +02:00
if err != nil {
return errors.Wrap(err, "Failed to get list of release assets.")
}
var assetID int64
for _, a := range assets {
if a.GetName() == filepath.Base(config.AssetPath) {
2019-11-05 15:37:44 +02:00
assetID = a.GetID()
break
}
}
if assetID != 0 {
//asset needs to be deleted first since API does not allow for replacement
_, err := ghRepoClient.DeleteReleaseAsset(ctx, config.Owner, config.Repository, assetID)
2019-11-05 15:37:44 +02:00
if err != nil {
return errors.Wrap(err, "Failed to delete release asset.")
}
}
mediaType := mime.TypeByExtension(filepath.Ext(config.AssetPath))
2019-11-05 15:37:44 +02:00
if mediaType == "" {
mediaType = "application/octet-stream"
}
log.Entry().Debugf("Using mediaType '%v'", mediaType)
name := filepath.Base(config.AssetPath)
2019-11-05 15:37:44 +02:00
log.Entry().Debugf("Using file name '%v'", name)
opts := github.UploadOptions{
Name: name,
MediaType: mediaType,
}
file, err := os.Open(config.AssetPath)
2019-11-05 15:37:44 +02:00
defer file.Close()
if err != nil {
return errors.Wrapf(err, "Failed to load release asset '%v'", config.AssetPath)
2019-11-05 15:37:44 +02:00
}
log.Entry().Info("Starting to upload release asset.")
asset, _, err := ghRepoClient.UploadReleaseAsset(ctx, config.Owner, config.Repository, releaseID, &opts, file)
2019-11-05 15:37:44 +02:00
if err != nil {
return errors.Wrap(err, "Failed to upload release asset.")
}
log.Entry().Infof("Done uploading asset '%v'.", asset.GetURL())
return nil
}
2019-11-04 17:07:30 +02:00
func isExcluded(issue *github.Issue, excludeLabels []string) bool {
//issue.Labels[0].GetName()
for _, ex := range excludeLabels {
for _, l := range issue.Labels {
if ex == l.GetName() {
return true
}
}
}
return false
}