Beispiel #1
0
 /**
  * @return bool|null
  */
 function plgVmOnPaymentNotification()
 {
     //$this->_debug = true;
     if (!class_exists('VirtueMartModelOrders')) {
         require VMPATH_ADMIN . DS . 'models' . DS . 'orders.php';
     }
     $order_number = vRequest::getString('on', '');
     if (empty($order_number)) {
         return FALSE;
     }
     if (!($virtuemart_order_id = VirtueMartModelOrders::getOrderIdByOrderNumber($order_number))) {
         return FALSE;
     }
     if (!($payments = $this->getDatasByOrderId($virtuemart_order_id))) {
         return FALSE;
     }
     $this->debugLog('OK', 'plgVmOnPaymentNotification', 'debug');
     $this->_currentMethod = $this->getVmPluginMethod($payments[0]->virtuemart_paymentmethod_id);
     if (!$this->selectedThisElement($this->_currentMethod->payment_element)) {
         return FALSE;
     }
     if (!class_exists('SofortLib')) {
         require VMPATH_ROOT . DS . 'plugins' . DS . 'vmpayment' . DS . 'sofort' . DS . 'sofort' . DS . 'library' . DS . 'sofortLib.php';
     }
     $sofortLib_Notification = new SofortLib_Notification();
     $transactionId = $sofortLib_Notification->getNotification();
     //no valid parameters/xml
     if (empty($transactionId) || $sofortLib_Notification->isError()) {
         $this->debugLog('no transaction ID for order number' . $order_number, 'plgVmOnPaymentNotification', 'error');
         return FALSE;
     }
     $this->debugLog($transactionId, 'plgVmOnPaymentNotification Transaction ID ', 'debug');
     $sofortLib_TransactionData = new SofortLib_TransactionData(trim($this->_currentMethod->configuration_key));
     $sofortLib_TransactionData->setTransaction($transactionId)->sendRequest();
     // check that secret , and order are identical
     $security = vRequest::getString('security', '');
     if ($security != $payments[0]->security) {
         $this->debugLog("security token received: " . $security . " security token expected: " . $payments[0]->security, 'plgVmOnPaymentNotification', 'error');
         return false;
     }
     $paymentMethod = $sofortLib_TransactionData->getPaymentMethod();
     if ($paymentMethod != self::SU_SOFORTBANKING) {
         $this->debugLog("Payment method is " . $paymentMethod . " Should be SU" . 'plgVmOnPaymentNotification', 'error');
         return false;
     }
     $sofort_data['sofort_response_amount'] = $sofortLib_TransactionData->getAmount();
     $sofort_data['sofort_response_currency'] = $sofortLib_TransactionData->getCurrency();
     // check that the amount is the same
     if (!$this->_checkAmountAndCurrency($sofort_data, $payments)) {
         return false;
     }
     $modelOrder = VmModel::getModel('orders');
     $order_history = array();
     $status = 'status_' . $sofortLib_TransactionData->getStatus();
     //$this->debugLog('plgVmOnPaymentNotification getStatus:' .$status. ' '.var_export($method, true) , 'message');
     $order_history['customer_notified'] = true;
     $order_history['order_status'] = $this->_currentMethod->{$status};
     $order_history['comments'] = vmText::_('VMPAYMENT_SOFORT_RESPONSE_STATUS_REASON_' . $sofortLib_TransactionData->getStatusReason());
     $sofort_data['sofort_response_status_reason'] = $sofortLib_TransactionData->getStatusReason();
     $sofort_data['sofort_response_transaction'] = $sofortLib_TransactionData->getTransaction();
     $sofort_data['payment_name'] = str_replace(array('\\t', '\\n'), '', $this->renderPluginName($this->_currentMethod));
     $sofort_data['virtuemart_order_id'] = $payments[0]->virtuemart_order_id;
     $sofort_data['order_number'] = $payments[0]->order_number;
     $sofort_data['virtuemart_paymentmethod_id'] = $payments[0]->virtuemart_paymentmethod_id;
     $sofort_data['sofort_response_status'] = $sofortLib_TransactionData->getStatus();
     $sofort_data['sofort_response_status_reason'] = $sofortLib_TransactionData->getStatusReason();
     $this->debugLog(var_export($sofort_data, true), 'plgVmOnPaymentNotification storePSPluginInternalData ', 'debug');
     $this->storePSPluginInternalData($sofort_data);
     $modelOrder->updateStatusForOneOrder($payments[0]->virtuemart_order_id, $order_history, false);
 }
 /**
  * execute if transaction was loss
  * 
  * @param SofortLib_TransactionData $transData
  * @param Mage_Sales_Model_Order $order
  * @return void
  */
 private function _transactionLoss($transData, $order)
 {
     $payment = $order->getPayment();
     if ($transData->isLastschrift()) {
         $payment->setParentTransactionId($transData->getTransaction())->setShouldCloseParentTransaction(true)->setIsTransactionClosed(0)->registerRefundNotification($transData->getAmount());
         $order->addStatusHistoryComment(Mage::helper('pnsofortueberweisung')->__('Customer returned payment'))->setIsVisibleOnFront(true);
         $order->save();
     } elseif ($transData->isSofortrechnung()) {
         // be sure that order can cancel
         $order->setState('sofort');
         $order->cancel();
         $order->addStatusHistoryComment(Mage::helper('pnsofortueberweisung')->__('Successfully canceled invoice: %s', $transData->getTransaction()))->setIsVisibleOnFront(true);
     } elseif ($transData->isSofortueberweisung()) {
         $lossStatus = Mage::getStoreConfig('payment/sofort/pnsofort_order_status_loss');
         $order->setState('sofort');
         if ($newStatus == 'unchanged') {
             $order->addStatusHistoryComment($transData->getStatus() . " " . $transData->getStatusReason());
         } else {
             $order->addStatusHistoryComment($transData->getStatus() . " " . $transData->getStatusReason(), $lossStatus);
         }
     } else {
         // be sure that order can cancel
         $order->setState('sofort');
         $order->cancel();
         $order->addStatusHistoryComment(Mage::helper('pnsofortueberweisung')->__('Customer canceled payment'))->setIsVisibleOnFront(true);
     }
     $order->save();
 }
 /**
  * Construct the SofortLib_TransactionData object
  * Collect every order's item and set it accordingly
  * TransactionData is used encapsulated in this class to retrieve information about the order's details
  * @return object SofortLib_TransactionData
  * @private
  */
 private function _setupTransactionData()
 {
     $SofortLib_TransactionData = new SofortLib_TransactionData($this->_configKey, $this->_apiUrl);
     $SofortLib_TransactionData->setTransaction($this->_transactionId);
     $SofortLib_TransactionData->sendRequest();
     if (!$SofortLib_TransactionData->getCount()) {
         return false;
     }
     $this->setStatus($SofortLib_TransactionData->getStatus());
     $this->setStatusReason($SofortLib_TransactionData->getStatusReason());
     $this->setStatusOfInvoice($SofortLib_TransactionData->getInvoiceStatus());
     $this->setInvoiceObjection($SofortLib_TransactionData->getInvoiceObjection());
     $this->setLanguageCode($SofortLib_TransactionData->getLanguageCode());
     $this->setTransaction($this->getTransactionId());
     $this->setTime($SofortLib_TransactionData->getTime());
     $this->setPaymentMethod($SofortLib_TransactionData->getPaymentMethod());
     $this->setInvoiceUrl($SofortLib_TransactionData->getInvoiceUrl());
     $this->setAmount($SofortLib_TransactionData->getAmount());
     $this->setAmountRefunded($SofortLib_TransactionData->getAmountRefunded());
     $itemArray = $SofortLib_TransactionData->getItems();
     // should there be any items, fetch them accordingly
     $this->_items = array();
     if (is_array($itemArray) && !empty($itemArray)) {
         foreach ($itemArray as $item) {
             $this->setItem($item['item_id'], $item['product_number'], $item['product_type'], $item['title'], $item['description'], $item['quantity'], $item['unit_price'], $item['tax']);
             $this->_amount += $item['unit_price'] * $item['quantity'];
         }
     }
     /*
      * set the state according to the state given by transaction information (status, status_reason, invoice_status)
      * @see $statusMask
      */
     $this->setState($this->_calcInvoiceStatusCode());
     return $SofortLib_TransactionData;
 }
 /**
  * edit order if something changed
  * 
  * @param SofortLib_TransactionData $transData
  * @param Mage_Sales_Model_Order $order
  * @return boolean
  */
 public function updateOrderFromTransactionData($transData, $order)
 {
     // total amount without refunded
     $amount = number_format($order->getGrandTotal() - $order->getBaseTotalRefunded(), 2, '.', '');
     // if amount still the same, there was nothing edit
     if ($amount == $transData->getAmount()) {
         return false;
     }
     // transaction was cancel, nothing change, order will cancel full
     if ($transData->isLoss()) {
         return false;
     }
     // store items get from remote
     $checkItems = array();
     foreach ($transData->getItems() as $item) {
         $checkItems[$item['item_id']] = $item;
     }
     // order already invoice => create creditmemo
     if ($order->hasInvoices()) {
         return $this->_createCreditMemo($transData, $order, $checkItems);
     }
     // update total
     $order->setGrandTotal($transData->getAmount());
     $order->setBaseGrandTotal($transData->getAmount());
     $subTotal = 0;
     $taxAmount = array();
     // if discount value change the discount store on each row is broken
     // so we just remove it
     $removeDiscount = false;
     // edit discount amount
     if (empty($checkItems[2])) {
         $order->setDiscountAmount(0);
         $removeDiscount = true;
     } else {
         $order->setDiscountAmount($checkItems[2]['quantity'] * $checkItems[2]['unit_price']);
         $removeDiscount = true;
     }
     // check all items in the current order
     foreach ($order->getAllVisibleItems() as $item) {
         $uid = md5($item->getSku() . "-" . $item->getItemId());
         // if not exist it should removed
         if (empty($checkItems[$uid])) {
             // item was cancel
             $this->_cancelItem($item);
             unset($checkItems[$uid]);
             continue;
         }
         // quantity or price change, new row values will be calculated
         if ($checkItems[$uid]['quantity'] != $item->getQtyOrdered() || $item->getPrice() != $checkItems[$uid]['unit_price']) {
             $item->setQtyCanceled($item->getQtyOrdered() - $checkItems[$uid]['quantity']);
             $singleTax = $checkItems[$uid]['unit_price'] - $checkItems[$uid]['unit_price'] * (100 / ($checkItems[$uid]['tax'] + 100));
             $item->setPrice($checkItems[$uid]['unit_price'] - $singleTax);
             $item->setBasePrice($checkItems[$uid]['unit_price'] - $singleTax);
             $item->setPriceInclTax($checkItems[$uid]['unit_price']);
             $item->setBasePriceInclTax($checkItems[$uid]['unit_price']);
             $rowTotalInclTag = $checkItems[$uid]['quantity'] * $checkItems[$uid]['unit_price'];
             $rowTax = $rowTotalInclTag - $rowTotalInclTag * (100 / ($checkItems[$uid]['tax'] + 100));
             $rowTotal = $rowTotalInclTag - $rowTax;
             $item->setRowTotalInclTax($rowTotalInclTag);
             $item->setBaseRowTotalInclTax($rowTotalInclTag);
             $item->setRowTotal($rowTotal);
             $item->setBaseRowTotal($rowTotal);
             $item->setTaxAmount($rowTax);
             $item->setBaseTaxAmount($rowTax);
         }
         // add to subtotal
         $subTotal += $checkItems[$uid]['quantity'] * $checkItems[$uid]['unit_price'];
         // appent to tax group
         if (empty($taxAmount[$checkItems[$uid]['tax']])) {
             $taxAmount[$checkItems[$uid]['tax']] = 0;
         }
         $taxAmount[$checkItems[$uid]['tax']] += $item->getRowTotalInclTax();
         // remove discount from order row
         if ($removeDiscount) {
             $item->setDiscountPercent(0);
             $item->setDiscountAmount(0);
             $item->setBaseDiscountAmount(0);
         }
         unset($checkItems[$uid]);
     }
     // edit shipment amount if it was removed
     if (empty($checkItems[1]) && $order->getShippingAmount()) {
         $order->setShippingAmount(0);
         $order->setBaseShippingAmount(0);
         $order->setShippingTaxAmount(0);
         $order->setBaseShippingTaxAmount(0);
         $order->setShippingInclTax(0);
         $order->setBaseShippingInclTax(0);
     } else {
         $shippingWithTax = $checkItems[1]['quantity'] * $checkItems[1]['unit_price'];
         $shippingTax = $shippingWithTax - $shippingWithTax * (100 / ($checkItems[1]['tax'] + 100));
         $shippingAmount = $shippingWithTax - $shippingTax;
         $order->setShippingAmount($shippingAmount);
         $order->setBaseShippingAmount($shippingAmount);
         $order->setShippingTaxAmount($shippingTax);
         $order->setBaseShippingTaxAmount($shippingTax);
         $order->setShippingInclTax($shippingWithTax);
         $order->setBaseShippingInclTax($shippingWithTax);
     }
     // fix tax from discount and shipping
     foreach ($checkItems as $item) {
         if (empty($taxAmount[$item['tax']])) {
             $taxAmount[$item['tax']] = 0;
         }
         $taxAmount[$item['tax']] += $item['unit_price'] * $item['quantity'];
     }
     // update subtotal
     $order->setBaseSubtotalInclTax($subTotal);
     $order->setSubtotalInclTax($subTotal);
     // sum for all tax amount
     $totalTaxAmount = 0;
     // update all tax rate items
     $rates = Mage::getModel('tax/sales_order_tax')->getCollection()->loadByOrder($order);
     foreach ($rates as $rate) {
         // format rate
         $tRate = sprintf("%01.2f", $rate->getPercent());
         if (!empty($taxAmount[$tRate])) {
             // calc new tax value
             $tAmount = $taxAmount[$tRate] - $taxAmount[$tRate] * (100 / ($tRate + 100));
             $totalTaxAmount += $tAmount;
             $rate->setAmount($tAmount);
             $rate->setBaseAmount($tAmount);
             $rate->setBaseRealAmount($tAmount);
             $rate->save();
         }
     }
     // update total tax amount
     $order->setTaxAmount($totalTaxAmount);
     $order->setBaseTaxAmount($totalTaxAmount);
     // update subtotal without tax
     $order->setBaseSubtotal($subTotal - $totalTaxAmount + $order->getShippingTaxAmount());
     $order->setSubtotal($subTotal - $totalTaxAmount + $order->getShippingTaxAmount());
     $order->save();
     return true;
 }
