2021-01-13 16:14:56 +01:00
// Code generated by piper's step-generator. DO NOT EDIT.
package cmd
import (
"fmt"
"os"
2021-07-08 10:09:18 +02:00
"path/filepath"
2021-01-13 16:14:56 +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-01-13 16:14:56 +01:00
"github.com/SAP/jenkins-library/pkg/log"
2021-07-08 10:09:18 +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-01-13 16:14:56 +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-01-13 16:14:56 +01:00
"github.com/spf13/cobra"
)
type transportRequestUploadCTSOptions struct {
Description string `json:"description,omitempty"`
Endpoint string `json:"endpoint,omitempty"`
Client string `json:"client,omitempty"`
Username string `json:"username,omitempty"`
Password string `json:"password,omitempty"`
ApplicationName string `json:"applicationName,omitempty"`
AbapPackage string `json:"abapPackage,omitempty"`
OsDeployUser string `json:"osDeployUser,omitempty"`
DeployConfigFile string `json:"deployConfigFile,omitempty"`
TransportRequestID string `json:"transportRequestId,omitempty"`
DeployToolDependencies [] string `json:"deployToolDependencies,omitempty"`
NpmInstallOpts [] string `json:"npmInstallOpts,omitempty"`
}
2021-07-08 10:09:18 +02:00
type transportRequestUploadCTSCommonPipelineEnvironment struct {
custom struct {
transportRequestID string
}
}
func ( p * transportRequestUploadCTSCommonPipelineEnvironment ) persist ( path , resourceName string ) {
content := [] struct {
category string
name string
value interface {}
}{
{ category : "custom" , name : "transportRequestId" , value : p . custom . transportRequestID },
}
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-07-08 10:09:18 +02:00
}
}
2021-09-08 12:38:33 +02:00
// TransportRequestUploadCTSCommand This step uploads an UI5 application to the SAPUI5 ABAP repository.
2021-01-13 16:14:56 +01:00
func TransportRequestUploadCTSCommand () * cobra . Command {
const STEP_NAME = "transportRequestUploadCTS"
metadata := transportRequestUploadCTSMetadata ()
var stepConfig transportRequestUploadCTSOptions
var startTime time . Time
2021-07-08 10:09:18 +02:00
var commonPipelineEnvironment transportRequestUploadCTSCommonPipelineEnvironment
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-01-13 16:14:56 +01:00
var createTransportRequestUploadCTSCmd = & cobra . Command {
Use : STEP_NAME ,
2021-09-08 12:38:33 +02:00
Short : "This step uploads an UI5 application to the SAPUI5 ABAP repository." ,
Long : `This step uploads an UI5 application from your project folder to the SAPUI5 ABAP repository of the SAPUI5 ABAP back-end infrastructure using the SAPUI5 Repository OData service.
It processes the results of the ` + "`" + `ui5 build` + "`" + ` command of the SAPUI5 toolset.` ,
2021-01-13 16:14:56 +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-01-13 16:14:56 +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-01-13 16:14:56 +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-01-13 16:14:56 +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-01-13 16:14:56 +01:00
handler := func () {
2021-07-08 10:09:18 +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-01-13 16:14:56 +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
transportRequestUploadCTS ( stepConfig , & stepTelemetryData , & commonPipelineEnvironment )
stepTelemetryData . ErrorCode = "0"
2021-01-13 16:14:56 +01:00
log . Entry (). Info ( "SUCCESS" )
},
}
addTransportRequestUploadCTSFlags ( createTransportRequestUploadCTSCmd , & stepConfig )
return createTransportRequestUploadCTSCmd
}
func addTransportRequestUploadCTSFlags ( cmd * cobra . Command , stepConfig * transportRequestUploadCTSOptions ) {
2021-09-08 12:38:33 +02:00
cmd . Flags (). StringVar ( & stepConfig . Description , "description" , `Deployed with Piper based on SAP Fiori tools` , "The description of the application. The description is only taken into account for a new upload. In case of an update the description will not be updated." )
cmd . Flags (). StringVar ( & stepConfig . Endpoint , "endpoint" , os . Getenv ( "PIPER_endpoint" ), "The ODATA service endpoint: https://<host>:<port>" )
2021-01-13 16:14:56 +01:00
cmd . Flags (). StringVar ( & stepConfig . Client , "client" , os . Getenv ( "PIPER_client" ), "The ABAP client" )
2021-09-08 12:38:33 +02:00
cmd . Flags (). StringVar ( & stepConfig . Username , "username" , os . Getenv ( "PIPER_username" ), "Service user for uploading to the SAPUI5 ABAP repository" )
cmd . Flags (). StringVar ( & stepConfig . Password , "password" , os . Getenv ( "PIPER_password" ), "Service user password for uploading to the SAPUI5 ABAP repository" )
2021-07-08 10:09:18 +02:00
cmd . Flags (). StringVar ( & stepConfig . ApplicationName , "applicationName" , os . Getenv ( "PIPER_applicationName" ), "Name of the UI5 application" )
cmd . Flags (). StringVar ( & stepConfig . AbapPackage , "abapPackage" , os . Getenv ( "PIPER_abapPackage" ), "ABAP package name of the UI5 application" )
cmd . Flags (). StringVar ( & stepConfig . OsDeployUser , "osDeployUser" , `node` , "Docker image user performing the deployment" )
cmd . Flags (). StringVar ( & stepConfig . DeployConfigFile , "deployConfigFile" , `ui5-deploy.yaml` , "Configuration file for the fiori deployment" )
cmd . Flags (). StringVar ( & stepConfig . TransportRequestID , "transportRequestId" , os . Getenv ( "PIPER_transportRequestId" ), "ID of the transport request to which the UI5 application is uploaded" )
cmd . Flags (). StringSliceVar ( & stepConfig . DeployToolDependencies , "deployToolDependencies" , [] string { `@ui5/cli` , `@sap/ux-ui5-tooling` , `@ui5/logger` , `@ui5/fs` }, "List of additional dependencies to fiori related packages. By default a standard node docker image is used on which the dependencies are installed. Provide an empty list, in case your docker image already contains the required dependencies" )
cmd . Flags (). StringSliceVar ( & stepConfig . NpmInstallOpts , "npmInstallOpts" , [] string {}, "List of additional installation options for the npm install call. `-g`, `--global` is always assumed. Can be used for e.g. providing custom registries (`--registry https://your.registry.com`) or for providing the verbose flag (`--verbose`) for troubleshooting" )
2021-01-13 16:14:56 +01:00
cmd . MarkFlagRequired ( "username" )
cmd . MarkFlagRequired ( "password" )
cmd . MarkFlagRequired ( "applicationName" )
cmd . MarkFlagRequired ( "abapPackage" )
cmd . MarkFlagRequired ( "transportRequestId" )
}
// retrieve step metadata
func transportRequestUploadCTSMetadata () config . StepData {
var theMetaData = config . StepData {
Metadata : config . StepMetadata {
Name : "transportRequestUploadCTS" ,
2021-02-04 10:09:20 +01:00
Aliases : [] config . Alias {{ Name : "transportRequestUploadFile" , Deprecated : false }},
2021-09-08 12:38:33 +02:00
Description : "This step uploads an UI5 application to the SAPUI5 ABAP repository." ,
2021-01-13 16:14:56 +01:00
},
Spec : config . StepSpec {
Inputs : config . StepInputs {
2021-06-16 08:43:30 +02:00
Secrets : [] config . StepSecrets {
2021-07-08 10:09:18 +02:00
{ Name : "uploadCredentialsId" , Description : "Jenkins 'Username with password' credentials ID containing user and password to authenticate against the ABAP system." , Type : "jenkins" , Aliases : [] config . Alias {{ Name : "changeManagement/credentialsId" , Deprecated : false }}},
2021-06-16 08:43:30 +02:00
},
2021-01-13 16:14:56 +01:00
Parameters : [] config . StepParameters {
{
Name : "description" ,
ResourceRef : [] config . ResourceReference {},
Scope : [] string { "PARAMETERS" , "STAGES" , "STEPS" , "GENERAL" },
Type : "string" ,
Mandatory : false ,
2021-09-16 13:18:03 +02:00
Aliases : [] config . Alias {{ Name : "applicationDescription" }},
2021-06-16 08:43:30 +02:00
Default : `Deployed with Piper based on SAP Fiori tools` ,
2021-01-13 16:14:56 +01:00
},
{
Name : "endpoint" ,
ResourceRef : [] config . ResourceReference {},
Scope : [] string { "PARAMETERS" , "STAGES" , "STEPS" , "GENERAL" },
Type : "string" ,
Mandatory : false ,
2021-07-08 10:09:18 +02:00
Aliases : [] config . Alias {{ Name : "changeManagement/endpoint" }, { Name : "changeManagement/cts/endpoint" }},
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_endpoint" ),
2021-01-13 16:14:56 +01:00
},
{
Name : "client" ,
ResourceRef : [] config . ResourceReference {},
Scope : [] string { "PARAMETERS" , "STAGES" , "STEPS" , "GENERAL" },
Type : "string" ,
Mandatory : false ,
2021-07-08 10:09:18 +02:00
Aliases : [] config . Alias {{ Name : "changeManagement/client" }, { Name : "changeManagement/cts/client" }},
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_client" ),
2021-01-13 16:14:56 +01:00
},
{
Name : "username" ,
ResourceRef : [] config . ResourceReference {},
Scope : [] string { "PARAMETERS" , "STAGES" , "STEPS" , "GENERAL" },
Type : "string" ,
Mandatory : true ,
Aliases : [] config . Alias {},
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_username" ),
2021-01-13 16:14:56 +01:00
},
{
Name : "password" ,
ResourceRef : [] config . ResourceReference {},
Scope : [] string { "PARAMETERS" },
Type : "string" ,
Mandatory : true ,
Aliases : [] config . Alias {},
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_password" ),
2021-01-13 16:14:56 +01:00
},
{
Name : "applicationName" ,
ResourceRef : [] config . ResourceReference {},
Scope : [] string { "PARAMETERS" , "STAGES" , "STEPS" , "GENERAL" },
Type : "string" ,
Mandatory : true ,
Aliases : [] config . Alias {},
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_applicationName" ),
2021-01-13 16:14:56 +01:00
},
{
Name : "abapPackage" ,
ResourceRef : [] config . ResourceReference {},
Scope : [] string { "PARAMETERS" , "STAGES" , "STEPS" , "GENERAL" },
Type : "string" ,
Mandatory : true ,
Aliases : [] config . Alias {},
2021-06-16 08:43:30 +02:00
Default : os . Getenv ( "PIPER_abapPackage" ),
2021-01-13 16:14:56 +01:00
},
{
Name : "osDeployUser" ,
ResourceRef : [] config . ResourceReference {},
Scope : [] string { "PARAMETERS" , "STAGES" , "STEPS" , "GENERAL" },
Type : "string" ,
Mandatory : false ,
2021-07-08 10:09:18 +02:00
Aliases : [] config . Alias {{ Name : "changeManagement/osDeployUser" }, { Name : "changeManagement/cts/osDeployUser" }},
2021-06-16 08:43:30 +02:00
Default : `node` ,
2021-01-13 16:14:56 +01:00
},
{
Name : "deployConfigFile" ,
ResourceRef : [] config . ResourceReference {},
Scope : [] string { "PARAMETERS" , "STAGES" , "STEPS" , "GENERAL" },
Type : "string" ,
Mandatory : false ,
2021-07-08 10:09:18 +02:00
Aliases : [] config . Alias {{ Name : "changeManagement/deployConfigFile" }, { Name : "changeManagement/cts/deployConfigFile" }},
2021-06-16 08:43:30 +02:00
Default : `ui5-deploy.yaml` ,
2021-01-13 16:14:56 +01:00
},
{
2021-07-08 10:09:18 +02:00
Name : "transportRequestId" ,
ResourceRef : [] config . ResourceReference {
{
Name : "commonPipelineEnvironment" ,
Param : "custom/transportRequestId" ,
},
},
2022-08-16 11:33:04 +02:00
Scope : [] string { "PARAMETERS" , "STAGES" , "STEPS" , "GENERAL" },
2021-07-08 10:09:18 +02:00
Type : "string" ,
Mandatory : true ,
Aliases : [] config . Alias {},
Default : os . Getenv ( "PIPER_transportRequestId" ),
2021-01-13 16:14:56 +01:00
},
{
Name : "deployToolDependencies" ,
ResourceRef : [] config . ResourceReference {},
Scope : [] string { "PARAMETERS" , "STAGES" , "STEPS" , "GENERAL" },
Type : "[]string" ,
Mandatory : false ,
2021-07-08 10:09:18 +02:00
Aliases : [] config . Alias {{ Name : "changeManagement/deployToolDependencies" }, { Name : "changeManagement/cts/deployToolDependencies" }},
Default : [] string { `@ui5/cli` , `@sap/ux-ui5-tooling` , `@ui5/logger` , `@ui5/fs` },
2021-01-13 16:14:56 +01:00
},
{
Name : "npmInstallOpts" ,
ResourceRef : [] config . ResourceReference {},
Scope : [] string { "PARAMETERS" , "STAGES" , "STEPS" , "GENERAL" },
Type : "[]string" ,
Mandatory : false ,
2021-07-08 10:09:18 +02:00
Aliases : [] config . Alias {{ Name : "changeManagement/npmInstallOpts" }, { Name : "changeManagement/cts/npmInstallOpts" }},
2021-06-16 08:43:30 +02:00
Default : [] string {},
2021-01-13 16:14:56 +01:00
},
},
},
2021-07-08 10:09:18 +02:00
Containers : [] config . Container {
{ Name : "fiori-client" , Image : "node" },
},
Outputs : config . StepOutputs {
Resources : [] config . StepResources {
{
Name : "commonPipelineEnvironment" ,
Type : "piperEnvironment" ,
Parameters : [] map [ string ] interface {}{
2021-12-15 11:40:50 +03:00
{ "name" : "custom/transportRequestId" },
2021-07-08 10:09:18 +02:00
},
},
},
},
2021-01-13 16:14:56 +01:00
},
}
return theMetaData
}