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:36:41 +02:00
|
|
|
import groovy.transform.Field
|
|
|
|
|
2018-07-06 09:05:26 +02:00
|
|
|
import com.sap.piper.ConfigurationHelper
|
2018-09-25 09:12:07 +02:00
|
|
|
import com.sap.piper.cm.BackendType
|
2018-06-20 11:36:41 +02:00
|
|
|
import com.sap.piper.cm.ChangeManagement
|
|
|
|
import com.sap.piper.cm.ChangeManagementException
|
|
|
|
|
2018-09-28 14:43:51 +02:00
|
|
|
import static com.sap.piper.cm.StepHelpers.getBackendTypeAndLogInfoIfCMIntegrationDisabled
|
2018-06-20 11:36:41 +02:00
|
|
|
|
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 hudson.AbortException
|
2018-06-20 11:36:41 +02:00
|
|
|
|
2018-11-29 10:54:05 +02:00
|
|
|
@Field def STEP_NAME = getClass().getName()
|
2018-06-20 11:36:41 +02:00
|
|
|
|
2018-10-25 14:15:11 +02:00
|
|
|
@Field GENERAL_CONFIG_KEYS = STEP_CONFIG_KEYS
|
|
|
|
|
|
|
|
@Field Set STEP_CONFIG_KEYS = [
|
2018-07-17 09:21:56 +02:00
|
|
|
'changeManagement',
|
2018-09-25 09:12:07 +02:00
|
|
|
'description', // CTS
|
|
|
|
'developmentSystemId', // SOLMAN
|
|
|
|
'targetSystem', // CTS
|
|
|
|
'transportType', // CTS
|
2019-03-05 11:29:23 +02:00
|
|
|
'verbose', // RFC
|
2018-06-20 11:36:41 +02:00
|
|
|
]
|
|
|
|
|
2018-10-25 14:15:11 +02:00
|
|
|
@Field Set PARAMETER_KEYS = STEP_CONFIG_KEYS.plus(['changeDocumentId'])
|
2018-07-06 09:05:26 +02:00
|
|
|
|
2018-11-06 16:10:54 +02:00
|
|
|
void call(parameters = [:]) {
|
2018-06-20 11:36:41 +02:00
|
|
|
|
2018-10-11 09:45:13 +02:00
|
|
|
def transportRequestId
|
|
|
|
|
2018-06-20 11:36:41 +02:00
|
|
|
handlePipelineStepErrors (stepName: STEP_NAME, stepParameters: parameters) {
|
|
|
|
|
2018-10-31 09:40:12 +02:00
|
|
|
def script = checkScript(this, parameters) ?: this
|
2018-06-20 11:36:41 +02:00
|
|
|
|
2018-06-29 09:34:46 +02:00
|
|
|
ChangeManagement cm = parameters.cmUtils ?: new ChangeManagement(script)
|
2018-06-20 11:36:41 +02:00
|
|
|
|
2018-10-17 11:05:20 +02:00
|
|
|
ConfigurationHelper configHelper = ConfigurationHelper.newInstance(this)
|
2019-02-14 13:01:28 +02:00
|
|
|
.collectValidationFailures()
|
2018-09-07 10:08:16 +02:00
|
|
|
.loadStepDefaults()
|
2018-10-25 14:15:11 +02:00
|
|
|
.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-07-13 09:28:41 +02:00
|
|
|
|
2018-06-20 11:36:41 +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
|
2018-08-15 10:37:34 +02:00
|
|
|
.withMandatoryProperty('changeManagement/clientOpts')
|
|
|
|
.withMandatoryProperty('changeManagement/credentialsId')
|
|
|
|
.withMandatoryProperty('changeManagement/endpoint')
|
|
|
|
.withMandatoryProperty('changeManagement/git/from')
|
|
|
|
.withMandatoryProperty('changeManagement/git/to')
|
|
|
|
.withMandatoryProperty('changeManagement/git/format')
|
2018-09-28 13:45:26 +02:00
|
|
|
.withMandatoryProperty('transportType', null, { backendType == BackendType.CTS})
|
|
|
|
.withMandatoryProperty('targetSystem', null, { backendType == BackendType.CTS})
|
|
|
|
.withMandatoryProperty('description', null, { backendType == BackendType.CTS})
|
2019-02-07 12:18:32 +02:00
|
|
|
.withMandatoryProperty('changeManagement/rfc/developmentInstance', null, {backendType == BackendType.RFC})
|
2019-02-07 11:11:22 +02:00
|
|
|
.withMandatoryProperty('changeManagement/rfc/developmentClient', null, {backendType == BackendType.RFC})
|
2019-03-05 11:29:23 +02:00
|
|
|
.withMandatoryProperty('verbose', null, {backendType == BackendType.RFC})
|
2018-07-13 09:28:41 +02:00
|
|
|
|
2018-09-25 09:12:07 +02:00
|
|
|
def changeDocumentId = null
|
2018-06-20 11:36:41 +02:00
|
|
|
|
2019-01-21 09:47:34 +02:00
|
|
|
new Utils().pushToSWA([
|
|
|
|
step: STEP_NAME,
|
|
|
|
stepParamKey1: 'scriptMissing',
|
|
|
|
stepParam1: parameters?.script == null
|
|
|
|
], configuration)
|
2018-08-09 11:35:33 +02:00
|
|
|
|
2018-09-25 09:12:07 +02:00
|
|
|
if(backendType == BackendType.SOLMAN) {
|
2018-08-09 11:35:33 +02:00
|
|
|
|
2018-11-08 17:16:42 +02:00
|
|
|
changeDocumentId = getChangeDocumentId(cm, script, configuration)
|
2018-07-10 14:43:15 +02:00
|
|
|
|
2018-09-25 09:12:07 +02:00
|
|
|
configHelper.mixin([changeDocumentId: changeDocumentId?.trim() ?: null], ['changeDocumentId'] as Set)
|
|
|
|
.withMandatoryProperty('developmentSystemId')
|
|
|
|
.withMandatoryProperty('changeDocumentId',
|
|
|
|
"Change document id not provided (parameter: \'changeDocumentId\' or via commit history).")
|
2018-07-10 14:43:15 +02:00
|
|
|
}
|
2018-06-20 11:36:41 +02:00
|
|
|
|
2018-09-25 09:12:07 +02:00
|
|
|
configuration = configHelper.use()
|
2018-06-20 11:36:41 +02:00
|
|
|
|
2018-09-25 09:12:07 +02:00
|
|
|
def creatingMessage = ["[INFO] Creating transport request"]
|
|
|
|
if(backendType == BackendType.SOLMAN) {
|
|
|
|
creatingMessage << " for change document '${configuration.changeDocumentId}' and development system '${configuration.developmentSystemId}'"
|
|
|
|
}
|
|
|
|
creatingMessage << '.'
|
|
|
|
echo creatingMessage.join()
|
2018-06-20 11:36:41 +02:00
|
|
|
|
2019-02-14 13:01:28 +02:00
|
|
|
|
|
|
|
try {
|
2018-09-25 09:12:07 +02:00
|
|
|
if(backendType == BackendType.SOLMAN) {
|
|
|
|
transportRequestId = cm.createTransportRequestSOLMAN(
|
2019-02-28 11:20:32 +02:00
|
|
|
configuration.changeManagement.solman.docker,
|
2018-09-25 09:12:07 +02:00
|
|
|
configuration.changeDocumentId,
|
2018-07-12 08:54:04 +02:00
|
|
|
configuration.developmentSystemId,
|
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-09-25 09:12:07 +02:00
|
|
|
} else if(backendType == BackendType.CTS) {
|
|
|
|
transportRequestId = cm.createTransportRequestCTS(
|
2019-02-28 10:59:46 +02:00
|
|
|
configuration.changeManagement.cts.docker,
|
2018-09-25 09:12:07 +02:00
|
|
|
configuration.transportType,
|
|
|
|
configuration.targetSystem,
|
|
|
|
configuration.description,
|
|
|
|
configuration.changeManagement.endpoint,
|
|
|
|
configuration.changeManagement.credentialsId,
|
|
|
|
configuration.changeManagement.clientOpts)
|
2019-01-18 16:57:52 +02:00
|
|
|
} else if (backendType == BackendType.RFC) {
|
2019-02-11 11:52:47 +02:00
|
|
|
transportRequestId = cm.createTransportRequestRFC(
|
2019-02-12 16:32:48 +02:00
|
|
|
configuration.changeManagement.rfc.docker,
|
2019-02-11 11:52:47 +02:00
|
|
|
configuration.changeManagement.endpoint,
|
2019-02-12 16:32:48 +02:00
|
|
|
configuration.changeManagement.rfc.developmentInstance,
|
2019-02-14 13:01:28 +02:00
|
|
|
configuration.changeManagement.rfc.developmentClient,
|
2019-02-11 11:52:47 +02:00
|
|
|
configuration.changeManagement.credentialsId,
|
2019-03-05 11:29:23 +02:00
|
|
|
configuration.description,
|
|
|
|
configuration.verbose)
|
2018-09-25 09:12:07 +02:00
|
|
|
} else {
|
|
|
|
throw new IllegalArgumentException("Invalid backend type: '${backendType}'.")
|
|
|
|
}
|
2018-06-20 11:36:41 +02:00
|
|
|
} catch(ChangeManagementException ex) {
|
|
|
|
throw new AbortException(ex.getMessage())
|
|
|
|
}
|
2018-07-16 15:41:46 +02:00
|
|
|
|
2018-06-20 11:36:41 +02:00
|
|
|
|
|
|
|
echo "[INFO] Transport Request '$transportRequestId' has been successfully created."
|
2018-11-06 14:47:32 +02:00
|
|
|
script.commonPipelineEnvironment.setTransportRequestId(transportRequestId)
|
2018-06-20 11:36:41 +02:00
|
|
|
}
|
|
|
|
}
|