%PDF- %PDF-
| Direktori : /home1/lightco1/www/plugins/vmpayment/sofort/sofort/library/ |
| Current File : //home1/lightco1/www/plugins/vmpayment/sofort/sofort/library/sofortLib_edit_sr.inc.php |
<?php
defined('_JEXEC') or die('Restricted access');
/**
* This class is for confirming and changing statuses of invoices
*
* eg: $confirmObj = new SofortLib_EditSr('yourapikey');
*
* $confirmObj->confirmInvoice('1234-456-789654-31321')->sendRequest();
*
* 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-05-21 16:53:26 +0200 (Mo, 21 Mai 2012) $
* @version SofortLib 1.5.4 $Id: sofortLib_edit_sr.inc.php 4191 2012-05-21 14:53:26Z niehoff $
* @author SOFORT AG http://www.sofort.com (integration@sofort.com)
*
*/
class SofortLib_EditSr extends SofortLib_Abstract {
protected $_apiVersion = '1.0';
protected $_parameters = array();
protected $_response = array();
protected $_xmlRootTag = 'edit_sr';
private $_file;
/**
*
* Constructor for SofortLib_EditSr
* @param String $apikey your API-key
*/
public function __construct($configKey = '') {
list($userId, $projectId, $apiKey) = explode(':', $configKey);
$apiUrl = (getenv('sofortApiUrl') != '') ? getenv('sofortApiUrl') : 'https://api.sofort.com/api/xml';
parent::__construct($userId, $apiKey, $apiUrl);
}
/**
*
* Setter for transaction
* @param string $transaction
* @param int $invoice
*/
public function setTransaction($transaction, $invoice = 0) {
$this->_parameters['invoice'][$invoice]['transaction'] = $transaction;
return $this;
}
/**
*
* Setter for invoice's number
* @param string $invoiceNumber
* @param int $invoice
*/
public function setInvoiceNumber($invoiceNumber, $invoice = 0) {
$this->_parameters['invoice'][$invoice]['invoice_number'] = $invoiceNumber;
return $this;
}
/**
*
* Setter for customer's number
* @param string $customerNumber
* @param int $invoice
*/
public function setCustomerNumber($customerNumber, $invoice = 0) {
$this->_parameters['invoice'][$invoice]['customer_id'] = $customerNumber;
return $this;
}
/**
*
* Setter for order's number
* @param string $orderNumber
* @param int $invoice
*/
public function setOrderNumber($orderNumber, $invoice = 0) {
$this->_parameters['invoice'][$invoice]['order_id'] = $orderNumber;
return $this;
}
/**
* set a comment for refunds
* just useable with api version 1.0
* @param string $arg
*/
public function setComment($comment, $invoice = 0) {
$this->_parameters['invoice'][$invoice]['comment'] = $comment;
return $this;
}
/**
* add one item to the cart if you want to change the invoice
*
* @param string $itemId itemId
* @param double $unit_price gross price of one item
* @param int $quantity default 1
*/
public function addItem($itemId, $productNumber, $productType, $title, $description, $quantity, $unitPrice, $tax, $invoice = 0) {
$unitPrice = number_format($unitPrice, 2, '.', '');
$tax = number_format($tax, 2, '.', '');
$quantity = intval($quantity);
$this->_parameters['invoice'][$invoice]['items']['item'][] = array(
'item_id' => $itemId,
'product_number' => $productNumber,
'product_type' => $productType,
'title' => $title,
'description' => $description,
'quantity' => $quantity,
'unit_price' => $unitPrice,
'tax' => $tax,
);
}
/**
*
* Update the invoice's cart via passing an array
* @param array $cartItems
* @param int $invoice
*/
function updateCart($cartItems = array(), $invoice = 0) {
$i = 0;
foreach ($cartItems as $cartItem) {
$this->_parameters['invoice'][$invoice]['items']['item'][$i]['item_id'] = $cartItem['itemId'];
$this->_parameters['invoice'][$invoice]['items']['item'][$i]['product_number'] = $cartItem['productNumber'];
$this->_parameters['invoice'][$invoice]['items']['item'][$i]['title'] = $cartItem['title'];
$this->_parameters['invoice'][$invoice]['items']['item'][$i]['description'] = $cartItem['description'];
$this->_parameters['invoice'][$invoice]['items']['item'][$i]['quantity'] = $cartItem['quantity'];
$this->_parameters['invoice'][$invoice]['items']['item'][$i]['unit_price'] = number_format($cartItem['unitPrice'], 2, '.', '') ;
$this->_parameters['invoice'][$invoice]['items']['item'][$i]['tax'] = $cartItem['tax'];
$i++;
}
}
/**
* after you you changed/confirmed an invoice you
* can download the new invoice-pdf with this function
* @return string url
*/
public function getInvoiceUrl() {
return $this->_file;
}
/**
* Parse the XML (override)
* @see SofortLib_Abstract::_parseXml()
*/
protected function _parseXml() {
$this->_file = isset($this->_response['invoice']['download_url']['@data']) ? $this->_response['invoice']['download_url']['@data'] : '';
}
/**
* Error handling (override)
* @see SofortLib::_handleErrors()
*/
protected function _handleErrors() {
if (!isset($this->_response['invoices']['invoice'][0])) {
$tmp = $this->_response['invoices']['invoice'];
unset($this->_response['invoices']['invoice']);
$this->_response['invoices']['invoice'][0] = $tmp;
}
foreach ($this->_response['invoices']['invoice'] as $response) {
//handle errors
if (isset($response['errors']['error'])) {
if (!isset($response['errors']['error'][0])) {
$tmp = $response['errors']['error'];
unset($response['errors']['error']);
$response['errors']['error'][0] = $tmp;
}
foreach ($response['errors']['error'] as $error) {
$this->errors['sr'][] = $this->_getErrorBlock($error);
}
}
//handle warnings
if (isset($response['warnings']['warning'])) {
if (!isset($response['warnings']['warning'][0])) {
$tmp = $response['warnings']['warning'];
unset($response['warnings']['warning']);
$response['warnings']['warning'][0] = $tmp;
}
foreach ($response['warnings']['warning'] as $error) {
$this->warnings['sr'][] = $this->_getErrorBlock($error);
}
}
}
}
}
?>