com.tencent.devops.common.webhook.service.code.param.GitWebhookElementParams.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biz-common-webhook Show documentation
Show all versions of biz-common-webhook Show documentation
Tencent blueking ci project
The newest version!
/*
* Tencent is pleased to support the open source community by making BK-CI 蓝鲸持续集成平台 available.
*
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
*
* BK-CI 蓝鲸持续集成平台 is licensed under the MIT license.
*
* A copy of the MIT License is included in this file.
*
*
* Terms of the MIT License:
* ---------------------------------------------------
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
* documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of
* the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
* LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
* NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package com.tencent.devops.common.webhook.service.code.param
import com.tencent.devops.common.api.util.EnvUtils
import com.tencent.devops.common.pipeline.pojo.element.trigger.CodeGitWebHookTriggerElement
import com.tencent.devops.common.pipeline.pojo.element.trigger.enums.CodeEventType
import com.tencent.devops.common.pipeline.pojo.element.trigger.enums.CodeType
import com.tencent.devops.common.pipeline.utils.RepositoryConfigUtils
import com.tencent.devops.common.webhook.pojo.code.WebHookParams
import com.tencent.devops.common.webhook.util.WebhookUtils
import org.springframework.stereotype.Service
@Service
class GitWebhookElementParams : ScmWebhookElementParams {
override fun elementClass(): Class {
return CodeGitWebHookTriggerElement::class.java
}
@SuppressWarnings("ComplexMethod")
override fun getWebhookElementParams(
element: CodeGitWebHookTriggerElement,
variables: Map
): WebHookParams? {
val params = WebHookParams(
repositoryConfig = RepositoryConfigUtils.buildWebhookConfig(
element = element,
variables = variables
).third
)
params.excludeUsers = if (element.excludeUsers == null || element.excludeUsers!!.isEmpty()) {
""
} else {
EnvUtils.parseEnv(element.excludeUsers!!.joinToString(","), variables)
}
params.includeUsers = if (element.includeUsers == null || element.includeUsers!!.isEmpty()) {
""
} else {
EnvUtils.parseEnv(element.includeUsers!!.joinToString(","), variables)
}
params.block = isBlock(element)
params.branchName = EnvUtils.parseEnv(element.branchName ?: "", variables)
params.version = element.version
when {
// action上线后【流水线配置层面】兼容存量merge_request_accept和push事件
element.eventType == CodeEventType.MERGE_REQUEST_ACCEPT -> {
params.includeMrAction = CodeGitWebHookTriggerElement.MERGE_ACTION_MERGE
}
element.eventType == CodeEventType.MERGE_REQUEST &&
!WebhookUtils.isActionGitTriggerVersion(element.version) &&
element.includeMrAction == null -> {
params.includeMrAction = WebhookUtils.joinToString(
listOf(
CodeGitWebHookTriggerElement.MERGE_ACTION_OPEN,
CodeGitWebHookTriggerElement.MERGE_ACTION_REOPEN,
CodeGitWebHookTriggerElement.MERGE_ACTION_PUSH_UPDATE
)
)
}
element.eventType == CodeEventType.PUSH &&
!WebhookUtils.isActionGitTriggerVersion(element.version) &&
element.includePushAction == null -> {
params.includePushAction = WebhookUtils.joinToString(
listOf(
CodeGitWebHookTriggerElement.PUSH_ACTION_CREATE_BRANCH,
CodeGitWebHookTriggerElement.PUSH_ACTION_PUSH_FILE
)
)
}
else -> {
params.includeMrAction = WebhookUtils.joinToString(element.includeMrAction)
params.includePushAction = WebhookUtils.joinToString(element.includePushAction)
}
}
params.eventType = element.eventType
params.excludeBranchName = EnvUtils.parseEnv(element.excludeBranchName ?: "", variables)
params.pathFilterType = element.pathFilterType
params.includePaths = EnvUtils.parseEnv(element.includePaths ?: "", variables)
params.excludePaths = EnvUtils.parseEnv(element.excludePaths ?: "", variables)
params.codeType = CodeType.GIT
params.tagName = EnvUtils.parseEnv(element.tagName ?: "", variables)
params.excludeTagName = EnvUtils.parseEnv(element.excludeTagName ?: "", variables)
params.excludeSourceBranchName = EnvUtils.parseEnv(element.excludeSourceBranchName ?: "", variables)
params.includeSourceBranchName = EnvUtils.parseEnv(element.includeSourceBranchName ?: "", variables)
params.webhookQueue = element.webhookQueue ?: false
params.includeCrState = WebhookUtils.joinToString(element.includeCrState)
params.includeCrTypes = WebhookUtils.joinToString(element.includeCrTypes)
params.includeNoteComment = element.includeNoteComment
params.includeNoteTypes = WebhookUtils.joinToString(element.includeNoteTypes)
params.includeIssueAction = WebhookUtils.joinToString(element.includeIssueAction)
params.fromBranches = EnvUtils.parseEnv(element.fromBranches ?: "", variables)
params.enableThirdFilter = element.enableThirdFilter
params.thirdUrl = EnvUtils.parseEnv(element.thirdUrl ?: "", variables)
params.thirdSecretToken = EnvUtils.parseEnv(element.thirdSecretToken ?: "", variables)
params.skipWip = element.skipWip
return params
}
private fun isBlock(element: CodeGitWebHookTriggerElement): Boolean {
return when {
element.enableCheck == false || element.eventType != CodeEventType.MERGE_REQUEST -> false
else -> element.block ?: false
}
}
}