Skip to content
Snippets Groups Projects
api.tickets.php 3.03 KiB
Newer Older
Jared Hancock's avatar
Jared Hancock committed
<?php

include_once INCLUDE_DIR.'class.api.php';
include_once INCLUDE_DIR.'class.ticket.php';
class TicketApiController extends ApiController {
Jared Hancock's avatar
Jared Hancock committed

    # Supported arguments -- anything else is an error. These items will be
    # inspected _after_ the fixup() method of the ApiXxxDataParser classes
    # so that all supported input formats should be supported
    function getRequestStructure($format) {
        $supported = array(
            "alert", "autorespond", "source", "topicId",
Jared Hancock's avatar
Jared Hancock committed
            "name", "email", "subject", "phone", "phone_ext",
            "attachments" => array("*" => 
                array("name", "type", "data", "encoding")
            ), 
            "message", "ip", "priorityId"
Jared Hancock's avatar
Jared Hancock committed
        );

        if(!strcasecmp($format, 'email'))
            $supported = array_merge($supported, array('header', 'mid', 'emailId', 'ticketId'));

        return $supported;
Jared Hancock's avatar
Jared Hancock committed
    }

    function create($format) {
        if(!($key=$this->requireApiKey()) || !$key->canCreateTickets())
            return $this->exerr(401, 'API key not authorized');
        $ticket = null;
        if(!strcasecmp($format, 'email')) {
            # Handle remote piped emails - could be a reply...etc.
            $ticket = $this->processEmail();
        } else {
            # Parse request body
            $ticket = $this->createTicket($this->getRequest($format));
        }

        if(!$ticket)
            return $this->exerr(500, "Unable to create new ticket: unknown error");

        $this->response(201, $ticket->getExtId());
    }

    /* private helper functions */

    function createTicket($data) {
Jared Hancock's avatar
Jared Hancock committed

        # Pull off some meta-data
        $alert = $data['alert'] ? $data['alert'] : true;
Jared Hancock's avatar
Jared Hancock committed
        $autorespond = $data['autorespond'] ? $data['autorespond'] : true;
        $data['source'] = $data['source'] ? $data['source'] : 'API';
Jared Hancock's avatar
Jared Hancock committed

        # Create the ticket with the data (attempt to anyway)
        $errors = array();
        $ticket = Ticket::create($data, $errors, $data['source'], $autorespond, $alert);
Jared Hancock's avatar
Jared Hancock committed
        # Return errors (?)
        if (count($errors)) {
            if(isset($errors['errno']) && $errors['errno'] == 403)
                return $this->exerr(403, 'Ticket denied');
            else
                return $this->exerr(
                        400, 
                        "Unable to create new ticket: validation errors:\n"
                        .Format::array_implode(": ", "\n", $errors)
                        );
Jared Hancock's avatar
Jared Hancock committed
        } elseif (!$ticket) {
            return $this->exerr(500, "Unable to create new ticket: unknown error");
Jared Hancock's avatar
Jared Hancock committed
        # Save attachment(s)
        if($data['attachments'])
            $ticket->importAttachments($data['attachments'], $ticket->getLastMsgId(), 'M');

    function processEmail() {

        $data = $this->getEmailRequest();
        if($data['ticketId'] && ($ticket=Ticket::lookup($data['ticketId']))) {
            if(($msgid=$ticket->postMessage($data, 'Email')))
                return $ticket;
        }

        return $this->createTicket($data);
    }