1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-01-04 04:07:16 +02:00
sap-jenkins-library/pkg/versioning/versioning.go
Oliver Nocon a104b2a06d
feat(whitesourceExecuteScan): UA for all build tools, e.g. maven & npm (#2501)
* feat(whitesource): add config helper

this helps to ease & enforce config settings

* fix accidential change of class

* add todos wrt java download

* use existing scanOptions, add option to download jre

* update generation

* fix generation

* allow running UA via go library

* correct image, improve logging

* add removal of downloaded JVM

* update java creation and deletion

* refactor and add log output

* remove obsolete ToDo

* increase test coverage

* increase test coverage

* adding aliases and tests

* make go modules as default

* maven: update behavior of projectNaming

* add Docker capabilities

* correct parameter name

* retrieve Docker coordinates

* docker coordinates only to provide artifact

* add ToDos

* add mta capability

* add aliases, mvn arguments for settings

* clean up groovy part

* update defaults

* add container for pip

* add defaults, add maven specifics, ...

* properly download settings

* maven: check existence of excluded files

* fix reporting

* Update CommonStepsTest.groovy

* update comment

* fix CodeClimate finding

* add tests for pip & fix minor issues

* fix order of pip build descriptors

* update pip container options

* fix pip virtualEnv parameter

* update report permissions

* fix test

* update container options

* add use fileUtils to load properties file

* update parameter description

* adding Docker scanning defaults

* clean up configHelper

* consider also npm tool cache

* add todos
2021-02-03 14:52:48 +01:00

209 lines
5.5 KiB
Go

package versioning
import (
"fmt"
"path/filepath"
"github.com/SAP/jenkins-library/pkg/piperutils"
"github.com/SAP/jenkins-library/pkg/maven"
)
// Coordinates to address the artifact
type Coordinates interface{}
// Artifact defines the versioning operations for various build tools
type Artifact interface {
VersioningScheme() string
GetVersion() (string, error)
SetVersion(string) error
GetCoordinates() (Coordinates, error)
}
// Options define build tool specific settings in order to properly retrieve e.g. the version / coordinates of an artifact
type Options struct {
ProjectSettingsFile string
DockerImage string
GlobalSettingsFile string
M2Path string
VersionSource string
VersionSection string
VersionField string
VersioningScheme string
}
// Utils defines the versioning operations for various build tools
type Utils interface {
maven.Utils
}
type mvnRunner struct{}
func (m *mvnRunner) Execute(options *maven.ExecuteOptions, utils maven.Utils) (string, error) {
return maven.Execute(options, utils)
}
func (m *mvnRunner) Evaluate(options *maven.EvaluateOptions, expression string, utils maven.Utils) (string, error) {
return maven.Evaluate(options, expression, utils)
}
var fileExists func(string) (bool, error)
// GetArtifact returns the build tool specific implementation for retrieving version, etc. of an artifact
func GetArtifact(buildTool, buildDescriptorFilePath string, opts *Options, utils Utils) (Artifact, error) {
var artifact Artifact
if fileExists == nil {
fileExists = piperutils.FileExists
}
switch buildTool {
case "custom":
var err error
artifact, err = customArtifact(buildDescriptorFilePath, opts.VersionField, opts.VersionSection, opts.VersioningScheme)
if err != nil {
return artifact, err
}
case "docker":
artifact = &Docker{
utils: utils,
options: opts,
path: buildDescriptorFilePath,
versionSource: opts.VersionSource,
versioningScheme: opts.VersioningScheme,
}
case "dub":
if len(buildDescriptorFilePath) == 0 {
buildDescriptorFilePath = "dub.json"
}
artifact = &JSONfile{
path: buildDescriptorFilePath,
versionField: "version",
}
case "gradle":
if len(buildDescriptorFilePath) == 0 {
buildDescriptorFilePath = "gradle.properties"
}
artifact = &Gradle{
path: buildDescriptorFilePath,
versionField: opts.VersionField,
}
case "golang":
if len(buildDescriptorFilePath) == 0 {
var err error
buildDescriptorFilePath, err = searchDescriptor([]string{"VERSION", "version.txt", "go.mod"}, fileExists)
if err != nil {
return artifact, err
}
}
switch buildDescriptorFilePath {
case "go.mod":
artifact = &GoMod{path: buildDescriptorFilePath, fileExists: fileExists}
break
default:
artifact = &Versionfile{path: buildDescriptorFilePath}
}
case "maven":
if len(buildDescriptorFilePath) == 0 {
buildDescriptorFilePath = "pom.xml"
}
artifact = &Maven{
runner: &mvnRunner{},
utils: utils,
options: maven.EvaluateOptions{
PomPath: buildDescriptorFilePath,
ProjectSettingsFile: opts.ProjectSettingsFile,
GlobalSettingsFile: opts.GlobalSettingsFile,
M2Path: opts.M2Path,
},
}
case "mta":
if len(buildDescriptorFilePath) == 0 {
buildDescriptorFilePath = "mta.yaml"
}
artifact = &YAMLfile{
path: buildDescriptorFilePath,
versionField: "version",
artifactIDField: "ID",
}
case "npm":
if len(buildDescriptorFilePath) == 0 {
buildDescriptorFilePath = "package.json"
}
artifact = &JSONfile{
path: buildDescriptorFilePath,
versionField: "version",
}
case "pip":
if len(buildDescriptorFilePath) == 0 {
var err error
buildDescriptorFilePath, err = searchDescriptor([]string{"setup.py", "version.txt", "VERSION"}, fileExists)
if err != nil {
return artifact, err
}
}
artifact = &Pip{
path: buildDescriptorFilePath,
fileExists: fileExists,
}
case "sbt":
if len(buildDescriptorFilePath) == 0 {
var err error
buildDescriptorFilePath, err = searchDescriptor([]string{"sbtDescriptor.json", "build.sbt"}, fileExists)
if err != nil {
return artifact, err
}
}
artifact = &JSONfile{
path: buildDescriptorFilePath,
versionField: "version",
}
default:
return artifact, fmt.Errorf("build tool '%v' not supported", buildTool)
}
return artifact, nil
}
func searchDescriptor(supported []string, existsFunc func(string) (bool, error)) (string, error) {
var descriptor string
for _, f := range supported {
exists, _ := existsFunc(f)
if exists {
descriptor = f
break
}
}
if len(descriptor) == 0 {
return "", fmt.Errorf("no build descriptor available, supported: %v", supported)
}
return descriptor, nil
}
func customArtifact(buildDescriptorFilePath, field, section, scheme string) (Artifact, error) {
switch filepath.Ext(buildDescriptorFilePath) {
case ".cfg", ".ini":
return &INIfile{
path: buildDescriptorFilePath,
versionField: field,
versionSection: section,
versioningScheme: scheme,
}, nil
case ".json":
return &JSONfile{
path: buildDescriptorFilePath,
versionField: field,
}, nil
case ".yaml", ".yml":
return &YAMLfile{
path: buildDescriptorFilePath,
versionField: field,
}, nil
case ".txt", "":
return &Versionfile{
path: buildDescriptorFilePath,
versioningScheme: scheme,
}, nil
default:
return nil, fmt.Errorf("file type not supported: '%v'", buildDescriptorFilePath)
}
}