290 lines
8.8 KiB
PHP

<?php
class Crunchbutton_Notification extends Cana_Table
{
const TYPE_SMS = 'sms';
const TYPE_EMAIL = 'email';
const TYPE_PHONE = 'phone';
const TYPE_URL = 'url';
const TYPE_FAX = 'fax';
const TYPE_ADMIN = 'admin';
const TYPE_STEALTH = 'stealth';
public function send(Crunchbutton_Order $order) {
$env = c::getEnv();
if ($_SESSION['admin'] && c::admin()->testphone) {
c::config()->twilio->testnumber = c::admin()->testphone;
}
$num = ($env == 'live' ? $this->value : c::config()->twilio->testnumber);
$sms = ($env == 'live' ? $this->value : c::config()->twilio->testnumber);
$mail = ($env == 'live' ? $this->value : '_EMAIL');
$fax = ($env == 'live' ? $this->value : '_PHONE_');
Log::debug( [ 'order' => $order->id_order, 'action' => 'send notification', 'value' => $this->value, 'notification type' => $this->type, 'host' => c::config()->host_callback, 'type' => 'notification' ]);
switch ($this->type) {
case Crunchbutton_Notification::TYPE_STEALTH:
$mail = new Crunchbutton_Email_Order_Stealthfax( [ 'order' => $order ] );
$temp = tempnam('/tmp','fax');
file_put_contents($temp, $mail->message());
//chmod($temp, 0777);
rename($temp, $temp.'.html');
$log = new Notification_Log;
$log->id_notification = $this->id_notification;
$log->status = 'pending';
$log->type = 'phaxio';
$log->date = date('Y-m-d H:i:s');
$log->id_order = $order->id_order;
$log->save();
// Log
Log::debug( [ 'order' => $order->id_order, 'action' => 'send fax stealth', 'fax stealth' => $fax, 'host' => c::config()->host_callback, 'type' => 'notification' ]);
$fax = new Phaxio([
'to' => $fax,
'file' => $temp.'.html',
'id_notification_log' => $log->id_notification_log
]);
unlink($temp.'.html');
if ($fax->success) {
$log->remote = $fax->faxId;
$log->status = 'queued';
$log->save();
} else {
$log->status = 'error';
$log->save();
// Send a sms informing the error
$this->smsFaxError( $order );
}
if ($order->restaurant()->confirmation && !$order->_confirm_trigger) {
$order->_confirm_trigger = true;
$order->queConfirmFaxWasReceived();
}
break;
case 'fax':
$mail = new Email_Order([
'order' => $order
]);
$temp = tempnam('/tmp','fax');
file_put_contents($temp, $mail->message());
//chmod($temp, 0777);
rename($temp, $temp.'.html');
$log = new Notification_Log;
$log->id_notification = $this->id_notification;
$log->status = 'pending';
$log->type = 'phaxio';
$log->date = date('Y-m-d H:i:s');
$log->id_order = $order->id_order;
$log->save();
// Log
Log::debug( [ 'order' => $order->id_order, 'action' => 'send fax', 'fax' => $fax, 'host' => c::config()->host_callback, 'type' => 'notification' ]);
$fax = new Phaxio([
'to' => $fax,
'file' => $temp.'.html',
'id_notification_log' => $log->id_notification_log
]);
unlink($temp.'.html');
if ($fax->success) {
$log->remote = $fax->faxId;
$log->status = 'queued';
$log->save();
} else {
$log->status = 'error';
$log->save();
// Send a sms informing the error
$this->smsFaxError( $order );
}
if ($order->restaurant()->confirmation && !$order->_confirm_trigger) {
$order->_confirm_trigger = true;
$order->queConfirmFaxWasReceived();
}
break;
case 'sms':
$twilio = new Twilio(c::config()->twilio->{$env}->sid, c::config()->twilio->{$env}->token);
$message = str_split($order->message('sms'),160);
// Log
Log::debug( [ 'order' => $order->id_order, 'action' => 'send sms', 'num' => $sms, 'host' => c::config()->host_callback, 'type' => 'notification' ]);
foreach ($message as $msg) {
$twilio->account->sms_messages->create(
c::config()->twilio->{$env}->outgoingTextRestaurant,
'+1'.$sms,
$msg
);
continue;
}
if ($order->restaurant()->confirmation && !$order->_confirm_trigger) {
$order->_confirm_trigger = true;
// If the restaurant has fax notification don't send the confimation now, CB should wait the fax finished #1239
if( !$order->restaurant()->hasFaxNotification() ){
$order->queConfirm();
} else {
Log::debug( [ 'order' => $order->id_order, 'action' => 'sms - restaurant has fax notification - wait the fax confirm', 'hasFaxNotification' => $order->restaurant()->hasFaxNotification(), 'type' => 'notification' ] );
}
}
break;
case 'phone':
// Log
Log::debug( [ 'order' => $order->id_order, 'action' => 'send call', 'num' => $num, 'host' => c::config()->host_callback, 'type' => 'notification' ]);
$log = new Notification_Log;
$log->id_notification = $this->id_notification;
$log->status = 'pending';
$log->type = 'twilio';
$log->id_order = $order->id_order;
$log->save();
$twilio = new Services_Twilio(c::config()->twilio->{$env}->sid, c::config()->twilio->{$env}->token);
$call = $twilio->account->calls->create(
c::config()->twilio->{$env}->outgoingRestaurant,
'+1'.$num,
'http://'.c::config()->host_callback.'/api/order/'.$order->id_order.'/say?id_notification='.$this->id_notification,
[
'StatusCallback' => 'http://'.c::config()->host_callback.'/api/notification/'.$log->id_notification_log.'/callback',
'FallbackUrl' => c::config()->twilio->fallbackUrl
// 'IfMachine' => 'Hangup'
]
);
$log->remote = $call->sid;
$log->status = $call->status;
$log->save();
break;
case 'email':
// Log
Log::debug( [ 'order' => $order->id_order, 'action' => 'send mail', 'mail' => $mail, 'type' => 'notification' ]);
$mail = new Email_Order([
'order' => $order,
'email' => $mail
]);
$mail->send();
if ($order->restaurant()->confirmation && !$order->_confirm_trigger) {
$order->_confirm_trigger = true;
// If the restaurant has fax notification don't send the confimation now, CB should wait the fax finished #1239
if( !$order->restaurant()->hasFaxNotification() ){
$order->queConfirm();
} else {
Log::debug( [ 'order' => $order->id_order, 'action' => 'email - restaurant has fax notification - wait the fax confirm', 'hasFaxNotification' => $order->restaurant()->hasFaxNotification(), 'type' => 'notification' ] );
}
}
break;
}
}
public function smsFaxError( $order ){
Log::debug( [ 'order' => $order->id_order, 'action' => 'smsFaxError init', 'object' => $order->json(), 'type' => 'notification' ] );
$date = $order->date();
$date = $date->format( 'M jS Y' ) . ' - ' . $date->format( 'g:i:s A' );
$env = c::getEnv();
if( $env != 'live' ){
return;
}
$message = 'FAX Error: O# ' . $order->id_order . ' for ' . $order->restaurant()->name . ' (' . $date . ').';
$message .= "\n";
$message .= 'R# ' . $order->restaurant()->phone();
$message .= "\n";
$message .= 'C# ' . $order->user()->name . ' : ' . $order->phone();
$message .= "\n";
$message .= 'E# ' . $env;
// Make these notifications pop up on support on cockpit #3008
Crunchbutton_Support::createNewWarning( [ 'id_order' => $order->id_order, 'body' => $message ] );
$message = str_split( $message,160 );
Log::debug( [ 'order' => $order->id_order, 'action' => 'que smsFaxError sending sms', 'type' => 'notification' ]);
$twilio = new Twilio( c::config()->twilio->{$env}->sid, c::config()->twilio->{$env}->token );
foreach ( Crunchbutton_Support::getUsers() as $supportName => $supportPhone ) {
foreach ( $message as $msg ) {
Log::debug( [ 'order' => $order->id_order, 'action' => 'smsFaxError', 'message' => $message, 'supportName' => $supportName, 'supportPhone' => $supportPhone, 'type' => 'notification' ]);
try {
$twilio->account->sms_messages->create(
c::config()->twilio->{$env}->outgoingTextCustomer,
'+1'.$supportPhone,
$msg
);
} catch (Exception $e) {}
}
}
}
public function admin(){
return Crunchbutton_Admin::o( $this->id_admin );
}
public function confirm() {
}
public function __construct($id = null) {
parent::__construct();
$this
->table('notification')
->idVar('id_notification')
->load($id);
}
/**
* Gets an array of possible Notification types
*
* Method is not ready yet, it's just coppied text I found to make it work later when needed
*
* @return array
*
* @todo make this code work
*/
public function getTypes()
{
$sql = "SELECT SUBSTRING(COLUMN_TYPE,5) FROM information_schema.COLUMNS WHERE TABLE_NAME='notification' AND COLUMN_NAME='type' ";
$rs = c::db()->query($sql);
$x = eval("return ['sms','email','phone','url','fax', 'foo'] ; ");
$type = $this->db->query( "SHOW COLUMNS FROM {$table} WHERE Field = '{$field}'" )->row( 0 )->Type;
preg_match('/^enum\((.*)\)$/', $type, $matches);
foreach( explode(',', $matches[1]) as $value )
{
$enum[] = trim( $value, "'" );
}
return $enum;
}
}