Beispiel #5
0
 /**
  * @return bool|null
  */
 function plgVmOnPaymentNotification()
 {
     //$this->_debug = true;
     if (!class_exists('VirtueMartModelOrders')) {
         require JPATH_VM_ADMINISTRATOR . DS . 'models' . DS . 'orders.php';
     }
     $order_number = JRequest::getString('on', '');
     if (empty($order_number)) {
         $this->logInfo('plgVmOnPaymentNotification EMPTY order number' . $order_number, 'message');
         return FALSE;
     }
     if (!($virtuemart_order_id = VirtueMartModelOrders::getOrderIdByOrderNumber($order_number))) {
         $this->logInfo('plgVmOnPaymentNotification NO getOrderIdByOrderNumber ' . $order_number, 'message');
         return FALSE;
     }
     if (!($payments = $this->getDatasByOrderId($virtuemart_order_id))) {
         $this->logInfo('plgVmOnPaymentNotification NO getDatasByOrderId ' . $virtuemart_order_id, 'message');
         return FALSE;
     }
     $this->logInfo('plgVmOnPaymentNotification OK ', 'message');
     $method = $this->getVmPluginMethod($payments[0]->virtuemart_paymentmethod_id);
     if (!$this->selectedThisElement($method->payment_element)) {
         return FALSE;
     }
     if (!class_exists('SofortLib')) {
         require JPATH_ROOT . DS . 'plugins' . DS . 'vmpayment' . DS . 'sofort' . DS . 'sofort' . DS . 'library' . DS . 'sofortLib.php';
     }
     $sofortLib_Notification = new SofortLib_Notification();
     $transactionId = $sofortLib_Notification->getNotification();
     //no valid parameters/xml
     if (empty($transactionId) || $sofortLib_Notification->isError()) {
         $this->logInfo('plgVmOnPaymentNotification NO transaaction or $sofortLib_Notification is error \\n', 'message');
         return FALSE;
     }
     $this->logInfo('plgVmOnPaymentNotification transaction ' . $transactionId, 'message');
     $sofortLib_TransactionData = new SofortLib_TransactionData($method->configuration_key);
     $sofortLib_TransactionData->setTransaction($transactionId)->sendRequest();
     $this->logInfo('plgVmOnPaymentNotification setTransaction OK', 'message');
     // check that secret , and order are identical
     $security = JRequest::getString('security', '');
     if ($security != $payments[0]->security) {
         $this->logInfo('plgVmOnPaymentNotification SECURITY not the one expected GOT: ' . $security . ' stored: ' . $payments[0]->security, 'message');
         $emailBody = "Hello,\n\nerror while receiving a SOFORT NOTIFICATION" . "\n";
         $emailBody .= "for order number: " . $order_number . "\n";
         $emailBody .= "security token received: " . $security . "\n";
         $emailBody .= "security token expected: " . $payments[0]->security . "\n";
         $this->sendEmailToVendorAndAdmins(JText::_('VMPAYMENT_SOFORT_ERROR_NOTIFICATION'), $emailBody);
         return false;
     }
     $paymentMethod = $sofortLib_TransactionData->getPaymentMethod();
     if ($paymentMethod != self::SU_SOFORTBANKING) {
         // answer not expected
         $this->logInfo('plgVmOnPaymentNotification not the one one expected?' . $paymentMethod . ' ' . self::SU_SOFORTBANKING, 'message');
         $emailBody = "Hello,\n\nerror while receiving a SOFORT NOTIFICATION" . "\n";
         $emailBody .= "Payment method is " . $paymentMethod . " Should be SU \n";
         $this->sendEmailToVendorAndAdmins(JText::_('VMPAYMENT_SOFORT_ERROR_NOTIFICATION'), $emailBody);
         return false;
     }
     $this->logInfo('plgVmOnPaymentNotification so', 'message');
     $sofort_data['sofort_response_amount'] = $sofortLib_TransactionData->getAmount();
     $sofort_data['sofort_response_currency'] = $sofortLib_TransactionData->getCurrency();
     // check that the amount is the same
     if (!$this->_checkAmountAndCurrency($sofort_data, $payments)) {
         return false;
     }
     $modelOrder = VmModel::getModel('orders');
     $order = array();
     $status = 'status_' . $sofortLib_TransactionData->getStatus();
     //$this->logInfo('plgVmOnPaymentNotification getStatus:' .$status. ' '.var_export($method, true) , 'message');
     $order['customer_notified'] = true;
     $order['order_status'] = $method->{$status};
     $order['comments'] = JText::_('VMPAYMENT_SOFORT_RESPONSE_STATUS_REASON_' . $sofortLib_TransactionData->getStatusReason());
     $sofort_data['sofort_response_status_reason'] = $sofortLib_TransactionData->getStatusReason();
     $sofort_data['sofort_response_transaction'] = $sofortLib_TransactionData->getTransaction();
     $sofort_data['payment_name'] = str_replace(array('\\t', '\\n'), '', $this->renderPluginName($method));
     $sofort_data['virtuemart_order_id'] = $payments[0]->virtuemart_order_id;
     $sofort_data['order_number'] = $payments[0]->order_number;
     $sofort_data['virtuemart_paymentmethod_id'] = $payments[0]->virtuemart_paymentmethod_id;
     $sofort_data['sofort_response_status'] = $sofortLib_TransactionData->getStatus();
     $sofort_data['sofort_response_status_reason'] = $sofortLib_TransactionData->getStatusReason();
     $this->logInfo('storePSPluginInternalData before storePSPluginInternalData ' . var_export($sofort_data, true), 'message');
     $this->storePSPluginInternalData($sofort_data);
     $modelOrder->updateStatusForOneOrder($payments[0]->virtuemart_order_id, $order, TRUE);
 }
