@@ -71,7 +71,15 @@ public function processSendRequestToFraudLabsPro($order) {
71
71
if (empty ($ orderId ))
72
72
return true ;
73
73
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
+ }
75
83
76
84
if ($ data )
77
85
return true ;
@@ -82,6 +90,7 @@ public function processSendRequestToFraudLabsPro($order) {
82
90
$ apiKey = $ this ->scopeConfig ->getValue ('fraudlabspro/active_display/api_key ' , \Magento \Store \Model \ScopeInterface::SCOPE_STORE );
83
91
$ reviewStatus = $ this ->scopeConfig ->getValue ('fraudlabspro/active_display/review_status ' , \Magento \Store \Model \ScopeInterface::SCOPE_STORE );
84
92
$ 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 );
85
94
86
95
$ billingAddress = $ order ->getBillingAddress ();
87
96
@@ -155,7 +164,7 @@ public function processSendRequestToFraudLabsPro($order) {
155
164
'payment_mode ' => $ paymentMode ,
156
165
'flp_checksum ' => ( isset ( $ _COOKIE ['flp_checksum ' ] ) ) ? $ _COOKIE ['flp_checksum ' ] : '' ,
157
166
'source ' => 'magento ' ,
158
- 'source_version ' => '2.0.13 ' ,
167
+ 'source_version ' => '2.1.0 ' ,
159
168
);
160
169
161
170
$ shippingAddress = $ order ->getShippingAddress ();
@@ -179,10 +188,9 @@ public function processSendRequestToFraudLabsPro($order) {
179
188
$ result ['api_key ' ] = $ apiKey ;
180
189
$ result ['is_phone_verified ' ] = 'No ' ;
181
190
182
- $ order ->setfraudlabspro_response (serialize ($ result ))->save ();
191
+ $ order ->setfraudlabspro_response (json_encode ($ result ))->save ();
183
192
184
193
if ($ result ['fraudlabspro_status ' ] == 'REVIEW ' ) {
185
-
186
194
switch ($ reviewStatus ) {
187
195
case 'pending ' :
188
196
$ order ->setState (\Magento \Sales \Model \Order::STATE_NEW , true )->save ();
@@ -225,7 +233,6 @@ public function processSendRequestToFraudLabsPro($order) {
225
233
}
226
234
227
235
if ($ result ['fraudlabspro_status ' ] == 'REJECT ' ) {
228
-
229
236
switch ($ rejectStatus ) {
230
237
case 'pending ' :
231
238
$ order ->setState (\Magento \Sales \Model \Order::STATE_NEW , true )->save ();
@@ -266,12 +273,35 @@ public function processSendRequestToFraudLabsPro($order) {
266
273
break ;
267
274
}
268
275
}
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
+
269
300
$ this ->messageManager ->addSuccess (__ ('FraudLabs Pro Request sent. ' ));
270
301
return true ;
271
302
}
272
303
273
304
private function http ($ url ) {
274
-
275
305
$ ch = curl_init ();
276
306
277
307
curl_setopt ($ ch , CURLOPT_FAILONERROR , 1 );
@@ -292,11 +322,55 @@ private function http($url) {
292
322
return false ;
293
323
}
294
324
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
+
295
357
private function _hash ($ s , $ prefix = 'fraudlabspro_ ' ) {
296
358
$ hash = $ prefix . $ s ;
297
359
for ($ i = 0 ; $ i < 65536 ; $ i ++)
298
360
$ hash = sha1 ($ prefix . $ hash );
299
361
return $ hash ;
300
362
}
301
363
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
+
302
376
}
0 commit comments