Completed
Push — master ( 6e1c98...aaa94a )
by AJ
14:00
created
src/Auth/ShopifyAuthAuthenticate.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -36,19 +36,19 @@
 block discarded – undo
36 36
         
37 37
         $this->api_key = isset($config['api_key']) ? $config['api_key'] : '';
38 38
 		
39
-		if (empty($this->api_key)) {
39
+        if (empty($this->api_key)) {
40 40
 						
41
-			$controller = $this->_registry->getController();
41
+            $controller = $this->_registry->getController();
42 42
 					
43
-			if (isset($controller->request->api_key)) {
44
-				$this->api_key = $controller->request->api_key;
45
-			}
43
+            if (isset($controller->request->api_key)) {
44
+                $this->api_key = $controller->request->api_key;
45
+            }
46 46
 			
47
-		}
47
+        }
48 48
 		
49 49
         $this->ShopifyAPI = $registry->load('Multidimensional/Shopify.ShopifyAPI', [
50 50
             'api_key' => $this->api_key
51
-		]);
51
+        ]);
52 52
         $this->ShopifyDatabase = $registry->load('Multidimensional/Shopify.ShopifyDatabase');
53 53
         
54 54
     }
Please login to merge, or discard this patch.
src/Shell/ShopifyInstallShell.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
         $first_run = ((Configure::check('Multidimensional/Shopify')) ? false : true);
34 34
             
35 35
         //Activate Plugin           
36
-        if ((($first_run) ? (strtolower($this->in('Install Shopify Plugin?', ['y','n'])) == 'y') : (strtolower($this->in('Update Configuration?', ['y','n'])) == 'y'))) {
36
+        if ((($first_run) ? (strtolower($this->in('Install Shopify Plugin?', ['y', 'n'])) == 'y') : (strtolower($this->in('Update Configuration?', ['y', 'n'])) == 'y'))) {
37 37
             
38 38
             $this->out();
39 39
             $this->out('Please enter your API credentials from your Shopify App page.', 2);
@@ -71,12 +71,12 @@  discard block
 block discarded – undo
71 71
                     $this->_io->out('<error>Invalid Scope. Try again, or leave blank to continue.</error>');    
72 72
                 }
73 73
             
74
-            } while((count($scope)) && (strlen(trim(implode("", $scope))) > 0) && (count(array_diff($scope, $scope_array)) > 0));
74
+            } while ((count($scope)) && (strlen(trim(implode("", $scope))) > 0) && (count(array_diff($scope, $scope_array)) > 0));
75 75
             
76
-            Configure::write('Multidimensional/Shopify.' . $api_key . '.scope',implode(',', $scope));
76
+            Configure::write('Multidimensional/Shopify.' . $api_key . '.scope', implode(',', $scope));
77 77
             
78 78
             $this->out('');
79
-            $is_private_app = strtolower($this->in('Is this a private app?', ['y','n']));
79
+            $is_private_app = strtolower($this->in('Is this a private app?', ['y', 'n']));
80 80
             
81 81
             if ($is_private_app == 'y') {
82 82
                 $is_private_app = 'true';    
@@ -84,10 +84,10 @@  discard block
 block discarded – undo
84 84
                 $is_private_app = 'false';
85 85
             }
86 86
             
87
-            Configure::write('Multidimensional/Shopify.' . $api_key . '.is_private_app',$is_private_app);
87
+            Configure::write('Multidimensional/Shopify.' . $api_key . '.is_private_app', $is_private_app);
88 88
             
89 89
             if ($is_private_app == 'true') {
90
-                Configure::write('Multidimensional/Shopify.' . $api_key . '.private_app_password',$this->in('Private App Password:'));
90
+                Configure::write('Multidimensional/Shopify.' . $api_key . '.private_app_password', $this->in('Private App Password:'));
91 91
             } else {
92 92
                 Configure::write('Multidimensional/Shopify.' . $api_key . '.private_app_password', NULL);
93 93
             }
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
             
99 99
         $this->out('');
100 100
         
