garancia/modules/paypal2/api/paypal_lib.php
2016-10-10 15:24:25 +02:00

100 lines
2.8 KiB
PHP
Executable File

<?php
/*
* 2007-2013 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2013 PrestaShop SA
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
include_once(_PS_MODULE_DIR_.'paypal/api/paypal_connect.php');
define('PAYPAL_API_VERSION', '94.0');
class PaypalLib
{
private $_logs = array();
protected $paypal = null;
public function __construct()
{
$this->paypal = new PayPal();
}
public function getLogs()
{
return $this->_logs;
}
public function makeCall($host, $script, $methodName, $data, $method_version = '')
{
// Making request string
$method_version = (!empty($method_version)) ? $method_version : PAYPAL_API_VERSION;
$params = array(
'METHOD' => $methodName,
'VERSION' => $method_version,
'PWD' => Configuration::get('PAYPAL_API_PASSWORD'),
'USER' => Configuration::get('PAYPAL_API_USER'),
'SIGNATURE' => Configuration::get('PAYPAL_API_SIGNATURE')
);
$request = http_build_query($params, '', '&');
$request .= '&'.(!is_array($data) ? $data : http_build_query($data, '', '&'));
// Making connection
$result = $this->makeSimpleCall($host, $script, $request, true);
$response = explode('&', $result);
foreach ($response as $value)
{
$tmp = explode('=', $value);
$return[$tmp[0]] = urldecode(!isset($tmp[1]) ? $tmp[0] : $tmp[1]);
}
if (!Configuration::get('PAYPAL_DEBUG_MODE'))
$this->_logs = array();
$toExclude = array('TOKEN', 'SUCCESSPAGEREDIRECTREQUESTED', 'VERSION', 'BUILD', 'ACK', 'CORRELATIONID');
$this->_logs[] = '<b>'.$this->paypal->l('PayPal response:').'</b>';
foreach ($return as $key => $value)
{
if (!Configuration::get('PAYPAL_DEBUG_MODE') && in_array($key, $toExclude))
continue;
$this->_logs[] = $key.' -> '.$value;
}
return $return;
}
public function makeSimpleCall($host, $script, $request, $simple_mode = false)
{
// Making connection
$paypal_connect = new PayPalConnect();
$result = $paypal_connect->makeConnection($host, $script, $request, $simple_mode);
$this->_logs = $paypal_connect->getLogs();
return $result;
}
}