Version Notes
Supports all versions of Magento
Download this release
Release Info
Developer | Magento Core Team |
Extension | Signifyd_Connect |
Version | 3.13.1 |
Comparing to | |
See all releases |
Code changes from version 3.13.0 to 3.13.1
- app/code/community/Signifyd/Connect/Helper/.Data.php.swp +0 -0
- app/code/community/Signifyd/Connect/Helper/Data.php +11 -3
- app/code/community/Signifyd/Connect/Model/Observer.php +1 -1
- app/code/community/Signifyd/Connect/controllers/ConnectController.php +0 -1
- app/code/community/Signifyd/Connect/etc/config.xml +1 -1
- package.xml +4 -4
app/code/community/Signifyd/Connect/Helper/.Data.php.swp
DELETED
Binary file
|
app/code/community/Signifyd/Connect/Helper/Data.php
CHANGED
@@ -567,11 +567,13 @@ class Signifyd_Connect_Helper_Data extends Mage_Core_Helper_Abstract
|
|
567 |
|
568 |
$order->addStatusHistoryComment("Signifyd: case $caseId created for order");
|
569 |
$order->save(); // Note: this will trigger recursion
|
|
|
570 |
return "sent";
|
571 |
}
|
572 |
} catch (Exception $e) {
|
573 |
Mage::log($e->__toString(), null, 'signifyd_connect.log');
|
574 |
}
|
|
|
575 |
return "error";
|
576 |
}
|
577 |
}
|
@@ -591,17 +593,21 @@ class Signifyd_Connect_Helper_Data extends Mage_Core_Helper_Abstract
|
|
591 |
}
|
592 |
$order = Mage::getModel('sales/order')->loadByIncrementId($order_id->getOrderIncrement());
|
593 |
$result = "unset";
|
|
|
594 |
if ($order != null && $this->processedStatus($order) < self::CASE_CREATED_STATUS) {
|
595 |
-
$result = $this->buildAndSendOrderToSignifyd($order
|
596 |
}
|
597 |
if ($result !== "error") {
|
|
|
598 |
Mage::register('isSecureArea', true);
|
599 |
$order_id->delete();
|
600 |
Mage::unregister('isSecureArea');
|
|
|
|
|
601 |
}
|
602 |
}
|
603 |
} catch (Exception $e) {
|
604 |
-
|
605 |
}
|
606 |
}
|
607 |
|
@@ -691,9 +697,11 @@ class Signifyd_Connect_Helper_Data extends Mage_Core_Helper_Abstract
|
|
691 |
public function unmarkProcessed($order)
|
692 |
{
|
693 |
$case = Mage::getModel('signifyd_connect/case')->load($order->getIncrementId());
|
694 |
-
if($case)
|
695 |
{
|
|
|
696 |
$case->delete();
|
|
|
697 |
}
|
698 |
}
|
699 |
|
567 |
|
568 |
$order->addStatusHistoryComment("Signifyd: case $caseId created for order");
|
569 |
$order->save(); // Note: this will trigger recursion
|
570 |
+
|
571 |
return "sent";
|
572 |
}
|
573 |
} catch (Exception $e) {
|
574 |
Mage::log($e->__toString(), null, 'signifyd_connect.log');
|
575 |
}
|
576 |
+
$this->unmarkProcessed($order);
|
577 |
return "error";
|
578 |
}
|
579 |
}
|
593 |
}
|
594 |
$order = Mage::getModel('sales/order')->loadByIncrementId($order_id->getOrderIncrement());
|
595 |
$result = "unset";
|
596 |
+
$this->logRequest("Retrying " . $order_id->getOrderIncrement());
|
597 |
if ($order != null && $this->processedStatus($order) < self::CASE_CREATED_STATUS) {
|
598 |
+
$result = $this->buildAndSendOrderToSignifyd($order);
|
599 |
}
|
600 |
if ($result !== "error") {
|
601 |
+
$this->logRequest("Completed retry " . $order_id->getOrderIncrement());
|
602 |
Mage::register('isSecureArea', true);
|
603 |
$order_id->delete();
|
604 |
Mage::unregister('isSecureArea');
|
605 |
+
} else {
|
606 |
+
$this->logError("Failed retry " . $order_id->getOrderIncrement());
|
607 |
}
|
608 |
}
|
609 |
} catch (Exception $e) {
|
610 |
+
$this->logError($e->__toString());
|
611 |
}
|
612 |
}
|
613 |
|
697 |
public function unmarkProcessed($order)
|
698 |
{
|
699 |
$case = Mage::getModel('signifyd_connect/case')->load($order->getIncrementId());
|
700 |
+
if($case && !$case->isObjectNew())
|
701 |
{
|
702 |
+
Mage::register('isSecureArea', true);
|
703 |
$case->delete();
|
704 |
+
Mage::unregister('isSecureArea');
|
705 |
}
|
706 |
}
|
707 |
|
app/code/community/Signifyd/Connect/Model/Observer.php
CHANGED
@@ -288,7 +288,7 @@ class Signifyd_Connect_Model_Observer extends Varien_Object
|
|
288 |
$helper->logError("Guarantee cancel: Signifyd case for order $order does not exist in DB");
|
289 |
return;
|
290 |
}
|
291 |
-
if($case->getGuarantee() == 'N/A') {
|
292 |
$helper->logRequest("Guarantee cancel: Skipped. No guarantee active");
|
293 |
return;
|
294 |
}
|
288 |
$helper->logError("Guarantee cancel: Signifyd case for order $order does not exist in DB");
|
289 |
return;
|
290 |
}
|
291 |
+
if($case->getGuarantee() == 'N/A' || $case->getGuarantee() == 'DECLINED') {
|
292 |
$helper->logRequest("Guarantee cancel: Skipped. No guarantee active");
|
293 |
return;
|
294 |
}
|
app/code/community/Signifyd/Connect/controllers/ConnectController.php
CHANGED
@@ -53,7 +53,6 @@ class Signifyd_Connect_ConnectController extends Mage_Core_Controller_Front_Acti
|
|
53 |
return $enabled && $retrieve_scores;
|
54 |
}
|
55 |
|
56 |
-
|
57 |
public function getUrl($code)
|
58 |
{
|
59 |
return Mage::getStoreConfig('signifyd_connect/settings/url', $this->_store_id) . '/cases/' . $code;
|
53 |
return $enabled && $retrieve_scores;
|
54 |
}
|
55 |
|
|
|
56 |
public function getUrl($code)
|
57 |
{
|
58 |
return Mage::getStoreConfig('signifyd_connect/settings/url', $this->_store_id) . '/cases/' . $code;
|
app/code/community/Signifyd/Connect/etc/config.xml
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
<config>
|
4 |
<modules>
|
5 |
<Signifyd_Connect>
|
6 |
-
<version>3.13.
|
7 |
</Signifyd_Connect>
|
8 |
</modules>
|
9 |
<global>
|
3 |
<config>
|
4 |
<modules>
|
5 |
<Signifyd_Connect>
|
6 |
+
<version>3.13.1</version>
|
7 |
</Signifyd_Connect>
|
8 |
</modules>
|
9 |
<global>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Signifyd_Connect</name>
|
4 |
-
<version>3.13.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL</license>
|
7 |
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
10 |
<description>Supports all versions of Magento</description>
|
11 |
<notes>Supports all versions of Magento</notes>
|
12 |
<authors><author><name>signifyd</name><user>auto-converted</user><email>manelis@signifyd.com</email></author></authors>
|
13 |
-
<date>2016-04-
|
14 |
-
<time>
|
15 |
-
<contents><target name="mageetc"><dir name="modules"><file name="Signifyd_Connect.xml" hash="bcd998a24567eba8a20423c40fba2adf"/></dir></target><target name="magecommunity"><dir name="Signifyd"><dir name="Connect"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="Grid.php" hash="2c2e8af2c67a09c041d5015c26eff587"/></dir><file name="Order.php" hash="e49f869c0aa5fb3ab6b70fb5752049ac"/></dir></dir><file name="Renderer.php" hash="b16dfa77aad966640705f55f09304fc2"/></dir><dir name="Helper"><file name="Data.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Signifyd_Connect</name>
|
4 |
+
<version>3.13.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL</license>
|
7 |
<channel>community</channel>
|
10 |
<description>Supports all versions of Magento</description>
|
11 |
<notes>Supports all versions of Magento</notes>
|
12 |
<authors><author><name>signifyd</name><user>auto-converted</user><email>manelis@signifyd.com</email></author></authors>
|
13 |
+
<date>2016-04-19</date>
|
14 |
+
<time>13:34:26</time>
|
15 |
+
<contents><target name="mageetc"><dir name="modules"><file name="Signifyd_Connect.xml" hash="bcd998a24567eba8a20423c40fba2adf"/></dir></target><target name="magecommunity"><dir name="Signifyd"><dir name="Connect"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="Grid.php" hash="2c2e8af2c67a09c041d5015c26eff587"/></dir><file name="Order.php" hash="e49f869c0aa5fb3ab6b70fb5752049ac"/></dir></dir><file name="Renderer.php" hash="b16dfa77aad966640705f55f09304fc2"/></dir><dir name="Helper"><file name="Data.php" hash="9f58af2735daff8e4908de4f26ed32bc"/></dir><dir name="Model"><dir name="Resource"><dir name="Case"><file name="Collection.php" hash="b7dac9979a0c81db56294d1548570fc2"/></dir><dir name="Retries"><file name="Collection.php" hash="bd94e095c3a6367d20f5ebdd756740c8"/></dir><file name="Case.php" hash="60d14407c9c90148aad543ce6868f343"/><file name="Retries.php" hash="8027995f79188f624b6a681e4868d2e6"/></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Options"><file name="Negative.php" hash="098488fbb0ea84945fdd1e1fe8449b4b"/><file name="Positive.php" hash="80b4cdd2bae6e2a2f3a273fa49d32331"/></dir></dir></dir></dir><file name="Authnet.php" hash="0387e631fb232778cdc82c0c72c16781"/><file name="Case.php" hash="2a28a63f02df1b9103b89a562c0abe1b"/><file name="Cron.php" hash="51665978bd2bcf67b493f2a2b450d1b8"/><file name="Link.php" hash="ecaf4c403a586b4b5c8b67c77f6ac433"/><file name="Observer.php" hash="5e65612906ecaac69aaea8183762a979"/><file name="Retries.php" hash="28780c04867b083b1d51878e59fa380b"/><file name="Setup.php" hash="e803ffb4b86c7d8ec1d149e665d65877"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="SignifydController.php" hash="5787eb1c3ad32d7f2fc1b909f332a50f"/></dir><file name="ConnectController.php" hash="8d521e6b99ae4c251fba6911a98bdefa"/></dir><dir name="etc"><file name="adminhtml.xml" hash="894bd3f5ac76e9f602ab6ab592648b03"/><file name="config.xml" hash="4c5eb9c0748016fa6e1a0fc868985cee"/><file name="system.xml" hash="3bf253bc739ef6b213add6a77114fe93"/></dir><dir name="sql"><dir name="signifyd_connect_setup"><file name="mysql4-install-3.1.1.php" hash="7fb2ccaf8352eea26e626ace6de53d80"/><file name="mysql4-install-3.12.0.php" hash="e4ec4d7445fbbc13a7008bcd69c529c4"/><file name="mysql4-install-3.3.0.php" hash="f61d0c018b28ae04d8d14b38556d18ad"/><file name="mysql4-install-3.4.0.php" hash="109cc5ca60974d0c4755dcb0f5ade3e7"/><file name="mysql4-install-3.4.5.php" hash="401b92235c0e534c941a64c60d24b851"/><file name="mysql4-install-3.7.0.php" hash="48a9d427944a4e63a000343ab329f517"/><file name="mysql4-install-3.8.0.php" hash="0fb3583eb4481c21b84ea674abc200f0"/><file name="mysql4-upgrade-3.10.0-3.10.1.php" hash="3ceb86495f33475774d4fc8727254cfc"/><file name="mysql4-upgrade-3.10.1-3.11.0.php" hash="3ceb86495f33475774d4fc8727254cfc"/><file name="mysql4-upgrade-3.11.0-3.11.1.php" hash="3ceb86495f33475774d4fc8727254cfc"/><file name="mysql4-upgrade-3.11.1-3.12.0.php" hash="df5447c6223f66c03ddeacefc64322b8"/><file name="mysql4-upgrade-3.12.0-3.13.0.php" hash="f2e8ccb1fd199a0a678b3e34181aac18"/><file name="mysql4-upgrade-3.2.0-3.2.1.php" hash="9e36c608afd6e30e3052334e085eeff4"/><file name="mysql4-upgrade-3.2.1-3.2.2.php" hash="efcc5d46a41e549e508a693f1e77bf44"/><file name="mysql4-upgrade-3.2.2-3.2.3.php" hash="3ceb86495f33475774d4fc8727254cfc"/><file name="mysql4-upgrade-3.2.3-3.3.0.php" hash="94b907c2cacde5fb9831408ce9a06190"/><file name="mysql4-upgrade-3.3.0-3.4.0.php" hash="6eb18705081483bb8d9c14adcdefd095"/><file name="mysql4-upgrade-3.4.0-3.4.1.php" hash="79f2064f1fa20d646e66aa3e7912d2a0"/><file name="mysql4-upgrade-3.4.1-3.4.2.php" hash="3ceb86495f33475774d4fc8727254cfc"/><file name="mysql4-upgrade-3.4.2-3.4.3.php" hash="3ceb86495f33475774d4fc8727254cfc"/><file name="mysql4-upgrade-3.4.3-3.4.4.php" hash="3ceb86495f33475774d4fc8727254cfc"/><file name="mysql4-upgrade-3.4.4-3.4.5.php" hash="5b7507d6bb97bf44d27b7a89c56924bb"/><file name="mysql4-upgrade-3.4.5-3.4.6.php" hash="3ceb86495f33475774d4fc8727254cfc"/><file name="mysql4-upgrade-3.4.6-3.4.7.php" hash="3ceb86495f33475774d4fc8727254cfc"/><file name="mysql4-upgrade-3.4.7-3.4.8.php" hash="3ceb86495f33475774d4fc8727254cfc"/><file name="mysql4-upgrade-3.4.8-3.5.0.php" hash="3ceb86495f33475774d4fc8727254cfc"/><file name="mysql4-upgrade-3.5.0-3.5.1.php" hash="3ceb86495f33475774d4fc8727254cfc"/><file name="mysql4-upgrade-3.5.1-3.5.2.php" hash="3ceb86495f33475774d4fc8727254cfc"/><file name="mysql4-upgrade-3.5.2-3.5.3.php" hash="3ceb86495f33475774d4fc8727254cfc"/><file name="mysql4-upgrade-3.5.3-3.6.0.php" hash="3ceb86495f33475774d4fc8727254cfc"/><file name="mysql4-upgrade-3.6.0-3.7.0.php" hash="1456a6d0ddf091be9c87b3bbc91263ba"/><file name="mysql4-upgrade-3.7.0-3.8.0.php" hash="e6fc207541cacc5079e8ea8e4d55f356"/><file name="mysql4-upgrade-3.8.0-3.9.0.php" hash="3ceb86495f33475774d4fc8727254cfc"/><file name="mysql4-upgrade-3.9.0-3.10.0.php" hash="3ceb86495f33475774d4fc8727254cfc"/></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|