mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
c97625e840
Co-authored-by: Ralf Pannemans <ralf.pannemans@sap.com> Co-authored-by: Johannes Dillmann <j.dillmann@sap.com> Co-authored-by: Sumit Kulhadia <sumit.kulhadia@sap.com>
55 lines
1.4 KiB
Go
55 lines
1.4 KiB
Go
package cnbutils
|
|
|
|
import (
|
|
"fmt"
|
|
"net/url"
|
|
"path/filepath"
|
|
"regexp"
|
|
"strings"
|
|
|
|
"github.com/SAP/jenkins-library/pkg/piperenv"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
type TargetImage struct {
|
|
ContainerImageName string
|
|
ContainerImageTag string
|
|
ContainerRegistry *url.URL
|
|
}
|
|
|
|
func GetTargetImage(imageRegistry, imageName, imageTag, projectID, envRootPath string) (*TargetImage, error) {
|
|
if imageRegistry == "" || imageTag == "" {
|
|
return nil, errors.New("containerRegistryUrl and containerImageTag must be present")
|
|
}
|
|
|
|
targetImage := &TargetImage{
|
|
ContainerImageTag: strings.ReplaceAll(imageTag, "+", "-"),
|
|
}
|
|
|
|
if matched, _ := regexp.MatchString("^(http|https)://.*", imageRegistry); !matched {
|
|
imageRegistry = fmt.Sprintf("https://%s", imageRegistry)
|
|
}
|
|
|
|
url, err := url.ParseRequestURI(imageRegistry)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "invalid registry url")
|
|
}
|
|
targetImage.ContainerRegistry = url
|
|
|
|
cpePath := filepath.Join(envRootPath, "commonPipelineEnvironment")
|
|
gitRepository := piperenv.GetResourceParameter(cpePath, "git", "repository")
|
|
|
|
if imageName != "" {
|
|
targetImage.ContainerImageName = imageName
|
|
} else if projectID != "" {
|
|
name := strings.ReplaceAll(projectID, ".", "-")
|
|
targetImage.ContainerImageName = name
|
|
} else if gitRepository != "" {
|
|
targetImage.ContainerImageName = strings.ReplaceAll(gitRepository, ".", "-")
|
|
} else {
|
|
return nil, errors.New("failed to derive default for image name")
|
|
}
|
|
|
|
return targetImage, nil
|
|
}
|