All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tencent.devops.common.webhook.service.code.param.GitlabWebhookElementParams.kt Maven / Gradle / Ivy

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.CodeGitlabWebHookTriggerElement
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 GitlabWebhookElementParams : ScmWebhookElementParams {

    override fun elementClass(): Class {
        return CodeGitlabWebHookTriggerElement::class.java
    }

    @SuppressWarnings("ComplexMethod")
    override fun getWebhookElementParams(
        element: CodeGitlabWebHookTriggerElement,
        variables: Map
    ): WebHookParams? {
        val params = WebHookParams(
            repositoryConfig = RepositoryConfigUtils.buildWebhookConfig(
                element = element,
                variables = variables
            ).third
        )
        params.includeUsers = if (element.includeUsers == null || element.includeUsers!!.isEmpty()) {
            ""
        } else {
            EnvUtils.parseEnv(element.includeUsers!!.joinToString(","), variables)
        }
        params.excludeUsers = if (element.excludeUsers == null || element.excludeUsers!!.isEmpty()) {
            ""
        } else {
            EnvUtils.parseEnv(element.excludeUsers!!.joinToString(","), 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.branchName = EnvUtils.parseEnv(element.branchName ?: "", variables)
        params.codeType = CodeType.GITLAB
        params.eventType = element.eventType
        params.block = element.block ?: false
        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.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.includeCommitMsg = EnvUtils.parseEnv(element.includeCommitMsg ?: "", variables)
        params.excludeCommitMsg = EnvUtils.parseEnv(element.excludeCommitMsg ?: "", variables)
        return params
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy