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
Oliver Nocon d47a17c8fc
feat(whitesource): consolidated reporting and versioning alignment (#2571)
* update reporting and add todo comments

* enhance reporting, allow directory creation for reports

* properly pass reports

* update templating and increase verbosity of errors

* add todo

* add detail table

* update sorting

* add test and improve error message

* fix error message in test

* extend tests

* enhance tests

* enhance versioning behavior accoring to #1846

* create markdown overview report

* small fix

* fix small issue

* make sure that report directory exists

* align reporting directory with default directory from UA

* add missing comments

* add policy check incl. tests

* enhance logging and tests

* update versioning to allow custom version usage properly

* fix report paths and golang image

* update styling of md

* update test
2021-02-10 16:18:00 +01:00

169 lines
3.8 KiB
Go

package versioning
import (
"fmt"
"io/ioutil"
"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 = ioutil.ReadFile
}
if d.writeFile == nil {
d.writeFile = ioutil.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{}
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
}