Skip to content
Snippets Groups Projects
ajax.tasks.php 18.3 KiB
Newer Older
  • Learn to ignore specific revisions
  • <?php
    /*********************************************************************
        ajax.tasks.php
    
        AJAX interface for tasks
    
        Peter Rotich <peter@osticket.com>
        Copyright (c)  20014 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:
    **********************************************************************/
    
    if(!defined('INCLUDE_DIR')) die('403');
    
    include_once(INCLUDE_DIR.'class.ticket.php');
    require_once(INCLUDE_DIR.'class.ajax.php');
    require_once(INCLUDE_DIR.'class.task.php');
    
    class TasksAjaxAPI extends AjaxController {
    
    
    Peter Rotich's avatar
    Peter Rotich committed
        function lookup() {
            global $thisstaff;
    
            $limit = isset($_REQUEST['limit']) ? (int) $_REQUEST['limit']:25;
            $tasks = array();
    
            $visibility = Q::any(array(
                'staff_id' => $thisstaff->getId(),
                'team_id__in' => $thisstaff->teams->values_flat('team_id'),
            ));
    
            if (!$thisstaff->showAssignedOnly() && ($depts=$thisstaff->getDepts())) {
                $visibility->add(array('dept_id__in' => $depts));
            }
    
    
            $hits = TaskModel::objects()
                ->filter(Q::any(array(
                    'number__startswith' => $_REQUEST['q'],
                )))
                ->filter($visibility)
                ->values('number')
                ->annotate(array('tasks' => SqlAggregate::COUNT('id')))
                ->order_by('-created')
                ->limit($limit);
    
            foreach ($hits as $T) {
                $tasks[] = array('id'=>$T['number'], 'value'=>$T['number'],
                    'info'=>"{$T['number']}",
                    'matches'=>$_REQUEST['q']);
            }
    
            return $this->json_encode($tasks);
        }
    
    
    Peter Rotich's avatar
    Peter Rotich committed
        function add() {
            global $thisstaff;
    
            $info=$errors=array();
            if ($_POST) {
                Draft::deleteForNamespace('task.add', $thisstaff->getId());
                // Default form
                $form = TaskForm::getInstance();
                $form->setSource($_POST);
                // Internal form
                $iform = TaskForm::getInternalForm($_POST);
                $isvalid = true;
                if (!$iform->isValid())
                    $isvalid = false;
                if (!$form->isValid())
                    $isvalid = false;
    
                if ($isvalid) {
                    $vars = $_POST;
                    $vars['default_formdata'] = $form->getClean();
                    $vars['internal_formdata'] = $iform->getClean();
                    $desc = $form->getField('description');
                    if ($desc
                            && $desc->isAttachmentsEnabled()
                            && ($attachments=$desc->getWidget()->getAttachments()))
                        $vars['cannedattachments'] = $attachments->getClean();
                    $vars['staffId'] = $thisstaff->getId();
                    $vars['poster'] = $thisstaff;
                    $vars['ip_address'] = $_SERVER['REMOTE_ADDR'];
                    if (($task=Task::create($vars, $errors)))
                        Http::response(201, $task->getId());
                }
    
                $info['error'] = __('Error adding task - try again!');
            }
    
            include STAFFINC_DIR . 'templates/task.tmpl.php';
        }
    
    
    
        function preview($tid) {
            global $thisstaff;
    
    
            // No perm. check -- preview allowed for staff
            // XXX: perhaps force preview via parent object?
    
            if(!$thisstaff || !($task=Task::lookup($tid)))
                Http::response(404, __('No such task'));
    
            include STAFFINC_DIR . 'templates/task-preview.tmpl.php';
        }
    
    
        function edit($tid) {
            global $thisstaff;
    
    
            if(!($task=Task::lookup($tid)))
    
                Http::response(404, __('No such task'));
    
    
            if (!$task->checkStaffPerm($thisstaff, Task::PERM_EDIT))
                Http::response(403, __('Permission Denied'));
    
    
            $info = $errors = array();
            $forms = DynamicFormEntry::forObject($task->getId(),
                    ObjectModel::OBJECT_TYPE_TASK);
    
    
    Peter Rotich's avatar
    Peter Rotich committed
            if ($_POST && $forms) {
                // TODO: Validate internal form
    
                // Validate dynamic meta-data
                if ($task->update($forms, $_POST, $errors)) {
                    Http::response(201, 'Task updated successfully');
                } elseif(!$errors['err']) {
                    $errors['err']=__('Unable to update the task. Correct the errors below and try again!');
                }
    
                $info = Format::htmlchars($_POST);
            }
    
            include STAFFINC_DIR . 'templates/task-edit.tmpl.php';
        }
    
    
    Peter Rotich's avatar
    Peter Rotich committed
        function massProcess($action)  {
            global $thisstaff;
    
            $actions = array(
                    'transfer' => array(
                        'verbed' => __('transferred'),
                        ),
                    'assign' => array(
                        'verbed' => __('assigned'),
                        ),
                    'delete' => array(
                        'verbed' => __('deleted'),
                        ),
    
    Peter Rotich's avatar
    Peter Rotich committed
                    'reopen' => array(
                        'verbed' => __('reopen'),
                        ),
                    'close' => array(
                        'verbed' => __('closed'),
                        ),
    
    Peter Rotich's avatar
    Peter Rotich committed
                    );
    
            if (!isset($actions[$action]))
                Http::response(404, __('Unknown action'));
    
    
    
            $info = $errors = $e = array();
    
    Peter Rotich's avatar
    Peter Rotich committed
            $inc = null;
            $i = $count = 0;
            if ($_POST) {
                if (!$_POST['tids'] || !($count=count($_POST['tids'])))
                    $errors['err'] = sprintf(
                            __('You must select at least %s.'),
                            __('one task'));
            } else {
                $count  =  $_REQUEST['count'];
            }
    
            switch ($action) {
            case 'assign':
                $inc = 'task-assign.tmpl.php';
    
    Peter Rotich's avatar
    Peter Rotich committed
                $form = AssignmentForm::instantiate($_POST);
                if ($_POST && $form->isValid()) {
                    foreach ($_POST['tids'] as $tid) {
                        if (($t=Task::lookup($tid))
                                // Make sure the agent is allowed to
                                // access and assign the task.
                                && $t->checkStaffPerm($thisstaff, Task::PERM_ASSIGN)
                                // Do the transfer
                                && $t->assign($form, $e)
                                )
                            $i++;
                    }
    
    Peter Rotich's avatar
    Peter Rotich committed
    
    
    Peter Rotich's avatar
    Peter Rotich committed
                    if (!$i) {
                        $info['error'] = sprintf(
                                __('Unable to %1$s %2$s'),
                                __('assign'),
                                _N('selected task', 'selected tasks', $count));
    
    Peter Rotich's avatar
    Peter Rotich committed
                    }
                }
                break;
            case 'transfer':
                $inc = 'task-transfer.tmpl.php';
    
    Peter Rotich's avatar
    Peter Rotich committed
                $form = TransferForm::instantiate($_POST);
                if ($_POST && $form->isValid()) {
                    foreach ($_POST['tids'] as $tid) {
                        if (($t=Task::lookup($tid))
                                // Make sure the agent is allowed to
                                // access and transfer the task.
                                && $t->checkStaffPerm($thisstaff, Task::PERM_TRANSFER)
                                // Do the transfer
                                && $t->transfer($form, $e)
                                )
                            $i++;
                    }
    
                    if (!$i) {
                        $info['error'] = sprintf(
                                __('Unable to %1$s %2$s'),
                                __('transfer'),
                                _N('selected task', 'selected tasks', $count));
                    }
                }
                break;
            case 'reopen':
                $info['status'] = 'open';
            case 'close':
                $inc = 'task-status.tmpl.php';
                $info['status'] = $info['status'] ?: 'closed';
                $perm = '';
                switch ($info['status']) {
                case 'open':
                    // If an agent can create a task then they're allowed to
                    // reopen closed ones.
                    $perm = Task::PERM_CREATE;
                    break;
                case 'closed':
                    $perm = Task::PERM_CLOSE;
                    break;
                default:
                    $errors['err'] = __('Unknown action');
                }
                // Check generic permissions --  department specific permissions
                // will be checked below.
    
    Peter Rotich's avatar
    Peter Rotich committed
                if ($perm && !$thisstaff->hasPerm($perm, false))
    
    Peter Rotich's avatar
    Peter Rotich committed
                    $errors['err'] = sprintf(
                            __('You do not have permission to %s %s'),
                            __($action),
                            __('tasks'));
    
    
    Peter Rotich's avatar
    Peter Rotich committed
                if ($_POST && !$errors) {
    
    Peter Rotich's avatar
    Peter Rotich committed
                    if (!$_POST['status']
                            || !in_array($_POST['status'], array('open', 'closed')))
                        $errors['status'] = __('Status selection required');
    
    Peter Rotich's avatar
    Peter Rotich committed
                    else {
                        foreach ($_POST['tids'] as $tid) {
                            if (($t=Task::lookup($tid))
    
    Peter Rotich's avatar
    Peter Rotich committed
                                    && $t->checkStaffPerm($thisstaff, $perm ?: null)
                                    && $t->setStatus($_POST['status'], $_POST['comments'])
    
    Peter Rotich's avatar
    Peter Rotich committed
                                    )
                                $i++;
                        }
    
                        if (!$i) {
                            $info['error'] = sprintf(
    
    Peter Rotich's avatar
    Peter Rotich committed
                                    __('Unable to change status of %1$s'),
    
    Peter Rotich's avatar
    Peter Rotich committed
                                    _N('selected task', 'selected tasks', $count));
                        }
                    }
                }
                break;
            case 'delete':
                $inc = 'task-delete.tmpl.php';
                $info[':placeholder'] = sprintf(__(
                            'Optional reason for deleting %s'),
                        _N('selected task', 'selected tasks', $count));
                $info['warn'] = sprintf(__(
                            'Are you sure you want to DELETE %s?'),
                        _N('selected task', 'selected tasks', $count));
                $info[':extra'] = sprintf('<strong>%s</strong>',
                            __('Deleted tasks CANNOT be recovered, including any associated attachments.')
                            );
    
                if ($_POST && !$errors) {
                    foreach ($_POST['tids'] as $tid) {
                        if (($t=Task::lookup($tid))
                                && $t->getDeptId() != $_POST['dept_id']
                                && $t->checkStaffPerm($thisstaff, Task::PERM_DELETE)
                                && $t->delete($_POST, $e)
                                )
                            $i++;
                    }
    
                    if (!$i) {
                        $info['error'] = sprintf(
                                __('Unable to %1$s %2$s'),
                                __('delete'),
                                _N('selected task', 'selected tasks', $count));
                    }
                }
                break;
            default:
                Http::response(404, __('Unknown action'));
            }
    
    
            if ($_POST && $i) {
    
                // Assume success
                if ($i==$count) {
                    $msg = sprintf(__('Successfully %s %s.'),
                            $actions[$action]['verbed'],
                            sprintf(__('%1$d %2$s'),
                                $count,
                                _N('selected task', 'selected tasks', $count))
                            );
                    $_SESSION['::sysmsgs']['msg'] = $msg;
                } else {
                    $warn = sprintf(
                            __('%1$d of %2$d %3$s %4$s'), $i, $count,
                            _N('selected task', 'selected tasks',
                                $count),
                            $actions[$action]['verbed']);
                    $_SESSION['::sysmsgs']['warn'] = $warn;
                }
                Http::response(201, 'processed');
            } elseif($_POST && !isset($info['error'])) {
                $info['error'] = $errors['err'] ?: sprintf(
                        __('Unable to %1$s  %2$s'),
    
    Peter Rotich's avatar
    Peter Rotich committed
                        __('process'),
    
    Peter Rotich's avatar
    Peter Rotich committed
                        _N('selected task', 'selected tasks', $count));
            }
    
            if ($_POST)
                $info = array_merge($info, Format::htmlchars($_POST));
    
    
            include STAFFINC_DIR . "templates/$inc";
            //  Copy checked tasks to the form.
            echo "
            <script type=\"text/javascript\">
            $(function() {
                $('form#tasks input[name=\"tids[]\"]:checkbox:checked')
                .each(function() {
                    $('<input>')
                    .prop('type', 'hidden')
                    .attr('name', 'tids[]')
                    .val($(this).val())
                    .appendTo('form.mass-action');
                });
            });
            </script>";
        }
    
    
        function transfer($tid) {
            global $thisstaff;
    
    
            if(!($task=Task::lookup($tid)))
    
                Http::response(404, __('No such task'));
    
    
            if (!$task->checkStaffPerm($thisstaff, Task::PERM_TRANSFER))
                Http::response(403, __('Permission Denied'));
    
    
    Peter Rotich's avatar
    Peter Rotich committed
            $errors = array();
    
            $info = array(
                    ':title' => sprintf(__('Task #%s: %s'),
                        $task->getNumber(),
                        __('Tranfer')),
                    ':action' => sprintf('#tasks/%d/transfer',
                        $task->getId())
                    );
    
    
    Peter Rotich's avatar
    Peter Rotich committed
            $form = $task->getTransferForm($_POST);
            if ($_POST && $form->isValid()) {
                if ($task->transfer($form, $errors)) {
    
    Peter Rotich's avatar
    Peter Rotich committed
                    $_SESSION['::sysmsgs']['msg'] = sprintf(
                            __('%s successfully'),
                            sprintf(
                                __('%s transferred to %s department'),
                                __('Task'),
                                $task->getDept()
                                )
                            );
    
                    Http::response(201, $task->getId());
                }
    
    
    Peter Rotich's avatar
    Peter Rotich committed
                $form->addErrors($errors);
    
                $info['error'] = $errors['err'] ?: __('Unable to transfer task');
            }
    
    
    Peter Rotich's avatar
    Peter Rotich committed
            $info['dept_id'] = $info['dept_id'] ?: $task->getDeptId();
    
    
            include STAFFINC_DIR . 'templates/task-transfer.tmpl.php';
        }
    
        function assign($tid) {
            global $thisstaff;
    
    
    Peter Rotich's avatar
    Peter Rotich committed
            if (!($task=Task::lookup($tid)))
    
                Http::response(404, __('No such task'));
    
    
            if (!$task->checkStaffPerm($thisstaff, Task::PERM_ASSIGN))
                Http::response(403, __('Permission Denied'));
    
    
    Peter Rotich's avatar
    Peter Rotich committed
            $errors = array();
            $info = array(
                    ':title' => sprintf(__('Task #%s: %s'),
                        $task->getNumber(),
                        $task->isAssigned() ? __('Reassign') :  __('Assign')),
                    ':action' => sprintf('#tasks/%d/assign',
                        $task->getId()),
                    );
    
    Peter Rotich's avatar
    Peter Rotich committed
            if ($task->isAssigned()) {
                $info['notice'] = sprintf(__('%s is currently assigned to %s'),
                        __('Task'),
                        $task->getAssigned());
            }
    
            $form = $task->getAssignmentForm($_POST);
            if ($_POST && $form->isValid()) {
                if ($task->assign($form, $errors)) {
    
    Peter Rotich's avatar
    Peter Rotich committed
                    $_SESSION['::sysmsgs']['msg'] = sprintf(
                            __('%s successfully'),
                            sprintf(
                                __('%s assigned to %s'),
                                __('Task'),
    
    Peter Rotich's avatar
    Peter Rotich committed
                                $form->getAssignee())
    
    Peter Rotich's avatar
    Peter Rotich committed
                            );
                    Http::response(201, $task->getId());
    
    Peter Rotich's avatar
    Peter Rotich committed
                $form->addErrors($errors);
    
                $info['error'] = $errors['err'] ?: __('Unable to assign task');
            }
    
            include STAFFINC_DIR . 'templates/task-assign.tmpl.php';
        }
    
       function delete($tid) {
            global $thisstaff;
    
    
            if(!($task=Task::lookup($tid)))
    
                Http::response(404, __('No such task'));
    
    
            if (!$task->checkStaffPerm($thisstaff, Task::PERM_DELETE))
                Http::response(403, __('Permission Denied'));
    
    
    Peter Rotich's avatar
    Peter Rotich committed
            $errors = array();
            $info = array(
                    ':title' => sprintf(__('Task #%s: %s'),
                        $task->getNumber(),
                        __('Delete')),
                    ':action' => sprintf('#tasks/%d/delete',
                        $task->getId()),
                    );
    
    
            if ($_POST) {
                if ($task->delete($_POST,  $errors)) {
    
    Peter Rotich's avatar
    Peter Rotich committed
                    $_SESSION['::sysmsgs']['msg'] = sprintf(
                                __('%s #%s deleted successfully'),
                                __('Task'),
                                $task->getNumber(),
                                $task->getDept());
    
                    Http::response(201, 0);
                }
    
    Peter Rotich's avatar
    Peter Rotich committed
                $info = array_merge($info, Format::htmlchars($_POST));
    
                $info['error'] = $errors['err'] ?: __('Unable to delete task');
            }
    
    Peter Rotich's avatar
    Peter Rotich committed
            $info[':placeholder'] = sprintf(__(
    
                        'Optional reason for deleting %s'),
                    __('this task'));
            $info['warn'] = sprintf(__(
                        'Are you sure you want to DELETE %s?'),
                        __('this task'));
    
    Peter Rotich's avatar
    Peter Rotich committed
            $info[':extra'] = sprintf('<strong>%s</strong>',
    
                        __('Deleted tasks CANNOT be recovered, including any associated attachments.')
                        );
    
            include STAFFINC_DIR . 'templates/task-delete.tmpl.php';
        }
    
    
    
        function task($tid) {
            global $thisstaff;
    
    
            if (!($task=Task::lookup($tid))
                    || !$task->checkStaffPerm($thisstaff))
    
                Http::response(404, __('No such task'));
    
            $info=$errors=array();
    
            $note_form = new SimpleForm(array(
    
                'attachments' => new FileUploadField(array('id'=>'attach',
                'name'=>'attach:note',
                'configuration' => array('extensions'=>'')))
                ));
    
            if ($_POST) {
    
                switch ($_POST['a']) {
                case 'postnote':
                    $vars = $_POST;
    
    Peter Rotich's avatar
    Peter Rotich committed
                    $attachments = $note_form->getField('attachments')->getClean();
    
                    $vars['cannedattachments'] = array_merge(
                        $vars['cannedattachments'] ?: array(), $attachments);
                    if(($note=$task->postNote($vars, $errors, $thisstaff))) {
                        $msg=__('Note posted successfully');
                        // Clear attachment list
    
    Peter Rotich's avatar
    Peter Rotich committed
                        $note_form->setSource(array());
                        $note_form->getField('attachments')->reset();
    
                        Draft::deleteForNamespace('task.note.'.$task->getId(),
                                $thisstaff->getId());
                    } else {
                        if(!$errors['err'])
                            $errors['err'] = __('Unable to post the note - missing or invalid data.');
                    }
                    break;
                default:
                    $errors['err'] = __('Unknown action');
                }
            }
    
            include STAFFINC_DIR . 'templates/task-view.tmpl.php';
        }
    }
    ?>