Beispiel #6
0
 private function _setupTransactionData()
 {
     $SofortLib_TransactionData = new SofortLib_TransactionData($this->_configKey, $this->_apiUrl);
     $SofortLib_TransactionData->setTransaction($this->_transactionId);
     $SofortLib_TransactionData->sendRequest();
     if (!$SofortLib_TransactionData->getCount()) {
         return false;
     }
     $this->setStatus($SofortLib_TransactionData->getStatus());
     $this->setStatusReason($SofortLib_TransactionData->getStatusReason());
     $this->setStatusOfInvoice($SofortLib_TransactionData->getInvoiceStatus());
     $this->setInvoiceObjection($SofortLib_TransactionData->getInvoiceObjection());
     $this->setLanguageCode($SofortLib_TransactionData->getLanguageCode());
     $this->setTransaction($this->getTransactionId());
     $this->setTime($SofortLib_TransactionData->getTime());
     $this->setPaymentMethod($SofortLib_TransactionData->getPaymentMethod());
     $this->setInvoiceUrl($SofortLib_TransactionData->getInvoiceUrl());
     $this->setAmount($SofortLib_TransactionData->getAmount());
     $this->setAmountRefunded($SofortLib_TransactionData->getAmountRefunded());
     $itemArray = $SofortLib_TransactionData->getItems();
     $this->_items = array();
     if (is_array($itemArray) && !empty($itemArray)) {
         foreach ($itemArray as $item) {
             $this->setItem($item['item_id'], $item['product_number'], $item['product_type'], $item['title'], $item['description'], $item['quantity'], $item['unit_price'], $item['tax']);
             $this->_amount += $item['unit_price'] * $item['quantity'];
         }
     }
     $this->setState($this->_calcInvoiceStatusCode());
     return $SofortLib_TransactionData;
 }