101
-        if (($first_run) || (strtolower($this->in('Update Database?', ['y','n'])) == 'y')) {            
101
+        if (($first_run) || (strtolower($this->in('Update Database?', ['y', 'n'])) == 'y')) {            
102 102
     
103 103
             $this->out('');
104 104
     
@@ -108,16 +108,16 @@  discard block
 block discarded – undo
108 108
     
109 109
             if ((is_array($status)) && (count($status))) {
110 110
                 
111
-                $this->out('Updating Databases',2);
111
+                $this->out('Updating Databases', 2);
112 112
               
113 113
                 if ($migrations->migrate()) {
114
-                    $this->out('Success!',2);
114
+                    $this->out('Success!', 2);
115 115
                 } else {
116 116
                     $this->_io->out('<error>Update Failed!</error>', 2);
117 117
                 }
118 118
                 
119 119
             } else {
120
-                $this->out('Shopify Database Files Not Found',2);
120
+                $this->out('Shopify Database Files Not Found', 2);
121 121
             }
122 122
         
123 123
         }
Please login to merge, or discard this patch.
src/Controller/InstallController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -70,12 +70,12 @@  discard block
 block discarded – undo
70 70
                                 'shopify_shop_domain_'.$this->ShopifyAPI->api_key => $this->ShopifyAPI->getShopDomain()
71 71
                             ]);
72 72
                         
73
-							$this->Auth->setUser($shop_entity);
73
+                            $this->Auth->setUser($shop_entity);
74 74
 
75 75
                             return $this->redirect([
76 76
                                 'controller' => 'Shopify',
77 77
                                 'plugin' => false,
78
-								'api_key' => $this->ShopifyAPI->api_key]);
78
+                                'api_key' => $this->ShopifyAPI->api_key]);
79 79
                                 
80 80
                             
81 81
                         } else {
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
       
110 110
             $this->render('add');
111 111
               
112
-          } elseif (!empty($this->request->data['shop_domain']) && !$this->error) {
112
+            } elseif (!empty($this->request->data['shop_domain']) && !$this->error) {
113 113
             
114 114
             $valid_domain = $this->ShopifyAPI->validDomain(
115 115
                 $this->request->data['shop_domain']
Please login to merge, or discard this patch.
src/Controller/Component/ShopifyAPIComponent.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -38,24 +38,24 @@  discard block
 block discarded – undo
38 38
 		
39 39
         $this->api_key = isset($config['api_key']) ? $config['api_key'] : '';
40 40
 				
41
-		if (!empty($this->api_key)) {
41
+        if (!empty($this->api_key)) {
42 42
 		
43
-			$this->shared_secret = Configure::read('Multidimensional/Shopify.' . $this->api_key . '.shared_secret');
44
-			$this->scope = Configure::read('Multidimensional/Shopify.' . $this->api_key . '.scope');
45
-			$this->is_private_app = Configure::read('Multidimensional/Shopify.' . $this->api_key . '.is_private_app');
46
-			$this->private_app_password = Configure::read('Multidimensional/Shopify.' . $this->api_key . '.private_app_password');        
43
+            $this->shared_secret = Configure::read('Multidimensional/Shopify.' . $this->api_key . '.shared_secret');
44
+            $this->scope = Configure::read('Multidimensional/Shopify.' . $this->api_key . '.scope');
45
+            $this->is_private_app = Configure::read('Multidimensional/Shopify.' . $this->api_key . '.is_private_app');
46
+            $this->private_app_password = Configure::read('Multidimensional/Shopify.' . $this->api_key . '.private_app_password');        
47 47
 			
48
-		} else {
48
+        } else {
49 49
 			
50
-			throw new NotImplementedException(__('Shopify API key not found'));
50
+            throw new NotImplementedException(__('Shopify API key not found'));
51 51
 			
52
-		}
52
+        }
53 53
 		
54
-		if (!$this->shared_secret) {
54
+        if (!$this->shared_secret) {
55 55
 		
56
-			throw new NotImplementedException(__('Shopify shared secret not found'));
56
+            throw new NotImplementedException(__('Shopify shared secret not found'));
57 57
 			
58
-		}
58
+        }
59 59
 		
60 60
     }
61 61
 
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
             return false;
148 148
         }
149 149
     
150
-      }
150
+        }
151 151
 
152 152
     public function setNonce($shop_domain) {
153 153
         
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
         $string = implode("&", $dataString);
195 195
         return $query['hmac'] == hash_hmac('sha256', $string, $this->shared_secret);
196 196
     
197
-      }
197
+        }
198 198
 
199 199
     private function _urlEncode($url) {
200 200
     
Please login to merge, or discard this patch.