1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/vars/transportRequestUploadFile.groovy

180 lines
8.5 KiB
Groovy
Raw Normal View History

import static com.sap.piper.Prerequisites.checkScript
import com.sap.piper.Utils
2018-06-20 11:46:28 +02:00
import groovy.transform.Field
import com.sap.piper.ConfigurationHelper
2018-06-20 11:46:28 +02:00
import com.sap.piper.cm.ChangeManagement
import com.sap.piper.cm.BackendType
2018-06-20 11:46:28 +02:00
import com.sap.piper.cm.ChangeManagementException
import hudson.AbortException
2018-09-28 15:32:58 +02:00
import static com.sap.piper.cm.StepHelpers.getTransportRequestId
import static com.sap.piper.cm.StepHelpers.getChangeDocumentId
import static com.sap.piper.cm.StepHelpers.getBackendTypeAndLogInfoIfCMIntegrationDisabled
2018-06-20 11:46:28 +02:00
@Field def STEP_NAME = getClass().getName()
2018-06-20 11:46:28 +02:00
@Field Set GENERAL_CONFIG_KEYS = [
'changeManagement'
2018-06-20 11:46:28 +02:00
]
@Field Set STEP_CONFIG_KEYS = GENERAL_CONFIG_KEYS.plus([
2019-02-11 11:52:47 +02:00
'applicationName', // RFC
'applicationId', // SOLMAN
'applicationDescription',
'abapPackage',
2019-02-14 10:36:51 +02:00
'codePage', //RFC
2019-02-14 14:51:24 +02:00
'acceptUnixStyleLineEndings', // RFC
])
@Field Set PARAMETER_KEYS = STEP_CONFIG_KEYS.plus([
'changeDocumentId',
'filePath',
'applicationUrl',
'transportRequestId'])
2018-08-30 16:33:07 +02:00
void call(parameters = [:]) {
2018-06-20 11:46:28 +02:00
handlePipelineStepErrors (stepName: STEP_NAME, stepParameters: parameters) {
def script = checkScript(this, parameters) ?: this
2018-06-20 11:46:28 +02:00
ChangeManagement cm = parameters.cmUtils ?: new ChangeManagement(script)
2018-06-20 11:46:28 +02:00
ConfigurationHelper configHelper = ConfigurationHelper.newInstance(this)
.loadStepDefaults()
.mixinGeneralConfig(script.commonPipelineEnvironment, GENERAL_CONFIG_KEYS)
.mixinStepConfig(script.commonPipelineEnvironment, STEP_CONFIG_KEYS)
.mixinStageConfig(script.commonPipelineEnvironment, parameters.stageName?:env.STAGE_NAME, STEP_CONFIG_KEYS)
.mixin(parameters, PARAMETER_KEYS)
.addIfEmpty('filePath', script.commonPipelineEnvironment.getMtarFilePath())
Map configuration = configHelper.use()
2018-06-20 11:46:28 +02:00
BackendType backendType = getBackendTypeAndLogInfoIfCMIntegrationDisabled(this, configuration)
if(backendType == BackendType.NONE) return
2018-09-28 13:45:26 +02:00
configHelper
.collectValidationFailures()
.withMandatoryProperty('changeManagement/changeDocumentLabel')
.withMandatoryProperty('changeManagement/clientOpts')
.withMandatoryProperty('changeManagement/credentialsId')
.withMandatoryProperty('changeManagement/endpoint')
2018-09-28 13:45:26 +02:00
.withMandatoryProperty('changeManagement/type')
.withMandatoryProperty('changeManagement/git/from')
.withMandatoryProperty('changeManagement/git/to')
.withMandatoryProperty('changeManagement/git/format')
.withMandatoryProperty('filePath', null, { backendType in [BackendType.SOLMAN, BackendType.CTS] })
.withMandatoryProperty('applicationUrl', null, { backendType == BackendType.RFC })
2019-02-14 10:36:51 +02:00
.withMandatoryProperty('codePage', null, { backendType == BackendType.RFC })
2019-02-14 14:51:24 +02:00
.withMandatoryProperty('acceptUnixStyleLineEndings', null, { backendType == BackendType.RFC })
.withMandatoryProperty('changeManagement/rfc/developmentInstance', null, { backendType == BackendType.RFC })
.withMandatoryProperty('changeManagement/rfc/developmentClient', null, { backendType == BackendType.RFC })
2019-02-12 14:44:09 +02:00
.withMandatoryProperty('changeManagement/rfc/docker/image', null, {backendType == BackendType.RFC})
.withMandatoryProperty('changeManagement/rfc/docker/options', null, {backendType == BackendType.RFC})
.withMandatoryProperty('changeManagement/rfc/docker/envVars', null, {backendType == BackendType.RFC})
.withMandatoryProperty('changeManagement/rfc/docker/imagePull', null, {backendType == BackendType.RFC})
.withMandatoryProperty('applicationDescription', null, { backendType == BackendType.RFC })
.withMandatoryProperty('abapPackage', null, { backendType == BackendType.RFC })
.withMandatoryProperty('applicationId', null, {backendType == BackendType.SOLMAN})
.withMandatoryProperty('applicationName', null, {backendType == BackendType.RFC})
.withMandatoryProperty('failOnWarning', null, {backendType == BackendType.RFC})
new Utils().pushToSWA([
step: STEP_NAME,
stepParamKey1: 'changeManagementType',
stepParam1: configuration.changeManagement.type,
stepParamKey2: 'scriptMissing',
stepParam2: parameters?.script == null
], configuration)
2018-09-28 13:45:26 +02:00
2018-09-18 14:49:06 +02:00
def changeDocumentId = null
2018-06-20 11:46:28 +02:00
if(backendType == BackendType.SOLMAN) {
changeDocumentId = getChangeDocumentId(cm, script, configuration)
}
def transportRequestId = getTransportRequestId(cm, script, configuration)
2018-09-18 14:49:06 +02:00
configHelper
.mixin([changeDocumentId: changeDocumentId?.trim() ?: null,
transportRequestId: transportRequestId?.trim() ?: null], ['changeDocumentId', 'transportRequestId'] as Set)
if(backendType == BackendType.SOLMAN) {
2018-09-18 14:49:06 +02:00
configHelper
.withMandatoryProperty('changeDocumentId',
"Change document id not provided (parameter: \'changeDocumentId\' or via commit history).")
}
configuration = configHelper
2018-09-18 14:49:06 +02:00
.withMandatoryProperty('transportRequestId',
"Transport request id not provided (parameter: \'transportRequestId\' or via commit history).")
.use()
2018-06-20 11:46:28 +02:00
def uploadingMessage = ['[INFO] Uploading file ' +
"'${backendType == BackendType.RFC ? configuration.applicationUrl : configuration.filePath}' " +
"to transport request '${configuration.transportRequestId}'"]
if(backendType == BackendType.SOLMAN)
2018-09-18 14:49:06 +02:00
uploadingMessage << " of change document '${configuration.changeDocumentId}'"
uploadingMessage << '.'
echo uploadingMessage.join()
2018-06-20 11:46:28 +02:00
try {
switch(backendType) {
case BackendType.SOLMAN:
cm.uploadFileToTransportRequestSOLMAN(
configuration.changeDocumentId,
configuration.transportRequestId,
configuration.applicationId,
configuration.filePath,
configuration.changeManagement.endpoint,
configuration.changeManagement.credentialsId,
configuration.changeManagement.clientOpts)
break
case BackendType.CTS:
cm.uploadFileToTransportRequestCTS(
configuration.transportRequestId,
configuration.filePath,
configuration.changeManagement.endpoint,
configuration.changeManagement.credentialsId,
configuration.changeManagement.clientOpts)
break
case BackendType.RFC:
cm.uploadFileToTransportRequestRFC(
2019-02-12 14:44:09 +02:00
configuration.changeManagement.rfc.docker ?: [],
configuration.transportRequestId,
configuration.applicationName,
configuration.applicationUrl,
configuration.changeManagement.endpoint,
configuration.changeManagement.credentialsId,
configuration.changeManagement.rfc.developmentInstance,
configuration.changeManagement.rfc.developmentClient,
configuration.applicationDescription,
2019-02-14 10:36:51 +02:00
configuration.abapPackage,
2019-02-14 14:51:24 +02:00
configuration.codePage,
configuration.acceptUnixStyleLineEndings,
configuration.failOnWarning,
)
break
}
2018-06-20 11:46:28 +02:00
} catch(ChangeManagementException ex) {
throw new AbortException(ex.getMessage())
}
2018-06-20 11:46:28 +02:00
def uploadedMessage = ["[INFO] File '${backendType == BackendType.RFC ? configuration.applicationUrl : configuration.filePath}' has been successfully uploaded to transport request '${configuration.transportRequestId}'"]
if(backendType == BackendType.SOLMAN)
2018-09-18 14:49:06 +02:00
uploadedMessage << " of change document '${configuration.changeDocumentId}'"
uploadedMessage << '.'
echo uploadedMessage.join()
2018-06-20 11:46:28 +02:00
}
}