Version Notes
* Support PayPalFlow payment method
Download this release
Release Info
Developer | Riskified_Mage |
Extension | riskified_magento |
Version | 1.0.9.5 |
Comparing to | |
See all releases |
Code changes from version 1.0.9.4 to 1.0.9.5
- app/code/community/Riskified/Full/Helper/Order.php +42 -2
- app/code/community/Riskified/Full/Model/Observer/Order/Creditmemo/Save.php +10 -4
- app/code/community/Riskified/Full/Model/Observer/Order/Payment/Failed.php +1 -25
- app/code/community/Riskified/Full/Model/Observer/Order/Shipment/Save.php +9 -4
- app/code/community/Riskified/Full/Model/Payflowpro.php +27 -0
- app/code/community/Riskified/Full/etc/config.xml +6 -1
- package.xml +5 -5
app/code/community/Riskified/Full/Helper/Order.php
CHANGED
@@ -118,7 +118,7 @@ class Riskified_Full_Helper_Order extends Mage_Core_Helper_Abstract
|
|
118 |
Mage::log(var_export($this->requestData, true), null, 'riskified-request-data.log');
|
119 |
break;
|
120 |
case self::ACTION_CHECKOUT_DENIED:
|
121 |
-
$checkoutForTransport =
|
122 |
$response = $transport->deniedCheckout($checkoutForTransport);
|
123 |
Mage::log(var_export($this->requestData, true), null, 'riskified-request-data.log');
|
124 |
break;
|
@@ -381,7 +381,7 @@ class Riskified_Full_Helper_Order extends Mage_Core_Helper_Abstract
|
|
381 |
return $orderFulfillments;
|
382 |
}
|
383 |
|
384 |
-
private function
|
385 |
{
|
386 |
$gateway = 'unavailable';
|
387 |
$currentStore = Mage::app()->getStore();
|
@@ -425,6 +425,46 @@ class Riskified_Full_Helper_Order extends Mage_Core_Helper_Abstract
|
|
425 |
$order_array['cart_token'] = null;
|
426 |
}
|
427 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
428 |
$order = new Model\Order(array_filter($order_array, 'strlen'));
|
429 |
|
430 |
$order->customer = $this->getCustomer($model);
|
118 |
Mage::log(var_export($this->requestData, true), null, 'riskified-request-data.log');
|
119 |
break;
|
120 |
case self::ACTION_CHECKOUT_DENIED:
|
121 |
+
$checkoutForTransport = $this->getCheckout($order);
|
122 |
$response = $transport->deniedCheckout($checkoutForTransport);
|
123 |
Mage::log(var_export($this->requestData, true), null, 'riskified-request-data.log');
|
124 |
break;
|
381 |
return $orderFulfillments;
|
382 |
}
|
383 |
|
384 |
+
private function collectOrderData($model)
|
385 |
{
|
386 |
$gateway = 'unavailable';
|
387 |
$currentStore = Mage::app()->getStore();
|
425 |
$order_array['cart_token'] = null;
|
426 |
}
|
427 |
|
428 |
+
return $order_array;
|
429 |
+
}
|
430 |
+
|
431 |
+
private function getCheckout($model)
|
432 |
+
{
|
433 |
+
$orderPaymentHelper = Mage::helper('full/order_payment');
|
434 |
+
$paymentDetails = $orderPaymentHelper->getPaymentDetails($model);
|
435 |
+
|
436 |
+
$paymentDetailsArray = json_decode($paymentDetails->toJson(), true);
|
437 |
+
$payload = $this->collectOrderData($model);
|
438 |
+
|
439 |
+
$payload['id'] = (int)$model->getQuoteId();
|
440 |
+
$payload['payment_details'] = array_merge(
|
441 |
+
$paymentDetailsArray,
|
442 |
+
array(
|
443 |
+
'authorization_error' => array(
|
444 |
+
'error_code' => 'magento_generic_auth_error',
|
445 |
+
'message' => 'General processing error',
|
446 |
+
'created_at' => Mage::helper('full')->getDateTime(),
|
447 |
+
),
|
448 |
+
)
|
449 |
+
);
|
450 |
+
|
451 |
+
$payload['customer'] = $this->getCustomer($model);
|
452 |
+
$payload['shipping_address'] = $this->getShippingAddress($model);
|
453 |
+
$payload['billing_address'] = $this->getBillingAddress($model);
|
454 |
+
|
455 |
+
$payload['line_items'] = $this->getLineItems($model);
|
456 |
+
$payload['shipping_lines'] = $this->getShippingLines($model);
|
457 |
+
|
458 |
+
if (!Mage::getSingleton('admin/session')->isLoggedIn()) {
|
459 |
+
$payload['client_details'] = $this->getClientDetails($model);
|
460 |
+
}
|
461 |
+
|
462 |
+
return new Model\Checkout($payload);
|
463 |
+
}
|
464 |
+
|
465 |
+
private function getOrder($model)
|
466 |
+
{
|
467 |
+
$order_array = $this->collectOrderData($model);
|
468 |
$order = new Model\Order(array_filter($order_array, 'strlen'));
|
469 |
|
470 |
$order->customer = $this->getCustomer($model);
|
app/code/community/Riskified/Full/Model/Observer/Order/Creditmemo/Save.php
CHANGED
@@ -58,10 +58,16 @@ class Riskified_Full_Model_Observer_Order_Creditmemo_Save
|
|
58 |
);
|
59 |
|
60 |
$helper = Mage::helper('full/order');
|
61 |
-
|
62 |
-
$
|
63 |
-
|
64 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
|
66 |
return $this;
|
67 |
}
|
58 |
);
|
59 |
|
60 |
$helper = Mage::helper('full/order');
|
61 |
+
try {
|
62 |
+
$helper->postOrder(
|
63 |
+
$payload,
|
64 |
+
Riskified_Full_Helper_Order::ACTION_REFUND
|
65 |
+
);
|
66 |
+
} catch (Exception $e) {
|
67 |
+
Mage::getSingleton('adminhtml/session')->addError('Riskified credit memo save: ' . $e->getMessage());
|
68 |
+
Mage::helper('full/log')->logException($e);
|
69 |
+
|
70 |
+
}
|
71 |
|
72 |
return $this;
|
73 |
}
|
app/code/community/Riskified/Full/Model/Observer/Order/Payment/Failed.php
CHANGED
@@ -21,33 +21,9 @@ class Riskified_Full_Model_Observer_Order_Payment_Failed
|
|
21 |
) {
|
22 |
$order = $observer->getEvent()->getOrder();
|
23 |
|
24 |
-
$orderPaymentHelper = Mage::helper('full/order_payment');
|
25 |
-
$paymentDetails = $orderPaymentHelper->getPaymentDetails($order);
|
26 |
-
|
27 |
-
$paymentDetailsArray = json_decode($paymentDetails->toJson(), true);
|
28 |
-
$payload = array(
|
29 |
-
'id' => (int)$order->getQuoteId(),
|
30 |
-
'payment_details' => array_merge(
|
31 |
-
$paymentDetailsArray,
|
32 |
-
array(
|
33 |
-
'authorization_error' => array(
|
34 |
-
'error_code' => 'magento_generic_auth_error',
|
35 |
-
'message' => 'General processing error',
|
36 |
-
'created_at' => Mage::helper('full')->getDateTime(),
|
37 |
-
),
|
38 |
-
)
|
39 |
-
),
|
40 |
-
);
|
41 |
-
|
42 |
-
unset(
|
43 |
-
$orderPaymentHelper,
|
44 |
-
$paymentDetails,
|
45 |
-
$paymentDetailsArray
|
46 |
-
);
|
47 |
-
|
48 |
$helper = Mage::helper('full/order');
|
49 |
$helper->postOrder(
|
50 |
-
$
|
51 |
Riskified_Full_Helper_Order::ACTION_CHECKOUT_DENIED
|
52 |
);
|
53 |
|
21 |
) {
|
22 |
$order = $observer->getEvent()->getOrder();
|
23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
$helper = Mage::helper('full/order');
|
25 |
$helper->postOrder(
|
26 |
+
$order,
|
27 |
Riskified_Full_Helper_Order::ACTION_CHECKOUT_DENIED
|
28 |
);
|
29 |
|
app/code/community/Riskified/Full/Model/Observer/Order/Shipment/Save.php
CHANGED
@@ -9,9 +9,14 @@ class Riskified_Full_Model_Observer_Order_Shipment_Save
|
|
9 |
|
10 |
$order = $shipment->getOrder();
|
11 |
$helper = Mage::helper('full/order');
|
12 |
-
|
13 |
-
$
|
14 |
-
|
15 |
-
|
|
|
|
|
|
|
|
|
|
|
16 |
}
|
17 |
}
|
9 |
|
10 |
$order = $shipment->getOrder();
|
11 |
$helper = Mage::helper('full/order');
|
12 |
+
try {
|
13 |
+
$helper->postOrder(
|
14 |
+
$order,
|
15 |
+
Riskified_Full_Helper_Order::ACTION_FULFILL
|
16 |
+
);
|
17 |
+
} catch (Exception $e) {
|
18 |
+
Mage::getSingleton('adminhtml/session')->addError('Riskified shipment error save: ' . $e->getMessage());
|
19 |
+
Mage::helper('full/log')->logException($e);
|
20 |
+
}
|
21 |
}
|
22 |
}
|
app/code/community/Riskified/Full/Model/Payflowpro.php
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Riskified_Full_Model_Payflowpro extends Mage_Paypal_Model_Payflowpro {
|
3 |
+
public function authorize(Varien_Object $payment, $amount)
|
4 |
+
{
|
5 |
+
$request = $this->_buildPlaceRequest($payment, $amount);
|
6 |
+
$request->setTrxtype(self::TRXTYPE_AUTH_ONLY);
|
7 |
+
$this->_setReferenceTransaction($payment, $request);
|
8 |
+
$response = $this->_postRequest($request);
|
9 |
+
$this->_processErrors($response);
|
10 |
+
switch ($response->getResultCode()) {
|
11 |
+
case self::RESPONSE_CODE_APPROVED:
|
12 |
+
$payment->setCcCidStatus($response->getProccvv2());
|
13 |
+
$payment->setCcAvsStatus($response->getProcavs());
|
14 |
+
$payment->setTransactionId($response->getPnref())->setIsTransactionClosed(0);
|
15 |
+
break;
|
16 |
+
case self::RESPONSE_CODE_FRAUDSERVICE_FILTER:
|
17 |
+
$payment->setCcCidStatus($response->getProccvv2());
|
18 |
+
$payment->setCcAvsStatus($response->getProcavs());
|
19 |
+
|
20 |
+
$payment->setTransactionId($response->getPnref())->setIsTransactionClosed(0);
|
21 |
+
$payment->setIsTransactionPending(true);
|
22 |
+
$payment->setIsFraudDetected(true);
|
23 |
+
break;
|
24 |
+
}
|
25 |
+
return $this;
|
26 |
+
}
|
27 |
+
}
|
app/code/community/Riskified/Full/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Riskified_Full>
|
5 |
-
<version>1.0.9.
|
6 |
</Riskified_Full>
|
7 |
</modules>
|
8 |
|
@@ -13,6 +13,11 @@
|
|
13 |
<authorizenet>Riskified_Full_Model_Authorizenet</authorizenet>
|
14 |
</rewrite>
|
15 |
</paygate>
|
|
|
|
|
|
|
|
|
|
|
16 |
<full>
|
17 |
<class>Riskified_Full_Model</class>
|
18 |
<resourceModel>riskified_full_resource</resourceModel>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Riskified_Full>
|
5 |
+
<version>1.0.9.5</version>
|
6 |
</Riskified_Full>
|
7 |
</modules>
|
8 |
|
13 |
<authorizenet>Riskified_Full_Model_Authorizenet</authorizenet>
|
14 |
</rewrite>
|
15 |
</paygate>
|
16 |
+
<paypal>
|
17 |
+
<rewrite>
|
18 |
+
<payflowpro>Riskified_Full_Model_Payflowpro</payflowpro>
|
19 |
+
</rewrite>
|
20 |
+
</paypal>
|
21 |
<full>
|
22 |
<class>Riskified_Full_Model</class>
|
23 |
<resourceModel>riskified_full_resource</resourceModel>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>riskified_magento</name>
|
4 |
-
<version>1.0.9.
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL v3.0</license>
|
7 |
<channel>community</channel>
|
@@ -9,12 +9,12 @@
|
|
9 |
<summary>Riskified Magento extension</summary>
|
10 |
<description>Riskified reviews, approves & guarantees
|
11 |
transactions you would otherwise decline.</description>
|
12 |
-
<notes>* Support
|
13 |
</notes>
|
14 |
<authors><author><name>Riskified_Mage</name><user>Riskified_Mage</user><email>support@riskified.com</email></author></authors>
|
15 |
-
<date>2017-
|
16 |
-
<time>
|
17 |
-
<contents><target name="magecommunity"><dir name="Riskified"><dir name="Full"><dir><dir name="Block"><file name="Beacon.php" hash="00c6f36ab82a4805b5408cda907bdcfa"/></dir><dir name="Helper"><dir name="Customer"><file name="Order.php" hash="38278dee0939fba4a017e347ac1784ad"/></dir><file name="Data.php" hash="d96b50cf6738f7aa1f47b7d4743cc634"/><file name="Debug.php" hash="b4cd9735bdd601cb624f7495242606e2"/><file name="Log.php" hash="ae614c5071160221b71fb0ed600da67e"/><dir name="Order"><file name="Invoice.php" hash="0117cd5689818c3dc9ab9b59fced6c18"/><file name="Payment.php" hash="8622a489426113a2820f6bce045cd42d"/><file name="Status.php" hash="210a0c440b4070fdcb2ead2c2db4e567"/></dir><file name="Order.php" hash="1b80efee369e505bcd15e9d25f73666d"/><file name=".DS_Store" hash="e06036c76f2129fd97ad05d90495eac9"/></dir><dir name="Model"><file name="Authorizenet.php" hash="4b910a92820a8d5571a5129e51b54fd3"/><dir name="Container"><file name="Beacon.php" hash="b1c3910031983b9291c98dbe46d61f09"/></dir><file name="Cron.php" hash="123074f2f44bc1f28f55ae864d759e27"/><dir name="Observer"><dir name="Order"><dir name="Creditmemo"><file name="Save.php" hash="8a3a35edeacdd098fb18c67340bdf931"/></dir><dir name="Payment"><file name="Failed.php" hash="a5e5020d71dce440d604cd056a4061e0"/></dir><dir name="Shipment"><file name="Save.php" hash="0c0d4253cab09112a3f71c860ca95e73"/></dir></dir><dir name="Quote"><file name="Submit.php" hash="b3f99a7b3e0541bcbd428d011de1fff2"/></dir></dir><file name="Observer.php" hash="66d354af4213d6463b1421117a5e7973"/><dir name="Resource"><dir name="Retry"><file name="Collection.php" hash="fd62ad4e4cdd8d372751bfa9988cc3a9"/></dir><file name="Retry.php" hash="3be3db7e54bd8bb45e0faffa1941f515"/><dir name="Sent"><file name="Collection.php" hash="8960157c9c5b16463aac33cf75116bc8"/></dir><file name="Sent.php" hash="744833cbe4ac4bb7ca69395d90229c0c"/></dir><file name="Retry.php" hash="89e7344139affa4fe0b9a252a5d1c592"/><file name="Sent.php" hash="cf2b22314d20f469f40e31ae14477032"/><dir name="System"><dir name="Config"><dir name="Source"><file name="ApprovedState.php" hash="6f4d7f7eb52922e57ff9069ec6031b63"/><file name="CanceledStateStatuses.php" hash="c274fb739314b34104e0b0085f1039c8"/><file name="CaptureCase.php" hash="6f2505f2c51df6a7caa26d5f89995b47"/><file name="DeclinedState.php" hash="d2c80dd15b3843bce5eb4d2a660b080a"/><file name="Env.php" hash="e213a59d9c438e4dc39b226134a85fab"/><file name="HoldedStateStatuses.php" hash="212f2476e5f6bed6d3456133d6e27c40"/><file name="ProcessingStateStatuses.php" hash="19af6046f86df7a5ba28693545493304"/></dir></dir></dir></dir><dir name="Test"><dir name="Config"><file name="General.php" hash="a5d4950c5655960879e7d75c06977941"/></dir><dir name="Helper"><dir name="General"><dir name="fixtures"><file name="extensionConfigEnabled.yaml" hash="eec8c8d8a1d5de49897b19740cf8e074"/></dir></dir><file name="General.php" hash="607c9711656be48084f6688e114b6bf6"/></dir><dir name="Model"><file name="Environments.php" hash="f3fc028d17c82b9b84b709b932e64eae"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="RiskifiedfullController.php" hash="c1927328b0feadc25073ae1e948cfa6b"/></dir><file name="ResponseController.php" hash="05173a743f73c1ed7b7cb9e0a580de3a"/><file name=".DS_Store" hash="0047fe0bc161a58c6088a4e959de43a4"/></dir><dir name="etc"><file name="adminhtml.xml" hash="333f4002a4c677b670cd449147b9d3c8"/><file name="cache.xml" hash="3a7cd749515499cce292330c46ce5028"/><file name="config.xml" hash="100567e2973a0e2122089e3f6e993895"/><file name="system.xml" hash="6d97d40215a389de432c01c5c6d8b5d4"/></dir><dir name="sql"><dir name="riskified_full_setup"><file name="mysql4-install-1.0.1.php" hash="66592f315ddacbb116e70b34094fbbef"/><file name="mysql4-upgrade-1.0.2.0-1.0.2.1.php" hash="5d12b7203027e843f6322b5a48fb3d23"/><file name="mysql4-upgrade-1.0.4-1.0.5.0.php" hash="df9bb6016ebab61444d65a5d92b0a70e"/><file name="mysql4-upgrade-1.0.5.5-1.0.6.0.php" hash="c749f3c2564fdf9310dcd22d493630d8"/><file name="mysql4-upgrade-1.0.8.0-1.0.8.1.php" hash="45ac33ab1e02f06f6850dd9876017f09"/><file name="mysql4-upgrade-1.0.9.0-1.0.9.1.php" hash="3cc6f0423a53bf1b8484b7dfe14fc328"/></dir></dir></dir><file name=".DS_Store" hash="9dde5569103534c45d9698851528d853"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Riskified_Full.xml" hash="d684caecdf710e5d0173ca07e5c5d1c0"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="full.xml" hash="8dbb3dd16fcb5821eb07e9b5d978d55c"/></dir><dir name="template"><dir name="full"><file name="jsinit.phtml" hash="dbf48e2d0d5a89db58cd474028bc2e7d"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="full.xml" hash="96d4fb310618a1e6fb149dc367952812"/></dir><dir name="template"><dir name="full"><file name="beacon.phtml" hash="396625d0c46c9f4dd287cef289a9bef8"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="riskified"><file name="logo.jpg" hash="0ac96bf07aa8b8ecb3ff06c2ccbf0827"/></dir></dir></dir></dir></dir></target><target name="magelib"><dir name="riskified_php_sdk"><file name="README.md" hash="f37118baa641e4ef6d670bb1c0298482"/><file name="composer.json" hash="96ba594b3b4ae47223d03f4fc78dcb16"/><dir><dir name="sample"><file name="README.md" hash="d6e555fdf2501b66b52d056857b3d903"/><file name="callback.php" hash="c6fb5a90b2c527b794fcec803acb36d9"/><file name="order_full_flow.php" hash="f85e1ca28b6f7deae958271d88cbeaed"/><file name="order_marketplace_create.php" hash="ae3d2fb28154a710934d6243302a590d"/><file name="order_simple_submit.php" hash="d8458f7992b486b6dac28558526f068b"/><file name="run_callback_server.sh" hash="8202fd93c15e088d072805d3a2f4c02b"/><file name="update_merchant_settings.php" hash="24499737ab057aba76cd054fd5051aad"/><file name="upload_historical.php" hash="78bdb85c036183de16968a79c8836efd"/></dir><dir name="src"><dir name="Riskified"><dir name="Common"><file name="Env.php" hash="3fc8342a423141fb0c110901deebfe25"/><dir name="Exception"><file name="BaseException.php" hash="ce902d0a3bd9af53b3c1923541602ead"/></dir><file name="Riskified.php" hash="0d1ff23815dbbf8716f2f3d349c1f8f3"/><dir name="Signature"><file name="HttpDataSignature.php" hash="b9f5d57db1903126a72eb38ca55ba878"/></dir><file name="Validations.php" hash="4af37b31901f215b660c868c31594b75"/></dir><dir name="DecisionNotification"><dir name="Exception"><file name="AuthorizationException.php" hash="4cab71ac324efd3b29bdfa6236a8f531"/><file name="BadHeaderException.php" hash="407a0d9e94d52e8b43bed02e34bd4a70"/><file name="BadPostJsonException.php" hash="2e2a7f84fae19fd525f01f6899ea218b"/><file name="NotificationException.php" hash="8f7d1ed8b9523ec66423c6ff2703085f"/></dir><dir name="Model"><file name="Notification.php" hash="9e2f5fd421abe37ab7b742767966f312"/></dir></dir><dir name="OrderWebhook"><dir name="Exception"><file name="ClassMismatchPropertyException.php" hash="8854b7aea6736b290826eb44ac0ba578"/><file name="CurlException.php" hash="27488d2dd0fa2c25b647a5967e3821b1"/><file name="FormatMismatchPropertyException.php" hash="2729989c3ac2a245341fd01a4d004b49"/><file name="InvalidPropertyException.php" hash="97084ff2ff33f5c657c5876a44aa97d2"/><file name="MalformedJsonException.php" hash="8c795b605988f20f1899dcf160f29cf1"/><file name="MissingPropertyException.php" hash="5ad8df6ba645a113fac7b65e08167d2c"/><file name="MultiplePropertiesException.php" hash="aaa042c5a0fcfd15dc2744059b15798b"/><file name="PropertyException.php" hash="7a234406434c5616aab72da27a1ed6ed"/><file name="TypeMismatchPropertyException.php" hash="5eed61220c954a462411f433a2c85bf2"/><file name="UnsuccessfulActionException.php" hash="b02fafbda955fa889ca36c5092ccc68d"/></dir><dir name="Model"><file name="AbstractModel.php" hash="73adfaac9fe9e189827baac5a71e41a4"/><file name="Address.php" hash="743e6e5ad9562d19e6af68334079d3cb"/><file name="Attribute.php" hash="e7fa146d7c9c807494c225e6a41afcfb"/><file name="AuthorizationError.php" hash="b82229eff42d94ceba58d4d6a3a4118b"/><file name="ChargeFreePaymentDetails.php" hash="07ab9a9022cc3152404617b72230e843"/><file name="Checkout.php" hash="ede0e6d2fd8319ada669de35b4c3190f"/><file name="ClientDetails.php" hash="50b329fa6b77bcbeff4b725705b957af"/><file name="Customer.php" hash="7e68c5804c145a93c2e48f4460a63759"/><file name="Decision.php" hash="55bf62bfcfc49ab9e5b823e7ec90d6bd"/><file name="DecisionDetails.php" hash="317121548885d2b8eb75a4d5e383f9f8"/><file name="DiscountCode.php" hash="0861920950828a3ff19904b92b4cb50d"/><file name="Fulfillment.php" hash="9111db9b13ae7b2fbe6bf806a66d78f2"/><file name="FulfillmentDetails.php" hash="d3c11d4e8943862fc4a774f3f8e9d7d7"/><file name="LineItem.php" hash="28af24c031cb3e162c2b4b7a3423980b"/><file name="MerchantSettings.php" hash="62f42b50b7a25b014cbed4ea528998aa"/><file name="Order.php" hash="cdff0611ed8e2b673938a8e1d36d64c5"/><file name="OrderCancellation.php" hash="f6f2d5234bb98b56902e632fbccc07b3"/><file name="PaymentDetails.php" hash="1d0bc8094d3a02ba6fe6b52ee139f47e"/><file name="Refund.php" hash="1c3ad264984585cfcefc909ffa708dc4"/><file name="RefundDetails.php" hash="f9a0e27e26bbfb6699bb0dd44fe6a184"/><file name="Seller.php" hash="2dd5dc2dc22582231263cad803149a16"/><file name="ShippingLine.php" hash="5ac14361474789db570fa6d14b17a973"/><file name="SocialDetails.php" hash="1fbc1939121c9618e612316c1a4500ca"/><file name="TaxLine.php" hash="59f82a19bc9ada690aa79bc96307db5e"/></dir><dir name="Transport"><file name="AbstractTransport.php" hash="6be123376c81f478968ee420ca5b31cb"/><file name="CurlTransport.php" hash="360863ea799e1c2f9860c16bd1ea401a"/></dir></dir><file name="autoloader.php" hash="f3471e90daf6184a096d337bbcd40bd1"/></dir></dir></dir><file name=".gitignore" hash="73f01e1298c44b6cc3e24a70cad8c56c"/></dir><dir name="riskified_scripts"><file name="riskified_historical_upload.php" hash="db28908aa4d29a78b712057fa60924fb"/><file name=".DS_Store" hash="2d4da7900011d5d8888ce53ed3dfcba7"/></dir></target></contents>
|
18 |
<compatible/>
|
19 |
<dependencies><required><php><min>4.4.0</min><max>6.0.0</max></php></required></dependencies>
|
20 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>riskified_magento</name>
|
4 |
+
<version>1.0.9.5</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL v3.0</license>
|
7 |
<channel>community</channel>
|
9 |
<summary>Riskified Magento extension</summary>
|
10 |
<description>Riskified reviews, approves & guarantees
|
11 |
transactions you would otherwise decline.</description>
|
12 |
+
<notes>* Support PayPalFlow payment method
|
13 |
</notes>
|
14 |
<authors><author><name>Riskified_Mage</name><user>Riskified_Mage</user><email>support@riskified.com</email></author></authors>
|
15 |
+
<date>2017-06-13</date>
|
16 |
+
<time>12:44:33</time>
|
17 |
+
<contents><target name="magecommunity"><dir name="Riskified"><dir name="Full"><dir><dir name="Block"><file name="Beacon.php" hash="00c6f36ab82a4805b5408cda907bdcfa"/></dir><dir name="Helper"><dir name="Customer"><file name="Order.php" hash="38278dee0939fba4a017e347ac1784ad"/></dir><file name="Data.php" hash="d96b50cf6738f7aa1f47b7d4743cc634"/><file name="Debug.php" hash="b4cd9735bdd601cb624f7495242606e2"/><file name="Log.php" hash="ae614c5071160221b71fb0ed600da67e"/><dir name="Order"><file name="Invoice.php" hash="0117cd5689818c3dc9ab9b59fced6c18"/><file name="Payment.php" hash="8622a489426113a2820f6bce045cd42d"/><file name="Status.php" hash="210a0c440b4070fdcb2ead2c2db4e567"/></dir><file name="Order.php" hash="4cff129f13703224245683d325e9dcdd"/><file name=".DS_Store" hash="e06036c76f2129fd97ad05d90495eac9"/></dir><dir name="Model"><file name="Authorizenet.php" hash="4b910a92820a8d5571a5129e51b54fd3"/><dir name="Container"><file name="Beacon.php" hash="b1c3910031983b9291c98dbe46d61f09"/></dir><file name="Cron.php" hash="123074f2f44bc1f28f55ae864d759e27"/><dir name="Observer"><dir name="Order"><dir name="Creditmemo"><file name="Save.php" hash="e8fbcf35c7cf364393cbe36c2910f5ff"/></dir><dir name="Payment"><file name="Failed.php" hash="8a6cb06999e6681dd9438c2227702733"/></dir><dir name="Shipment"><file name="Save.php" hash="008e277d8391ab3bd4334aea76db427c"/></dir></dir><dir name="Quote"><file name="Submit.php" hash="b3f99a7b3e0541bcbd428d011de1fff2"/></dir></dir><file name="Observer.php" hash="66d354af4213d6463b1421117a5e7973"/><file name="Payflowpro.php" hash="28be978ef493e082d44146b05c3b2e37"/><dir name="Resource"><dir name="Retry"><file name="Collection.php" hash="fd62ad4e4cdd8d372751bfa9988cc3a9"/></dir><file name="Retry.php" hash="3be3db7e54bd8bb45e0faffa1941f515"/><dir name="Sent"><file name="Collection.php" hash="8960157c9c5b16463aac33cf75116bc8"/></dir><file name="Sent.php" hash="744833cbe4ac4bb7ca69395d90229c0c"/></dir><file name="Retry.php" hash="89e7344139affa4fe0b9a252a5d1c592"/><file name="Sent.php" hash="cf2b22314d20f469f40e31ae14477032"/><dir name="System"><dir name="Config"><dir name="Source"><file name="ApprovedState.php" hash="6f4d7f7eb52922e57ff9069ec6031b63"/><file name="CanceledStateStatuses.php" hash="c274fb739314b34104e0b0085f1039c8"/><file name="CaptureCase.php" hash="6f2505f2c51df6a7caa26d5f89995b47"/><file name="DeclinedState.php" hash="d2c80dd15b3843bce5eb4d2a660b080a"/><file name="Env.php" hash="e213a59d9c438e4dc39b226134a85fab"/><file name="HoldedStateStatuses.php" hash="212f2476e5f6bed6d3456133d6e27c40"/><file name="ProcessingStateStatuses.php" hash="19af6046f86df7a5ba28693545493304"/></dir></dir></dir></dir><dir name="Test"><dir name="Config"><file name="General.php" hash="a5d4950c5655960879e7d75c06977941"/></dir><dir name="Helper"><dir name="General"><dir name="fixtures"><file name="extensionConfigEnabled.yaml" hash="eec8c8d8a1d5de49897b19740cf8e074"/></dir></dir><file name="General.php" hash="607c9711656be48084f6688e114b6bf6"/></dir><dir name="Model"><file name="Environments.php" hash="f3fc028d17c82b9b84b709b932e64eae"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="RiskifiedfullController.php" hash="c1927328b0feadc25073ae1e948cfa6b"/></dir><file name="ResponseController.php" hash="05173a743f73c1ed7b7cb9e0a580de3a"/><file name=".DS_Store" hash="0047fe0bc161a58c6088a4e959de43a4"/></dir><dir name="etc"><file name="adminhtml.xml" hash="333f4002a4c677b670cd449147b9d3c8"/><file name="cache.xml" hash="3a7cd749515499cce292330c46ce5028"/><file name="config.xml" hash="debc75801049b584317c85ad3ee44a17"/><file name="system.xml" hash="6d97d40215a389de432c01c5c6d8b5d4"/></dir><dir name="sql"><dir name="riskified_full_setup"><file name="mysql4-install-1.0.1.php" hash="66592f315ddacbb116e70b34094fbbef"/><file name="mysql4-upgrade-1.0.2.0-1.0.2.1.php" hash="5d12b7203027e843f6322b5a48fb3d23"/><file name="mysql4-upgrade-1.0.4-1.0.5.0.php" hash="df9bb6016ebab61444d65a5d92b0a70e"/><file name="mysql4-upgrade-1.0.5.5-1.0.6.0.php" hash="c749f3c2564fdf9310dcd22d493630d8"/><file name="mysql4-upgrade-1.0.8.0-1.0.8.1.php" hash="45ac33ab1e02f06f6850dd9876017f09"/><file name="mysql4-upgrade-1.0.9.0-1.0.9.1.php" hash="3cc6f0423a53bf1b8484b7dfe14fc328"/></dir></dir></dir><file name=".DS_Store" hash="9dde5569103534c45d9698851528d853"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Riskified_Full.xml" hash="d684caecdf710e5d0173ca07e5c5d1c0"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="full.xml" hash="8dbb3dd16fcb5821eb07e9b5d978d55c"/></dir><dir name="template"><dir name="full"><file name="jsinit.phtml" hash="dbf48e2d0d5a89db58cd474028bc2e7d"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="full.xml" hash="96d4fb310618a1e6fb149dc367952812"/></dir><dir name="template"><dir name="full"><file name="beacon.phtml" hash="396625d0c46c9f4dd287cef289a9bef8"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="riskified"><file name="logo.jpg" hash="0ac96bf07aa8b8ecb3ff06c2ccbf0827"/></dir></dir></dir></dir></dir></target><target name="magelib"><dir name="riskified_php_sdk"><file name="README.md" hash="f37118baa641e4ef6d670bb1c0298482"/><file name="composer.json" hash="96ba594b3b4ae47223d03f4fc78dcb16"/><dir><dir name="sample"><file name="README.md" hash="d6e555fdf2501b66b52d056857b3d903"/><file name="callback.php" hash="c6fb5a90b2c527b794fcec803acb36d9"/><file name="order_full_flow.php" hash="f85e1ca28b6f7deae958271d88cbeaed"/><file name="order_marketplace_create.php" hash="ae3d2fb28154a710934d6243302a590d"/><file name="order_simple_submit.php" hash="d8458f7992b486b6dac28558526f068b"/><file name="run_callback_server.sh" hash="8202fd93c15e088d072805d3a2f4c02b"/><file name="update_merchant_settings.php" hash="24499737ab057aba76cd054fd5051aad"/><file name="upload_historical.php" hash="78bdb85c036183de16968a79c8836efd"/></dir><dir name="src"><dir name="Riskified"><dir name="Common"><file name="Env.php" hash="3fc8342a423141fb0c110901deebfe25"/><dir name="Exception"><file name="BaseException.php" hash="ce902d0a3bd9af53b3c1923541602ead"/></dir><file name="Riskified.php" hash="0d1ff23815dbbf8716f2f3d349c1f8f3"/><dir name="Signature"><file name="HttpDataSignature.php" hash="b9f5d57db1903126a72eb38ca55ba878"/></dir><file name="Validations.php" hash="4af37b31901f215b660c868c31594b75"/></dir><dir name="DecisionNotification"><dir name="Exception"><file name="AuthorizationException.php" hash="4cab71ac324efd3b29bdfa6236a8f531"/><file name="BadHeaderException.php" hash="407a0d9e94d52e8b43bed02e34bd4a70"/><file name="BadPostJsonException.php" hash="2e2a7f84fae19fd525f01f6899ea218b"/><file name="NotificationException.php" hash="8f7d1ed8b9523ec66423c6ff2703085f"/></dir><dir name="Model"><file name="Notification.php" hash="9e2f5fd421abe37ab7b742767966f312"/></dir></dir><dir name="OrderWebhook"><dir name="Exception"><file name="ClassMismatchPropertyException.php" hash="8854b7aea6736b290826eb44ac0ba578"/><file name="CurlException.php" hash="27488d2dd0fa2c25b647a5967e3821b1"/><file name="FormatMismatchPropertyException.php" hash="2729989c3ac2a245341fd01a4d004b49"/><file name="InvalidPropertyException.php" hash="97084ff2ff33f5c657c5876a44aa97d2"/><file name="MalformedJsonException.php" hash="8c795b605988f20f1899dcf160f29cf1"/><file name="MissingPropertyException.php" hash="5ad8df6ba645a113fac7b65e08167d2c"/><file name="MultiplePropertiesException.php" hash="aaa042c5a0fcfd15dc2744059b15798b"/><file name="PropertyException.php" hash="7a234406434c5616aab72da27a1ed6ed"/><file name="TypeMismatchPropertyException.php" hash="5eed61220c954a462411f433a2c85bf2"/><file name="UnsuccessfulActionException.php" hash="b02fafbda955fa889ca36c5092ccc68d"/></dir><dir name="Model"><file name="AbstractModel.php" hash="73adfaac9fe9e189827baac5a71e41a4"/><file name="Address.php" hash="743e6e5ad9562d19e6af68334079d3cb"/><file name="Attribute.php" hash="e7fa146d7c9c807494c225e6a41afcfb"/><file name="AuthorizationError.php" hash="b82229eff42d94ceba58d4d6a3a4118b"/><file name="ChargeFreePaymentDetails.php" hash="07ab9a9022cc3152404617b72230e843"/><file name="Checkout.php" hash="ede0e6d2fd8319ada669de35b4c3190f"/><file name="ClientDetails.php" hash="50b329fa6b77bcbeff4b725705b957af"/><file name="Customer.php" hash="7e68c5804c145a93c2e48f4460a63759"/><file name="Decision.php" hash="55bf62bfcfc49ab9e5b823e7ec90d6bd"/><file name="DecisionDetails.php" hash="317121548885d2b8eb75a4d5e383f9f8"/><file name="DiscountCode.php" hash="0861920950828a3ff19904b92b4cb50d"/><file name="Fulfillment.php" hash="9111db9b13ae7b2fbe6bf806a66d78f2"/><file name="FulfillmentDetails.php" hash="d3c11d4e8943862fc4a774f3f8e9d7d7"/><file name="LineItem.php" hash="28af24c031cb3e162c2b4b7a3423980b"/><file name="MerchantSettings.php" hash="62f42b50b7a25b014cbed4ea528998aa"/><file name="Order.php" hash="cdff0611ed8e2b673938a8e1d36d64c5"/><file name="OrderCancellation.php" hash="f6f2d5234bb98b56902e632fbccc07b3"/><file name="PaymentDetails.php" hash="1d0bc8094d3a02ba6fe6b52ee139f47e"/><file name="Refund.php" hash="1c3ad264984585cfcefc909ffa708dc4"/><file name="RefundDetails.php" hash="f9a0e27e26bbfb6699bb0dd44fe6a184"/><file name="Seller.php" hash="2dd5dc2dc22582231263cad803149a16"/><file name="ShippingLine.php" hash="5ac14361474789db570fa6d14b17a973"/><file name="SocialDetails.php" hash="1fbc1939121c9618e612316c1a4500ca"/><file name="TaxLine.php" hash="59f82a19bc9ada690aa79bc96307db5e"/></dir><dir name="Transport"><file name="AbstractTransport.php" hash="6be123376c81f478968ee420ca5b31cb"/><file name="CurlTransport.php" hash="360863ea799e1c2f9860c16bd1ea401a"/></dir></dir><file name="autoloader.php" hash="f3471e90daf6184a096d337bbcd40bd1"/></dir></dir></dir><file name=".gitignore" hash="73f01e1298c44b6cc3e24a70cad8c56c"/></dir><dir name="riskified_scripts"><file name="riskified_historical_upload.php" hash="db28908aa4d29a78b712057fa60924fb"/><file name=".DS_Store" hash="2d4da7900011d5d8888ce53ed3dfcba7"/></dir></target></contents>
|
18 |
<compatible/>
|
19 |
<dependencies><required><php><min>4.4.0</min><max>6.0.0</max></php></required></dependencies>
|
20 |
</package>
|