1 | <?php |
||
5 | class Issue |
||
6 | { |
||
7 | /** |
||
8 | * @var Client |
||
9 | */ |
||
10 | private $client; |
||
11 | |||
12 | /** |
||
13 | * @var int |
||
14 | */ |
||
15 | private $projectId; |
||
16 | |||
17 | /** |
||
18 | * @var int |
||
19 | */ |
||
20 | private $id; |
||
21 | |||
22 | private $title = null; |
||
23 | private $priorityLevel = null; |
||
24 | private $fixer = null; |
||
25 | private $tester = null; |
||
26 | private $description = null; |
||
27 | private $dueDate = null; |
||
28 | private $attachments = []; |
||
29 | private $userIdsToCc = null; |
||
30 | private $tags = null; |
||
31 | |||
32 | /** |
||
33 | * @param Client $client |
||
34 | * @param int $projectId |
||
35 | * @param int $id |
||
36 | */ |
||
37 | 42 | function __construct($client = null, $projectId = null, $id = null) |
|
|
|||
38 | { |
||
39 | 42 | $this->client = $client; |
|
40 | 42 | $this->projectId = $projectId; |
|
41 | 42 | $this->id = $id; |
|
42 | 42 | } |
|
43 | |||
44 | /** |
||
45 | * @param string $description |
||
46 | */ |
||
47 | 3 | public function setDescription($description) |
|
51 | |||
52 | /** |
||
53 | * @param int $fixer |
||
54 | */ |
||
55 | 3 | public function setFixer($fixer) |
|
59 | |||
60 | /** |
||
61 | * @param int $priorityLevel |
||
62 | */ |
||
63 | 3 | public function setPriorityLevel($priorityLevel) |
|
67 | |||
68 | /** |
||
69 | * @param int $tester |
||
70 | */ |
||
71 | 3 | public function setTester($tester) |
|
75 | |||
76 | /** |
||
77 | * @param string $title |
||
78 | */ |
||
79 | 3 | public function setTitle($title) |
|
83 | |||
84 | /** |
||
85 | * Due date. Accepts Unix timestamp, or a formatted date string. |
||
86 | * |
||
87 | * Examples: 2014-09-20 16:40:31, 1411231231 |
||
88 | * |
||
89 | * @param string|int $dueDate |
||
90 | */ |
||
91 | 6 | public function setDueDate($dueDate) |
|
92 | { |
||
93 | 6 | if (is_numeric($dueDate)) { |
|
94 | 3 | $dueDate = date('Y-m-d H:i:s', $dueDate); |
|
95 | 3 | } |
|
96 | 6 | $this->dueDate = $dueDate; |
|
97 | 6 | } |
|
98 | |||
99 | /** |
||
100 | * Add an attachment to the issue |
||
101 | * |
||
102 | * @param string $file |
||
103 | */ |
||
104 | 3 | public function addAttachment($file) |
|
108 | |||
109 | /** |
||
110 | * Set user IDs to CC. Can be an array of IDs, a comma separated list of |
||
111 | * IDs, or just a single ID. |
||
112 | * |
||
113 | * @param array|string|int $ids |
||
114 | */ |
||
115 | 6 | public function setUserIdsToCc($ids) |
|
123 | |||
124 | /** |
||
125 | * Set tags. Can be an array of tags, a comma separated list of |
||
126 | * tags, or just a single tag. |
||
127 | * |
||
128 | * @param array|string $tags |
||
129 | */ |
||
130 | 6 | public function setTags($tags) |
|
138 | |||
139 | /** |
||
140 | * Add a new comment to the issue |
||
141 | * |
||
142 | * @param Comment $comment |
||
143 | * |
||
144 | * @return array |
||
145 | */ |
||
146 | public function addComment($comment) |
||
147 | { |
||
148 | return $this->client->post( |
||
149 | sprintf( |
||
150 | 'projects/%d/issues/%d/comments', |
||
151 | $this->projectId, |
||
152 | $this->id |
||
153 | ), |
||
154 | $comment->toArray() |
||
155 | ); |
||
156 | } |
||
157 | |||
158 | /** |
||
159 | * Get a list of people who can be cc’d or assigned as the fixer or tester to the issue |
||
160 | * |
||
161 | * @return array |
||
162 | */ |
||
163 | public function availableReassignees() |
||
164 | { |
||
165 | return $this->client->get( |
||
166 | sprintf( |
||
167 | 'projects/%d/issues/%d/people/available_for_reassignment', |
||
168 | $this->projectId, |
||
169 | $this->id |
||
170 | ) |
||
171 | ); |
||
172 | } |
||
173 | |||
174 | /** |
||
175 | * Get a list of issue statuses the authenticated user may update the issue |
||
176 | * |
||
177 | * @return array |
||
178 | */ |
||
179 | public function availableStatuses() |
||
180 | { |
||
181 | return $this->client->get( |
||
182 | sprintf( |
||
183 | 'projects/%d/issues/%d/statuses/available_to_change_to', |
||
184 | $this->projectId, |
||
185 | $this->id |
||
186 | ) |
||
187 | ); |
||
188 | } |
||
189 | |||
190 | /** |
||
191 | * Update the status of this issue |
||
192 | * |
||
193 | * @param int $newStatus |
||
194 | * @param string|null $comment |
||
195 | * @param array $attachments |
||
196 | * |
||
197 | * @return array |
||
198 | */ |
||
199 | public function updateStatus( |
||
200 | $newStatus, |
||
201 | $comment = null, |
||
202 | $attachments = [] |
||
203 | ) { |
||
204 | $data = [ |
||
205 | 'new_status_id' => $newStatus, |
||
206 | ]; |
||
207 | |||
208 | return $this->update('status', $data, $comment, $attachments); |
||
209 | } |
||
210 | /** |
||
211 | * Update the priority level of this issue |
||
212 | * |
||
213 | * @param int $newLevel |
||
214 | * @param string|null $comment |
||
215 | * @param array $attachments |
||
216 | * |
||
217 | * @return array |
||
218 | */ |
||
219 | public function updatePriorityLevel( |
||
220 | $newLevel, |
||
221 | $comment = null, |
||
222 | $attachments = [] |
||
223 | ) { |
||
224 | $data = [ |
||
225 | 'new_priority_level_id' => $newLevel, |
||
226 | ]; |
||
227 | |||
228 | return $this->update('priority_level', $data, $comment, $attachments); |
||
229 | } |
||
230 | |||
231 | /** |
||
232 | * Update the tester of this issue |
||
233 | * |
||
234 | * @param int $newTester |
||
235 | * @param string|null $comment |
||
236 | * @param array $attachments |
||
237 | * |
||
238 | * @return array |
||
239 | */ |
||
240 | public function updateTester( |
||
241 | $newTester, |
||
242 | $comment = null, |
||
243 | $attachments = [] |
||
244 | ) { |
||
245 | $data = [ |
||
246 | 'new_tester_id' => $newTester, |
||
247 | ]; |
||
248 | |||
249 | return $this->update('tester', $data, $comment, $attachments); |
||
250 | } |
||
251 | |||
252 | /** |
||
253 | * Update the fixer of this issue |
||
254 | * |
||
255 | * @param int $newFixer |
||
256 | * @param string|null $comment |
||
257 | * @param array $attachments |
||
258 | * |
||
259 | * @return array |
||
260 | */ |
||
261 | public function updateFixer( |
||
262 | $newFixer, |
||
263 | $comment = null, |
||
264 | $attachments = [] |
||
265 | ) { |
||
266 | $data = [ |
||
267 | 'new_fixer_id' => $newFixer, |
||
268 | ]; |
||
269 | |||
270 | return $this->update('fixer', $data, $comment, $attachments); |
||
271 | } |
||
272 | |||
273 | /** |
||
274 | * @param string $endpoint |
||
275 | * @param array $data |
||
276 | * @param string $comment |
||
277 | * @param array $attachments |
||
278 | * |
||
279 | * @return array |
||
280 | */ |
||
281 | private function update($endpoint, $data, $comment, $attachments) |
||
282 | { |
||
283 | if ($comment) { |
||
284 | $data['comment'] = $comment; |
||
285 | } |
||
286 | |||
287 | foreach ($attachments as $index => $attachment) { |
||
288 | $data['attachment-' . $index] = fopen($attachment, 'r'); |
||
289 | } |
||
290 | |||
291 | return $this->client->put( |
||
292 | sprintf( |
||
293 | 'projects/%d/issues/%d/%s', |
||
294 | $this->projectId, |
||
295 | $this->id, |
||
296 | $endpoint |
||
297 | ), |
||
298 | $data |
||
299 | ); |
||
300 | } |
||
301 | |||
302 | /** |
||
303 | * @return array |
||
304 | */ |
||
305 | 42 | public function toArray() |
|
336 | |||
337 | } |
||
338 |
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.