mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-01-22 05:33:10 +02:00
75 lines
2.2 KiB
Go
75 lines
2.2 KiB
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"os"
|
||
|
|
||
|
"github.com/SAP/jenkins-library/pkg/log"
|
||
|
"github.com/SAP/jenkins-library/pkg/piperutils"
|
||
|
"github.com/SAP/jenkins-library/pkg/reporting"
|
||
|
"github.com/SAP/jenkins-library/pkg/telemetry"
|
||
|
"github.com/pkg/errors"
|
||
|
)
|
||
|
|
||
|
type pipelineCreateScanSummaryUtils interface {
|
||
|
FileRead(path string) ([]byte, error)
|
||
|
FileWrite(path string, content []byte, perm os.FileMode) error
|
||
|
Glob(pattern string) (matches []string, err error)
|
||
|
}
|
||
|
|
||
|
type pipelineCreateScanSummaryUtilsBundle struct {
|
||
|
*piperutils.Files
|
||
|
}
|
||
|
|
||
|
func newPipelineCreateScanSummaryUtils() pipelineCreateScanSummaryUtils {
|
||
|
utils := pipelineCreateScanSummaryUtilsBundle{
|
||
|
Files: &piperutils.Files{},
|
||
|
}
|
||
|
return &utils
|
||
|
}
|
||
|
|
||
|
func pipelineCreateScanSummary(config pipelineCreateScanSummaryOptions, telemetryData *telemetry.CustomData) {
|
||
|
utils := newPipelineCreateScanSummaryUtils()
|
||
|
|
||
|
err := runPipelineCreateScanSummary(&config, telemetryData, utils)
|
||
|
if err != nil {
|
||
|
log.Entry().WithError(err).Fatal("failed to create scan summary")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const reportDir = ".pipeline/stepReports"
|
||
|
|
||
|
func runPipelineCreateScanSummary(config *pipelineCreateScanSummaryOptions, telemetryData *telemetry.CustomData, utils pipelineCreateScanSummaryUtils) error {
|
||
|
|
||
|
pattern := reportDir + "/*.json"
|
||
|
reports, _ := utils.Glob(pattern)
|
||
|
|
||
|
scanReports := []reporting.ScanReport{}
|
||
|
for _, report := range reports {
|
||
|
reportContent, err := utils.FileRead(report)
|
||
|
if err != nil {
|
||
|
log.SetErrorCategory(log.ErrorConfiguration)
|
||
|
return errors.Wrapf(err, "failed to read report %v", report)
|
||
|
}
|
||
|
scanReport := reporting.ScanReport{}
|
||
|
if err = json.Unmarshal(reportContent, &scanReport); err != nil {
|
||
|
return errors.Wrapf(err, "failed to parse report %v", report)
|
||
|
}
|
||
|
scanReports = append(scanReports, scanReport)
|
||
|
}
|
||
|
|
||
|
output := []byte{}
|
||
|
for _, scanReport := range scanReports {
|
||
|
if (config.FailedOnly && !scanReport.SuccessfulScan) || !config.FailedOnly {
|
||
|
output = append(output, scanReport.ToMarkdown()...)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if err := utils.FileWrite(config.OutputFilePath, output, 0666); err != nil {
|
||
|
log.SetErrorCategory(log.ErrorConfiguration)
|
||
|
return errors.Wrapf(err, "failed to write %v", config.OutputFilePath)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|