forked from Furgas/php-api-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkyTicketTimeTrack.php
More file actions
639 lines (564 loc) · 16.3 KB
/
kyTicketTimeTrack.php
File metadata and controls
639 lines (564 loc) · 16.3 KB
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
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
<?php
/**
* Kayako TicketTimeTrack object.
*
* @author Tomasz Sawicki (https://github.com/Furgas)
* @link http://wiki.kayako.com/display/DEV/REST+-+TicketTimeTrack
* @since Kayako version 4.01.240
* @package Object\Ticket
*
* @noinspection PhpDocSignatureInspection
*/
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';
/**
* Ticket time track identifier.
* @apiField
* @var int
*/
protected $id;
/**
* Ticket identifier.
* @apiField required_create=true
* @var int
*/
protected $ticket_id;
/**
* Time worked (in seconds) in this ticket time track.
* @apiField required_create=true alias=timespent
* @var int
*/
protected $time_worked;
/**
* Billable time (in seconds) in this ticket time track.
* @apiField required_create=true
* @var int
*/
protected $time_billable;
/**
* Bill timestamp of this ticket time track.
* @apiField required_create=true alias=billtimeline
* @var int
*/
protected $bill_date;
/**
* Work timestamp of this ticket time track.
* @apiField required_create=true alias=worktimeline
* @var int
*/
protected $work_date;
/**
* Worker staff identifier.
* @apiField
* @var int
*/
protected $worker_staff_id;
/**
* Worker staff full name.
* @apiField
* @var string
*/
protected $worker_staff_name;
/**
* Creator staff identifier.
* @apiField required_create=true alias=staffid
* @var int
*/
protected $creator_staff_id;
/**
* Creator staff full name.
* @apiField
* @var string
*/
protected $creator_staff_name;
/**
* Ticket time track note color.
*
* @see kyTicketTimeTrack::COLOR constants.
*
* @apiField
* @var int
*/
protected $note_color;
/**
* Note contents of this ticket time track.
* @apiField required_create=true
* @var int
*/
protected $contents;
/**
* The ticket that this time track will be connected with.
* @var kyTicket
*/
private $ticket;
/**
* Worker staff.
* @var kyStaff
*/
private $worker_staff = null;
/**
* Creator staff.
* @var kyStaff
*/
private $creator_staff = null;
protected function parseData($data) {
$this->id = intval($data['_attributes']['id']);
$this->ticket_id = ky_assure_positive_int($data['_attributes']['ticketid']);
$this->time_worked = $data['_attributes']['timeworked'];
$this->time_billable = $data['_attributes']['timebillable'];
$this->bill_date = ky_assure_positive_int($data['_attributes']['billdate']);
$this->work_date = ky_assure_positive_int($data['_attributes']['workdate']);
$this->worker_staff_id = ky_assure_positive_int($data['_attributes']['workerstaffid']);
$this->worker_staff_name = $data['_attributes']['workerstaffname'];
$this->creator_staff_id = ky_assure_positive_int($data['_attributes']['creatorstaffid']);
$this->creator_staff_name = $data['_attributes']['creatorstaffname'];
$this->note_color = intval($data['_attributes']['notecolor']);
$this->contents = $data['_contents'];
}
public function buildData($create) {
$this->checkRequiredAPIFields($create);
$data = array();
$data['ticketid'] = $this->ticket_id;
$data['contents'] = $this->contents;
$data['staffid'] = $this->creator_staff_id;
$data['worktimeline'] = $this->work_date;
$data['billtimeline'] = $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 BadMethodCallException("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 = ky_assure_positive_int($ticket_id);
$this->ticket = null;
return $this;
}
/**
* Returns the ticket that this time track is connected with.
*
* 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 kyTicket
*/
public function getTicket($reload = false) {
if ($this->ticket !== null && !$reload)
return $this->ticket;
if ($this->ticket_id === null)
return null;
$this->ticket = kyTicket::get($this->ticket_id);
return $this->ticket;
}
/**
* Sets the ticket that this time track will be connected with.
*
* @param kyTicket $ticket Ticket.
* @return kyTicketTimeTrack
*/
public function setTicket($ticket) {
$this->ticket = ky_assure_object($ticket, 'kyTicket');
$this->ticket_id = $this->ticket !== null ? $this->ticket->getId() : null;
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);
}
return $this->time_worked;
}
/**
* Sets worked time for this time track.
*
* @param string|int $time_worked Worked time (as seconds or formatted as hh:mm).
* @return kyTicketTimeTrack
*/
public function setTimeWorked($time_worked) {
if (!is_numeric($time_worked)) {
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);
}
return $this->time_billable;
}
/**
* Sets billable time for this time track.
*
* @param string|int $time_billable Billable time (as seconds or formatted as hh:mm).
* @return kyTicketTimeTrack
*/
public function setTimeBillable($time_billable) {
if (!is_numeric($time_billable)) {
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.
*
* @see http://www.php.net/manual/en/function.date.php
*
* @param string $format Output format of the date. If null the format set in client configuration is used.
* @return string
* @filterBy
* @orderBy
*/
public function getWorkDate($format = null) {
if ($this->work_date == null)
return null;
if ($format === null) {
$format = kyConfig::get()->getDatetimeFormat();
}
return date($format, $this->work_date);
}
/**
* Sets date and time when the work was executed.
*
* @see http://www.php.net/manual/en/function.strtotime.php
*
* @param string|int $work_date Date and time when the work was executed (timestamp or string format understood by PHP strtotime).
* @return kyTicketTimeTrack
*/
public function setWorkDate($work_date) {
$this->work_date = is_numeric($work_date) ? $work_date : strtotime($work_date);
return $this;
}
/**
* Returns date and time when to bill the worker.
*
* @see http://www.php.net/manual/en/function.date.php
*
* @param string $format Output format of the date. If null the format set in client configuration is used.
* @return string
* @filterBy
* @orderBy
*/
public function getBillDate($format = null) {
if ($this->bill_date == null)
return null;
if ($format === null) {
$format = kyConfig::get()->getDatetimeFormat();
}
return date($format, $this->bill_date);
}
/**
* Sets date and time when to bill the worker.
*
* @see http://www.php.net/manual/en/function.strtotime.php
*
* @param string|int $bill_date Date and time when the work was executed (timestamp or string format understood by PHP strtotime).
* @return kyTicketTimeTrack
*/
public function setBillDate($bill_date) {
$this->bill_date = is_numeric($bill_date) ? $bill_date : strtotime($bill_date);
return $this;
}
/**
* Shortcut function for setting worked time and when the work was executed.
*
* @see http://www.php.net/manual/en/function.strtotime.php
*
* @param string|int $time_worked Worked time (as seconds or formatted as hh:mm).
* @param string $work_date Date and time when the work was exectued (timestamp or string format understood by PHP strtotime). Defaults to current datetime.
*/
public function setWorkedData($time_worked, $work_date = null) {
$this->setTimeWorked($time_worked, true);
if ($work_date === null) {
$work_date = time();
}
$this->setWorkDate($work_date);
}
/**
* Shortcut function for setting billable time and when to bill the worker.
*
* @see http://www.php.net/manual/en/function.strtotime.php
*
* @param string|int $time_billable Billable time (as seconds or formatted as hh:mm).
* @param string $bill_date Date and time when to bill the worker (timestamp or string format understood by PHP strtotime). Defaults to current datetime.
*/
public function setBillingData($time_billable, $bill_date = null) {
$this->setTimeBillable($time_billable);
if ($bill_date === null) {
$bill_date = time();
}
$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.
*
* @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 = ky_assure_positive_int($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($worker_staff) {
$this->worker_staff = ky_assure_object($worker_staff, 'kyStaff');
$this->worker_staff_id = $this->worker_staff !== null ? $this->worker_staff->getId() : null;
$this->worker_staff_name = $this->worker_staff !== null ? $this->worker_staff->getFullName() : null;
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.
*
* @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 = ky_assure_positive_int($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($creator_staff) {
$this->creator_staff = ky_assure_object($creator_staff, 'kyStaff');
$this->creator_staff_id = $this->creator_staff !== null ? $this->creator_staff->getId() : null;
$this->creator_staff_name = $this->creator_staff !== null ? $this->creator_staff->getFullName() : null;
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.
*
* @see kyTicketTimeTrack::COLOR constants.
*
* @return int
*/
public function getNoteColor() {
return $this->note_color;
}
/**
* Sets color of the time track.
*
* @see kyTicketTimeTrack::COLOR constants.
*
* @param int $note_color Color of the time track - one of kyTicketTimeTrack::COLOR_* constants.
* @return kyTicketTimeTrack
*/
public function setNoteColor($note_color) {
$this->note_color = ky_assure_constant($note_color, $this, '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 = ky_assure_string($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;
}
}