Newer
Older
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
<?php
/*************************************************************************
tickets.php
Handles all tickets related actions.
Peter Rotich <peter@osticket.com>
Copyright (c) 2006-2012 osTicket
http://www.osticket.com
Released under the GNU General Public License WITHOUT ANY WARRANTY.
See LICENSE.TXT for details.
vim: expandtab sw=4 ts=4 sts=4:
**********************************************************************/
require('staff.inc.php');
require_once(INCLUDE_DIR.'class.ticket.php');
require_once(INCLUDE_DIR.'class.dept.php');
require_once(INCLUDE_DIR.'class.filter.php');
require_once(INCLUDE_DIR.'class.canned.php');
$page='';
$ticket=null; //clean start.
//LOCKDOWN...See if the id provided is actually valid and if the user has access.
if($_REQUEST['id']) {
if(!($ticket=Ticket::lookup($_REQUEST['id'])))
$errors['err']='Unknown or invalid ticket ID';
elseif(!$ticket->checkStaffAccess($thisstaff)) {
$errors['err']='Access denied. Contact admin if you believe this is in error';
$ticket=null; //Clear ticket obj.
}
}
//At this stage we know the access status. we can process the post.
if($_POST && !$errors):
if($ticket && $ticket->getId()) {
//More coffee please.
$errors=array();
$lock=$ticket->getLock(); //Ticket lock if any
$statusKeys=array('open'=>'Open','Reopen'=>'Open','Close'=>'Closed');
switch(strtolower($_POST['a'])):
case 'reply':
if(!$_POST['msgId'])
$errors['err']='Missing message ID - Internal error';
if(!$_POST['response'])
$errors['response']='Response required';
//Use locks to avoid double replies
if($lock && $lock->getStaffId()!=$thisstaff->getId())
$errors['err']='Action Denied. Ticket is locked by someone else!';
//Make sure the email is not banned
if(!$errors['err'] && TicketFilter::isBanned($ticket->getEmail()))
$errors['err']='Email is in banlist. Must be removed to reply.';
$wasOpen =($ticket->isOpen());
if(!$errors && ($respId=$ticket->postReply($_POST, $errors))) {
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
$msg='Reply posted successfully';
$ticket->reload();
if($ticket->isClosed() && $wasOpen)
$ticket=null;
} elseif(!$errors['err']) {
$errors['err']='Unable to post the reply. Correct the errors below and try again!';
}
break;
case 'transfer': /** Transfer ticket **/
//Check permission
if($thisstaff && $thisstaff->canTransferTickets()) {
if(!$_POST['deptId'])
$errors['deptId']='Select department';
elseif($_POST['deptId']==$ticket->getDeptId())
$errors['deptId']='Ticket already in the Dept.';
elseif(!($dept=Dept::lookup($_POST['deptId'])))
$errors['deptId']='Unknown or invalid department';
if(!$_POST['transfer_message'])
$errors['transfer_message'] = 'Transfer comments/notes required';
elseif(strlen($_POST['transfer_message'])<5)
$errors['transfer_message'] = 'Transfer comments too short!';
if(!$errors && $ticket->transfer($_POST['deptId'], $_POST['transfer_message'])) {
$msg = 'Ticket transferred successfully to '.$ticket->getDeptName();
//Check to make sure the staff still has access to the ticket
if(!$ticket->checkStaffAccess($thisstaff))
$ticket=null;
} else {
$errors['transfer']='Unable to complete the transfer - try again';
$errors['err']='Missing or invalid data. Correct the error(s) below and try again!';
}
} else {
$errors['err']=$errors['transfer']='Action Denied. You are not allowed to transfer tickets.';
}
break;
case 'assign':
if($thisstaff && $thisstaff->canAssignTickets()) {
if(!$_POST['assignId'])
$errors['assignId'] = 'Select assignee';
elseif($_POST['assignId'][0]!='s' && $_POST['assignId'][0]!='t')
$errors['assignId']='Invalid assignee ID - get technical support';
elseif($ticket->isAssigned()) {
$id=preg_replace("/[^0-9]/", "",$_POST['assignId']);
if($_POST['assignId'][0]=='s' && $id==$ticket->getStaffId())
$errors['assignId']='Ticket already assigned to the staff.';
elseif($_POST['assignId'][0]=='t' && $id==$ticket->getTeamId())
$errors['assignId']='Ticket already assigned to the team.';
}
if(!$_POST['assign_message'])
$errors['assign_message']='Comments required';
elseif(strlen($_POST['assign_message'])<5)
$errors['assign_message']='Comments too short';
if(!$errors && $ticket->assign($_POST['assignId'],$_POST['assign_message'])) {
$msg='Ticket assigned successfully to '.$ticket->getAssignee();
TicketLock::removeStaffLocks($thisstaff->getId(),$ticket->getId());
$ticket=null;
}elseif(!$errors['err']) {
$errors['err']='Unable to assign the ticket. Correct the errors below and try again.';
}
} else {
$errors['err']=$errors['assign']='Action Denied. You are not allowed to assign/reassign tickets.';
}
break;
case 'postnote': /* Post Internal Note */
$fields=array();
$fields['title'] = array('type'=>'string', 'required'=>1, 'error'=>'Title required');
$fields['internal_note'] = array('type'=>'string', 'required'=>1, 'error'=>'Note message required');
if(!Validator::process($fields, $_POST, $errors) && !$errors['err'])
$errors['err']=$errors['note']='Missing or invalid data. Correct the error(s) below and try again!';
if(!$errors && ($noteId=$ticket->postNote($_POST['title'], $_POST['internal_note'], $thisstaff))) {
$msg='Internal note posted successfully';
//Upload attachments IF ANY - TODO: validate attachment types??
if($_FILES['attachments'] && ($files=Format::files($_FILES['attachments'])))
$ticket->uploadAttachments($files,$noteId,'N');
//Set state: Error on state change not critical!
if(isset($_POST['note_ticket_state']) && $_POST['note_ticket_state']) {
if($ticket->setState($_POST['note_ticket_state']) && $ticket->reload()) {
$msg.=' and state changed to '.strtoupper($_POST['note_ticket_state']);
if($ticket->isClosed())
$ticket=null; //Going back to main listing.
}
}
} elseif(!$errors['note']) {
$errors['note']='Error(s) occurred. Unable to post the note.';
}
break;
case 'update':
if(!$ticket || !$thisstaff->canEditTickets())
$errors['err']='Perm. Denied. You are not allowed to edit tickets';
$_REQUEST['a'] = null; //Clear edit action - going back to view.
//Check to make sure the staff STILL has access post-update (e.g dept change).
if(!$ticket->checkStaffAccess($thisstaff))
$ticket=null;
} elseif(!$errors['err']) {
$errors['err']='Unable to update the ticket. Correct the errors below and try again!';
}
break;
case 'process':
switch(strtolower($_POST['do'])):
case 'close':
if(!$thisstaff->canCloseTickets()) {
$errors['err'] = 'Perm. Denied. You are not allowed to close tickets.';
} elseif($ticket->isClosed()) {
$errors['err'] = 'Ticket is already closed!';
} elseif($ticket->close()) {
$msg='Ticket #'.$ticket->getExtId().' status set to CLOSED';
//Log internal note
if($_POST['ticket_status_notes'])
$note = $_POST['ticket_status_notes'];
else
$note='Ticket closed (without comments)';
$ticket->postNote('Ticket Closed', $note, $thisstaff);
//ban email?
if(isset($_POST['banemail']))
Banlist::add($ticket->getEmail(), $thisstaff->getName());
//Going back to main listing.
TicketLock::removeStaffLocks($thisstaff->getId(), $ticket->getId());
$page=$ticket=null;
} else {
$errors['err']='Problems closing the ticket. Try again';
//if staff can close or create tickets ...then assume they can reopen.
if(!$thisstaff->canCloseTickets() && !$thisstaff->canCreateTickets()) {
$errors['err']='Perm. Denied. You are not allowed to reopen tickets.';
} elseif($ticket->isOpen()) {
$errors['err'] = 'Ticket is already open!';
} elseif($ticket->reopen()) {
$msg='Ticket REOPENED';
if($_POST['ticket_status_notes'])
$note = $_POST['ticket_status_notes'];
else
$ticket->postNote('Ticket Reopened', $note, $thisstaff);
} else {
$errors['err']='Problems reopening the ticket. Try again';
if(!$ticket->isAssigned() || !($assigned=$ticket->getAssigned())) {
$errors['err'] = 'Ticket is not assigned!';
} elseif($ticket->release()) {
$msg='Ticket released (unassigned) from '.$assigned;
$ticket->logActivity('Ticket unassigned',$msg.' by '.$thisstaff->getName());
} else {
$errors['err'] = 'Problems releasing the ticket. Try again';
}
break;
case 'claim':
if(!$thisstaff->canAssignTickets()) {
$errors['err'] = 'Perm. Denied. You are not allowed to assign/claim tickets.';
} elseif(!$ticket->isOpen()) {
$errors['err'] = 'Only open tickets can be assigned';
} elseif($ticket->isAssigned()) {
$errors['err'] = 'Ticket is already assigned to '.$ticket->getAssigned();
} elseif($ticket->assignToStaff($thisstaff->getId(), ('Ticket claimed by '.$thisstaff->getName()), false)) {
$msg = 'Ticket is now assigned to you!';
} else {
$errors['err'] = 'Problems assigning the ticket. Try again';
}
$dept = $ticket->getDept();
if(!$dept || !$dept->isManager($thisstaff)) {
$errors['err']='Perm. Denied. You are not allowed to flag tickets overdue';
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
} elseif($ticket->markOverdue()) {
$msg='Ticket flagged as overdue';
$ticket->logActivity('Ticket Marked Overdue',($msg.' by '.$thisstaff->getName()));
} else {
$errors['err']='Problems marking the the ticket overdue. Try again';
}
break;
case 'answered':
$dept = $ticket->getDept();
if(!$dept || !$dept->isManager($thisstaff)) {
$errors['err']='Perm. Denied. You are not allowed to flag tickets';
} elseif($ticket->markAnswered()) {
$msg='Ticket flagged as answered';
$ticket->logActivity('Ticket Marked Answered',($msg.' by '.$thisstaff->getName()));
} else {
$errors['err']='Problems marking the the ticket answered. Try again';
}
break;
case 'unanswered':
$dept = $ticket->getDept();
if(!$dept || !$dept->isManager($thisstaff)) {
$errors['err']='Perm. Denied. You are not allowed to flag tickets';
} elseif($ticket->markUnAnswered()) {
$msg='Ticket flagged as unanswered';
$ticket->logActivity('Ticket Marked Unanswered',($msg.' by '.$thisstaff->getName()));
} else {
$errors['err']='Problems marking the the ticket unanswered. Try again';
$errors['err']='Perm. Denied. You are not allowed to ban emails';
} elseif(BanList::includes($ticket->getEmail())) {
$errors['err']='Email already in banlist';
} elseif(Banlist::add($ticket->getEmail(),$thisstaff->getName())) {
$msg='Email ('.$ticket->getEmail().') added to banlist';
$errors['err']='Unable to add the email to banlist';
}
break;
case 'unbanemail':
if(!$thisstaff->canBanEmails()) {
$errors['err'] = 'Perm. Denied. You are not allowed to remove emails from banlist.';
} elseif(Banlist::remove($ticket->getEmail())) {
$msg = 'Email removed from banlist';
} elseif(!BanList::includes($ticket->getEmail())) {
$warn = 'Email is not in the banlist';
} else {
$errors['err']='Unable to remove the email from banlist. Try again.';
}
break;
case 'delete': // Dude what are you trying to hide? bad customer support??
$errors['err']='Perm. Denied. You are not allowed to DELETE tickets!!';
} elseif($ticket->delete()) {
$msg='Ticket #'.$ticket->getNumber().' deleted successfully';
//Log a debug note
$ost->logDebug('Ticket #'.$ticket->getNumber().' deleted',
sprintf('Ticket #%s deleted by %s',
$ticket->getNumber(), $thisstaff->getName())
);
$ticket=null; //clear the object.
} else {
$errors['err']='Problems deleting the ticket. Try again';
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
}
break;
default:
$errors['err']='You must select action to perform';
endswitch;
break;
default:
$errors['err']='Unknown action';
endswitch;
if($ticket && is_object($ticket))
$ticket->reload();//Reload ticket info following post processing
}elseif($_POST['a']) {
switch($_POST['a']) {
case 'mass_process':
if(!$thisstaff->canManageTickets())
$errors['err']='You do not have permission to mass manage tickets. Contact admin for such access';
elseif(!$_POST['tids'] || !is_array($_POST['tids']))
$errors['err']='No tickets selected. You must select at least one ticket.';
elseif(($_POST['reopen'] || $_POST['close']) && !$thisstaff->canCloseTickets())
$errors['err']='You do not have permission to close/reopen tickets';
elseif($_POST['delete'] && !$thisstaff->canDeleteTickets())
$errors['err']='You do not have permission to delete tickets';
elseif(!$_POST['tids'] || !is_array($_POST['tids']))
$errors['err']='You must select at least one ticket';
if(!$errors) {
$count=count($_POST['tids']);
if(isset($_POST['reopen'])){
$i=0;
$note='Ticket reopened by '.$thisstaff->getName();
foreach($_POST['tids'] as $k=>$v) {
$t = new Ticket($v);
if($t && @$t->reopen()) {
$i++;
$t->logActivity('Ticket Reopened',$note,false,'System');
}
}
$msg="$i of $count selected tickets reopened";
}elseif(isset($_POST['close'])){
$i=0;
$note='Ticket closed without response by '.$thisstaff->getName();
foreach($_POST['tids'] as $k=>$v) {
$t = new Ticket($v);
if($t && @$t->close()){
$i++;
$t->logActivity('Ticket Closed',$note,false,'System');
}
}
$msg="$i of $count selected tickets closed";
}elseif(isset($_POST['overdue'])){
$i=0;
$note='Ticket flagged as overdue by '.$thisstaff->getName();
foreach($_POST['tids'] as $k=>$v) {
$t = new Ticket($v);
if($t && !$t->isOverdue())
if($t->markOverdue()) {
$i++;
$t->logActivity('Ticket Marked Overdue',$note,false,'System');
}
}
$msg="$i of $count selected tickets marked overdue";
}elseif(isset($_POST['delete'])){
$i=0;
foreach($_POST['tids'] as $k=>$v) {
$t = new Ticket($v);
if($t && @$t->delete()) $i++;
}
$msg="$i of $count selected tickets deleted";
}
}
break;
case 'open':
$ticket=null;
if(!$thisstaff || !$thisstaff->canCreateTickets()) {
$errors['err']='You do not have permission to create tickets. Contact admin for such access';
}elseif(($ticket=Ticket::open($_POST, $errors))) {
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
$msg='Ticket created successfully';
$_REQUEST['a']=null;
if(!$ticket->checkStaffAccess($thisstaff) || $ticket->isClosed())
$ticket=null;
}elseif(!$errors['err']) {
$errors['err']='Unable to create the ticket. Correct the error(s) and try again';
}
break;
}
}
if(!$errors)
$thisstaff ->resetStats(); //We'll need to reflect any changes just made!
endif;
/*... Quick stats ...*/
$stats= $thisstaff->getTicketsStats();
//Navigation
$nav->setTabActive('tickets');
if($cfg->showAnsweredTickets()) {
$nav->addSubMenu(array('desc'=>'Open ('.($stats['open']+$stats['answered']).')',
'title'=>'Open Tickets',
'href'=>'tickets.php',
'iconclass'=>'Ticket'),
(!$_REQUEST['status'] || $_REQUEST['status']=='open'));
} else {
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
$nav->addSubMenu(array('desc'=>'Open ('.$stats['open'].')',
'title'=>'Open Tickets',
'href'=>'tickets.php',
'iconclass'=>'Ticket'),
(!$_REQUEST['status'] || $_REQUEST['status']=='open'));
}
if($stats['answered']) {
$nav->addSubMenu(array('desc'=>'Answered ('.$stats['answered'].')',
'title'=>'Answered Tickets',
'href'=>'tickets.php?status=answered',
'iconclass'=>'answeredTickets'),
($_REQUEST['status']=='answered'));
}
}
if($stats['assigned']) {
if(!$sysnotice && $stats['assigned']>10)
$sysnotice=$stats['assigned'].' assigned to you!';
$nav->addSubMenu(array('desc'=>'My Tickets ('.$stats['assigned'].')',
'title'=>'Assigned Tickets',
'href'=>'tickets.php?status=assigned',
'iconclass'=>'assignedTickets'),
($_REQUEST['status']=='assigned'));
}
if($stats['overdue']) {
$nav->addSubMenu(array('desc'=>'Overdue ('.$stats['overdue'].')',
'title'=>'Stale Tickets',
'href'=>'tickets.php?status=overdue',
'iconclass'=>'overdueTickets'),
($_REQUEST['status']=='overdue'));
if(!$sysnotice && $stats['overdue']>10)
$sysnotice=$stats['overdue'] .' overdue tickets!';
}
if($thisstaff->showAssignedOnly() && $stats['closed']) {
$nav->addSubMenu(array('desc'=>'My Closed Tickets ('.$stats['closed'].')',
'title'=>'My Closed Tickets',
'href'=>'tickets.php?status=closed',
'iconclass'=>'closedTickets'),
($_REQUEST['status']=='closed'));
} else {
$nav->addSubMenu(array('desc'=>'Closed Tickets',
'title'=>'Closed Tickets',
'href'=>'tickets.php?status=closed',
'iconclass'=>'closedTickets'),
($_REQUEST['status']=='closed'));
}
if($thisstaff->canCreateTickets()) {
$nav->addSubMenu(array('desc'=>'New Ticket',
'href'=>'tickets.php?a=open',
'iconclass'=>'newTicket'),
($_REQUEST['a']=='open'));
}
$inc = 'tickets.inc.php';
if($ticket) {
$nav->setActiveSubMenu(-1);
$inc = 'ticket-view.inc.php';
if($_REQUEST['a']=='edit' && $thisstaff->canEditTickets())
$inc = 'ticket-edit.inc.php';
elseif($_REQUEST['a'] == 'print' && !$ticket->pdfExport($_REQUEST['psize'], $_REQUEST['notes']))
$errors['err'] = 'Internal error: Unable to export the ticket to PDF for print.';
$inc = 'tickets.inc.php';
if($_REQUEST['a']=='open' && $thisstaff->canCreateTickets())
$inc = 'ticket-open.inc.php';
elseif($_REQUEST['a'] == 'export') {
require_once(INCLUDE_DIR.'class.export.php');
$ts = strftime('%Y%m%d');
if (!($token=$_REQUEST['h']))
$errors['err'] = 'Query token required';
elseif (!($query=$_SESSION['search_'.$token]))
$errors['err'] = 'Query token not found';
elseif (!Export::saveTickets($query, "tickets-$ts.csv", 'csv'))
$errors['err'] = 'Internal error: Unable to dump query results';
}
//Clear active submenu on search with no status
if($_REQUEST['a']=='search' && !$_REQUEST['status'])
$nav->setActiveSubMenu(-1);
//set refresh rate if the user has it configured
if(!$_POST && $_REQUEST['a']!='search' && ($min=$thisstaff->getRefreshRate()))
$ost->addExtraHeader('<meta http-equiv="refresh" content="'.($min*60).'" />');
}
require_once(STAFFINC_DIR.'header.inc.php');
require_once(STAFFINC_DIR.$inc);
require_once(STAFFINC_DIR.'footer.inc.php');
?>