Completed
Push — pull/SSOcorrection ( 32b435...e29edc )
by Nic
14:44
created
src/Controller/FoxyStripeController.php 1 patch
Spacing   +9 added lines, -10 removed lines patch added patch discarded remove patch
@@ -45,8 +45,7 @@  discard block
 block discarded – undo
45 45
         // handle POST from FoxyCart API transaction
46 46
         if ((isset($_POST['FoxyData']) or isset($_POST['FoxySubscriptionData']))) {
47 47
             $FoxyData_encrypted = (isset($_POST['FoxyData'])) ?
48
-                urldecode($_POST['FoxyData']) :
49
-                urldecode($_POST['FoxySubscriptionData']);
48
+                urldecode($_POST['FoxyData']) : urldecode($_POST['FoxySubscriptionData']);
50 49
             $FoxyData_decrypted = \rc4crypt::decrypt(FoxyCart::getStoreKey(), $FoxyData_encrypted);
51 50
 
52 51
             // parse the response and save the order
@@ -56,7 +55,7 @@  discard block
 block discarded – undo
56 55
             $this->extend('addIntegrations', $FoxyData_encrypted);
57 56
 
58 57
             return 'foxy';
59
-        } else {
58
+        }else {
60 59
             return 'No FoxyData or FoxySubscriptionData received.';
61 60
         }
62 61
     }
@@ -149,7 +148,7 @@  discard block
 block discarded – undo
149 148
                 /* todo: make sure local password is updated if changed on FoxyCart
150 149
                 $this->updatePasswordFromData($customer, $order);
151 150
                 */
152
-            } else {
151
+            }else {
153 152
                 // create new Member, set password info from FoxyCart
154 153
                 $customer = Member::create();
155 154
                 $customer->Customer_ID = (int)$order->customer_id;
@@ -322,22 +321,22 @@  discard block
 block discarded – undo
322 321
         // to do: consider a login/registration form here if not logged in
323 322
         if ($Member = Security::getCurrentUser()) {
324 323
             $Member = Security::getCurrentUser();
325
-        } else {
324
+        }else {
326 325
             $Member = new Member();
327 326
             $Member->Customer_ID = 0;
328 327
         }
329 328
 
330
-        $auth_token = sha1($Member->Customer_ID . '|' . $timestampNew . '|' . FoxyCart::getStoreKey());
329
+        $auth_token = sha1($Member->Customer_ID.'|'.$timestampNew.'|'.FoxyCart::getStoreKey());
331 330
 
332 331
         $config = FoxyStripeSetting::current_foxystripe_setting();
333 332
         if ($config->CustomSSL) {
334 333
             $link = FoxyCart::getFoxyCartStoreName();
335
-        } else {
336
-            $link = FoxyCart::getFoxyCartStoreName() . '.foxycart.com';
334
+        }else {
335
+            $link = FoxyCart::getFoxyCartStoreName().'.foxycart.com';
337 336
         }
338 337
 
339
-        $redirect_complete = 'https://' . $link . '/checkout?fc_auth_token=' . $auth_token . '&fcsid=' . $fcsid .
340
-            '&fc_customer_id=' . $Member->Customer_ID . '&timestamp=' . $timestampNew;
338
+        $redirect_complete = 'https://'.$link.'/checkout?fc_auth_token='.$auth_token.'&fcsid='.$fcsid.
339
+            '&fc_customer_id='.$Member->Customer_ID.'&timestamp='.$timestampNew;
341 340
 
342 341
         $this->redirect($redirect_complete);
343 342
     }
Please login to merge, or discard this patch.