2021-02-17 10:59:56 +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"
2021-05-17 12:14:04 +02:00
"github.com/SAP/jenkins-library/pkg/splunk"
2021-02-17 10:59:56 +02:00
"github.com/SAP/jenkins-library/pkg/telemetry"
"github.com/spf13/cobra"
)
type integrationArtifactUploadOptions struct {
2021-07-16 16:09:55 +02:00
APIServiceKey string ` json:"apiServiceKey,omitempty" `
IntegrationFlowID string ` json:"integrationFlowId,omitempty" `
IntegrationFlowName string ` json:"integrationFlowName,omitempty" `
PackageID string ` json:"packageId,omitempty" `
FilePath string ` json:"filePath,omitempty" `
2021-02-17 10:59:56 +02:00
}
2021-05-04 16:14:40 +02:00
// IntegrationArtifactUploadCommand Upload or Update an integration flow designtime artifact
2021-02-17 10:59:56 +02:00
func IntegrationArtifactUploadCommand ( ) * cobra . Command {
const STEP_NAME = "integrationArtifactUpload"
metadata := integrationArtifactUploadMetadata ( )
var stepConfig integrationArtifactUploadOptions
var startTime time . Time
2021-05-17 12:14:04 +02:00
var logCollector * log . CollectorHook
2021-02-17 10:59:56 +02:00
var createIntegrationArtifactUploadCmd = & cobra . Command {
Use : STEP_NAME ,
2021-05-04 16:14:40 +02:00
Short : "Upload or Update an integration flow designtime artifact" ,
2021-04-30 09:43:25 +02:00
Long : ` With this step you can either upload or update a integration flow designtime artifact using the OData API. Learn more about the SAP Cloud Integration remote API for updating an integration flow artifact [here](https://help.sap.com/viewer/368c481cd6954bdfa5d0435479fd4eaf/Cloud/en-US/d1679a80543f46509a7329243b595bdb.html). ` ,
2021-02-17 10:59:56 +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-17 10:59:56 +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
}
2021-06-28 10:50:33 +02:00
log . RegisterSecret ( stepConfig . APIServiceKey )
2021-02-17 10:59:56 +02:00
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-02-17 10:59:56 +02:00
return nil
} ,
Run : func ( _ * cobra . Command , _ [ ] string ) {
telemetryData := telemetry . CustomData { }
telemetryData . ErrorCode = "1"
handler := func ( ) {
config . RemoveVaultSecretFiles ( )
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-17 10:59:56 +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-02-17 10:59:56 +02:00
integrationArtifactUpload ( stepConfig , & telemetryData )
telemetryData . ErrorCode = "0"
log . Entry ( ) . Info ( "SUCCESS" )
} ,
}
addIntegrationArtifactUploadFlags ( createIntegrationArtifactUploadCmd , & stepConfig )
return createIntegrationArtifactUploadCmd
}
func addIntegrationArtifactUploadFlags ( cmd * cobra . Command , stepConfig * integrationArtifactUploadOptions ) {
2021-07-01 10:07:57 +02:00
cmd . Flags ( ) . StringVar ( & stepConfig . APIServiceKey , "apiServiceKey" , os . Getenv ( "PIPER_apiServiceKey" ) , "Service key JSON string to access the Process Integration Runtime service instance of plan 'api'" )
2021-02-17 10:59:56 +02:00
cmd . Flags ( ) . StringVar ( & stepConfig . IntegrationFlowID , "integrationFlowId" , os . Getenv ( "PIPER_integrationFlowId" ) , "Specifies the ID of the Integration Flow artifact" )
cmd . Flags ( ) . StringVar ( & stepConfig . IntegrationFlowName , "integrationFlowName" , os . Getenv ( "PIPER_integrationFlowName" ) , "Specifies the Name of the Integration Flow artifact" )
cmd . Flags ( ) . StringVar ( & stepConfig . PackageID , "packageId" , os . Getenv ( "PIPER_packageId" ) , "Specifies the ID of the Integration Package" )
cmd . Flags ( ) . StringVar ( & stepConfig . FilePath , "filePath" , os . Getenv ( "PIPER_filePath" ) , "Specifies integration artifact relative file path." )
2021-06-28 10:50:33 +02:00
cmd . MarkFlagRequired ( "apiServiceKey" )
2021-02-17 10:59:56 +02:00
cmd . MarkFlagRequired ( "integrationFlowId" )
cmd . MarkFlagRequired ( "integrationFlowName" )
cmd . MarkFlagRequired ( "filePath" )
}
// retrieve step metadata
func integrationArtifactUploadMetadata ( ) config . StepData {
var theMetaData = config . StepData {
Metadata : config . StepMetadata {
Name : "integrationArtifactUpload" ,
Aliases : [ ] config . Alias { } ,
2021-05-04 16:14:40 +02:00
Description : "Upload or Update an integration flow designtime artifact" ,
2021-02-17 10:59:56 +02:00
} ,
Spec : config . StepSpec {
Inputs : config . StepInputs {
2021-06-16 08:43:30 +02:00
Secrets : [ ] config . StepSecrets {
2021-07-01 10:07:57 +02:00
{ Name : "cpiApiServiceKeyCredentialsId" , Description : "Jenkins secret text credential ID containing the service key to the Process Integration Runtime service instance of plan 'api'" , Type : "jenkins" } ,
2021-06-16 08:43:30 +02:00
} ,
2021-02-17 10:59:56 +02:00
Parameters : [ ] config . StepParameters {
{
2021-06-28 10:50:33 +02:00
Name : "apiServiceKey" ,
2021-02-17 10:59:56 +02:00
ResourceRef : [ ] config . ResourceReference {
{
2021-06-28 16:57:37 +02:00
Name : "cpiApiServiceKeyCredentialsId" ,
Param : "apiServiceKey" ,
2021-02-17 10:59:56 +02:00
Type : "secret" ,
} ,
} ,
2021-06-28 10:50:33 +02:00
Scope : [ ] string { "PARAMETERS" } ,
2021-02-17 10:59:56 +02:00
Type : "string" ,
Mandatory : true ,
Aliases : [ ] config . Alias { } ,
2021-06-28 10:50:33 +02:00
Default : os . Getenv ( "PIPER_apiServiceKey" ) ,
2021-02-17 10:59:56 +02:00
} ,
{
Name : "integrationFlowId" ,
ResourceRef : [ ] config . ResourceReference { } ,
2021-06-29 10:09:18 +02:00
Scope : [ ] string { "PARAMETERS" , "GENERAL" , "STAGES" , "STEPS" } ,
2021-02-17 10:59:56 +02:00
Type : "string" ,
Mandatory : true ,
Aliases : [ ] config . Alias { } ,
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_integrationFlowId" ) ,
2021-02-17 10:59:56 +02:00
} ,
{
Name : "integrationFlowName" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
Type : "string" ,
Mandatory : true ,
Aliases : [ ] config . Alias { } ,
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_integrationFlowName" ) ,
2021-02-17 10:59:56 +02:00
} ,
{
Name : "packageId" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
Type : "string" ,
2021-07-29 14:29:47 +02:00
Mandatory : false ,
2021-02-17 10:59:56 +02:00
Aliases : [ ] config . Alias { } ,
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_packageId" ) ,
2021-02-17 10:59:56 +02:00
} ,
{
Name : "filePath" ,
ResourceRef : [ ] config . ResourceReference { } ,
Scope : [ ] string { "PARAMETERS" , "STAGES" , "STEPS" } ,
Type : "string" ,
Mandatory : true ,
Aliases : [ ] config . Alias { } ,
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_filePath" ) ,
2021-02-17 10:59:56 +02:00
} ,
} ,
} ,
} ,
}
return theMetaData
}