Files
PrestaShop/modules/mondialrelay/ajax.php
T
rGaillard 8fc7f11014
2011-07-06 10:54:11 +00:00

105 lines
3.3 KiB
PHP
Executable File

<?php
/*
* 2007-2011 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-2011 PrestaShop SA
* @version Release: $Revision: 7040 $
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
/*
* File called by ajax. It's like a controler, you have to send the
* method name of the webservice and implement it.
* Each Name method allow to instanciate an object containing
* methods to manage correctly the data and name fields
*/
require_once(realpath(dirname(__FILE__).'/../../config/config.inc.php'));
if (Tools::getValue('mrtoken') != sha1('mr'._COOKIE_KEY_.'mrAgain'))
die;
require_once(realpath(dirname(__FILE__).'/../../init.php'));
require(dirname(__FILE__).'/classes/MRCreateTickets.php');
require(dirname(__FILE__).'/classes/MRGetTickets.php');
require(dirname(__FILE__).'/classes/MRManagement.php');
$method = Tools::getValue('method');
$params = array();
$result = array();
// Method name allow to instanciate his object to properly call the
// implemented interface method and do his job
switch($method)
{
case 'MRCreateTickets':
$params['orderIdList'] = Tools::getValue('order_id_list');
$params['totalOrder'] = Tools::getValue('numSelected');
$params['weightList'] = Tools::getValue('weight_list');
break;
case 'MRGetTickets':
$params['detailedExpeditionList'] = Tools::getValue('detailedExpeditionList');
break;
case 'DeleteHistory':
$params['historyIdList'] = Tools::getValue('history_id_list');
break;
// 1.3 compatibility to add carrier info when an user select one
case 'addSelectedCarrierToDB':
$params['cart'] = new Cart($cookie->id_cart);
// Sometimes the carrier id isn't set into the cart object
if (($id_carrier = Tools::getValue('id_carrier')))
$params['cart']->id_carrier = $id_carrier;
break;
default:
}
// Try to instanciate the method object name and call the necessaries method
try
{
if (class_exists($method, false))
{
$obj = new $method($params);
// Verify that the class implement correctly the interface
// Else use a Management class to do some ajax stuff
if (($obj instanceof IMondialRelayWSMethod))
{
$obj->init();
$obj->send();
$result = $obj->getResult();
}
unset($obj);
}
else if (($management = new MRManagement($params)) &&
method_exists($management, $method))
$result = $management->{$method}();
else
throw new Exception('Method Class : '.$method.' can\'t be found');
unset($management);
}
catch(Exception $e)
{
echo MondialRelay::jsonEncode(array('other' => array('error' => array($e->getMessage()))));
exit(-1);
}
echo MondialRelay::jsonEncode($result);
exit(0);
?>