1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/pkg/versioning/docker.go

168 lines
3.8 KiB
Go
Raw Normal View History

package versioning
import (
"fmt"
"os"
"path/filepath"
"strings"
"github.com/pkg/errors"
)
// Docker defines an artifact based on a Dockerfile
type Docker struct {
artifact Artifact
content []byte
utils Utils
options *Options
path string
versionSource string
versioningScheme string
readFile func(string) ([]byte, error)
writeFile func(string, []byte, os.FileMode) error
}
func (d *Docker) init() {
if d.readFile == nil {
d.readFile = os.ReadFile
}
if d.writeFile == nil {
d.writeFile = os.WriteFile
}
}
func (d *Docker) initDockerfile() {
if len(d.path) == 0 {
d.path = "Dockerfile"
}
}
// VersioningScheme returns the relevant versioning scheme
func (d *Docker) VersioningScheme() string {
if len(d.versioningScheme) == 0 {
return "docker"
}
return d.versioningScheme
}
// GetVersion returns the current version of the artifact
func (d *Docker) GetVersion() (string, error) {
d.init()
var err error
switch d.versionSource {
case "FROM":
var err error
d.initDockerfile()
d.content, err = d.readFile(d.path)
if err != nil {
return "", errors.Wrapf(err, "failed to read file '%v'", d.path)
}
version := d.versionFromBaseImageTag()
if len(version) == 0 {
return "", fmt.Errorf("no version information available in FROM statement")
}
return version, nil
case "":
if len(d.path) == 0 {
d.path = "VERSION"
}
d.versionSource = "custom"
fallthrough
case "custom", "dub", "golang", "maven", "mta", "npm", "pip", "sbt":
if d.options == nil {
d.options = &Options{}
}
d.artifact, err = GetArtifact(d.versionSource, d.path, d.options, d.utils)
if err != nil {
return "", err
}
return d.artifact.GetVersion()
default:
d.initDockerfile()
d.content, err = d.readFile(d.path)
if err != nil {
return "", errors.Wrapf(err, "failed to read file '%v'", d.path)
}
version := d.versionFromEnv(d.versionSource)
if len(version) == 0 {
return "", fmt.Errorf("no version information available in ENV '%v'", d.versionSource)
}
return version, nil
}
}
// SetVersion updates the version of the artifact
func (d *Docker) SetVersion(version string) error {
d.init()
dir := ""
if d.artifact != nil {
err := d.artifact.SetVersion(version)
if err != nil {
return err
}
dir = filepath.Dir(d.path)
}
err := d.writeFile(filepath.Join(dir, "VERSION"), []byte(version), 0700)
if err != nil {
return errors.Wrap(err, "failed to write file 'VERSION'")
}
return nil
}
func (d *Docker) versionFromEnv(env string) string {
lines := strings.Split(string(d.content), "\n")
for _, line := range lines {
if strings.HasPrefix(line, "ENV") && strings.Fields(line)[1] == env {
return strings.Fields(line)[2]
}
}
return ""
}
func (d *Docker) versionFromBaseImageTag() string {
lines := strings.Split(string(d.content), "\n")
for _, line := range lines {
if strings.HasPrefix(line, "FROM") {
imageParts := strings.Split(line, ":")
partsCount := len(imageParts)
if partsCount == 1 {
return ""
}
version := imageParts[partsCount-1]
return strings.TrimSpace(version)
}
}
return ""
}
// GetCoordinates returns the coordinates
func (d *Docker) GetCoordinates() (Coordinates, error) {
result := Coordinates{}
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 15:52:48 +02:00
result.GroupID = ""
result.ArtifactID, _ = d.GetArtifactID()
result.Version = ""
// cannot properly resolve version unless all options are provided. Can we ensure proper parameterization?
// result.Version, err = d.GetVersion()
// if err != nil {
// return nil, err
// }
return result, nil
}
// GetArtifactID returns the current ID of the artifact
func (d *Docker) GetArtifactID() (string, error) {
d.init()
artifactID := strings.ReplaceAll(strings.ReplaceAll(strings.ReplaceAll(d.options.DockerImage, "/", "_"), ":", "_"), ".", "_")
return artifactID, nil
}