Skip to content
Snippets Groups Projects
tickets.php 4.45 KiB
Newer Older
  • Learn to ignore specific revisions
  • <?php
    /*********************************************************************
        tickets.php
    
        Main client/user interface.
        Note that we are using external ID. The real (local) ids are hidden from user.
    
        Peter Rotich <peter@osticket.com>
    
        Copyright (c)  2006-2013 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('secure.inc.php');
    if(!is_object($thisclient) || !$thisclient->isValid()) die('Access denied'); //Double check again.
    
    
    if ($thisclient->isGuest())
        $_REQUEST['id'] = $thisclient->getTicketId();
    
    
    require_once(INCLUDE_DIR.'class.ticket.php');
    
    require_once(INCLUDE_DIR.'class.json.php');
    
    $ticket=null;
    
    if($_REQUEST['id']) {
    
        if (!($ticket = Ticket::lookup($_REQUEST['id']))) {
    
            $errors['err']='Unknown or invalid ticket ID.';
    
        } elseif(!$ticket->checkUserAccess($thisclient)) {
    
    Peter Rotich's avatar
    Peter Rotich committed
            $errors['err']='Unknown or invalid ticket.'; //Using generic message on purpose!
    
            $ticket=null;
    
    if (!$ticket && $thisclient->isGuest())
        Http::redirect('view.php');
    
    
    //Process post...depends on $ticket object above.
    if($_POST && is_object($ticket) && $ticket->getId()):
        $errors=array();
        switch(strtolower($_POST['a'])){
    
        case 'edit':
            if(!$ticket->checkUserAccess($thisclient)) //double check perm again!
                $errors['err']='Access Denied. Possibly invalid ticket ID';
    
            elseif (!$cfg || !$cfg->allowClientUpdates())
                $errors['err']='Access Denied. Client updates are currently disabled';
    
            else {
                $forms=DynamicFormEntry::forTicket($ticket->getId());
                foreach ($forms as $form)
                    if (!$form->isValid())
                        $errors = array_merge($errors, $form->errors());
            }
            if (!$errors) {
                foreach ($forms as $f) $f->save();
                $_REQUEST['a'] = null; //Clear edit action - going back to view.
                $ticket->logNote('Ticket details updated', sprintf(
                    'Ticket details were updated by client %s &lt;%s&gt;',
                    $thisclient->getName(), $thisclient->getEmail()));
            }
            break;
    
        case 'reply':
    
            if(!$ticket->checkUserAccess($thisclient)) //double check perm again!
    
                $errors['err']='Access Denied. Possibly invalid ticket ID';
    
            if(!$_POST['message'])
                $errors['message']='Message required';
    
    Peter Rotich's avatar
    Peter Rotich committed
            if(!$errors) {
    
                //Everything checked out...do the magic.
    
                $vars = array(
                        'userId' => $thisclient->getId(),
    
    Peter Rotich's avatar
    Peter Rotich committed
                        'poster' => (string) $thisclient->getName(),
    
                        'message' => $_POST['message']);
    
                if($cfg->allowOnlineAttachments() && $_FILES['attachments'])
                    $vars['files'] = AttachmentFile::format($_FILES['attachments'], true);
    
                if (isset($_POST['draft_id']))
                    $vars['draft_id'] = $_POST['draft_id'];
    
                if(($msgid=$ticket->postMessage($vars, 'Web'))) {
    
                    $msg='Message Posted Successfully';
    
                    // Cleanup drafts for the ticket. If not closed, only clean
                    // for this staff. Else clean all drafts for the ticket.
    
                    Draft::deleteForNamespace('ticket.client.' . $ticket->getId());
    
                    $errors['err']='Unable to post the message. Try again';
                }
    
    
            } elseif(!$errors['err']) {
                $errors['err']='Error(s) occurred. Please try again';
    
            $errors['err']='Unknown action';
    
        }
        $ticket->reload();
    endif;
    
    $nav->setActiveNav('tickets');
    
    if($ticket && $ticket->checkUserAccess($thisclient)) {
    
        if (isset($_REQUEST['a']) && $_REQUEST['a'] == 'edit'
                && $cfg->allowClientUpdates()) {
    
            $inc = 'edit.inc.php';
            if (!$forms) $forms=DynamicFormEntry::forTicket($ticket->getId());
            // Auto add new fields to the entries
            foreach ($forms as $f) $f->addMissingFields();
        }
        else
            $inc='view.inc.php';
    
    } elseif($thisclient->getNumTickets()) {
    
        $inc='tickets.inc.php';
    } else {
        $nav->setActiveNav('new');
        $inc='open.inc.php';
    }
    
    include(CLIENTINC_DIR.'header.inc.php');
    include(CLIENTINC_DIR.$inc);
    include(CLIENTINC_DIR.'footer.inc.php');
    ?>