2018-09-21 16:55:31 +02:00
|
|
|
import static com.sap.piper.Prerequisites.checkScript
|
|
|
|
|
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
|
|
|
|
|
2019-03-28 11:06:40 +02:00
|
|
|
import com.sap.piper.GenerateDocumentation
|
2018-07-06 09:05:26 +02:00
|
|
|
import com.sap.piper.ConfigurationHelper
|
2018-09-25 10:44:53 +02:00
|
|
|
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
|
2018-09-28 15:54:20 +02:00
|
|
|
import static com.sap.piper.cm.StepHelpers.getChangeDocumentId
|
2018-09-28 14:43:51 +02:00
|
|
|
import static com.sap.piper.cm.StepHelpers.getBackendTypeAndLogInfoIfCMIntegrationDisabled
|
2018-06-20 11:52:11 +02:00
|
|
|
|
2018-11-29 10:54:05 +02:00
|
|
|
@Field def STEP_NAME = getClass().getName()
|
2018-06-20 11:52:11 +02:00
|
|
|
|
2018-10-25 14:28:11 +02:00
|
|
|
@Field Set GENERAL_CONFIG_KEYS = STEP_CONFIG_KEYS
|
|
|
|
|
|
|
|
@Field Set STEP_CONFIG_KEYS = [
|
2019-03-28 11:06:40 +02:00
|
|
|
'changeManagement',
|
|
|
|
/**
|
|
|
|
* @see checkChangeInDevelopment
|
|
|
|
* @parentConfigKey changeManagement
|
|
|
|
*/
|
|
|
|
'clientOpts',
|
|
|
|
/**
|
|
|
|
* @see checkChangeInDevelopment
|
|
|
|
* @parentConfigKey changeManagement
|
|
|
|
*/
|
|
|
|
'credentialsId',
|
|
|
|
/**
|
|
|
|
* @see checkChangeInDevelopment
|
|
|
|
* @parentConfigKey changeManagement
|
|
|
|
*/
|
|
|
|
'endpoint',
|
|
|
|
/**
|
|
|
|
* @see checkChangeInDevelopment
|
|
|
|
* @parentConfigKey changeManagement
|
|
|
|
*/
|
|
|
|
'git/from',
|
|
|
|
/**
|
|
|
|
* @see checkChangeInDevelopment
|
|
|
|
* @parentConfigKey changeManagement
|
|
|
|
*/
|
|
|
|
'git/to',
|
|
|
|
/**
|
|
|
|
* @see checkChangeInDevelopment
|
|
|
|
* @parentConfigKey changeManagement
|
|
|
|
*/
|
|
|
|
'git/format',
|
|
|
|
/**
|
|
|
|
* @see transportRequestCreate
|
|
|
|
* @parentConfigKey changeManagement
|
|
|
|
*/
|
|
|
|
'rfc/developmentInstance',
|
|
|
|
/**
|
|
|
|
* @see transportRequestCreate
|
|
|
|
* @parentConfigKey changeManagement
|
|
|
|
*/
|
|
|
|
'rfc/developmentClient',
|
2018-06-20 11:52:11 +02:00
|
|
|
]
|
|
|
|
|
2018-10-25 14:28:11 +02:00
|
|
|
@Field Set PARAMETER_KEYS = STEP_CONFIG_KEYS.plus([
|
2019-03-28 11:06:40 +02:00
|
|
|
/** @see transportRequestCreate */
|
2018-07-12 09:49:18 +02:00
|
|
|
'changeDocumentId',
|
2019-03-28 11:06:40 +02:00
|
|
|
/** The id of the transport request to release. */
|
2019-03-05 13:35:28 +02:00
|
|
|
'transportRequestId',
|
2019-03-28 11:06:40 +02:00
|
|
|
/** @see transportRequestCreate */
|
2019-03-05 13:35:28 +02:00
|
|
|
'verbose',
|
2019-05-16 10:46:13 +02:00
|
|
|
])
|
2018-07-12 09:49:18 +02:00
|
|
|
|
2019-03-28 11:06:40 +02:00
|
|
|
/** Releases a Transport Request. */
|
|
|
|
@GenerateDocumentation
|
2020-08-26 15:32:58 +02:00
|
|
|
void call(Map parameters = [:]) {
|
2018-06-20 11:52:11 +02:00
|
|
|
|
|
|
|
handlePipelineStepErrors (stepName: STEP_NAME, stepParameters: parameters) {
|
|
|
|
|
2018-10-31 09:40:12 +02:00
|
|
|
def script = checkScript(this, parameters) ?: this
|
2020-08-26 15:32:58 +02:00
|
|
|
String stageName = parameters.stageName ?: env.STAGE_NAME
|
2018-06-20 11:52:11 +02:00
|
|
|
|
2022-05-02 11:45:46 +02:00
|
|
|
addPipelineWarning(script, "Deprecation Warning", "The step ${STEP_NAME} is deprecated. Follow the documentation for options.")
|
|
|
|
|
2018-07-12 15:58:45 +02:00
|
|
|
ChangeManagement cm = parameters.cmUtils ?: new ChangeManagement(script)
|
2018-06-20 11:52:11 +02:00
|
|
|
|
2018-10-17 11:05:20 +02:00
|
|
|
ConfigurationHelper configHelper = ConfigurationHelper.newInstance(this)
|
2020-08-26 15:32:58 +02:00
|
|
|
.loadStepDefaults([:], stageName)
|
2018-10-25 14:28:11 +02:00
|
|
|
.mixinGeneralConfig(script.commonPipelineEnvironment, GENERAL_CONFIG_KEYS)
|
|
|
|
.mixinStepConfig(script.commonPipelineEnvironment, STEP_CONFIG_KEYS)
|
2020-08-26 15:32:58 +02:00
|
|
|
.mixinStageConfig(script.commonPipelineEnvironment, stageName, STEP_CONFIG_KEYS)
|
2018-10-25 14:28:11 +02:00
|
|
|
.mixin(parameters, PARAMETER_KEYS)
|
2018-07-16 12:09:49 +02:00
|
|
|
|
2018-09-28 13:45:26 +02:00
|
|
|
Map configuration = configHelper.use()
|
2018-08-09 11:35:33 +02:00
|
|
|
|
2018-09-28 14:43:51 +02:00
|
|
|
BackendType backendType = getBackendTypeAndLogInfoIfCMIntegrationDisabled(this, configuration)
|
|
|
|
if(backendType == BackendType.NONE) return
|
2018-09-28 13:45:26 +02:00
|
|
|
|
|
|
|
configHelper
|
2019-02-01 14:23:08 +02:00
|
|
|
.collectValidationFailures()
|
2018-08-15 10:37:34 +02:00
|
|
|
.withMandatoryProperty('changeManagement/clientOpts')
|
|
|
|
.withMandatoryProperty('changeManagement/credentialsId')
|
|
|
|
.withMandatoryProperty('changeManagement/endpoint')
|
|
|
|
.withMandatoryProperty('changeManagement/git/to')
|
|
|
|
.withMandatoryProperty('changeManagement/git/from')
|
|
|
|
.withMandatoryProperty('changeManagement/git/format')
|
2019-02-07 12:46:45 +02:00
|
|
|
.withMandatoryProperty('changeManagement/rfc/developmentInstance', null, { backendType == BackendType.RFC})
|
2019-02-07 10:44:17 +02:00
|
|
|
.withMandatoryProperty('changeManagement/rfc/developmentClient', null, { backendType == BackendType.RFC})
|
2019-03-05 13:35:28 +02:00
|
|
|
.withMandatoryProperty('verbose', null, { backendType == BackendType.RFC})
|
2018-07-16 12:09:49 +02:00
|
|
|
|
2018-10-30 17:49:53 +02:00
|
|
|
configuration = configHelper.use()
|
2018-06-20 11:52:11 +02:00
|
|
|
|
2018-09-25 11:12:04 +02:00
|
|
|
def changeDocumentId = null
|
2018-11-08 17:16:42 +02:00
|
|
|
def transportRequestId = getTransportRequestId(cm, script, configuration)
|
2018-07-10 16:33:23 +02:00
|
|
|
|
2018-09-25 11:12:04 +02:00
|
|
|
if(backendType == BackendType.SOLMAN) {
|
2018-07-10 16:33:23 +02:00
|
|
|
|
2018-11-08 17:16:42 +02:00
|
|
|
changeDocumentId = getChangeDocumentId(cm, script, configuration)
|
2018-09-25 11:12:04 +02:00
|
|
|
|
|
|
|
configHelper.mixin([changeDocumentId: changeDocumentId?.trim() ?: null], ['changeDocumentId'] as Set)
|
|
|
|
.withMandatoryProperty('changeDocumentId',
|
2020-09-30 14:29:46 +02:00
|
|
|
"Change document id not provided (parameter: \'changeDocumentId\' provided to the step call or via commit history).")
|
2018-09-25 11:12:04 +02:00
|
|
|
|
2018-07-10 16:33:23 +02:00
|
|
|
}
|
|
|
|
|
2018-07-16 12:09:49 +02:00
|
|
|
configuration = configHelper
|
2018-09-25 11:12:04 +02:00
|
|
|
.mixin([transportRequestId: transportRequestId?.trim() ?: null], ['transportRequestId'] as Set)
|
2018-07-16 12:09:49 +02:00
|
|
|
.withMandatoryProperty('transportRequestId',
|
2020-09-30 14:29:46 +02:00
|
|
|
"Transport request id not provided (parameter: \'transportRequestId\' provided to the step call or via commit history).")
|
2018-07-06 09:05:26 +02:00
|
|
|
.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 {
|
2018-07-16 15:41:46 +02:00
|
|
|
|
2019-02-01 10:50:53 +02:00
|
|
|
switch(backendType) {
|
|
|
|
|
|
|
|
case BackendType.SOLMAN:
|
|
|
|
|
|
|
|
cm.releaseTransportRequestSOLMAN(
|
2019-02-28 11:56:14 +02:00
|
|
|
configuration.changeManagement.solman.docker,
|
2019-02-01 10:50:53 +02:00
|
|
|
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,
|
2019-02-01 10:50:53 +02:00
|
|
|
configuration.transportRequestId,
|
|
|
|
configuration.changeManagement.endpoint,
|
|
|
|
configuration.changeManagement.credentialsId,
|
|
|
|
configuration.changeManagement.clientOpts)
|
|
|
|
break
|
|
|
|
|
|
|
|
case BackendType.RFC:
|
|
|
|
|
|
|
|
cm.releaseTransportRequestRFC(
|
2019-02-13 15:58:46 +02:00
|
|
|
configuration.changeManagement.rfc.docker,
|
2019-02-01 10:50:53 +02:00
|
|
|
configuration.transportRequestId,
|
|
|
|
configuration.changeManagement.endpoint,
|
2019-02-07 12:24:39 +02:00
|
|
|
configuration.changeManagement.rfc.developmentInstance,
|
2019-02-07 10:44:17 +02:00
|
|
|
configuration.changeManagement.rfc.developmentClient,
|
2019-03-05 13:35:28 +02:00
|
|
|
configuration.changeManagement.credentialsId,
|
|
|
|
configuration.verbose)
|
2019-02-01 10:50:53 +02:00
|
|
|
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-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
|
|
|
}
|
|
|
|
}
|
2022-05-02 11:45:46 +02:00
|
|
|
|
|
|
|
static void addPipelineWarning(Script script, String heading, String message) {
|
|
|
|
script.echo '[WARNING] ' + message
|
|
|
|
script.addBadge(icon: "warning.gif", text: message)
|
|
|
|
|
|
|
|
String html =
|
|
|
|
"""
|
|
|
|
<h2>$heading</h2>
|
|
|
|
<p>$message</p>
|
|
|
|
"""
|
|
|
|
|
|
|
|
script.createSummary(icon: "warning.gif", text: html)
|
|
|
|
}
|