1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-03-03 15:02:35 +02:00
sap-jenkins-library/vars/transportRequestCreate.groovy

139 lines
6.5 KiB
Groovy
Raw Normal View History

import static com.sap.piper.Prerequisites.checkScript
import com.sap.piper.Utils
2018-06-20 11:36:41 +02:00
import groovy.transform.Field
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
import static com.sap.piper.cm.StepHelpers.getBackendTypeAndLogInfoIfCMIntegrationDisabled
2018-06-20 11:36:41 +02:00
import hudson.AbortException
2018-06-20 11:36:41 +02:00
@Field def STEP_NAME = 'transportRequestCreate'
@Field Set stepConfigurationKeys = [
'changeManagement',
2018-09-25 09:12:07 +02:00
'description', // CTS
'developmentSystemId', // SOLMAN
'targetSystem', // CTS
'transportType', // CTS
2018-06-20 11:36:41 +02:00
]
@Field Set parameterKeys = stepConfigurationKeys.plus(['changeDocumentId'])
@Field generalConfigurationKeys = stepConfigurationKeys
2018-06-20 11:36:41 +02:00
def call(parameters = [:]) {
def transportRequestId
2018-06-20 11:36:41 +02:00
handlePipelineStepErrors (stepName: STEP_NAME, stepParameters: parameters) {
def script = checkScript(this, parameters) ?: this
2018-06-20 11:36:41 +02:00
ChangeManagement cm = parameters.cmUtils ?: new ChangeManagement(script)
2018-06-20 11:36:41 +02:00
ConfigurationHelper configHelper = ConfigurationHelper.newInstance(this)
.loadStepDefaults()
.mixinGeneralConfig(script.commonPipelineEnvironment, generalConfigurationKeys)
.mixinStepConfig(script.commonPipelineEnvironment, stepConfigurationKeys)
.mixinStageConfig(script.commonPipelineEnvironment, parameters.stageName?:env.STAGE_NAME, stepConfigurationKeys)
.mixin(parameters, parameterKeys)
2018-06-20 11:36:41 +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
.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})
2018-09-25 09:12:07 +02:00
def changeDocumentId = null
2018-06-20 11:36:41 +02:00
new Utils().pushToSWA([step: STEP_NAME,
2018-11-05 12:51:33 +01:00
stepParam1: parameters?.script == null], configuration)
2018-09-25 09:12:07 +02:00
if(backendType == BackendType.SOLMAN) {
2018-09-25 09:12:07 +02:00
changeDocumentId = configuration.changeDocumentId
2018-09-25 09:12:07 +02:00
if(changeDocumentId?.trim()) {
2018-09-25 09:12:07 +02:00
echo "[INFO] ChangeDocumentId '${changeDocumentId}' retrieved from parameters."
2018-09-25 09:12:07 +02:00
} else {
2018-09-25 09:12:07 +02:00
echo "[INFO] Retrieving ChangeDocumentId from commit history [from: ${configuration.changeManagement.git.from}, to: ${configuration.changeManagement.git.to}]." +
"Searching for pattern '${configuration.changeDocumentLabel}'. Searching with format '${configuration.changeManagement.git.format}'."
2018-09-25 09:12:07 +02:00
try {
2018-09-25 09:12:07 +02:00
changeDocumentId = cm.getChangeDocumentId(
configuration.changeManagement.git.from,
configuration.changeManagement.git.to,
configuration.changeManagement.changeDocumentLabel,
configuration.changeManagement.git.format
)
2018-09-25 09:12:07 +02:00
echo "[INFO] ChangeDocumentId '${changeDocumentId}' retrieved from commit history"
} catch(ChangeManagementException ex) {
echo "[WARN] Cannot retrieve changeDocumentId from commit history: ${ex.getMessage()}."
}
}
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-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
try {
2018-09-25 09:12:07 +02:00
if(backendType == BackendType.SOLMAN) {
transportRequestId = cm.createTransportRequestSOLMAN(
configuration.changeDocumentId,
configuration.developmentSystemId,
configuration.changeManagement.endpoint,
configuration.changeManagement.credentialsId,
configuration.changeManagement.clientOpts)
2018-09-25 09:12:07 +02:00
} else if(backendType == BackendType.CTS) {
transportRequestId = cm.createTransportRequestCTS(
configuration.transportType,
configuration.targetSystem,
configuration.description,
configuration.changeManagement.endpoint,
configuration.changeManagement.credentialsId,
configuration.changeManagement.clientOpts)
} 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-06-20 11:36:41 +02:00
echo "[INFO] Transport Request '$transportRequestId' has been successfully created."
}
return transportRequestId
2018-06-20 11:36:41 +02:00
}