2021-02-12 08:50:38 +01: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 08:50:38 +01:00
"time"
"github.com/SAP/jenkins-library/pkg/config"
2024-10-11 14:55:39 +05:00
"github.com/SAP/jenkins-library/pkg/gcp"
2021-02-12 08:50:38 +01:00
"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 08:50:38 +01: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 08:50:38 +01:00
"github.com/spf13/cobra"
)
2021-10-04 13:08:34 +02:00
type isChangeInDevelopmentOptions struct {
2021-02-12 08:50:38 +01: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 {
2021-12-15 14:26:23 +01:00
log . Entry (). Error ( "failed to persist Piper environment" )
2021-10-04 14:35:38 +02:00
}
2021-02-12 08:50:38 +01: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 08:50:38 +01:00
2021-10-04 13:08:34 +02:00
metadata := isChangeInDevelopmentMetadata ()
var stepConfig isChangeInDevelopmentOptions
2021-02-12 08:50:38 +01: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-11-18 17:50:03 +01:00
var splunkClient * splunk . Splunk
telemetryClient := & telemetry . Telemetry {}
2021-02-12 08:50:38 +01:00
2021-10-04 13:08:34 +02:00
var createIsChangeInDevelopmentCmd = & cobra . Command {
2021-02-12 08:50:38 +01: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 08:50:38 +01: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 )
2024-11-04 14:20:37 +01:00
path , err := os . Getwd ()
if err != nil {
return err
}
2021-02-12 08:50:38 +01:00
fatalHook := & log . FatalHook { CorrelationID : GeneralConfig . CorrelationID , Path : path }
log . RegisterHook ( fatalHook )
2024-11-04 14:20:37 +01:00
err = PrepareConfig ( cmd , & metadata , STEP_NAME , & stepConfig , config . OpenPiperFile )
2021-02-12 08:50:38 +01:00
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 )
}
2023-11-06 14:25:13 +06:00
if len ( GeneralConfig . HookConfig . SplunkConfig . Dsn ) > 0 || len ( GeneralConfig . HookConfig . SplunkConfig . ProdCriblEndpoint ) > 0 {
2021-11-18 17:50:03 +01:00
splunkClient = & splunk . Splunk {}
2021-05-17 12:14:04 +02:00
logCollector = & log . CollectorHook { CorrelationID : GeneralConfig . CorrelationID }
log . RegisterHook ( logCollector )
}
2022-06-22 13:31:17 +02:00
if err = log . RegisterANSHookIfConfigured ( GeneralConfig . CorrelationID ); err != nil {
log . Entry (). WithError ( err ). Warn ( "failed to set up SAP Alert Notification Service log hook" )
}
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 08:50:38 +01:00
return nil
},
Run : func ( _ * cobra . Command , _ [] string ) {
2024-10-11 14:55:39 +05:00
vaultClient := config . GlobalVaultClient ()
if vaultClient != nil {
defer vaultClient . MustRevokeToken ()
}
2021-11-18 17:50:03 +01:00
stepTelemetryData := telemetry . CustomData {}
stepTelemetryData . ErrorCode = "1"
2021-02-12 08:50:38 +01:00
handler := func () {
2021-10-04 14:35:38 +02:00
commonPipelineEnvironment . persist ( GeneralConfig . EnvRootPath , "commonPipelineEnvironment" )
2021-12-15 17:07:47 +03:00
config . RemoveVaultSecretFiles ()
2021-11-18 17:50:03 +01:00
stepTelemetryData . Duration = fmt . Sprintf ( "%v" , time . Since ( startTime ). Milliseconds ())
stepTelemetryData . ErrorCategory = log . GetErrorCategory (). String ()
stepTelemetryData . PiperCommitHash = GitCommit
telemetryClient . SetData ( & stepTelemetryData )
2025-02-07 12:18:01 +01:00
telemetryClient . LogStepTelemetryData ()
2021-05-17 12:14:04 +02:00
if len ( GeneralConfig . HookConfig . SplunkConfig . Dsn ) > 0 {
2023-07-14 19:19:57 +06:00
splunkClient . Initialize ( GeneralConfig . CorrelationID ,
GeneralConfig . HookConfig . SplunkConfig . Dsn ,
GeneralConfig . HookConfig . SplunkConfig . Token ,
GeneralConfig . HookConfig . SplunkConfig . Index ,
GeneralConfig . HookConfig . SplunkConfig . SendLogs )
splunkClient . Send ( telemetryClient . GetData (), logCollector )
}
if len ( GeneralConfig . HookConfig . SplunkConfig . ProdCriblEndpoint ) > 0 {
splunkClient . Initialize ( GeneralConfig . CorrelationID ,
GeneralConfig . HookConfig . SplunkConfig . ProdCriblEndpoint ,
GeneralConfig . HookConfig . SplunkConfig . ProdCriblToken ,
GeneralConfig . HookConfig . SplunkConfig . ProdCriblIndex ,
GeneralConfig . HookConfig . SplunkConfig . SendLogs )
2021-11-18 17:50:03 +01:00
splunkClient . Send ( telemetryClient . GetData (), logCollector )
2021-05-17 12:14:04 +02:00
}
2024-10-11 14:55:39 +05:00
if GeneralConfig . HookConfig . GCPPubSubConfig . Enabled {
err := gcp . NewGcpPubsubClient (
vaultClient ,
GeneralConfig . HookConfig . GCPPubSubConfig . ProjectNumber ,
GeneralConfig . HookConfig . GCPPubSubConfig . IdentityPool ,
GeneralConfig . HookConfig . GCPPubSubConfig . IdentityProvider ,
GeneralConfig . CorrelationID ,
GeneralConfig . HookConfig . OIDCConfig . RoleID ,
). Publish ( GeneralConfig . HookConfig . GCPPubSubConfig . Topic , telemetryClient . GetDataBytes ())
if err != nil {
log . Entry (). WithError ( err ). Warn ( "event publish failed" )
}
}
2021-02-12 08:50:38 +01:00
}
log . DeferExitHandler ( handler )
defer handler ()
2025-02-07 12:18:01 +01:00
telemetryClient . Initialize ( STEP_NAME )
2021-11-18 17:50:03 +01:00
isChangeInDevelopment ( stepConfig , & stepTelemetryData , & commonPipelineEnvironment )
stepTelemetryData . ErrorCode = "0"
2021-02-12 08:50:38 +01:00
log . Entry (). Info ( "SUCCESS" )
},
}
2021-10-04 13:08:34 +02:00
addIsChangeInDevelopmentFlags ( createIsChangeInDevelopmentCmd , & stepConfig )
return createIsChangeInDevelopmentCmd
2021-02-12 08:50:38 +01:00
}
2021-10-04 13:08:34 +02:00
func addIsChangeInDevelopmentFlags ( cmd * cobra . Command , stepConfig * isChangeInDevelopmentOptions ) {
2021-02-12 08:50:38 +01: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 08:50:38 +01: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 08:50:38 +01: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 08:50:38 +01:00
var theMetaData = config . StepData {
Metadata : config . StepMetadata {
2021-10-04 13:08:34 +02:00
Name : "isChangeInDevelopment" ,
2021-02-12 08:50:38 +01: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 08:50:38 +01: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 08:50:38 +01: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 08:50:38 +01: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 08:50:38 +01: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 08:50:38 +01: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 08:50:38 +01: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 08:50:38 +01:00
},
{
2021-10-04 14:35:38 +02:00
Name : "cmClientOpts" ,
2021-02-12 08:50:38 +01: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 08:50:38 +01:00
},
},
},
2021-10-04 14:35:38 +02:00
Containers : [] config . Container {
2022-04-05 12:33:19 +02:00
{ Name : "cmclient" , Image : "ppiper/cm-client:3.0.0.0" },
2021-10-04 14:35:38 +02:00
},
Outputs : config . StepOutputs {
Resources : [] config . StepResources {
{
Name : "commonPipelineEnvironment" ,
Type : "piperEnvironment" ,
Parameters : [] map [ string ] interface {}{
2021-12-15 17:07:47 +03:00
{ "name" : "custom/isChangeInDevelopment" , "type" : "bool" },
2021-10-04 14:35:38 +02:00
},
},
},
},
2021-02-12 08:50:38 +01:00
},
}
return theMetaData
}