-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBacklogObject.php
134 lines (121 loc) · 3.7 KB
/
BacklogObject.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?php
require_once 'XML/RPC.php';
require_once 'libs/models/Project.class.php';
require_once 'libs/models/Issue.class.php';
class Services_BacklogObject {
protected $space_id;
protected $client; /* @var $this->client XML_RPC_Client */
protected $method_prefix = 'backlog';
protected $api_path = '/XML-RPC';
protected $server_suffix = 'backlog.jp';
protected $port = 443;
protected $user;
protected $password;
public function __construct($space_id = null)
{
if (!is_null($space_id)) {
$this->space_id = $space_id;
}
}
public function getClient()
{
if (!$this->client instanceof XML_RPC_Client) {
if (is_null($this->space_id)) {
$this->client = null;
} else {
$this->client = new XML_RPC_Client($this->api_path, sprintf('%s.%s',$this->space_id ,$this->server_suffix), $this->port);
}
}
return $this->client;
}
/**
* credentials set
*
* @param string $user
* @param string $password
* @throws Services_BacklogObjectException
*/
public function setCredentials($user, $password)
{
try {
$this->user = $user;
$this->password = $password;
$this->getClient()->setCredentials($this->user, $this->password);
} catch (Exception $e) {
throw new Services_BacklogObjectException($e->getMessage(), $e->getCode());
}
}
/**
* XML-RPCサーバへリクエストを送信する
*
* @access private
* @param XML_RPC_Message $message
* @return array
*/
protected function sendMessage($method, $parameters = array())
{
$response = $this->getClient()->send(new XML_RPC_Message(sprintf('%s.%s', $this->method_prefix, $method), $parameters)); /* @var $response XML_RPC_Response */
if ($response->faultCode()) {
throw new Services_BacklogObjectException($response->faultString(), $response->faultCode());
}
$xml = $response->serialize();
return xmlrpc_decode($xml);
}
/**
* 参加プロジェクトを取得する
*
* @return array
*/
public function getProjects()
{
$xml_projects = $this->sendMessage('getProjects');
$projects = array();
foreach ($xml_projects as $xml_project) {
$projects[] = new Project($xml_project);
}
return $projects;
}
/**
* get project by key or id
*
* @return array
*/
public function getProject($project_key_or_id)
{
$xml_params = array();
if (is_numeric($project_key_or_id)) {
$xml_params = new XML_RPC_Value($project_key_or_id, 'int');
} else {
$xml_params = new XML_RPC_Value($project_key_or_id, 'string');
}
$xml_project = $this->sendMessage('getProject', array($xml_params));
return new Project($xml_project, $this);
}
/**
* 課題を検索
*
* @param array $params
*
* @return array
*/
public function findIssue($params = array())
{
if (!array_key_exists('projectId', $params)) {
throw new Services_BacklogObjectException('no project id', 101);
}
$xmlParams = array();
$xmlParams['projectId'] = new XML_RPC_Value($params['projectId'], 'int');
$xml_issues = $this->sendMessage('findIssue', array(new XML_RPC_Value($xmlParams, 'struct')));
$issues = array();
foreach ($xml_issues as $xml_issue) {
$issues[] = new Issue($xml_issue);
}
return $issues;
}
}
/**
* Exception
*/
class Services_BacklogObjectException extends Exception
{
}