Skip to content

Commit 83d6eaa

Browse files
committed
Support notification based on fraud status using Zapier.
1 parent 5175df6 commit 83d6eaa

File tree

8 files changed

+186
-20
lines changed

8 files changed

+186
-20
lines changed

Block/Adminhtml/Order/Grid/Renderer/Risk.php

+17-1
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,26 @@ public function render(DataObject $row) {
2020
if (!$result) {
2121
$out = '-';
2222
} else {
23-
$data = unserialize($result);
23+
if(is_null(json_decode($result, true))){
24+
$data = $this->_unserialize($result);
25+
} else {
26+
$data = json_decode($result, true);
27+
}
2428
$out .= $data['fraudlabspro_status'];
2529
}
2630
return $out;
2731
}
2832

33+
private function _unserialize($data){
34+
if (class_exists(\Magento\Framework\Serialize\SerializerInterface::class)) {
35+
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
36+
$serializer = $objectManager->create(\Magento\Framework\Serialize\SerializerInterface::class);
37+
return $serializer->unserialize($data);
38+
} else if (class_exists(\Magento\Framework\Unserialize\Unserialize::class)) {
39+
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
40+
$serializer = $objectManager->create(\Magento\Framework\Unserialize\Unserialize::class);
41+
return $serializer->unserialize($data);
42+
}
43+
}
44+
2945
}

Block/Adminhtml/Order/View/Info.php

+27-9
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,30 @@ class Info extends \Magento\Sales\Block\Adminhtml\Order\View\Info {
77
protected $scopeConfig;
88
protected $_objectManager;
99

10-
public function __construct(\Magento\Framework\Registry $registry, \Magento\Framework\ObjectManagerInterface $objectManager, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig){
10+
public function __construct(\Magento\Framework\Registry $registry, \Magento\Framework\ObjectManagerInterface $objectManager, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig){
1111
$this->registry = $registry;
1212
$this->_objectManager = $objectManager;
1313
$this->scopeConfig = $scopeConfig;
1414
$this->_order = $this->registry->registry('current_order');
15-
}
15+
}
1616

17-
protected function _getCollectionClass(){
17+
protected function _getCollectionClass(){
1818
return 'directory/country';
19-
}
19+
}
2020

21-
public function toHtml(){
21+
public function toHtml(){
2222
$rejectStatus = $this->scopeConfig->getValue('fraudlabspro/active_display/reject_status',\Magento\Store\Model\ScopeInterface::SCOPE_STORE);
2323

2424
$order = $this->_order;
2525

2626
if(!empty($order)){
27-
$data = unserialize($order->getfraudlabspro_response());
27+
if(is_null(json_decode($order->getfraudlabspro_response(), true))){
28+
if($order->getfraudlabspro_response()){
29+
$data = $this->_unserialize($order->getfraudlabspro_response());
30+
}
31+
} else {
32+
$data = json_decode($order->getfraudlabspro_response(), true);
33+
}
2834
}
2935

3036
if(filter_input(INPUT_GET, 'approve') || filter_input(INPUT_GET, 'reject') || filter_input(INPUT_GET, 'reject-blacklist')){
@@ -40,7 +46,7 @@ public function toHtml(){
4046
'id' => $flpId,
4147
)));
4248

43-
$order->setfraudlabspro_response(serialize($data))->save();
49+
$order->setfraudlabspro_response(json_encode($data))->save();
4450
}
4551

4652
if(!isset($data))
@@ -186,9 +192,9 @@ public function toHtml(){
186192
</div>';
187193

188194
return $out;
189-
}
195+
}
190196

