我们正处于使用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");
答案 0 :(得分:3)
如果要解析config.xml,请使用
def projectXml = new XmlSlurper().parseText("curl http://Server_Name:8100/job/Job_Name/config.xml");
那应该返回你的原始config.xml数据
答案 1 :(得分:0)
在“管理Jenkins-&gt;配置全局安全性”下,您是否尝试禁用“为作业DSL脚本启用脚本安全性”?