2021-02-12 09:50:38 +02:00
// Code generated by piper's step-generator. DO NOT EDIT.
package cmd
import (
"fmt"
"os"
2021-10-04 14:35:38 +02:00
"path/filepath"
2021-02-12 09:50:38 +02:00
"time"
"github.com/SAP/jenkins-library/pkg/config"
"github.com/SAP/jenkins-library/pkg/log"
2021-10-04 14:35:38 +02:00
"github.com/SAP/jenkins-library/pkg/piperenv"
2021-05-17 12:14:04 +02:00
"github.com/SAP/jenkins-library/pkg/splunk"
2021-02-12 09:50:38 +02:00
"github.com/SAP/jenkins-library/pkg/telemetry"
2021-10-01 12:49:05 +02:00
"github.com/SAP/jenkins-library/pkg/validation"
2021-02-12 09:50:38 +02:00
"github.com/spf13/cobra"
)
2021-10-04 13:08:34 +02:00
type isChangeInDevelopmentOptions struct {
2021-02-12 09:50:38 +02:00
Endpoint string ` json:"endpoint,omitempty" `
Username string ` json:"username,omitempty" `
Password string ` json:"password,omitempty" `
ChangeDocumentID string ` json:"changeDocumentId,omitempty" `
FailIfStatusIsNotInDevelopment bool ` json:"failIfStatusIsNotInDevelopment,omitempty" `
2021-10-04 14:35:38 +02:00
CmClientOpts [ ] string ` json:"cmClientOpts,omitempty" `
}
type isChangeInDevelopmentCommonPipelineEnvironment struct {
custom struct {
isChangeInDevelopment bool
}
}
func ( p * isChangeInDevelopmentCommonPipelineEnvironment ) persist ( path , resourceName string ) {
content := [ ] struct {
category string
name string
value interface { }
} {
{ category : "custom" , name : "isChangeInDevelopment" , value : p . custom . isChangeInDevelopment } ,
}
errCount := 0
for _ , param := range content {
err := piperenv . SetResourceParameter ( path , resourceName , filepath . Join ( param . category , param . name ) , param . value )
if err != nil {
log . Entry ( ) . WithError ( err ) . Error ( "Error persisting piper environment." )
errCount ++
}
}
if errCount > 0 {
log . Entry ( ) . Fatal ( "failed to persist Piper environment" )
}
2021-02-12 09:50:38 +02:00
}
2021-10-18 15:16:22 +02:00
// IsChangeInDevelopmentCommand This step checks if a certain change is in status 'in development'
2021-10-04 13:08:34 +02:00
func IsChangeInDevelopmentCommand ( ) * cobra . Command {
const STEP_NAME = "isChangeInDevelopment"
2021-02-12 09:50:38 +02:00
2021-10-04 13:08:34 +02:00
metadata := isChangeInDevelopmentMetadata ( )
var stepConfig isChangeInDevelopmentOptions
2021-02-12 09:50:38 +02:00
var startTime time . Time
2021-10-04 14:35:38 +02:00
var commonPipelineEnvironment isChangeInDevelopmentCommonPipelineEnvironment
2021-05-17 12:14:04 +02:00
var logCollector * log . CollectorHook
2021-02-12 09:50:38 +02:00
2021-10-04 13:08:34 +02:00
var createIsChangeInDevelopmentCmd = & cobra . Command {
2021-02-12 09:50:38 +02:00
Use : STEP_NAME ,
2021-10-18 15:16:22 +02:00
Short : "This step checks if a certain change is in status 'in development'" ,
Long : ` This step checks if a certain change is in status 'in development' ` ,
2021-02-12 09:50:38 +02:00
PreRunE : func ( cmd * cobra . Command , _ [ ] string ) error {
startTime = time . Now ( )
log . SetStepName ( STEP_NAME )
log . SetVerbose ( GeneralConfig . Verbose )
2021-07-08 15:26:07 +02:00
GeneralConfig . GitHubAccessTokens = ResolveAccessTokens ( GeneralConfig . GitHubTokens )
2021-02-12 09:50:38 +02:00
path , _ := os . Getwd ( )
fatalHook := & log . FatalHook { CorrelationID : GeneralConfig . CorrelationID , Path : path }
log . RegisterHook ( fatalHook )
err := PrepareConfig ( cmd , & metadata , STEP_NAME , & stepConfig , config . OpenPiperFile )
if err != nil {
log . SetErrorCategory ( log . ErrorConfiguration )
return err
}
log . RegisterSecret ( stepConfig . Username )
log . RegisterSecret ( stepConfig . Password )
if len ( GeneralConfig . HookConfig . SentryConfig . Dsn ) > 0 {
sentryHook := log . NewSentryHook ( GeneralConfig . HookConfig . SentryConfig . Dsn , GeneralConfig . CorrelationID )
log . RegisterHook ( & sentryHook )
}
2021-05-17 12:14:04 +02:00
if len ( GeneralConfig . HookConfig . SplunkConfig . Dsn ) > 0 {
logCollector = & log . CollectorHook { CorrelationID : GeneralConfig . CorrelationID }
log . RegisterHook ( logCollector )
}
2021-10-01 12:49:05 +02:00
validation , err := validation . New ( validation . WithJSONNamesForStructFields ( ) , validation . WithPredefinedErrorMessages ( ) )
if err != nil {
return err
}
if err = validation . ValidateStruct ( stepConfig ) ; err != nil {
log . SetErrorCategory ( log . ErrorConfiguration )
return err
}
2021-02-12 09:50:38 +02:00
return nil
} ,
Run : func ( _ * cobra . Command , _ [ ] string ) {
telemetryData := telemetry . CustomData { }
telemetryData . ErrorCode = "1"
handler := func ( ) {
config . RemoveVaultSecretFiles ( )
2021-10-04 14:35:38 +02:00
commonPipelineEnvironment . persist ( GeneralConfig . EnvRootPath , "commonPipelineEnvironment" )
2021-02-12 09:50:38 +02:00
telemetryData . Duration = fmt . Sprintf ( "%v" , time . Since ( startTime ) . Milliseconds ( ) )
telemetryData . ErrorCategory = log . GetErrorCategory ( ) . String ( )
telemetry . Send ( & telemetryData )
2021-05-17 12:14:04 +02:00
if len ( GeneralConfig . HookConfig . SplunkConfig . Dsn ) > 0 {
splunk . Send ( & telemetryData , logCollector )
}
2021-02-12 09:50:38 +02:00
}
log . DeferExitHandler ( handler )
defer handler ( )
telemetry . Initialize ( GeneralConfig . NoTelemetry , STEP_NAME )
2021-05-17 12:14:04 +02:00
if len ( GeneralConfig . HookConfig . SplunkConfig . Dsn ) > 0 {
splunk . Initialize ( GeneralConfig . CorrelationID ,
GeneralConfig . HookConfig . SplunkConfig . Dsn ,
GeneralConfig . HookConfig . SplunkConfig . Token ,
GeneralConfig . HookConfig . SplunkConfig . Index ,
GeneralConfig . HookConfig . SplunkConfig . SendLogs )
}
2021-10-04 14:35:38 +02:00
isChangeInDevelopment ( stepConfig , & telemetryData , & commonPipelineEnvironment )
2021-02-12 09:50:38 +02:00
telemetryData . ErrorCode = "0"
log . Entry ( ) . Info ( "SUCCESS" )
} ,
}
2021-10-04 13:08:34 +02:00
addIsChangeInDevelopmentFlags ( createIsChangeInDevelopmentCmd , & stepConfig )
return createIsChangeInDevelopmentCmd
2021-02-12 09:50:38 +02:00
}
2021-10-04 13:08:34 +02:00
func addIsChangeInDevelopmentFlags ( cmd * cobra . Command , stepConfig * isChangeInDevelopmentOptions ) {
2021-02-12 09:50:38 +02:00
cmd . Flags ( ) . StringVar ( & stepConfig . Endpoint , "endpoint" , os . Getenv ( "PIPER_endpoint" ) , "The service endpoint" )
2021-10-04 14:35:38 +02:00
cmd . Flags ( ) . StringVar ( & stepConfig . Username , "username" , os . Getenv ( "PIPER_username" ) , "Service user to authenticate against the ABAP backend" )
cmd . Flags ( ) . StringVar ( & stepConfig . Password , "password" , os . Getenv ( "PIPER_password" ) , "Service user password to authenticate against the ABAP backend" )
cmd . Flags ( ) . StringVar ( & stepConfig . ChangeDocumentID , "changeDocumentId" , os . Getenv ( "PIPER_changeDocumentId" ) , "ID of the change document to be checked for the status" )
2021-02-12 09:50:38 +02:00
cmd . Flags ( ) . BoolVar ( & stepConfig . FailIfStatusIsNotInDevelopment , "failIfStatusIsNotInDevelopment" , true , "lets the build fail in case the change is not in status 'in developent'. Otherwise a warning is emitted to the log" )
2021-10-04 14:35:38 +02:00
cmd . Flags ( ) . StringSliceVar ( & stepConfig . CmClientOpts , "cmClientOpts" , [ ] string { } , "additional options passed to cm client, e.g. for troubleshooting" )
2021-02-12 09:50:38 +02:00
cmd . MarkFlagRequired ( "endpoint" )
cmd . MarkFlagRequired ( "username" )
cmd . MarkFlagRequired ( "password" )
cmd . MarkFlagRequired ( "changeDocumentId" )
}
// retrieve step metadata
2021-10-04 13:08:34 +02:00
func isChangeInDevelopmentMetadata ( ) config . StepData {
2021-02-12 09:50:38 +02:00
var theMetaData = config . StepData {
Metadata : config . StepMetadata {
2021-10-04 13:08:34 +02:00
Name : "isChangeInDevelopment" ,
2021-02-12 09:50:38 +02:00
Aliases : [ ] config . Alias { } ,
2021-10-18 15:16:22 +02:00
Description : "This step checks if a certain change is in status 'in development'" ,
2021-02-12 09:50:38 +02:00
} ,
Spec : config . StepSpec {
Inputs : config . StepInputs {
2021-10-04 14:35:38 +02:00
Secrets : [ ] config . StepSecrets {
{ Name : "credentialsId" , Description : "Jenkins 'Username with password' credentials ID containing user and password to authenticate against the ABAP backend" , Type : "jenkins" , Aliases : [ ] config . Alias { { Name : "changeManagement/credentialsId" , Deprecated : false } } } ,
} ,
2021-02-12 09:50:38 +02:00
Parameters : [ ] config . StepParameters {
{
Name : "endpoint" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" , "GENERAL" } ,
Type : "string" ,
Mandatory : true ,
Aliases : [ ] config . Alias { { Name : "changeManagement/endpoint" } } ,
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_endpoint" ) ,
2021-02-12 09:50:38 +02:00
} ,
{
2021-10-04 14:35:38 +02:00
Name : "username" ,
ResourceRef : [ ] config . ResourceReference {
{
Name : "credentialsId" ,
Param : "username" ,
Type : "secret" ,
} ,
} ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" , "GENERAL" } ,
Type : "string" ,
Mandatory : true ,
Aliases : [ ] config . Alias { } ,
Default : os . Getenv ( "PIPER_username" ) ,
2021-02-12 09:50:38 +02:00
} ,
{
2021-10-04 14:35:38 +02:00
Name : "password" ,
ResourceRef : [ ] config . ResourceReference {
{
Name : "credentialsId" ,
Param : "password" ,
Type : "secret" ,
} ,
} ,
Scope : [ ] string { "PARAMETERS" } ,
Type : "string" ,
Mandatory : true ,
Aliases : [ ] config . Alias { } ,
Default : os . Getenv ( "PIPER_password" ) ,
2021-02-12 09:50:38 +02:00
} ,
{
2021-10-04 14:35:38 +02:00
Name : "changeDocumentId" ,
ResourceRef : [ ] config . ResourceReference {
{
Name : "commonPipelineEnvironment" ,
Param : "custom/changeDocumentId" ,
} ,
} ,
Scope : [ ] string { "PARAMETERS" } ,
Type : "string" ,
Mandatory : true ,
Aliases : [ ] config . Alias { } ,
Default : os . Getenv ( "PIPER_changeDocumentId" ) ,
2021-02-12 09:50:38 +02:00
} ,
{
Name : "failIfStatusIsNotInDevelopment" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
Type : "bool" ,
Mandatory : false ,
Aliases : [ ] config . Alias { } ,
2021-06-16 08:43:30 +02:00
Default : true ,
2021-02-12 09:50:38 +02:00
} ,
{
2021-10-04 14:35:38 +02:00
Name : "cmClientOpts" ,
2021-02-12 09:50:38 +02:00
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
Type : "[]string" ,
Mandatory : false ,
2021-10-04 14:35:38 +02:00
Aliases : [ ] config . Alias { { Name : "clientOpts" } , { Name : "changeManagement/clientOpts" } } ,
2021-06-16 08:43:30 +02:00
Default : [ ] string { } ,
2021-02-12 09:50:38 +02:00
} ,
} ,
} ,
2021-10-04 14:35:38 +02:00
Containers : [ ] config . Container {
{ Name : "cmclient" , Image : "ppiper/cm-client" } ,
} ,
Outputs : config . StepOutputs {
Resources : [ ] config . StepResources {
{
Name : "commonPipelineEnvironment" ,
Type : "piperEnvironment" ,
Parameters : [ ] map [ string ] interface { } {
{ "Name" : "custom/isChangeInDevelopment" } ,
} ,
} ,
} ,
} ,
2021-02-12 09:50:38 +02:00
} ,
}
return theMetaData
}