/**
 * Copyright (c) 2012 SOFORT AG
 * 
 * Released under the GNU General Public License (Version 2)
 * [http://www.gnu.org/licenses/gpl-2.0.html]
 *
 * $Date$
 * @version SofortLib 1.5.0rc  $Id$
 * @author SOFORT AG http://www.sofort.com (integration@sofort.com)
 *
 */
// read the notification from php://input  (http://php.net/manual/en/wrappers.php.php)
// this class should be used as a callback function
require_once '../../library/sofortLib.php';
$notification = new SofortLib_Notification();
$notification->getNotification();
echo $notification->getTime();
$transactionId = $notification->getTransactionId();
// fetch some information for the transaction id retrieved above
$transactionData = new SofortLib_TransactionData();
$transactionData->setTransaction($transactionId);
$transactionData->sendRequest();
echo '<table border="1">';
echo '<tr><td>transaction was: </td><td align="right">' . $transactionData->getTransaction() . '</td></tr>';
echo '<tr><td>start date is: </td><td align="right">' . $transactionData->getSofortaboStartDate() . '</td></tr>';
echo '<tr><td>amount is: </td><td align="right">' . $transactionData->getAmount() . ' ' . $transactionData->getCurrency() . '</td></tr>';
echo '<tr><td>interval is: </td><td align="right">' . $transactionData->getSofortaboInterval() . '</td></tr>';
echo '<tr><td>minimum payments: </td><td align="right">' . $transactionData->getSofortaboMinimumPayments() . '</td></tr>';
echo '<tr><td>status is: </td><td align="right">' . $transactionData->getStatus() . ' - ' . $transactionData->getStatusReason() . '</td></tr>';
echo '</table>';
<?php

