3

我们正处于使用 Jenkins DSL 的早期阶段。我们遇到的一个挑战是能够读取现有的作业插件设置,以便我们在运行 DSL 之前保留它。这使我们能够让 Jenkins 用户选择保留他们的一些设置。我们已经成功地为我们的工作保留了计划设置,但最新的挑战是能够保留插件设置。特别是“ExtendedEmailPublisher”插件中的设置。我们希望保留该值:

在此处输入图像描述

在 ExtendedEmailPublisher 标记中此作业的 config.xml 文件中,我们看到以下内容:

<publishers>
    <hudson.plugins.emailext.ExtendedEmailPublisher>
        <recipientList>Our_Team@Our_Team.com</recipientList>
        <configuredTriggers>
            <hudson.plugins.emailext.plugins.trigger.FailureTrigger>
                <email>
                    <recipientList/>
                    <subject>$PROJECT_DEFAULT_SUBJECT</subject>
                    <body>$PROJECT_DEFAULT_CONTENT</body>
                    <recipientProviders>
                        <hudson.plugins.emailext.plugins.recipients.ListRecipientProvider/>
                    </recipientProviders>
                    <attachmentsPattern/>
                    <attachBuildLog>false</attachBuildLog>
                    <compressBuildLog>false</compressBuildLog>
                    <replyTo>$PROJECT_DEFAULT_REPLYTO</replyTo>
                    <contentType>project</contentType>
                </email>
            </hudson.plugins.emailext.plugins.trigger.FailureTrigger>
        </configuredTriggers>
        <contentType>default</contentType>
        <defaultSubject>$DEFAULT_SUBJECT</defaultSubject>
        <defaultContent>$DEFAULT_CONTENT</defaultContent>
        <attachmentsPattern/>
        <presendScript>$DEFAULT_PRESEND_SCRIPT</presendScript>
        <classpath/>
        <attachBuildLog>false</attachBuildLog>
        <compressBuildLog>false</compressBuildLog>
        <replyTo>$DEFAULT_REPLYTO</replyTo>
        <saveOutput>false</saveOutput>
        <disabled>false</disabled>
    </hudson.plugins.emailext.ExtendedEmailPublisher>
</publishers>

我们希望从此 XML 中提取/保留的值是:

<disabled>false</disabled>

我们尝试使用 groovy 获取现有值,但似乎找不到正确的代码。我们的第一个想法是尝试使用 XmlSlurper 从 config.xml 中读取值。我们从 Jenkins 脚本控制台运行它:

def projectXml = new XmlSlurper().parseText("curl http://Server_Name:8100/job/Job_Name/api/xml".execute().text);
*we use 8100 for our Jenkins port

不幸的是,虽然这确实返回了一些配置信息,但它并没有返回插件信息。

然后,我们还尝试运行以下命令来读取/替换现有设置:

def oldJob = hudson.model.Hudson.instance.getItem("Job_Name")
def isDisabled = false // Default Value

for(publisher in oldJob.publishersList) {
  if (publisher instanceof hudson.plugins.emailext.ExtendedEmailPublisher) {
    isDisabled = publisher.disabled
  }
}

虽然如果从 Jenkins 脚本控制台执行此操作,但当我们尝试在 DSL 作业中使用它时,我们会收到以下消息:

Processing provided DSL script
ERROR: startup failed:
script: 25: unable to resolve class 
hudson.plugins.emailext.ExtendedEmailPublisher 
 @ line 25, column 37.
   if (publisher instanceof hudson.plugins.emailext.ExtendedEmailPublisher) 
{
1 error

Finished: FAILURE

解决方案更新:

使用 url @aflat 的 URL 建议来获取原始 XML 配置信息,我能够使用 XML Slurper,然后使用该getProperty方法将我想要的属性分配给一个变量。

def projectXml = new XmlSlurper().parseText("curl http://Server_Name:8100/job/Job_Name/config.xml".execute().text);
def emailDisabled = projectXml.publishers."hudson.plugins.emailext.ExtendedEmailPublisher".getProperty("disabled");
4

2 回答 2

3

如果要解析 config.xml,请使用

def projectXml = new XmlSlurper().parseText("curl http://Server_Name:8100/job/Job_Name/config.xml");

那应该返回您的原始 config.xml 数据

于 2017-05-22T15:37:44.060 回答
0

在“管理 Jenkins->配置全局安全”下,您是否尝试禁用“为作业 DSL 脚本启用脚本安全”?

于 2017-05-19T20:35:45.293 回答