mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
132 lines
4.0 KiB
Go
132 lines
4.0 KiB
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
|
|
"github.com/SAP/jenkins-library/pkg/config"
|
|
"github.com/pkg/errors"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
type configCommandOptions struct {
|
|
output string //output format, so far only JSON
|
|
parametersJSON string //parameters to be considered in JSON format
|
|
stepMetadata string //metadata to be considered, can be filePath or ENV containing JSON in format 'ENV:MY_ENV_VAR'
|
|
stepName string
|
|
contextConfig bool
|
|
openFile func(s string) (io.ReadCloser, error)
|
|
}
|
|
|
|
var configOptions configCommandOptions
|
|
|
|
// ConfigCommand is the entry command for loading the configuration of a pipeline step
|
|
func ConfigCommand() *cobra.Command {
|
|
|
|
configOptions.openFile = openPiperFile
|
|
var createConfigCmd = &cobra.Command{
|
|
Use: "getConfig",
|
|
Short: "Loads the project 'Piper' configuration respecting defaults and parameters.",
|
|
RunE: func(cmd *cobra.Command, _ []string) error {
|
|
return generateConfig()
|
|
},
|
|
}
|
|
|
|
addConfigFlags(createConfigCmd)
|
|
return createConfigCmd
|
|
}
|
|
|
|
func generateConfig() error {
|
|
|
|
var myConfig config.Config
|
|
var stepConfig config.StepConfig
|
|
|
|
var metadata config.StepData
|
|
metadataFile, err := configOptions.openFile(configOptions.stepMetadata)
|
|
if err != nil {
|
|
return errors.Wrap(err, "metadata: open failed")
|
|
}
|
|
|
|
err = metadata.ReadPipelineStepData(metadataFile)
|
|
if err != nil {
|
|
return errors.Wrap(err, "metadata: read failed")
|
|
}
|
|
|
|
var customConfig io.ReadCloser
|
|
if fileExists(generalConfig.customConfig) {
|
|
customConfig, err = configOptions.openFile(generalConfig.customConfig)
|
|
if err != nil {
|
|
return errors.Wrap(err, "config: open failed")
|
|
}
|
|
}
|
|
|
|
defaultConfig, paramFilter, err := defaultsAndFilters(&metadata)
|
|
if err != nil {
|
|
return errors.Wrap(err, "defaults: retrieving step defaults failed")
|
|
}
|
|
|
|
for _, f := range generalConfig.defaultConfig {
|
|
fc, err := configOptions.openFile(f)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "config: getting defaults failed: '%v'", f)
|
|
}
|
|
defaultConfig = append(defaultConfig, fc)
|
|
}
|
|
|
|
var flags map[string]interface{}
|
|
|
|
params := []config.StepParameters{}
|
|
if !configOptions.contextConfig {
|
|
params = metadata.Spec.Inputs.Parameters
|
|
}
|
|
|
|
stepConfig, err = myConfig.GetStepConfig(flags, generalConfig.parametersJSON, customConfig, defaultConfig, paramFilter, params, generalConfig.stageName, configOptions.stepName)
|
|
if err != nil {
|
|
return errors.Wrap(err, "getting step config failed")
|
|
}
|
|
|
|
//ToDo: Check for mandatory parameters
|
|
|
|
myConfigJSON, _ := config.GetJSON(stepConfig.Config)
|
|
|
|
fmt.Println(myConfigJSON)
|
|
|
|
return nil
|
|
}
|
|
|
|
func addConfigFlags(cmd *cobra.Command) {
|
|
|
|
//ToDo: support more output options, like https://kubernetes.io/docs/reference/kubectl/overview/#formatting-output
|
|
cmd.Flags().StringVar(&configOptions.output, "output", "json", "Defines the output format")
|
|
|
|
cmd.Flags().StringVar(&configOptions.parametersJSON, "parametersJSON", os.Getenv("PIPER_parametersJSON"), "Parameters to be considered in JSON format")
|
|
cmd.Flags().StringVar(&configOptions.stepMetadata, "stepMetadata", "", "Step metadata, passed as path to yaml")
|
|
cmd.Flags().StringVar(&configOptions.stepName, "stepName", "", "Name of the step for which configuration should be included")
|
|
cmd.Flags().BoolVar(&configOptions.contextConfig, "contextConfig", false, "Defines if step context configuration should be loaded instead of step config")
|
|
|
|
cmd.MarkFlagRequired("stepMetadata")
|
|
cmd.MarkFlagRequired("stepName")
|
|
|
|
}
|
|
|
|
func defaultsAndFilters(metadata *config.StepData) ([]io.ReadCloser, config.StepFilters, error) {
|
|
if configOptions.contextConfig {
|
|
defaults, err := metadata.GetContextDefaults(configOptions.stepName)
|
|
if err != nil {
|
|
return nil, config.StepFilters{}, errors.Wrap(err, "metadata: getting context defaults failed")
|
|
}
|
|
return []io.ReadCloser{defaults}, metadata.GetContextParameterFilters(), nil
|
|
}
|
|
//ToDo: retrieve default values from metadata
|
|
return nil, metadata.GetParameterFilters(), nil
|
|
}
|
|
|
|
func fileExists(filename string) bool {
|
|
info, err := os.Stat(filename)
|
|
if os.IsNotExist(err) {
|
|
return false
|
|
}
|
|
return !info.IsDir()
|
|
}
|