/**
 * Copyright (c) 2012 SOFORT AG
 * 
 * Released under the GNU General Public License (Version 2)
 * [http://www.gnu.org/licenses/gpl-2.0.html]
 *
 * $Date: 2012-11-21 12:02:12 +0100 (Wed, 21 Nov 2012) $
 * @version SofortLib 1.5.0rc  $Id: example_transactionData.php 5724 2012-11-21 11:02:12Z rotsch $
 * @author SOFORT AG http://www.sofort.com (integration@sofort.com)
 *
 */
require_once '../../library/sofortLib.php';
define('CONFIGKEY', '12345:67890:123456789abcdef123456abcdef12345');
//your configkey or userid:projektid:apikey
$sofort = new SofortLib_TransactionData(CONFIGKEY);
// use an array of transactionIDs (or set a single transactionID if you like, just pass a string to setTransaction)
$transactionIds[] = '16263-99178-4E019D4F-5E12';
$transactionIds[] = '16263-99178-4E01B143-5E25';
$sofort->setTransaction($transactionIds);
// or simply add a single transactionID, using addTransaction (you could easily add an array of transactionIDs as well!)
$singleTransactionId = '16263-99178-4E01B5E0-1ACD';
$sofort->addTransaction($singleTransactionId);
$sofort->sendRequest();
// get the information you need, depends on what transaction you where looking for...
echo 'Amount: ' . $sofort->getAmount(0) . "<br />";
echo 'Status: ' . $sofort->getStatus(0);