191-
private function _get($url){
197+
private function _get($url){
192198

193199
$ch = curl_init();
194200

@@ -208,4 +214,16 @@ private function _get($url){
208214

209215
return false;
210216
}
217+
218+
private function _unserialize($data){
219+
if (class_exists(\Magento\Framework\Serialize\SerializerInterface::class)) {
220+
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
221+
$serializer = $objectManager->create(\Magento\Framework\Serialize\SerializerInterface::class);
222+
return $serializer->unserialize($data);
223+
} else if (class_exists(\Magento\Framework\Unserialize\Unserialize::class)) {
224+
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
225+
$serializer = $objectManager->create(\Magento\Framework\Unserialize\Unserialize::class);
226+
return $serializer->unserialize($data);
227+
}
228+
}
211229
}

CHANGELOG

+4-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,7 @@ Revision History for FraudLabs Pro Magento2
3030
Capture real IP behind firewalls and proxies.
3131

3232
2.0.13 2019-05-24
33-
Added is_phone_verified field.
33+
Added is_phone_verified field.
34+
35+
2.1.0 2019-10-09
36+
Support notification based on fraud status using Zapier.

Controller/Observer.php

+80-6
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,15 @@ public function processSendRequestToFraudLabsPro($order) {
7171
if (empty($orderId))
7272
return true;
7373

74-
$data = unserialize($order->getfraudlabspro_response());
74+
$data = 0;
75+
76+
if(is_null(json_decode($order->getfraudlabspro_response(), true))){
77+
if($order->getfraudlabspro_response()){
78+
$data = $this->_unserialize($order->getfraudlabspro_response());
79+
}
80+
} else {
81+
$data = json_decode($order->getfraudlabspro_response(), true);
82+
}
7583

7684
if ($data)
7785
return true;
@@ -82,6 +90,7 @@ public function processSendRequestToFraudLabsPro($order) {
8290
$apiKey = $this->scopeConfig->getValue('fraudlabspro/active_display/api_key', \Magento\Store\Model\ScopeInterface::SCOPE_STORE);
8391
$reviewStatus = $this->scopeConfig->getValue('fraudlabspro/active_display/review_status', \Magento\Store\Model\ScopeInterface::SCOPE_STORE);
8492
$rejectStatus = $this->scopeConfig->getValue('fraudlabspro/active_display/reject_status', \Magento\Store\Model\ScopeInterface::SCOPE_STORE);
93+
$notificationOn = $this->scopeConfig->getValue('fraudlabspro/active_display/enable_notification_on', \Magento\Store\Model\ScopeInterface::SCOPE_STORE);
8594

8695
$billingAddress = $order->getBillingAddress();
8796

@@ -155,7 +164,7 @@ public function processSendRequestToFraudLabsPro($order) {
155164
'payment_mode' => $paymentMode,
156165
'flp_checksum' => ( isset( $_COOKIE['flp_checksum'] ) ) ? $_COOKIE['flp_checksum'] : '',
157166
'source' => 'magento',
158-
'source_version' => '2.0.13',
167+
'source_version' => '2.1.0',
159168
);
160169

161170
$shippingAddress = $order->getShippingAddress();
@@ -179,10 +188,9 @@ public function processSendRequestToFraudLabsPro($order) {
179188
$result['api_key'] = $apiKey;
180189
$result['is_phone_verified'] = 'No';
181190

182-
$order->setfraudlabspro_response(serialize($result))->save();
191+
$order->setfraudlabspro_response(json_encode($result))->save();
183192

184193
if ($result['fraudlabspro_status'] == 'REVIEW') {
185-
186194
switch ($reviewStatus) {
187195
case 'pending':
188196
$order->setState(\Magento\Sales\Model\Order::STATE_NEW, true)->save();
@@ -225,7 +233,6 @@ public function processSendRequestToFraudLabsPro($order) {
225233
}
226234

227235
if ($result['fraudlabspro_status'] == 'REJECT') {
228-
229236
switch ($rejectStatus) {
230237
case 'pending':
231238
$order->setState(\Magento\Sales\Model\Order::STATE_NEW, true)->save();
@@ -266,12 +273,35 @@ public function processSendRequestToFraudLabsPro($order) {
266273
break;
267274
}
268275
}
276+
277+
if(((strpos($notificationOn, 'approve') !== FALSE) && $result['fraudlabspro_status'] == 'APPROVE') || ((strpos($notificationOn, 'review') !== FALSE) && $result['fraudlabspro_status'] == 'REVIEW') || ((strpos($notificationOn, 'reject') !== FALSE) && $result['fraudlabspro_status'] == 'REJECT')) {
278+
// Use zaptrigger API to get zap information
279+
$zapresponse = $this->http('https://api.fraudlabspro.com/v1/zaptrigger?' . http_build_query(array(
280+
'key' => $apiKey,
281+
'format' => 'json',
282+
)));
283+
284+
if(is_null($zapresult = json_decode($zapresponse, true)) === FALSE) {
285+
$target_url = $zapresult['target_url'];
286+
}
287+
288+
if(!empty($target_url)){
289+
$this->zaphttp($target_url, [
290+
'id' => $result['fraudlabspro_id'],
291+
'date_created' => gmdate('Y-m-d H:i:s'),
292+
'flp_status' => $result['fraudlabspro_status'],
293+
'full_name' => $order->getCustomerFirstname() . ' ' . $order->getCustomerLastname(),
294+
'email' => $order->getCustomerEmail(),
295+
'order_id' => $orderId,
296+
]);
297+
}
298+
}
299+
269300
$this->messageManager->addSuccess(__('FraudLabs Pro Request sent.'));
270301
return true;
271302
}
272303

273304
private function http($url) {
274-
275305
$ch = curl_init();
276306

277307
curl_setopt($ch, CURLOPT_FAILONERROR, 1);
@@ -292,11 +322,55 @@ private function http($url) {
292322
return false;
293323
}
294324

325+
private function zaphttp($url, $fields = '') {
326+
$ch = curl_init();
327+
328+
if ($fields) {
329+
$data_string = json_encode($fields);
330+
curl_setopt($ch, CURLOPT_POST, 1);
331+
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
332+
}
333+
334+
curl_setopt($ch, CURLOPT_URL, $url);
335+
curl_setopt($ch, CURLOPT_FAILONERROR, 1);
336+
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
337+
curl_setopt($ch, CURLOPT_AUTOREFERER, 1);
338+
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
339+
curl_setopt($ch, CURLOPT_ENCODING, 'gzip, deflate');
340+
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
341+
curl_setopt($ch, CURLOPT_HTTP_VERSION, '1.1');
342+
curl_setopt($ch, CURLOPT_TIMEOUT, 60);
343+
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
344+
'Content-Type: application/json',
345+
'Content-Length: ' . strlen($data_string))
346+
);
347+
348+
$response = curl_exec($ch);
349+
350+
if (!curl_errno($ch)) {
351+
return $response;
352+
}
353+
354+
return false;
355+
}
356+
295357
private function _hash($s, $prefix = 'fraudlabspro_') {
296358
$hash = $prefix . $s;
297359
for ($i = 0; $i < 65536; $i++)
298360
$hash = sha1($prefix . $hash);
299361
return $hash;
300362
}
301363

364+
private function _unserialize($data){
365+
if (class_exists(\Magento\Framework\Serialize\SerializerInterface::class)) {
366+
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
367+
$serializer = $objectManager->create(\Magento\Framework\Serialize\SerializerInterface::class);
368+
return $serializer->unserialize($data);
369+
} else if (class_exists(\Magento\Framework\Unserialize\Unserialize::class)) {
370+
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
371+
$serializer = $objectManager->create(\Magento\Framework\Unserialize\Unserialize::class);
372+
return $serializer->unserialize($data);
373+
}
374+
}
375+
302376
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
namespace Hexasoft\FraudLabsPro\Model\Adminhtml\System\Config\Source;
3+
4+
class View implements \Magento\Framework\Option\ArrayInterface {
5+
public function toOptionArray()
6+
{
7+
return array(
8+
array('value' => 'notification_approve', 'label' => __('Approve Status')),
9+
array('value' => 'notification_review', 'label' => __('Review Status')),
10+
array('value' => 'notification_reject', 'label' => __('Reject Status')),
11+
);
12+
}
13+
14+
public function toArray()
15+
{
16+
return array(
17+
'notification_approve' => __('Approve Status'),
18+
'notification_review' => __('Review Status'),
19+
'notification_reject' => __('Reject Status'),
20+
);
21+
}
22+
}

Ui/Component/Listing/Column/Assessment.php

+29-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ class Assessment extends Column {
1313
protected $_resource;
1414
protected $_scopeConfig;
1515
protected $escaper;
16+
protected $unserialize;
1617

1718
public function __construct(
1819
ContextInterface $context, UiComponentFactory $uiComponentFactory, Escaper $escaper, array $components = [], array $data = []
@@ -31,8 +32,15 @@ public function prepareDataSource(array $dataSource) {
3132
if (isset($dataSource['data']['items'])) {
3233
foreach ($dataSource['data']['items'] as & $item) {
3334
if (array_key_exists($this->getData('name'), $item)) {
34-
$data = unserialize($item[$this->getData('name')]);
35-
$item[$this->getData('name')] = $data['fraudlabspro_status'];
35+
if(is_null(json_decode($item[$this->getData('name')], true))){
36+
if($item[$this->getData('name')]){
37+
$data = $this->_unserialize($item[$this->getData('name')]);
38+
$item[$this->getData('name')] = $data['fraudlabspro_status'];
39+
}
40+
} else {
41+
$data = json_decode($item[$this->getData('name')], true);
42+
$item[$this->getData('name')] = $data['fraudlabspro_status'];
43+
}
3644
} else {
3745
$item[$this->getData('name')] = "";
3846
}
@@ -41,4 +49,23 @@ public function prepareDataSource(array $dataSource) {
4149
return $dataSource;
4250
}
4351

52+
private function _unserialize($data){
53+
if (class_exists(\Magento\Framework\Serialize\SerializerInterface::class)) {
54+
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
55+
$serializer = $objectManager->create(\Magento\Framework\Serialize\SerializerInterface::class);
56+
return $serializer->unserialize($data);
57+
} else if (class_exists(\Magento\Framework\Unserialize\Unserialize::class)) {
58+
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
59+
$serializer = $objectManager->create(\Magento\Framework\Unserialize\Unserialize::class);
60+
// if (!empty($data)) {
61+
// $res = $serializer->unserialize($data);
62+
// return $res;
63+
// } else {
64+
// $data['fraudlabspro_status'] = "";
65+
// return $data;
66+
// }
67+
return $serializer->unserialize($data);
68+
}
69+
}
70+
4471
}

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "hexasoft/module-fraudlabspro",
33
"description": "FraudLabs Pro Fraud Prevention plugin that screen the order transaction for online frauds. Fraud Prevention extension for Magento 2.",
4-
"version": "2.0.13",
4+
"version": "2.1.0",
55
"type": "magento2-module",
66
"require": {
77
"php": "~5.5.0|~5.6.0|~7.0"

etc/adminhtml/system.xml

+6
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
</field>
1818
<field id="api_key" translate="label" type="text" sortOrder="2" showInDefault="1" showInWebsite="1" showInStore="1">
1919
<label>API Key</label>
20+
<comment><![CDATA[You can register for a free license key at <a href="https://www.fraudlabspro.com/sign-up?r=magento" target="_blank">https://www.fraudlabspro.com/sign-up</a> if you do not have one.]]></comment>
2021
</field>
2122
<field id="review_status" translate="label" type="select" sortOrder="3" showInDefault="1" showInWebsite="1" showInStore="1">
2223
<label>When receive Review status, change order status to</label>
@@ -26,6 +27,11 @@
2627
<label>When receive Reject status, change order status to</label>
2728
<source_model>Magento\Sales\Model\Config\Source\Order\Status</source_model>
2829
</field>
30+
<field id="enable_notification_on" translate="label" type="multiselect" sortOrder="5" showInDefault="1" showInWebsite="1" showInStore="1">
31+
<label>Enable notification on</label>
32+
<source_model>Hexasoft\FraudLabsPro\Model\Adminhtml\System\Config\Source\View</source_model>
33+
<comment><![CDATA[You can trigger notification, such as email sending, using Zapier service. Please configure the integration in Zapier.com before enabling the options. You can visit <a href="https://www.fraudlabspro.com/resources/tutorials/how-to-enable-notification-using-zapier-in-magento2/" target="_blank">https://www.fraudlabspro.com/resources/tutorials/how-to-enable-notification-using-zapier-in-magento2/</a> for details on how to enable the zap.]]></comment>
34+
</field>
2935
</group>
3036
</section>
3137
</system>

0 commit comments

Comments
 (0)