-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathkyTicketNote.php
640 lines (555 loc) · 15.1 KB
/
kyTicketNote.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
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
640
<?php
/**
* Kayako TicketNote object.
*
* @author Tomasz Sawicki (https://github.com/Furgas)
* @link http://wiki.kayako.com/display/DEV/REST+-+TicketNote
* @since Kayako version 4.01.240
* @package Object\Ticket
*
* @noinspection PhpDocSignatureInspection
*/
class kyTicketNote extends kyObjectBase {
/**
* Color of note - yellow.
*
* @var int
*/
const COLOR_YELLOW = 1;
/**
* Color of note - purple.
*
* @var int
*/
const COLOR_PURPLE = 2;
/**
* Color of note - blue.
*
* @var int
*/
const COLOR_BLUE = 3;
/**
* Color of note - green.
*
* @var int
*/
const COLOR_GREEN = 4;
/**
* Color of note - red.
*
* @var int
*/
const COLOR_RED = 5;
/**
* Note type - connected to ticket.
*
* @var string
*/
const TYPE_TICKET = 'ticket';
/**
* Note type - connected to user.
*
* @var string
*/
const TYPE_USER = 'user';
/**
* Note type - connected to user organization.
*
* @var string
*/
const TYPE_USER_ORGANIZATION = 'userorganization';
static protected $controller = '/Tickets/TicketNote';
static protected $object_xml_name = 'note';
/**
* Ticket note identifier.
* @apiField
* @var int
*/
protected $id;
/**
* Ticket identifier - if this note is associated with ticket.
* @apiField required_create=true
* @var int
*/
protected $ticket_id;
/**
* User identifier - if this note is associated with user who created the ticket.
* @apiField
* @var int
*/
protected $user_id;
/**
* User organization identifier - if this note is associated with user organization of user who created the ticket.
* @apiField
* @var int
*/
protected $user_organization_id;
/**
* Note type.
*
* @see kyTicketNote::TYPE constants.
*
* @apiField
* @var string
*/
protected $type = self::TYPE_TICKET;
/**
* Ticket note color.
*
* @see kyTicketNote::COLOR constants.
*
* @apiField
* @var int
*/
protected $note_color;
/**
* Identifier of staff user who created this note.
* @apiField alias=staffid
* @var int
*/
protected $creator_staff_id;
/**
* Full name of staff user who created this note.
* @apiField getter=getCreatorName setter=setCreator alias=fullname
* @var string
*/
protected $creator_staff_name;
/**
* Identifier staff user that this note is intended for.
* @apiField
* @var int
*/
protected $for_staff_id;
/**
* Timestamp of when this ticket note was created.
* @apiField
* @var int
*/
protected $creation_date;
/**
* Ticket note contents.
* @apiField required_create=true
* @var string
*/
protected $contents;
/**
* Staff user who created this note.
* @var kyStaff
*/
private $creator_staff = null;
/**
* Staff user that this note is intended for.
* @var kyStaff
*/
private $for_staff = null;
/**
* Ticket - if this note is associated with ticket.
* @var kyTicket
*/
private $ticket = null;
/**
* User - if this note is associated with user who created the ticket.
* @var kyUser
*/
private $user = null;
/**
* User organization - if this note is associated with user organization of user who created the ticket.
* @var kyUserOrganization
*/
private $user_organization = null;
protected function parseData($data) {
$this->id = intval($data['_attributes']['id']);
$this->type = $data['_attributes']['type'];
$this->note_color = intval($data['_attributes']['notecolor']);
$this->creator_staff_id = ky_assure_positive_int($data['_attributes']['creatorstaffid']);
$this->creator_staff_name = $data['_attributes']['creatorstaffname'];
$this->for_staff_id = ky_assure_positive_int($data['_attributes']['forstaffid']);
$this->creation_date = ky_assure_positive_int($data['_attributes']['creationdate']);
$this->contents = $data['_contents'];
if ($this->getType() === kyTicketNote::TYPE_TICKET) {
$this->ticket_id = ky_assure_positive_int($data['_attributes']['ticketid']);
} elseif ($this->getType() === kyTicketNote::TYPE_USER) {
$this->user_id = ky_assure_positive_int($data['_attributes']['userid']);
} elseif ($this->getType() === kyTicketNote::TYPE_USER_ORGANIZATION) {
$this->user_organization_id = ky_assure_positive_int($data['_attributes']['userorganizationid']);
}
}
public function buildData($create) {
$this->checkRequiredAPIFields($create);
$data = array();
$data['ticketid'] = $this->ticket_id;
$data['notecolor'] = $this->note_color;
if (is_numeric($this->creator_staff_id)) {
$data['staffid'] = $this->creator_staff_id;
} elseif (strlen($this->creator_staff_name) > 0) {
$data['fullname'] = $this->creator_staff_name;
} else {
throw new kyException("Value for API fields 'staffid' or 'fullname' is required for this operation to complete.");
}
$data['forstaffid'] = $this->for_staff_id;
$data['contents'] = $this->contents;
return $data;
}
/**
* Returns all notes 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 note.
*
* @param int $ticket_id Ticket identifier.
* @param int $id Ticket note identifier.
* @return kyTicketNote
*/
static public function get($ticket_id, $id) {
return parent::get(array($ticket_id, $id));
}
public function create() {
if ($this->getType() !== self::TYPE_TICKET)
throw new BadMethodCallException('You can create only note of type "ticket"');
parent::create();
}
public function update() {
throw new BadMethodCallException("You can't update objects of type kyTicketNote.");
}
public function delete() {
if ($this->getType() !== self::TYPE_TICKET)
throw new BadMethodCallException('You can delete only note of type "ticket"');
self::getRESTClient()->delete(static::$controller, array($this->ticket_id, $this->id));
}
public function toString() {
return sprintf("%s (type: %s)", substr($this->getContents(), 0, 50) . (strlen($this->getContents()) > 50 ? '...' : ''), $this->getType());
}
public function getId($complete = false) {
switch ($this->getType()) {
case self::TYPE_USER:
return $complete ? array($this->user_id, $this->id) : $this->id;
case self::TYPE_USER_ORGANIZATION:
return $complete ? array($this->user_organization_id, $this->id) : $this->id;
default:
return $complete ? array($this->ticket_id, $this->id) : $this->id;
}
}
/**
* Returns identifier of ticket that this note is connected with.
*
* Applicable only for notes of type kyTicketNote::TYPE_TICKET.
*
* @return int
*/
public function getTicketId() {
if ($this->getType() !== self::TYPE_TICKET)
return null;
return $this->ticket_id;
}
/**
* Sets identifier of the ticket that this note will be connected with.
*
* @param int $ticket_id Ticket identifier.
* @return kyTicketNote
*/
public function setTicketId($ticket_id) {
$this->ticket_id = intval($ticket_id) > 0 ? intval($ticket_id) : null;
$this->ticket = null;
$this->type = $this->ticket_id !== null ? self::TYPE_TICKET : null;
return $this;
}
/**
* Returns the ticket that this note is connected with.
*
* Applicable only for notes of type kyTicketNote::TYPE_TICKET.
* 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->getType() !== self::TYPE_TICKET)
return null;
if ($this->ticket !== null && !$reload)
return $this->ticket;
if ($this->ticket_id === null || $this->ticket_id <= 0)
return null;
$this->ticket = kyTicket::get($this->ticket_id);
return $this->ticket;
}
/**
* Sets the ticket that the note will be connected with.
*
* @param kyTicket $ticket
* @return kyTicketNote
*/
public function setTicket(kyTicket $ticket) {
$this->ticket = $ticket instanceof kyTicket ? $ticket : null;
$this->ticket_id = $this->ticket !== null ? $this->ticket->getId() : null;
$this->type = $this->ticket !== null ? self::TYPE_TICKET : null;
return $this;
}
/**
* Returns identifier of the user that this note is connected to.
*
* Applicable only for notes of type kyTicketNote::TYPE_USER.
*
* @return int
* @filterBy
* @orderBy
*/
public function getUserId() {
if ($this->getType() !== self::TYPE_USER)
return null;
return $this->user_id;
}
/**
* Return the user that this note is connected to.
*
* Applicable only for notes of type kyTicketNote::TYPE_USER.
* 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 kyUser
*/
public function getUser($reload = false) {
if ($this->getType() !== self::TYPE_USER)
return null;
if ($this->user !== null && !$reload)
return $this->user;
if ($this->user_id === null || $this->user_id <= 0)
return null;
$this->user = kyUser::get($this->user_id);
return $this->user;
}
/**
* Returns identifier of the user organization that this note is connecte with.
*
* Applicable only for notes of type kyTicketNote::TYPE_USER_ORGANIZATION.
*
* @return int
* @filterBy
* @orderBy
*/
public function getUserOrganizationId() {
if ($this->getType() !== self::TYPE_USER_ORGANIZATION)
return null;
return $this->user_organization_id;
}
/**
* Returns the user organization that this note is connecte with.
*
* Applicable only for notes of type kyTicketNote::TYPE_USER_ORGANIZATION.
* 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 kyUserOrganization
*/
public function getUserOrganization($reload = false) {
if ($this->getType() !== self::TYPE_USER_ORGANIZATION)
return null;
if ($this->user_organization !== null && !$reload)
return $this->user_organization;
if ($this->user_organization_id === null || $this->user_organization_id <= 0)
return null;
$this->user_organization = kyUserOrganization::get($this->user_organization_id);
return $this->user_organization;
}
/**
* Returns type of this ticket.
*
* @see kyTicketNote::TYPE constants.
*
* @return string
* @filterBy
* @orderBy
*/
public function getType() {
return $this->type;
}
/**
* Returns this ticket note color.
*
* @see kyTicketNote::COLOR constants.
*
* @return int
* @filterBy
*/
public function getNoteColor() {
return $this->note_color;
}
/**
* Sets the color of this ticket note.
*
* @see kyTicketNote::COLOR constants.
*
* @param int $note_color Note color.
* @return kyTicketNote
*/
public function setNoteColor($note_color) {
$this->note_color = $note_color;
return $this;
}
/**
* Returns identifier of staff user who created this note.
*
* @return int
* @filterBy
* @orderBy
*/
public function getCreatorStaffId() {
return $this->creator_staff_id;
}
/**
* Returns staff who created this note.
*
* 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)
return null;
$this->creator_staff = kyStaff::get($this->creator_staff_id);
return $this->creator_staff;
}
/**
* Returns name of the creator of this ticket note.
*
* @return string
* @filterBy
* @orderBy
*/
public function getCreatorName() {
return $this->creator_staff_name;
}
/**
* Sets creator of this note.
*
* @param kyStaff|int|string $creator Staff OR Staff identifier OR creator name (if the ticket is to be created without providing a staff user, ex: System messages, Alerts etc.).
* @return kyTicketNote
*/
public function setCreator($creator) {
if ($creator instanceof kyStaff) {
$this->creator_staff = $creator;
$this->creator_staff_id = $creator->getId();
$this->creator_staff_name = $creator->getFullName();
} elseif (is_numeric($creator)) {
$this->creator_staff = null;
$this->creator_staff_id = $creator->getId();
$this->creator_staff_name = null;
} else {
$this->creator_staff = null;
$this->creator_staff_id = null;
$this->creator_staff_name = $creator !== null ? strval($creator) : null;
}
return $this;
}
/**
* Returns identifier of the staff who this note is for.
*
* @return int
* @filterBy
* @orderBy
*/
public function getForStaffId() {
return $this->for_staff_id;
}
/**
* Sets identifier of the staff who this note is for.
*
* @param int $for_staff_id
* @return kyTicketNote
*/
public function setForStaffId($for_staff_id) {
$this->for_staff_id = intval($for_staff_id) > 0 ? intval($for_staff_id) : null;
$this->for_staff = null;
return $this;
}
/**
* Returns the staff who this note is for.
*
* 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 getForStaff($reload = false) {
if ($this->for_staff !== null && !$reload)
return $this->for_staff;
if ($this->for_staff_id === null)
return null;
$this->for_staff = kyStaff::get($this->for_staff_id);
return $this->for_staff;
}
/**
* Sets the staff who this note is for.
*
* @param kyStaff $for_staff
* @return kyTicketNote
*/
public function setForStaff($for_staff) {
$this->for_staff = $for_staff instanceof kyStaff ? $for_staff : null;
$this->for_staff_id = $this->for_staff !== null ? $this->for_staff->getId(): null;
return $this;
}
/**
* Returns date and time this note was created.
*
* @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 getCreationDate($format = null) {
if ($this->creation_date == null)
return null;
if ($format === null) {
$format = kyConfig::get()->getDatetimeFormat();
}
return date($format, $this->creation_date);
}
/**
* Returns ticket note contents.
*
* @return string
* @filterBy
*/
public function getContents() {
return $this->contents;
}
/**
* Sets the ticket note contents.
*
* @param string $contents
* @return kyTicketNote
*/
public function setContents($contents) {
$this->contents = strval($contents);
return $this;
}
/**
* Creates new ticket note.
* WARNING: Data is not sent to Kayako unless you explicitly call create() on this method's result.
*
* @param kyTicket $ticket Ticket in which to create the post.
* @param kyStaff $creator Creator (staff) of new note.
* @param string $contents Contents of new note.
* @return kyTicketNote
*/
static public function createNew(kyTicket $ticket, kyStaff $creator, $contents) {
$new_ticket_note = new kyTicketNote();
$new_ticket_note->setTicketId($ticket->getId());
$new_ticket_note->setCreator($creator);
$new_ticket_note->setContents($contents);
return $new_ticket_note;
}
}