CORE-POS/IS4C

View on GitHub
fannie/modules/plugins2.0/CpwInvoiceImport/DeliMailPipe.php

Summary

Maintainability
A
3 hrs
Test Coverage
<?php

namespace COREPOS\Fannie\Plugin\CpwInvoiceImport;

include(__DIR__ . '/../../../config.php');
if (!class_exists('\\FannieAPI')) {
    include(__DIR__ . '/../../../classlib2.0/FannieAPI.php');
}
if (!class_exists('\COREPOS\Fannie\API\data\pipes\AttachmentEmailPipe')) {
    include_once(dirname(__FILE__).'/../../../classlib2.0/data/pipes/AttachmentEmailPipe.php');
}

class DeliMailPipe extends \COREPOS\Fannie\API\data\pipes\AttachmentEmailPipe
{
    public function processMail($msg)
    {
        $info = $this->parseEmail($msg);
        $boundary = $this->hasAttachments($info['headers']);
        $fto = new FileToOrder();
        $dbc = \FannieDB::get(\FannieConfig::config('OP_DB'));
        $otc = new OrderToCore($dbc);
        $log = new \FannieLogger();

        if ($boundary) {
            $pieces = $this->extractAttachments($info['body'], $boundary);
            foreach ($pieces['attachments'] as $a) {
                $temp = tempnam(sys_get_temp_dir(), 'cpw');
                if (strstr($a['name'], '";')) {
                    list($a['name'],) = explode('";', $a['name'], 2);
                }
                $orig = explode('.', $a['name'], 2);
                if (count($orig) > 1) { // preserve file extension
                    $temp .= '.' . $orig[count($orig)-1];
                }
                file_put_contents($temp, $a['content']);
                try {
                    $log->debug("Process file: " . $a['name']);
                    $order = $fto->read($temp);
                    $orderID = $otc->import($order, '51201'); 
                    $dest = __DIR__ . '/../../../purchasing/noauto/invoices/' . $orderID . '.xls';
                    rename($temp, $dest);
                    chmod($dest, 0644);
                    $log->debug('Success on ' . $orderID);
                } catch (\Exception $ex) {
                    $log->debug($ex->getMessage());
                    $log->debug('File: ' . $a['name']);
                    $log->debug('Error: ' . $ex->getMessage());
                }
                if (file_exists($temp)) {
                    unlink($temp);
                }
            }
        } else {
            $log->debug('Message had zero attachments');
        }
    }
}

if (php_sapi_name() === 'cli' && basename($_SERVER['PHP_SELF']) == basename(__FILE__)) {
    $obj = new DeliMailPipe();
    $message = file_get_contents("php://stdin");
    if (!empty($message)) {
        $obj->processMail($message);
    }
}