bebeboutik/modules/authorizeaim/authorizeaim.php

239 lines
11 KiB
PHP
Raw Normal View History

2016-01-04 12:49:26 +01:00
<?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: 10540 $
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
if (!defined('_PS_VERSION_'))
exit;
class authorizeAIM extends PaymentModule
{
public function __construct()
{
$this->name = 'authorizeaim';
$this->tab = 'payments_gateways';
$this->version = '1.3';
$this->author = 'PrestaShop';
$this->limited_countries = array('us');
$this->need_instance = 0;
parent::__construct();
$this->displayName = 'Authorize.net AIM (Advanced Integration Method)';
$this->description = $this->l('Receive payment with Authorize.net');
/* For 1.4.3 and less compatibility */
$updateConfig = array(
'PS_OS_CHEQUE' => 1,
'PS_OS_PAYMENT' => 2,
'PS_OS_PREPARATION' => 3,
'PS_OS_SHIPPING' => 4,
'PS_OS_DELIVERED' => 5,
'PS_OS_CANCELED' => 6,
'PS_OS_REFUND' => 7,
'PS_OS_ERROR' => 8,
'PS_OS_OUTOFSTOCK' => 9,
'PS_OS_BANKWIRE' => 10,
'PS_OS_PAYPAL' => 11,
'PS_OS_WS_PAYMENT' => 12);
foreach ($updateConfig as $u => $v)
if (!Configuration::get($u) || (int)Configuration::get($u) < 1)
{
if (defined('_'.$u.'_') && (int)constant('_'.$u.'_') > 0)
Configuration::updateValue($u, constant('_'.$u.'_'));
else
Configuration::updateValue($u, $v);
}
/* Check if cURL is enabled */
if (!is_callable('curl_exec'))
$this->warning = $this->l('cURL extension must be enabled on your server to use this module.');
}
public function install()
{
return (parent::install() AND $this->registerHook('orderConfirmation') AND $this->registerHook('payment')
AND $this->registerHook('header') AND Configuration::updateValue('AUTHORIZE_AIM_DEMO', 1));
}
public function uninstall()
{
Configuration::deleteByName('AUTHORIZE_AIM_LOGIN_ID');
Configuration::deleteByName('AUTHORIZE_AIM_KEY');
Configuration::deleteByName('AUTHORIZE_AIM_DEMO');
Configuration::deleteByName('AUTHORIZE_AIM_CARD_VISA');
Configuration::deleteByName('AUTHORIZE_AIM_CARD_MASTERCARD');
Configuration::deleteByName('AUTHORIZE_AIM_CARD_DISCOVER');
Configuration::deleteByName('AUTHORIZE_AIM_CARD_AX');
return parent::uninstall();
}
public function hookOrderConfirmation($params)
{
global $smarty;
if ($params['objOrder']->module != $this->name)
return;
if ($params['objOrder']->getCurrentState() != Configuration::get('PS_OS_ERROR'))
$smarty->assign(array('status' => 'ok', 'id_order' => intval($params['objOrder']->id)));
else
$smarty->assign('status', 'failed');
return $this->display(__FILE__, 'hookorderconfirmation.tpl');
}
public function getContent()
{
if (Tools::isSubmit('submitModule'))
{
Configuration::updateValue('AUTHORIZE_AIM_LOGIN_ID', Tools::getvalue('authorizeaim_login_id'));
Configuration::updateValue('AUTHORIZE_AIM_KEY', Tools::getvalue('authorizeaim_key'));
Configuration::updateValue('AUTHORIZE_AIM_DEMO', Tools::getvalue('authorizeaim_demo_mode'));
Configuration::updateValue('AUTHORIZE_AIM_CARD_VISA', Tools::getvalue('authorizeaim_card_visa'));
Configuration::updateValue('AUTHORIZE_AIM_CARD_MASTERCARD', Tools::getvalue('authorizeaim_card_mastercard'));
Configuration::updateValue('AUTHORIZE_AIM_CARD_DISCOVER', Tools::getvalue('authorizeaim_card_discover'));
Configuration::updateValue('AUTHORIZE_AIM_CARD_AX', Tools::getvalue('authorizeaim_card_ax'));
echo $this->displayConfirmation($this->l('Configuration updated'));
}
return '
<h2>'.$this->displayName.'</h2>
<fieldset><legend><img src="../modules/'.$this->name.'/logo.gif" alt="" /> '.$this->l('Help').'</legend>
<a href="http://www.authorize.net/signupnow/" style="float: right;"><img src="../modules/'.$this->name.'/logo_authorize.png" alt="" /></a>
<h3>'.$this->l('In your PrestaShop admin panel').'</h3>
- '.$this->l('Fill the Login ID field with the one provided by Authorize.net').'<br />
- '.$this->l('Fill the key field with the transaction key provided by Authorize.net').'<br />
<span style="color: red;" >- '.$this->l('Warning: Your website must possess a SSL certificate to use the Authorize.net AIM payment system. You are responsible for the safety of your customers\' bank information. PrestaShop cannot be blamed for any security issue on your website.').'</span><br />
<br />
</fieldset><br />
<form action="'.Tools::htmlentitiesutf8($_SERVER['REQUEST_URI']).'" method="post">
<fieldset class="width2">
<legend><img src="../img/admin/contact.gif" alt="" />'.$this->l('Settings').'</legend>
<label for="authorizeaim_login_id">'.$this->l('Login ID').'</label>
<div class="margin-form"><input type="text" size="20" id="authorizeaim_login_id" name="authorizeaim_login_id" value="'.Configuration::get('AUTHORIZE_AIM_LOGIN_ID').'" /></div>
<label for="authorizeaim_key">'.$this->l('Key').'</label>
<div class="margin-form"><input type="text" size="20" id="authorizeaim_login_id" name="authorizeaim_key" value="'.Configuration::get('AUTHORIZE_AIM_KEY').'" /></div>
<label for="authorizeaim_demo_mode">'.$this->l('Mode:').'</label>
<div class="margin-form" id="authorizeaim_demo">
<input type="radio" name="authorizeaim_demo_mode" value="0" style="vertical-align: middle;" '.(!Tools::getValue('authorizeaim_demo_mode', Configuration::get('AUTHORIZE_AIM_DEMO')) ? 'checked="checked"' : '').' />
<span style="color: #080;">'.$this->l('Production').'</span>
<input type="radio" name="authorizeaim_demo_mode" value="1" style="vertical-align: middle;" '.(Tools::getValue('authorizeaim_demo_mode', Configuration::get('AUTHORIZE_AIM_DEMO')) ? 'checked="checked"' : '').' />
<span style="color: #900;">'.$this->l('Test').'</span>
</div>
<label for="authorizeaim_cards">'.$this->l('Cards:').'</label>
<div class="margin-form" id="authorizeaim_cards">
<input type="checkbox" name="authorizeaim_card_visa" '.(Configuration::get('AUTHORIZE_AIM_CARD_VISA') ? 'checked="checked"' : '').' />
<img src="../modules/'.$this->name.'/cards/visa.gif" alt="visa" />
<input type="checkbox" name="authorizeaim_card_mastercard" '.(Configuration::get('AUTHORIZE_AIM_CARD_MASTERCARD') ? 'checked="checked"' : '').' />
<img src="../modules/'.$this->name.'/cards/mastercard.gif" alt="visa" />
<input type="checkbox" name="authorizeaim_card_discover" '.(Configuration::get('AUTHORIZE_AIM_CARD_DISCOVER') ? 'checked="checked"' : '').' />
<img src="../modules/'.$this->name.'/cards/discover.gif" alt="visa" />
<input type="checkbox" name="authorizeaim_card_ax" '.(Configuration::get('AUTHORIZE_AIM_CARD_AX') ? 'checked="checked"' : '').' />
<img src="../modules/'.$this->name.'/cards/ax.gif" alt="visa" />
</div>
<br /><center><input type="submit" name="submitModule" value="'.$this->l('Update settings').'" class="button" /></center>
</fieldset>
</form>';
}
public function hookPayment($params)
{
global $cookie, $smarty;
if (Configuration::get('PS_SSL_ENABLED') || (!empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) != 'off'))
{
$invoiceAddress = new Address((int)$params['cart']->id_address_invoice);
$customer = new Customer((int)$cookie->id_customer);
$authorizeAIMParams = array();
$authorizeAIMParams['x_login'] = Configuration::get('AUTHORIZE_AIM_LOGIN_ID');
$authorizeAIMParams['x_tran_key'] = Configuration::get('AUTHORIZE_AIM_KEY');
$authorizeAIMParams['x_version'] = '3.1';
$authorizeAIMParams['x_delim_data'] = 'TRUE';
$authorizeAIMParams['x_delim_char'] = '|';
$authorizeAIMParams['x_relay_response'] = 'FALSE';
$authorizeAIMParams['x_type'] = 'AUTH_CAPTURE';
$authorizeAIMParams['x_method'] = 'CC';
$authorizeAIMParams['x_test_request'] = Configuration::get('AUTHORIZE_AIM_DEMO');
$authorizeAIMParams['x_invoice_num'] = (int)$params['cart']->id;
$authorizeAIMParams['x_amount'] = number_format($params['cart']->getOrderTotal(true, 3), 2, '.', '');
$authorizeAIMParams['x_address'] = $invoiceAddress->address1.' '.$invoiceAddress->address2;
$authorizeAIMParams['x_zip'] = $invoiceAddress->postcode;
$authorizeAIMParams['x_first_name'] = $customer->firstname;
$authorizeAIMParams['x_last_name'] = $customer->lastname;
$isFailed = Tools::getValue('aimerror');
$cards = array();
$cards['visa'] = Configuration::get('AUTHORIZE_AIM_CARD_VISA') == 'on' ? 1 : 0;
$cards['mastercard'] = Configuration::get('AUTHORIZE_AIM_CARD_MASTERCARD') == 'on' ? 1 : 0;
$cards['discover'] = Configuration::get('AUTHORIZE_AIM_CARD_DISCOVER') == 'on' ? 1 : 0;
$cards['ax'] = Configuration::get('AUTHORIZE_AIM_CARD_AX') == 'on' ? 1 : 0;
$smarty->assign('p', $authorizeAIMParams);
$smarty->assign('cards', $cards);
$smarty->assign('isFailed', $isFailed);
return $this->display(__FILE__, 'authorizeaim.tpl');
}
}
public function hookHeader()
{
Tools::addJS(_PS_JS_DIR_.'jquery/jquery.validate.creditcard2-1.0.1.js');
}
/**
* Set the detail of a payment - Call before the validate order init
* correctly the pcc object
* See Authorize documentation to know the associated key => value
* @param array fields
*/
public function setTransactionDetail($response)
{
// If Exist we can store the details
if (isset($this->pcc))
{
$this->pcc->transaction_id = (string)$response[6];
// 50 => Card number (XXXX0000)
$this->pcc->card_number = (string)substr($response[50], -4);
// 51 => Card Mark (Visa, Master card)
$this->pcc->card_brand = (string)$response[51];
$this->pcc->card_expiration = (string)Tools::getValue('x_exp_date');
// 68 => Owner name
$this->pcc->card_holder = (string)$response[68];
}
}
}
?>