1.创建components文件jira_client.php
<?php
class JiraClientComponent extends Object {
// Jira WSDL
var $wsdl = JIRA_WSDL;
// Login info
var $user = JIRA_USER;
var $password = JIRA_PWD;
var $client = null;
var $login = null;
//called before Controller::beforeFilter()
function initialize(&$controller, $settings = array()) {
// saving the controller reference for later use
$this->controller =& $controller;
// Create the soap Client
$this->client = new soapclient($wsdl);
// Login to Jira
$this->login = $this->client->login( $this->user,$this->password);
}
/**
* upload attachments
*/
function uploadAttachments( $file_path, $project_key ){
$attachment_file = $file_path;
$content = base64_encode(file_get_contents($attachment_file));
$attachmentName = basename($attachment_file);
$result = $client->addBase64EncodedAttachmentsToIssue($this->login, $project_key, array($attachmentName), array($content) );
return $result;
}
/**
* create Issue
*/
function createIssue($issue){
// Create the Issue
$remoteIssue = $this->client->createIssue( $this->login,$issue);
$this->log("create issue project_key:".$remoteIssue->key,"jira_soap");
return $remoteIssue;
}
/**
* jira issue key
*/
function getKey( $remoteIssue ){
return $remoteIssue->key;
}
//called after Controller::render()
function shutdown(&$controller) {
// Log out
$logout = $this->client->logout($login);
if($logout == TRUE){
$this->log("Logged out!","jira_soap");
}else{
$this->log("\nFailed to logout!","jira_soap");
}
}
}
?>
2.controller中使用
//引入component
public $components = array('JiraClient');
//创建ISSUE
$remoteIssue = $this->JiraClient->createIssue($issue);
//获得创建后的ISSUE key
$this->JiraClient->getKey( $remoteIssue );
//上传附件
$this->JiraClient->uploadAttachments( $file_path, $project_key );
备注:
$issue = array(
"project" => $project,
"type" =>$type,
"summary" => "主题",
"assignee"=>$userName,
"reporter"=>$login,
"customFieldValues" => $remoteIssue
);
$remoteIssue = array(array ("customfieldId"=>"customfield_10050", "values"=>array ($sampleName)),
array ("customfieldId"=>"customfield_10123", "values"=>array ($desc)),
array ("customfieldId"=>"customfield_10167", "values"=>array ("手机医生")));
备注:
可借鉴
<?php
require_once('lib/nusoap.php');
require_once('lib/class.wsdlcache.php');
$cache = new wsdlcache('./cache', 60);
$wsdl = $cache->get('http://localhost:8080/rpc/soap/jirasoapservice-v2?wsdl');
if (is_null($wsdl)) {
$wsdl = new wsdl('http://localhost:8080/rpc/soap/jirasoapservice-v2?wsdl');
$cache->put($wsdl);
}
$client = new soapclient($wsdl, true);
$err = $client->getError();
if ($err) {
echo '<h2>Constructor error</h2><pre>' . $err . '</pre>';
}
// Login to JIRA
$credentials = array('username', 'password');
$token = $client->call('login', $credentials);
// Get the user information
$userReq = array($token,'username');
$result = $client->call('getUser', $userReq);
// Add a comment to a specific issue
//$action = array($token, 'issueId', array('body'=>"Fear me for this is my comment\n"));
//$issue = $client->call('addComment', $action);
// Check for a fault
if ($client->fault) {
echo '<h2>Fault</h2><pre>';
print_r($result);
echo '</pre>';
} else {
// Check for errors
$err = $client->getError();
if ($err) {
// Display the error
echo '<h2>Error</h2><pre>' . $err . '</pre>';
echo '<h2>Debug</h2><pre>' . htmlspecialchars($client->debug_str, ENT_QUOTES) . '</pre>';
} else {
// Display the result
echo '<h2>Result</h2><pre>';
print_r($result);
echo '</pre>';
}
}
?>
方法二:
查看附件
分享到:
相关推荐
【描述】提到的"xampp+cakephp+webservice+dwz整合",表明这是一个将XAMPP与CakePHP2集成,并且利用Webservice进行数据通信,同时采用DWZ(Dynamic Web Zone)作为前端框架的项目。DWZ是一个基于jQuery的前端MVC框架...
在Google App Engine for PHP上部署CakePHP时,面临的挑战之一是您无法使用普通的[CakeEmail]( )类。 因此,我编写了该类来包装Google App Engine [Message]( )类,以使其无缝运行。安装+配置[下载最新代码]( ...
cakephp-jwt-auth, 使用JSON网络令牌进行身份验证的CakePHP插件 CakePHP认证插件 包含AuthComponent类认证的插件,用于使用 JSON网络令牌进行身份验证。 你可以在这里详细阅读关于JSON网络令牌规范的详细说明。要求...
在CakePHP中,推荐使用jQuery库,因此需要在用户界面文件(如user_normal.ctp)中引入jquery库的脚本文件。由于文档中提到的是jquery-1.4.4.min.js,这表明应使用压缩版的jQuery库来减少传输的数据量,提高页面加载...
打包下载,里面有CakePHP的框架源码,下载后可直接使用,版本是1.1的,稳定版;CakePHP的分页组件源码;CakePHP的中文及英文教程,CHM格式;CakePHP的中文打印版教程,WORD格式,下载后可直接打印,方便的;CakePHP...
- **CakePHP控制台**:介绍了CakePHP自带的命令行工具,以及如何使用它进行各种操作。 - **创建Shell**:指导如何编写自定义Shell脚本以实现自动化任务。 - **Shell任务**:讲解了Shell任务的概念及其如何组织和执行...
打包下载,里面有CakePHP的框架源码,下载后可直接使用,版本是1.1的,稳定版;CakePHP的分页组件源码;CakePHP的中文及英文教程,CHM格式;CakePHP的中文打印版教程,WORD格式,下载后可直接打印,方便的;CakePHP...
《CakePHP 1.2 手册》是针对该版本框架的重要参考资料,旨在帮助开发者深入理解和有效使用 CakePHP 进行Web开发。 CakePHP 是一个基于Model-View-Controller(MVC)架构模式的开源PHP框架,它简化了Web应用程序的...
在本文中,我们将深入探讨CakePHP 2.4.1版本的特点和使用技巧,帮助开发者更好地理解和应用这一强大的工具。 1. **MVC架构**:MVC是一种设计模式,将业务逻辑、数据和用户界面分离,使得代码更加清晰、易于维护。在...
### CakePHP 3.4 开发手册文档概览 #### CakePHP 一瞥 ...这份文档不仅涵盖了框架的基础知识,还深入探讨了高级主题和技术细节,对于任何希望深入了解和使用 CakePHP 的开发者来说都是宝贵的学习资源。
- **Cake中文手册.chm**:这是官方中文文档,包含了详尽的API参考和教程,帮助开发者快速掌握CakePHP的使用方法。 - **访问脚本之家.html**:可能是一个关于CakePHP或其他PHP技术的文章链接,提供更多的学习资源。 -...
There are two main ways to get a fresh copy of CakePHP. You can either download an archive copy (zip/tar.gz/tar.bz2) from the main website, or check out the code from the git repository. To download ...
CakePHP 的 Soap 数据源 要求 启用了 Soap 扩展的 PHP5 蛋糕php 2.x 用法 将 SoapSource.php 文件复制到您的 app/models/datasources/ 目录 在 app/config/ 中向 database.php 添加配置 var $soap = array( '...
《CakePHP手册完整打印版》是一份专为开发者准备的详尽参考资料,旨在帮助用户深入理解和熟练使用CakePHP框架。 CakePHP是一款基于Model-View-Controller(MVC)设计模式的开源PHP框架,它简化了Web应用开发过程,...
CakePHP 1.2 API 中文文档是针对这个版本的详细技术参考,为开发者提供了丰富的接口信息和使用指南,特别适合那些不熟悉英文文档或希望快速查找中文资料的开发者。 **MVC架构介绍** 在 CakePHP 中,MVC模式是核心...
### 使用CakePHP的Session和Request Handler组件 #### Session组件概览 在CakePHP框架中,Session组件被设计用于管理用户的会话数据,确保网站能够识别并处理特定用户的状态。这在用户登录、购物车功能、个性化...
这个文件可能包含了CakePHP 1.3.11的完整源码,供开发者研究或调试使用。 了解这些信息后,对于想要学习或回顾早期CakePHP的开发者来说,这个压缩包是一个宝贵的资源。通过阅读说明文档、研究源代码以及参考chinaz....