1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-11-24 08:32:32 +02:00
sap-jenkins-library/vars/transportRequestRelease.groovy

145 lines
5.9 KiB
Groovy
Raw Normal View History

import static com.sap.piper.Prerequisites.checkScript
import com.sap.piper.Utils
2018-06-20 11:52:11 +02:00
import groovy.transform.Field
import com.sap.piper.ConfigurationHelper
import com.sap.piper.cm.BackendType
2018-06-20 11:52:11 +02:00
import com.sap.piper.cm.ChangeManagement
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:52:11 +02:00
@Field def STEP_NAME = getClass().getName()
2018-06-20 11:52:11 +02:00
@Field Set GENERAL_CONFIG_KEYS = STEP_CONFIG_KEYS
@Field Set STEP_CONFIG_KEYS = [
'changeManagement'
2018-06-20 11:52:11 +02:00
]
@Field Set PARAMETER_KEYS = STEP_CONFIG_KEYS.plus([
'changeDocumentId',
'transportRequestId',
'verbose',
])
2018-08-30 16:33:07 +02:00
void call(parameters = [:]) {
2018-06-20 11:52:11 +02:00
handlePipelineStepErrors (stepName: STEP_NAME, stepParameters: parameters) {
def script = checkScript(this, parameters) ?: this
2018-06-20 11:52:11 +02:00
ChangeManagement cm = parameters.cmUtils ?: new ChangeManagement(script)
2018-06-20 11:52:11 +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)
2018-06-20 11:52:11 +02:00
2018-09-28 13:45:26 +02:00
Map configuration = configHelper.use()
BackendType backendType = getBackendTypeAndLogInfoIfCMIntegrationDisabled(this, configuration)
if(backendType == BackendType.NONE) return
2018-09-28 13:45:26 +02:00
configHelper
.collectValidationFailures()
.withMandatoryProperty('changeManagement/clientOpts')
.withMandatoryProperty('changeManagement/credentialsId')
.withMandatoryProperty('changeManagement/endpoint')
.withMandatoryProperty('changeManagement/git/to')
.withMandatoryProperty('changeManagement/git/from')
.withMandatoryProperty('changeManagement/git/format')
.withMandatoryProperty('changeManagement/rfc/developmentInstance', null, { backendType == BackendType.RFC})
.withMandatoryProperty('changeManagement/rfc/developmentClient', null, { backendType == BackendType.RFC})
.withMandatoryProperty('verbose', null, { backendType == BackendType.RFC})
configuration = configHelper.use()
2018-06-20 11:52:11 +02:00
new Utils().pushToSWA([
step: STEP_NAME,
stepParamKey1: 'scriptMissing',
stepParam1: parameters?.script == null
], configuration)
2018-09-25 11:12:04 +02:00
def changeDocumentId = null
def transportRequestId = getTransportRequestId(cm, script, configuration)
2018-09-25 11:12:04 +02:00
if(backendType == BackendType.SOLMAN) {
changeDocumentId = getChangeDocumentId(cm, script, configuration)
2018-09-25 11:12:04 +02:00
configHelper.mixin([changeDocumentId: changeDocumentId?.trim() ?: null], ['changeDocumentId'] as Set)
.withMandatoryProperty('changeDocumentId',
"Change document id not provided (parameter: \'changeDocumentId\' or via commit history).")
}
configuration = configHelper
2018-09-25 11:12:04 +02:00
.mixin([transportRequestId: transportRequestId?.trim() ?: null], ['transportRequestId'] as Set)
.withMandatoryProperty('transportRequestId',
"Transport request id not provided (parameter: \'transportRequestId\' or via commit history).")
.use()
2018-06-20 11:52:11 +02:00
2018-09-25 11:12:04 +02:00
def closingMessage = ["[INFO] Closing transport request '${configuration.transportRequestId}'"]
if(backendType == BackendType.SOLMAN) closingMessage << " for change document '${configuration.changeDocumentId}'"
closingMessage << '.'
echo closingMessage.join()
2018-06-20 11:52:11 +02:00
try {
switch(backendType) {
case BackendType.SOLMAN:
cm.releaseTransportRequestSOLMAN(
2019-02-28 11:56:14 +02:00
configuration.changeManagement.solman.docker,
configuration.changeDocumentId,
configuration.transportRequestId,
configuration.changeManagement.endpoint,
configuration.changeManagement.credentialsId,
configuration.changeManagement.clientOpts)
break
case BackendType.CTS:
cm.releaseTransportRequestCTS(
2019-02-28 13:56:17 +02:00
configuration.changeManagement.cts.docker,
configuration.transportRequestId,
configuration.changeManagement.endpoint,
configuration.changeManagement.credentialsId,
configuration.changeManagement.clientOpts)
break
case BackendType.RFC:
cm.releaseTransportRequestRFC(
configuration.changeManagement.rfc.docker,
configuration.transportRequestId,
configuration.changeManagement.endpoint,
configuration.changeManagement.rfc.developmentInstance,
configuration.changeManagement.rfc.developmentClient,
configuration.changeManagement.credentialsId,
configuration.verbose)
break
default:
throw new IllegalArgumentException("Invalid backend type: '${backendType}'.")
}
2018-06-20 11:52:11 +02:00
} catch(ChangeManagementException ex) {
throw new AbortException(ex.getMessage())
}
2018-06-20 11:52:11 +02:00
echo "[INFO] Transport Request '${configuration.transportRequestId}' has been successfully closed."
2018-06-20 11:52:11 +02:00
}
}