如何使用PHP创建/触发新的jenkins作业?

时间:2013-05-29 20:40:27

标签: php javascript html jenkins

我必须使用PHP创建网页,用户可以从下拉框中选择参数,并在jenkins上远程创建/构建作业。

我已成功使用CURL登录jenkins,但我不知道如何创建作业或从网页配置config.xml。任何建议???

代码

< --- --- ligin.php>

<form action="login_jenkin.php" method="post">
<fieldset>
    <input type="text" name="username">
    <input name="password">
    <button>
    Login
    </button>           
</fieldset>

&LT; --- --- login_jenkin.php&GT;

<?php
$url="http://jenkinurl/";
$username=$_POST['username'];
$password=$_POST['password'];
$cookies = '/tmp/cookies.txt';
$ch = curl_init(); 
curl_setopt ($ch, CURLOPT_TIMEOUT, 40); 
curl_setopt($ch, CURLOPT_HEADER, 1);  
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_COOKIESESSION, TRUE);
curl_setopt($ch, CURLOPT_COOKIEJAR, '$cookie');
curl_setopt($ch, CURLOPT_COOKIEFILE, '$cookie');
curl_setopt($ch, CURLOPT_COOKIE, session_name() . '=' . session_id());
curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US;           rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6"); 
curl_setopt ($ch, CURLOPT_URL, $url);  
curl_setopt($ch, CURLOPT_HTTPHEADER,array("Authorization: Basic " . base64_encode($username . ":" . $password)));
$result = curl_exec ($ch); 
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); 
if ($http_code=='200'){
header('Location: fill_job_form.php');
}
if (!$result) { 
    $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); 
    curl_close($ch); // make sure we closeany current curl sessions 
    die($http_code.' Unable to connect to server. Please come back later.'); 
} 

?>

&LT; --- --- fill_job_form.php&GT;

<form action="createjob.php" method="post">
  <fieldset>
    tags for filling job form goes here
    <button>
      Login
    </button>           
 </fieldset>

&LT; --- --- createjob.php&GT;

<?php
$url="http://jenkin url/createItem?name=mynewtestjob"; 
$input1=$_POST['input1'];
//get all other inputs and created request data xml 
// hard coded for now....
$req_data="<?xml version='1.0' encoding='UTF-8'?><project><actions/><description></description><keepDependencies>false</keepDependencies><properties/><scm class='hudson.scm.NullSCM'/><canRoam>true</canRoam><disabled>false</disabled><blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding><blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding><triggers class='vector'/><concurrentBuild>false</concurrentBuild><builders/><publishers/><buildWrappers/></project>";
$ch = curl_init(); 
curl_setopt ($ch, CURLOPT_TIMEOUT, 40); 
curl_setopt($ch, CURLOPT_HEADER, 1);  
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt( $ch, CURLOPT_COOKIE, '/tmp/cookies.txt' );
curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type: text/xml"));
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $req_data);

$result = curl_exec ($ch); 
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
print_r($http_code);
print_r($result);
//prints :The requested URL /login was not found on this server.
?>

我能够成功登录但是在创建job.php时我收到以下错误:在此服务器上找不到请求的URL /登录。但是,如果我将login_jenkin和createjob.php合并在一起并硬编码所有用户表单数据,那么它的效果非常好

任何想法,为什么会发生这种情况?

1 个答案:

答案 0 :(得分:3)

Jenkins支持API调用来触发作业。其名为Remote Access API,请参阅https://wiki.jenkins-ci.org/display/JENKINS/Remote+access+API

  

对于没有参数的作业,您只需要在

上执行HTTP GET      

JENKINS_URL /工作/ JOBNAME /建?标记= TOKEN

     

在作业配置中设置了TOKEN。

但是,由于您有参数,因此需要使用JSON有效负载进行POST。 David Walsh在此http://davidwalsh.name/curl-post很好地解释了如何使用cURL在PHP中执行此操作的示例。

因此,从您的网页上,获取表单字段,然后在提交时调用适合您希望获得的作业的API。

相关问题