2020-09-18 10:24:46 +02:00
// Code generated by piper's step-generator. DO NOT EDIT.
package cmd
import (
"fmt"
"os"
"time"
"github.com/SAP/jenkins-library/pkg/config"
"github.com/SAP/jenkins-library/pkg/log"
"github.com/SAP/jenkins-library/pkg/telemetry"
"github.com/spf13/cobra"
)
type abapAddonAssemblyKitPublishTargetVectorOptions struct {
AbapAddonAssemblyKitEndpoint string ` json:"abapAddonAssemblyKitEndpoint,omitempty" `
Username string ` json:"username,omitempty" `
Password string ` json:"password,omitempty" `
TargetVectorScope string ` json:"targetVectorScope,omitempty" `
AddonDescriptor string ` json:"addonDescriptor,omitempty" `
}
2020-09-23 14:57:45 +02:00
// AbapAddonAssemblyKitPublishTargetVectorCommand This step triggers the publication of the Target Vector according to the specified scope.
2020-09-18 10:24:46 +02:00
func AbapAddonAssemblyKitPublishTargetVectorCommand ( ) * cobra . Command {
const STEP_NAME = "abapAddonAssemblyKitPublishTargetVector"
metadata := abapAddonAssemblyKitPublishTargetVectorMetadata ( )
var stepConfig abapAddonAssemblyKitPublishTargetVectorOptions
var startTime time . Time
var createAbapAddonAssemblyKitPublishTargetVectorCmd = & cobra . Command {
Use : STEP_NAME ,
2020-09-23 14:57:45 +02:00
Short : "This step triggers the publication of the Target Vector according to the specified scope." ,
Long : ` This step reads the Target Vector ID from the addonDescriptor in the commonPipelineEnvironment and triggers the publication of the Target Vector .
With targetVectorScope "T" the Target Vector will be published to the test environment and with targetVectorScope "P" it will be published to the productive environment . ` ,
2020-09-18 10:24:46 +02:00
PreRunE : func ( cmd * cobra . Command , _ [ ] string ) error {
startTime = time . Now ( )
log . SetStepName ( STEP_NAME )
log . SetVerbose ( GeneralConfig . Verbose )
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 )
}
return nil
} ,
Run : func ( _ * cobra . Command , _ [ ] string ) {
telemetryData := telemetry . CustomData { }
telemetryData . ErrorCode = "1"
handler := func ( ) {
telemetryData . Duration = fmt . Sprintf ( "%v" , time . Since ( startTime ) . Milliseconds ( ) )
2020-09-29 13:49:40 +02:00
telemetryData . ErrorCategory = log . GetErrorCategory ( ) . String ( )
2020-09-18 10:24:46 +02:00
telemetry . Send ( & telemetryData )
}
log . DeferExitHandler ( handler )
defer handler ( )
telemetry . Initialize ( GeneralConfig . NoTelemetry , STEP_NAME )
abapAddonAssemblyKitPublishTargetVector ( stepConfig , & telemetryData )
telemetryData . ErrorCode = "0"
log . Entry ( ) . Info ( "SUCCESS" )
} ,
}
addAbapAddonAssemblyKitPublishTargetVectorFlags ( createAbapAddonAssemblyKitPublishTargetVectorCmd , & stepConfig )
return createAbapAddonAssemblyKitPublishTargetVectorCmd
}
func addAbapAddonAssemblyKitPublishTargetVectorFlags ( cmd * cobra . Command , stepConfig * abapAddonAssemblyKitPublishTargetVectorOptions ) {
cmd . Flags ( ) . StringVar ( & stepConfig . AbapAddonAssemblyKitEndpoint , "abapAddonAssemblyKitEndpoint" , os . Getenv ( "PIPER_abapAddonAssemblyKitEndpoint" ) , "Base URL to the Addon Assembly Kit as a Service (AAKaaS) system" )
cmd . Flags ( ) . StringVar ( & stepConfig . Username , "username" , os . Getenv ( "PIPER_username" ) , "User for the Addon Assembly Kit as a Service (AAKaaS) system" )
cmd . Flags ( ) . StringVar ( & stepConfig . Password , "password" , os . Getenv ( "PIPER_password" ) , "Password for the Addon Assembly Kit as a Service (AAKaaS) system" )
2020-09-23 14:57:45 +02:00
cmd . Flags ( ) . StringVar ( & stepConfig . TargetVectorScope , "targetVectorScope" , os . Getenv ( "PIPER_targetVectorScope" ) , "Determines whether the Target Vector is published to the productive ('P') or test ('T') environment" )
2020-09-18 10:24:46 +02:00
cmd . Flags ( ) . StringVar ( & stepConfig . AddonDescriptor , "addonDescriptor" , os . Getenv ( "PIPER_addonDescriptor" ) , "Structure in the commonPipelineEnvironment containing information about the Product Version and corresponding Software Component Versions" )
cmd . MarkFlagRequired ( "abapAddonAssemblyKitEndpoint" )
cmd . MarkFlagRequired ( "username" )
cmd . MarkFlagRequired ( "password" )
cmd . MarkFlagRequired ( "addonDescriptor" )
}
// retrieve step metadata
func abapAddonAssemblyKitPublishTargetVectorMetadata ( ) config . StepData {
var theMetaData = config . StepData {
Metadata : config . StepMetadata {
Name : "abapAddonAssemblyKitPublishTargetVector" ,
Aliases : [ ] config . Alias { } ,
} ,
Spec : config . StepSpec {
Inputs : config . StepInputs {
Parameters : [ ] config . StepParameters {
{
Name : "abapAddonAssemblyKitEndpoint" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" , "GENERAL" } ,
Type : "string" ,
Mandatory : true ,
Aliases : [ ] config . Alias { } ,
} ,
{
Name : "username" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
Type : "string" ,
Mandatory : true ,
Aliases : [ ] config . Alias { } ,
} ,
{
Name : "password" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" } ,
Type : "string" ,
Mandatory : true ,
Aliases : [ ] config . Alias { } ,
} ,
{
Name : "targetVectorScope" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
Type : "string" ,
Mandatory : false ,
Aliases : [ ] config . Alias { } ,
} ,
{
Name : "addonDescriptor" ,
ResourceRef : [ ] config . ResourceReference {
{
Name : "commonPipelineEnvironment" ,
Param : "abap/addonDescriptor" ,
} ,
} ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
Type : "string" ,
Mandatory : true ,
Aliases : [ ] config . Alias { } ,
} ,
} ,
} ,
} ,
}
return theMetaData
}