Version Notes
Secure URL fix for 3D Secure payments
Download this release
Release Info
| Developer | Magento Core Team |
| Extension | Cardsave_Cardsaveonlinepayments |
| Version | 1.8.6 |
| Comparing to | |
| See all releases | |
Code changes from version 1.8.5 to 1.8.6
app/code/local/Cardsave/Cardsaveonlinepayments/Block/Threedsecure.php
CHANGED
|
@@ -28,7 +28,7 @@ class Cardsave_Cardsaveonlinepayments_Block_Threedsecure extends Mage_Core_Block
|
|
| 28 |
|
| 29 |
$form->addField("PaReq", 'hidden', array('name'=>"PaReq", 'value'=>Mage::getSingleton('checkout/session')->getPareq()));
|
| 30 |
$form->addField("MD", 'hidden', array('name'=>"MD", 'value'=>Mage::getSingleton('checkout/session')->getMd()));
|
| 31 |
-
$form->addField("TermUrl", 'hidden', array('name'=>"TermUrl", 'value'=>Mage::getUrl($szTermURL)));
|
| 32 |
|
| 33 |
$html = '<html><body>';
|
| 34 |
$html.= $this->__('You will be redirected to a 3D secure form in a few seconds.');
|
| 28 |
|
| 29 |
$form->addField("PaReq", 'hidden', array('name'=>"PaReq", 'value'=>Mage::getSingleton('checkout/session')->getPareq()));
|
| 30 |
$form->addField("MD", 'hidden', array('name'=>"MD", 'value'=>Mage::getSingleton('checkout/session')->getMd()));
|
| 31 |
+
$form->addField("TermUrl", 'hidden', array('name'=>"TermUrl", 'value'=>Mage::getUrl($szTermURL, array('_secure' => true))));
|
| 32 |
|
| 33 |
$html = '<html><body>';
|
| 34 |
$html.= $this->__('You will be redirected to a 3D secure form in a few seconds.');
|
app/code/local/Cardsave/Cardsaveonlinepayments/Model/Direct.php
CHANGED
|
@@ -417,15 +417,15 @@ class Cardsave_Cardsaveonlinepayments_Model_Direct extends Mage_Payment_Model_Me
|
|
| 417 |
switch($rdmResultdeliveryMethod)
|
| 418 |
{
|
| 419 |
case Cardsave_Cardsaveonlinepayments_Model_Source_ResultDeliveryMethod::RESULT_DELIVERY_METHOD_POST:
|
| 420 |
-
$szCallbackURL = Mage::getUrl('cardsaveonlinepayments/payment/callbackhostedpayment');
|
| 421 |
break;
|
| 422 |
case Cardsave_Cardsaveonlinepayments_Model_Source_ResultDeliveryMethod::RESULT_DELIVERY_METHOD_SERVER:
|
| 423 |
-
$szCallbackURL = Mage::getUrl('cardsaveonlinepayments/payment/callbackhostedpayment');
|
| 424 |
-
$szServerResultURL = Mage::getUrl('cardsaveonlinepayments/payment/serverresult');
|
| 425 |
$boPaymentFormDisplaysResult = 'true';
|
| 426 |
break;
|
| 427 |
case Cardsave_Cardsaveonlinepayments_Model_Source_ResultDeliveryMethod::RESULT_DELIVERY_METHOD_SERVER_PULL:
|
| 428 |
-
$szCallbackURL = Mage::getUrl('cardsaveonlinepayments/payment/serverpullresult');
|
| 429 |
break;
|
| 430 |
}
|
| 431 |
|
|
@@ -571,7 +571,7 @@ class Cardsave_Cardsaveonlinepayments_Model_Direct extends Mage_Payment_Model_Me
|
|
| 571 |
$szPassword = $this->getConfigData('password');
|
| 572 |
$szPreSharedKey = $this->getConfigData('presharedkey');
|
| 573 |
$hmHashMethod = $this->getConfigData('hashmethod');
|
| 574 |
-
$szCallbackURL = Mage::getUrl('cardsaveonlinepayments/payment/callbacktransparentredirect');
|
| 575 |
$order = $payment->getOrder();
|
| 576 |
$billingAddress = $order->getBillingAddress();
|
| 577 |
$iclISOCurrencyList = CSV_ISOCurrencies::getISOCurrencyList();
|
|
@@ -835,12 +835,12 @@ class Cardsave_Cardsaveonlinepayments_Model_Direct extends Mage_Payment_Model_Me
|
|
| 835 |
$session->getPareq())
|
| 836 |
{
|
| 837 |
// Direct (API) for 3D Secure payments
|
| 838 |
-
$result = Mage::getUrl('cardsaveonlinepayments/payment/threedsecure');
|
| 839 |
}
|
| 840 |
if($session->getHashdigest())
|
| 841 |
{
|
| 842 |
// Hosted Payment Form and Transparent Redirect payments
|
| 843 |
-
$result = Mage::getUrl('cardsaveonlinepayments/payment/redirect');
|
| 844 |
}
|
| 845 |
|
| 846 |
return $result;
|
| 417 |
switch($rdmResultdeliveryMethod)
|
| 418 |
{
|
| 419 |
case Cardsave_Cardsaveonlinepayments_Model_Source_ResultDeliveryMethod::RESULT_DELIVERY_METHOD_POST:
|
| 420 |
+
$szCallbackURL = Mage::getUrl('cardsaveonlinepayments/payment/callbackhostedpayment', array('_secure' => true));
|
| 421 |
break;
|
| 422 |
case Cardsave_Cardsaveonlinepayments_Model_Source_ResultDeliveryMethod::RESULT_DELIVERY_METHOD_SERVER:
|
| 423 |
+
$szCallbackURL = Mage::getUrl('cardsaveonlinepayments/payment/callbackhostedpayment', array('_secure' => true));
|
| 424 |
+
$szServerResultURL = Mage::getUrl('cardsaveonlinepayments/payment/serverresult', array('_secure' => true));
|
| 425 |
$boPaymentFormDisplaysResult = 'true';
|
| 426 |
break;
|
| 427 |
case Cardsave_Cardsaveonlinepayments_Model_Source_ResultDeliveryMethod::RESULT_DELIVERY_METHOD_SERVER_PULL:
|
| 428 |
+
$szCallbackURL = Mage::getUrl('cardsaveonlinepayments/payment/serverpullresult', array('_secure' => true));
|
| 429 |
break;
|
| 430 |
}
|
| 431 |
|
| 571 |
$szPassword = $this->getConfigData('password');
|
| 572 |
$szPreSharedKey = $this->getConfigData('presharedkey');
|
| 573 |
$hmHashMethod = $this->getConfigData('hashmethod');
|
| 574 |
+
$szCallbackURL = Mage::getUrl('cardsaveonlinepayments/payment/callbacktransparentredirect', array('_secure' => true));
|
| 575 |
$order = $payment->getOrder();
|
| 576 |
$billingAddress = $order->getBillingAddress();
|
| 577 |
$iclISOCurrencyList = CSV_ISOCurrencies::getISOCurrencyList();
|
| 835 |
$session->getPareq())
|
| 836 |
{
|
| 837 |
// Direct (API) for 3D Secure payments
|
| 838 |
+
$result = Mage::getUrl('cardsaveonlinepayments/payment/threedsecure', array('_secure' => true));
|
| 839 |
}
|
| 840 |
if($session->getHashdigest())
|
| 841 |
{
|
| 842 |
// Hosted Payment Form and Transparent Redirect payments
|
| 843 |
+
$result = Mage::getUrl('cardsaveonlinepayments/payment/redirect', array('_secure' => true));
|
| 844 |
}
|
| 845 |
|
| 846 |
return $result;
|
app/code/local/Cardsave/Cardsaveonlinepayments/controllers/PaymentController.php
CHANGED
|
@@ -583,7 +583,7 @@ class Cardsave_Cardsaveonlinepayments_PaymentController extends Mage_Core_Contro
|
|
| 583 |
$szCrossReference = $this->getRequest()->getPost('MD');
|
| 584 |
$szMerchantID = $model->getConfigData('merchantid');
|
| 585 |
$szTransactionDateTime = date('Y-m-d H:i:s P');
|
| 586 |
-
$szCallbackURL = Mage::getUrl('cardsaveonlinepayments/payment/callbacktransparentredirect');
|
| 587 |
$szHashDigest = CSV_PaymentFormHelper::calculatePostThreeDSecureAuthenticationHashDigest($szMerchantID, $szPassword, $hmHashMethod, $szPreSharedKey, $szPaRES, $szCrossReference, $szTransactionDateTime, $szCallbackURL);
|
| 588 |
|
| 589 |
Mage::getSingleton('checkout/session')->setHashdigest($szHashDigest)
|
| 583 |
$szCrossReference = $this->getRequest()->getPost('MD');
|
| 584 |
$szMerchantID = $model->getConfigData('merchantid');
|
| 585 |
$szTransactionDateTime = date('Y-m-d H:i:s P');
|
| 586 |
+
$szCallbackURL = Mage::getUrl('cardsaveonlinepayments/payment/callbacktransparentredirect', array('_secure' => true));
|
| 587 |
$szHashDigest = CSV_PaymentFormHelper::calculatePostThreeDSecureAuthenticationHashDigest($szMerchantID, $szPassword, $hmHashMethod, $szPreSharedKey, $szPaRES, $szCrossReference, $szTransactionDateTime, $szCallbackURL);
|
| 588 |
|
| 589 |
Mage::getSingleton('checkout/session')->setHashdigest($szHashDigest)
|
package.xml
CHANGED
|
@@ -1,18 +1,21 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Cardsave_Cardsaveonlinepayments</name>
|
| 4 |
-
<version>1.8.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
-
<summary>Cardsave
|
| 10 |
-
<description>Fully supports 3D secure transactions. Also supports all of the integration methods provided by Cardsave
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
<
|
| 15 |
-
<
|
|
|
|
|
|
|
|
|
|
| 16 |
<compatible/>
|
| 17 |
<dependencies/>
|
| 18 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Cardsave_Cardsaveonlinepayments</name>
|
| 4 |
+
<version>1.8.6</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
+
<summary>Cardsave payment extension compatible with Magento v 1.4.0 and 1.4.1</summary>
|
| 10 |
+
<description>Fully supports 3D secure transactions. Also supports all of the integration methods provided by Cardsave. Compatible with the following Magento versions:
|
| 11 |
+
1.4.0.0
|
| 12 |
+
1.4.1.0
|
| 13 |
+
1.4.1.1</description>
|
| 14 |
+
<notes>Secure URL fix for 3D Secure payments</notes>
|
| 15 |
+
<authors><author><name>cardsave.support</name><user>auto-converted</user><email>integrationsupport@cardsaveonlinepayments.com</email></author></authors>
|
| 16 |
+
<date>2011-01-18</date>
|
| 17 |
+
<time>12:21:54</time>
|
| 18 |
+
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="cardsaveonlinepayments"><file name="form.phtml" hash="2b0b8a72c9f4a6d2ab9f0ea020c8f2ed"/><file name="info.phtml" hash="935e10cad0632d558b2db1913cb80a2a"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="cardsaveonlinepayments"><file name="form.phtml" hash="206c8703ef4d160dfc6c739c128ab47b"/><file name="info.phtml" hash="7256464904bbad66a821dea898d657a6"/></dir></dir></dir></dir></dir></target><target name="magelocal"><dir name="Cardsave"><dir name="Cardsaveonlinepayments"><dir name="Block"><file name="Error.php" hash="660d3cbde48910ef271df9e05130a6d7"/><file name="Form.php" hash="ea5b3817c9607a94f4685d53d0b18569"/><file name="Info.php" hash="57a4bfec1a1c769de063be2b922f4a97"/><file name="Redirect.php" hash="b5a1f7af807dc9a41ec5b9db5c74e87e"/><file name="Threedsecure.php" hash="9d75776f34c5acaf6ea265f35f302c69"/></dir><dir name="controllers"><file name="PaymentController.php" hash="a6fb22263b53965234514d1825915428"/></dir><dir name="etc"><file name="config.xml" hash="14507a95509d6366272555a05ba110c9"/><file name="system.xml" hash="4d0eab1c1a11d3e2078802499ad49f1e"/></dir><dir name="Helper"><file name="Data.php" hash="e024ec0479d1e8e7efcf4751b05194d6"/></dir><dir name="Model"><dir name="Common"><dir name="ThePaymentGateway"><file name="PaymentSystem.php" hash="e4d4df170c21b7e3571b3ba1205ca979"/><file name="SOAP.php" hash="a0e5474dce51dc90ba4d37b5de3cdd84"/><file name="TPG_Common.php" hash="d86997c977cfd55b8ab577a514ab149c"/></dir><file name="GlobalErrors.php" hash="04d277d4a763efa508bf36d29c7dc8c4"/><file name="ISOCountries.php" hash="78dc558da68ca9a6ef44898a3980ecf2"/><file name="ISOCurrencies.php" hash="a32bc47b2d9896c293ecdcbf847144f9"/><file name="PaymentFormHelper.php" hash="75d4ea669fae3eb62df24c45f83a5a60"/></dir><dir name="Source"><file name="HashMethod.php" hash="997928579b69d21ae9eebec698c715c6"/><file name="OrderStatus.php" hash="4c44f8ba1652f20d934aa200ed4c8d00"/><file name="PaymentAction.php" hash="fa94be37c18bbb2f6301bdad1db3698d"/><file name="PaymentMode.php" hash="ea8af602bd09d54a123af64bc4b680d0"/><file name="ResultDeliveryMethod.php" hash="afb838319df715e604173d6aa143feab"/></dir><file name="Direct.php" hash="ba78fc3be3cd8a5442cd1932baee1aac"/><file name="Request.php" hash="370f028086d13ae1df470e93a67dea66"/></dir></dir><dir name="Checkout"><dir name="Block"><dir name="Onepage"><dir name="Payment"><file name="Methods.php" hash="695d628564f6e1e0c85e3821699e6b45"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="9dbd58b6b32491d65e5c7d5850aa3420"/></dir><dir name="Model"><dir name="Type"><file name="Onepage.php" hash="e3d27996d67ced85884ab3dbd9dd1199"/></dir></dir></dir><dir name="Sales"><dir name="etc"><file name="config.xml" hash="7b59887dda2117c9843b582a4721ade2"/></dir><dir name="Model"><dir name="Order"><file name="Invoice.php" hash="9d826794c5b0652d2e6e5d3e315a5cc6"/><file name="Payment.php" hash="0b725d11e47c08917e67ba0bd1feaa26"/></dir><dir name="Service"><file name="Quote.php" hash="2cca459cf3338bf53501fe836b8b9f96"/></dir><file name="Order.php" hash="9ffa9e06b0d5d8d2d810ab50017e81fa"/></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="images"><file name="cardsave_online.jpg" hash="abb239c81edb9ae8df8cf891e914e2aa"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Cardsave_All.xml" hash="e1d59fd8c4d4b5d87607f43fecf47e59"/></dir></target></contents>
|
| 19 |
<compatible/>
|
| 20 |
<dependencies/>
|
| 21 |
</package>
|
