forked from AaronDDM/Kayako-REST-API-Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkyTicketTimeTrack.php
493 lines (438 loc) · 13.6 KB
/
kyTicketTimeTrack.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
<?php
require_once('kyObjectBase.php');
/**
* Part of PHP client to REST API of Kayako v4 (Kayako Fusion).
* Compatible with Kayako version >= 4.01.240.
*
* Kayako TicketTimeTrack object.
*
* @link http://wiki.kayako.com/display/DEV/REST+-+TicketTimeTrack
* @author Tomasz Sawicki (https://github.com/Furgas)
*/
class kyTicketTimeTrack extends kyObjectBase {
/**
* Color of time track - yellow.
*
* @var int
*/
const COLOR_YELLOW = 1;
/**
* Color of time track - purple.
*
* @var int
*/
const COLOR_PURPLE = 2;
/**
* Color of time track - blue.
*
* @var int
*/
const COLOR_BLUE = 3;
/**
* Color of time track - green.
*
* @var int
*/
const COLOR_GREEN = 4;
/**
* Color of time track - red.
*
* @var int
*/
const COLOR_RED = 5;
static protected $controller = '/Tickets/TicketTimeTrack';
static protected $object_xml_name = 'timetrack';
private $id = null;
private $ticket_id = null;
private $time_worked = null;
private $time_billable = null;
private $bill_date = null;
private $work_date = null;
private $worker_staff_id = null;
private $worker_staff_name = null;
private $creator_staff_id = null;
private $creator_staff_name = null;
private $note_color = null;
private $contents = null;
private $worker_staff = null;
private $creator_staff = null;
protected function parseData($data) {
$this->id = intval($data['_attributes']['id']);
$this->ticket_id = intval($data['_attributes']['ticketid']);
$this->time_worked = $data['_attributes']['timeworked'];
$this->time_billable = $data['_attributes']['timebillable'];
$this->bill_date = intval($data['_attributes']['billdate']) > 0 ? date(self::$datetime_format, $data['_attributes']['billdate']) : null;
$this->work_date = intval($data['_attributes']['workdate']) > 0 ? date(self::$datetime_format, $data['_attributes']['workdate']) : null;
$this->worker_staff_id = intval($data['_attributes']['workerstaffid']);
$this->worker_staff_name = $data['_attributes']['workerstaffname'];
$this->creator_staff_id = intval($data['_attributes']['creatorstaffid']);
$this->creator_staff_name = $data['_attributes']['creatorstaffname'];
$this->note_color = intval($data['_attributes']['notecolor']);
$this->contents = $data['_contents'];
}
protected function buildData($method) {
$data = array();
//TODO: check if required parameters are present
$data['ticketid'] = $this->ticket_id;
$data['contents'] = $this->contents;
$data['staffid'] = $this->creator_staff_id;
$data['worktimeline'] = strtotime($this->work_date);
$data['billtimeline'] = strtotime($this->bill_date);
$data['timespent'] = $this->time_worked;
$data['timebillable'] = $this->time_billable;
if (is_numeric($this->worker_staff_id))
$data['workerstaffid'] = $this->worker_staff_id;
$data['notecolor'] = $this->note_color;
return $data;
}
/**
* Returns all time tracks of the ticket.
*
* @param int $ticket_id Ticket identifier.
* @return kyResultSet
*/
static public function getAll($ticket_id) {
$search_parameters = array('ListAll');
$search_parameters[] = $ticket_id;
return parent::getAll($search_parameters);
}
/**
* Returns ticket time track.
*
* @param int $ticket_id Ticket identifier.
* @param int $id Ticket time track identifier.
* @return kyTicketTimeTrack
*/
static public function get($ticket_id, $id) {
return parent::get(array($ticket_id, $id));
}
public function update() {
throw new Exception("You can't update objects of type kyTicketTimeTrack.");
}
public function toString() {
return sprintf("%s (worker: %s)", substr($this->getContents(), 0, 50) . (strlen($this->getContents()) > 50 ? '...' : ''), $this->getWorkerStaffName());
}
public function getId($complete = false) {
return $complete ? array($this->ticket_id, $this->id) : $this->id;
}
/**
* Returns ticket identifier of this time track.
*
* @return int
*/
public function getTicketId() {
return $this->ticket_id;
}
/**
* Sets ticket identifier of the time track.
*
* @param int $ticket_id Ticket identifier of the time track
* @return kyTicketTimeTrack
*/
public function setTicketId($ticket_id) {
$this->ticket_id = $ticket_id;
return $this;
}
/**
* Returns time worked for this time track.
*
* @param bool $formatted True to format result nicely (ex. 02:30:00). False to return amount of seconds.
* @return int|string
* @filterBy()
* @orderBy()
*/
public function getTimeWorked($formatted = false) {
if ($formatted)
return ky_seconds_format($this->time_worked);
else
return $this->time_worked;
}
/**
* Sets worked time for this time track.
*
* @param mixed $time_worked Worked time in seconds or formatted as hh:mm.
* @param bool $formatted True to indicate that time is formatted as hh:mm. False to indicate that time is provided in seconds.
* @return kyTicketTimeTrack
*/
public function setTimeWorked($time_worked, $formatted = false) {
if ($formatted) {
list($hours, $minutes) = explode(':', $time_worked);
$time_worked = (60 * 60 * $hours) + (60 * $minutes);
}
$this->time_worked = $time_worked;
return $this;
}
/**
* Returns billable time for this time track.
*
* @param bool $formatted True to format result nicely (ex. 02:30:00). False to return amount of seconds.
* @return int|string
* @filterBy()
* @orderBy()
*/
public function getTimeBillable($formatted = false) {
if ($formatted)
return ky_seconds_format($this->time_billable);
else
return $this->time_billable;
}
/**
* Sets billable time for this time track.
*
* @param mixed $time_billable Billable time in seconds or formatted as hh:mm.
* @param bool $formatted True to indicate that time is formatted as hh:mm. False to indicate that time is provided in seconds.
* @return kyTicketTimeTrack
*/
public function setTimeBillable($time_billable, $formatted = false) {
if ($formatted) {
list($hours, $minutes) = explode(':', $time_billable);
$time_billable = (60 * 60 * $hours) + (60 * $minutes);
}
$this->time_billable = $time_billable;
return $this;
}
/**
* Returns date and time when the work was executed.
*
* @return string
* @filterBy()
* @orderBy()
*/
public function getWorkDate() {
return $this->work_date;
}
/**
* Sets date and time when the work was executed.
*
* @param int $work_date Date and time when the work was executed.
* @return kyTicketTimeTrack
*/
public function setWorkDate($work_date) {
$this->work_date = $work_date;
return $this;
}
/**
* Returns date and time when to bill the worker.
*
* @return string
* @filterBy()
* @orderBy()
*/
public function getBillDate() {
return $this->bill_date;
}
/**
* Sets date and time when to bill the worker.
*
* @param int $bill_date Date and time when to bill the worker.
* @return kyTicketTimeTrack
*/
public function setBillDate($bill_date) {
$this->bill_date = $bill_date;
return $this;
}
/**
* Shortcut function for setting worked time and when the work was executed.
*
* @param string $time_worked Worked time formatted as hh:mm.
* @param string $work_date When the work was exectued. Default is the current datetime.
*/
public function setWorkedData($time_worked, $work_date = null) {
$this->setTimeWorked($time_worked, true);
if ($work_date === null)
$work_date = date(kyBase::$datetime_format);
$this->setWorkDate($work_date);
}
/**
* Shortcut function for setting billable time and when to bill the worker.
*
* @param string $time_billable Billable time formatted as hh:mm.
* @param string $bill_date When to bill the worker. Default is the current datetime.
*/
public function setBillingData($time_billable, $bill_date = null) {
$this->setTimeBillable($time_billable, true);
if ($bill_date === null)
$bill_date = date(kyBase::$datetime_format);
$this->setBillDate($bill_date);
}
/**
* Returns identifier of staff user that has done the work.
*
* @return int
* @filterBy()
* @orderBy()
*/
public function getWorkerStaffId() {
return $this->worker_staff_id;
}
/**
* Sets the identifier of staff user that has done the work.
* Invalidates worker staff cache.
*
* @param int $worker_staff_id Identifier of staff user that has done the work.
* @return kyTicketTimeTrack
*/
public function setWorkerStaffId($worker_staff_id) {
$this->worker_staff_id = $worker_staff_id;
$this->worker_staff = null;
return $this;
}
/**
* Returns staff user object that has done the work.
* Result is cached until the end of script.
*
* @param bool $reload True to reload data from server. False to use the cached value (if present).
* @return kyStaff
*/
public function getWorkerStaff($reload = false) {
if ($this->worker_staff !== null && !$reload)
return $this->worker_staff;
if ($this->worker_staff_id === null || $this->worker_staff_id <= 0)
return null;
$this->worker_staff = kyStaff::get($this->worker_staff_id);
return $this->worker_staff;
}
/**
* Sets staff user that has done the work.
*
* @param kyStaff $worker_staff Staff user that has done the work.
* @return kyTicketTimeTrack
*/
public function setWorkerStaff(kyStaff $worker_staff) {
if ($worker_staff === null)
return;
$this->worker_staff_id = $worker_staff->getId();
$this->worker_staff = $worker_staff;
$this->worker_staff_name = $worker_staff->getFullName();
return $this;
}
/**
* Returns full name of staff user that has done the work.
*
* @return string
* @filterBy()
* @orderBy()
*/
public function getWorkerStaffName() {
return $this->worker_staff_name;
}
/**
* Returns identifier of staff user that created the time track.
*
* @return int
* @filterBy()
* @orderBy()
*/
public function getCreatorStaffId() {
return $this->creator_staff_id;
}
/**
* Sets the identifier of staff user that creates the time track.
* Invalidates creator staff cache.
*
* @param int $creator_staff_id Identifier of staff user that creates the time track.
* @return kyTicketTimeTrack
*/
public function setCreatorStaffId($creator_staff_id) {
$this->creator_staff_id = $creator_staff_id;
$this->creator_staff = null;
return $this;
}
/**
* Returns staff user that creates the time track.
* Result is cached until the end of script.
*
* @param bool $reload True to reload data from server. False to use the cached value (if present).
* @return kyStaff
*/
public function getCreatorStaff($reload = false) {
if ($this->creator_staff !== null && !$reload)
return $this->creator_staff;
if ($this->creator_staff_id === null || $this->creator_staff_id <= 0)
return null;
$this->creator_staff = kyStaff::get($this->creator_staff_id);
return $this->creator_staff;
}
/**
* Sets staff user that creates the time track.
*
* @param kyStaff $creator_staff Staff user that creates the time track.
* @return kyTicketTimeTrack
*/
public function setCreatorStaff(kyStaff $creator_staff) {
if ($creator_staff === null)
return;
$this->creator_staff_id = $creator_staff->getId();
$this->creator_staff = $creator_staff;
$this->creator_staff_name = $creator_staff->getFullName();
return $this;
}
/**
* Returns full name of staff user that created the time track.
*
* @return string
* @filterBy()
* @orderBy()
*/
public function getCreatorStaffName() {
return $this->creator_staff_name;
}
/**
* Returns color of the time track - one of kyTicketTimeTrack::COLOR_* constants.
*
* @return int
*/
public function getNoteColor() {
return $this->note_color;
}
/**
* Sets color of the time track.
*
* @param int $note_color Color of the time track - one of kyTicketTimeTrack::COLOR_* constants.
* @return kyTicketTimeTrack
*/
public function setNoteColor($note_color) {
$this->note_color = $note_color;
return $this;
}
/**
* Returns contents of the time track.
*
* @return string
* @filterBy()
*/
public function getContents() {
return $this->contents;
}
/**
* Sets contents of the time track.
*
* @param string $contents Contents of the time track.
* @return kyTicketTimeTrack
*/
public function setContents($contents) {
$this->contents = $contents;
return $this;
}
/**
* Creates new ticket time track.
* WARNING: Data is not sent to Kayako unless you explicitly call create() on this method's result.
*
* @param kyTicket $ticket Ticket to attach the timetrack to.
* @param string $contents Note contents.
* @param kyStaff $staff Staff user - both creator and worker.
* @param string $time_worked Worked time formatted as hh:mm. Work date will be set to current datetime.
* @param string $time_billable Billable time formatted as hh:mm. Bill date will be set to current datetime.
* @return kyTicketTimeTrack
*/
static public function createNew(kyTicket $ticket, $contents, kyStaff $staff, $time_worked, $time_billable) {
$ticket_time_track = new self();
$ticket_time_track->setTicketId($ticket->getId());
$ticket_time_track->setContents($contents);
$ticket_time_track->setCreatorStaff($staff);
$ticket_time_track->setWorkerStaff($staff);
$ticket_time_track->setBillingData($time_billable);
$ticket_time_track->setWorkedData($time_worked);
return $ticket_time_track;
}
}