2018-06-20 11:52:11 +02:00
|
|
|
import com.sap.piper.GitUtils
|
2018-08-09 11:35:33 +02:00
|
|
|
import com.sap.piper.Utils
|
2018-06-20 11:52:11 +02:00
|
|
|
import groovy.transform.Field
|
|
|
|
|
2018-07-06 09:05:26 +02:00
|
|
|
import com.sap.piper.ConfigurationHelper
|
2018-06-20 11:52:11 +02:00
|
|
|
import com.sap.piper.ConfigurationMerger
|
|
|
|
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
|
2018-09-28 15:54:20 +02:00
|
|
|
import static com.sap.piper.cm.StepHelpers.getChangeDocumentId
|
2018-06-20 11:52:11 +02:00
|
|
|
|
|
|
|
@Field def STEP_NAME = 'transportRequestRelease'
|
|
|
|
|
|
|
|
@Field Set stepConfigurationKeys = [
|
2018-07-17 09:21:56 +02:00
|
|
|
'changeManagement'
|
2018-06-20 11:52:11 +02:00
|
|
|
]
|
|
|
|
|
2018-07-12 09:49:18 +02:00
|
|
|
@Field Set parameterKeys = stepConfigurationKeys.plus([
|
|
|
|
'changeDocumentId',
|
|
|
|
'transportRequestId',
|
|
|
|
])
|
|
|
|
|
2018-07-06 09:05:26 +02:00
|
|
|
@Field Set generalConfigurationKeys = stepConfigurationKeys
|
|
|
|
|
2018-06-20 11:52:11 +02:00
|
|
|
def call(parameters = [:]) {
|
|
|
|
|
|
|
|
handlePipelineStepErrors (stepName: STEP_NAME, stepParameters: parameters) {
|
|
|
|
|
|
|
|
def script = parameters?.script ?: [commonPipelineEnvironment: commonPipelineEnvironment]
|
|
|
|
|
2018-07-12 15:58:45 +02:00
|
|
|
ChangeManagement cm = parameters.cmUtils ?: new ChangeManagement(script)
|
2018-06-20 11:52:11 +02:00
|
|
|
|
2018-07-16 12:09:49 +02:00
|
|
|
ConfigurationHelper configHelper = ConfigurationHelper
|
2018-08-15 10:37:34 +02:00
|
|
|
.loadStepDefaults(this)
|
|
|
|
.mixinGeneralConfig(script.commonPipelineEnvironment, generalConfigurationKeys)
|
|
|
|
.mixinStepConfig(script.commonPipelineEnvironment, stepConfigurationKeys)
|
|
|
|
.mixinStageConfig(script.commonPipelineEnvironment, parameters.stageName?:env.STAGE_NAME, stepConfigurationKeys)
|
|
|
|
.mixin(parameters, parameterKeys)
|
|
|
|
.withMandatoryProperty('changeManagement/clientOpts')
|
|
|
|
.withMandatoryProperty('changeManagement/credentialsId')
|
|
|
|
.withMandatoryProperty('changeManagement/endpoint')
|
|
|
|
.withMandatoryProperty('changeManagement/git/to')
|
|
|
|
.withMandatoryProperty('changeManagement/git/from')
|
|
|
|
.withMandatoryProperty('changeManagement/git/format')
|
2018-07-16 12:09:49 +02:00
|
|
|
|
|
|
|
Map configuration = configHelper.use()
|
2018-06-20 11:52:11 +02:00
|
|
|
|
2018-08-09 11:35:33 +02:00
|
|
|
new Utils().pushToSWA([step: STEP_NAME], configuration)
|
|
|
|
|
2018-09-28 15:32:58 +02:00
|
|
|
def transportRequestId = getTransportRequestId(cm, this, configuration)
|
2018-09-28 15:54:20 +02:00
|
|
|
def changeDocumentId = getChangeDocumentId(cm, this, configuration)
|
2018-07-10 16:33:23 +02:00
|
|
|
|
2018-07-16 12:09:49 +02:00
|
|
|
configuration = configHelper
|
2018-07-18 12:42:54 +02:00
|
|
|
.mixin([transportRequestId: transportRequestId?.trim() ?: null,
|
|
|
|
changeDocumentId: changeDocumentId?.trim() ?: null], ['transportRequestId', 'changeDocumentId'] as Set)
|
2018-07-16 12:09:49 +02:00
|
|
|
.withMandatoryProperty('transportRequestId',
|
|
|
|
"Transport request id not provided (parameter: \'transportRequestId\' or via commit history).")
|
2018-07-18 12:42:54 +02:00
|
|
|
.withMandatoryProperty('changeDocumentId',
|
|
|
|
"Change document id not provided (parameter: \'changeDocumentId\' or via commit history).")
|
2018-07-06 09:05:26 +02:00
|
|
|
.use()
|
2018-06-20 11:52:11 +02:00
|
|
|
|
2018-07-12 08:54:04 +02:00
|
|
|
echo "[INFO] Closing transport request '${configuration.transportRequestId}' for change document '${configuration.changeDocumentId}'."
|
2018-06-20 11:52:11 +02:00
|
|
|
|
|
|
|
try {
|
2018-07-12 08:54:04 +02:00
|
|
|
cm.releaseTransportRequest(configuration.changeDocumentId,
|
|
|
|
configuration.transportRequestId,
|
2018-07-17 09:21:56 +02:00
|
|
|
configuration.changeManagement.endpoint,
|
2018-07-16 15:41:46 +02:00
|
|
|
configuration.changeManagement.credentialsId,
|
2018-07-17 09:21:56 +02:00
|
|
|
configuration.changeManagement.clientOpts)
|
2018-07-16 15:41:46 +02:00
|
|
|
|
2018-06-20 11:52:11 +02:00
|
|
|
} catch(ChangeManagementException ex) {
|
|
|
|
throw new AbortException(ex.getMessage())
|
|
|
|
}
|
2018-07-16 15:41:46 +02:00
|
|
|
|
2018-06-20 11:52:11 +02:00
|
|
|
|
2018-07-12 08:54:04 +02:00
|
|
|
echo "[INFO] Transport Request '${configuration.transportRequestId}' has been successfully closed."
|
2018-06-20 11:52:11 +02:00
|
|
|
}
|
|
|
|
}
|