Test Setup Failed
Pull Request — master (#454)
by Kiran
29:40
created
geodirectory-templates/geodir-information.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -12,27 +12,27 @@
 block discarded – undo
12 12
         <div class="clearfix">
13 13
             <div id="geodir_content">
14 14
                 <?php
15
-                /** This action is documented in geodirectory-templates/geodir-home.php */
16
-                do_action('geodir_add_page_content', 'before', 'info-page');
17
-                global $information;
18
-                echo '<h5 class="geodir_information">';
19
-                echo $information;
20
-                echo '</h5>';
21
-                /** This action is documented in geodirectory-templates/geodir-home.php */
22
-                do_action('geodir_add_page_content', 'after', 'info-page');
23
-                ?>
15
+				/** This action is documented in geodirectory-templates/geodir-home.php */
16
+				do_action('geodir_add_page_content', 'before', 'info-page');
17
+				global $information;
18
+				echo '<h5 class="geodir_information">';
19
+				echo $information;
20
+				echo '</h5>';
21
+				/** This action is documented in geodirectory-templates/geodir-home.php */
22
+				do_action('geodir_add_page_content', 'after', 'info-page');
23
+				?>
24 24
             </div>
25 25
             <!-- geodir_content ends here-->
26 26
             <div id="gd-sidebar-wrapper">
27 27
                 <div class="geodir-sidebar-main">
28 28
                     <div class="geodir-gd-sidebar">
29 29
                         <?php
30
-                        /**
31
-                         * Calls the author sidebar.
32
-                         *
33
-                         * @since 1.6.11
34
-                         */
35
-                        dynamic_sidebar('geodir_author_right_sidebar'); ?>
30
+						/**
31
+						 * Calls the author sidebar.
32
+						 *
33
+						 * @since 1.6.11
34
+						 */
35
+						dynamic_sidebar('geodir_author_right_sidebar'); ?>
36 36
                     </div>
37 37
                 </div>
38 38
             </div>
Please login to merge, or discard this patch.
geodirectory-admin/class.analytics.stats.php 4 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -223,6 +223,9 @@
 block discarded – undo
223 223
 	 * @param filter - the property to filter on
224 224
 	 * @param limit - the number of items to get
225 225
 	 * @param realtime - if the realtime api should be used
226
+	 * @param string $metric
227
+	 * @param string $startDate
228
+	 * @param string $endDate
226 229
 	 * @return the specific metrics in array form
227 230
 	 **/
228 231
 	function getMetrics($metric, $startDate, $endDate, $dimensions = false, $sort = false, $filter = false, $limit = false, $realtime = false)
Please login to merge, or discard this patch.
Indentation   +104 added lines, -104 removed lines patch added patch discarded remove patch
@@ -30,135 +30,135 @@  discard block
 block discarded – undo
30 30
 			// Include the Google Service API
31 31
 			include_once('google-api-php-client/src/Google/autoload.php');
32 32
 
33
-            $this->client = new Google_Client();
34
-            $this->client->setApprovalPrompt("force");
35
-            $this->client->setAccessType('offline');
36
-            $this->client->setClientId(GEODIR_GA_CLIENTID);
37
-            $this->client->setClientSecret(GEODIR_GA_CLIENTSECRET);
38
-            $this->client->setRedirectUri(GEODIR_GA_REDIRECT);
33
+			$this->client = new Google_Client();
34
+			$this->client->setApprovalPrompt("force");
35
+			$this->client->setAccessType('offline');
36
+			$this->client->setClientId(GEODIR_GA_CLIENTID);
37
+			$this->client->setClientSecret(GEODIR_GA_CLIENTSECRET);
38
+			$this->client->setRedirectUri(GEODIR_GA_REDIRECT);
39 39
 			
40
-            $this->client->setScopes(array("https://www.googleapis.com/auth/analytics"));
41
-
42
-            try {
43
-                    $this->analytics = new Google_Service_Analytics($this->client);
44
-                }
45
-            catch (Google_ServiceException $e)
46
-                {
47
-                    print '(cas:48) There was an Analytics API service error ' . $e->getCode() . ':' . $e->getMessage();
40
+			$this->client->setScopes(array("https://www.googleapis.com/auth/analytics"));
41
+
42
+			try {
43
+					$this->analytics = new Google_Service_Analytics($this->client);
44
+				}
45
+			catch (Google_ServiceException $e)
46
+				{
47
+					print '(cas:48) There was an Analytics API service error ' . $e->getCode() . ':' . $e->getMessage();
48 48
 					return false;
49
-                }
49
+				}
50 50
 	}
51 51
 
52 52
 	function checkLogin()
53 53
 	{
54
-            $ga_google_authtoken = get_option('geodir_ga_auth_token');
54
+			$ga_google_authtoken = get_option('geodir_ga_auth_token');
55 55
 
56
-            if (!empty($ga_google_authtoken))
57
-            {
56
+			if (!empty($ga_google_authtoken))
57
+			{
58 58
 				try
59
-                {
60
-                    $this->client->setAccessToken($ga_google_authtoken);
59
+				{
60
+					$this->client->setAccessToken($ga_google_authtoken);
61 61
 				}
62 62
 				catch( Google_AuthException $e )
63
-                {
64
-                    print '(cas:72) GeoDirectory was unable to authenticate you with
63
+				{
64
+					print '(cas:72) GeoDirectory was unable to authenticate you with
65 65
                             Google using the Auth Token you pasted into the input box on the previous step. <br><br>
66 66
                             This could mean either you pasted the token wrong, or the time/date on your server is wrong,
67 67
                             or an SSL issue preventing Google from Authenticating. <br><br>
68 68
                             <br><br><strong>Tech Info </strong> ' . $e->getCode() . ':' . $e->getMessage();
69 69
 
70
-                    return false;
71
-                }
72
-            }
73
-            else
74
-            {
75
-                $authCode = get_option('geodir_ga_auth_code');
76
-
77
-                if (empty($authCode)) return false;
78
-
79
-                try
80
-                {
81
-                    $accessToken = $this->client->authenticate($authCode);
82
-                }
83
-                catch( Exception $e )
84
-                {
85
-                    print '(cas:72) GeoDirectory was unable to authenticate you with
70
+					return false;
71
+				}
72
+			}
73
+			else
74
+			{
75
+				$authCode = get_option('geodir_ga_auth_code');
76
+
77
+				if (empty($authCode)) return false;
78
+
79
+				try
80
+				{
81
+					$accessToken = $this->client->authenticate($authCode);
82
+				}
83
+				catch( Exception $e )
84
+				{
85
+					print '(cas:72) GeoDirectory was unable to authenticate you with
86 86
                             Google using the Auth Token you pasted into the input box on the previous step. <br><br>
87 87
                             This could mean either you pasted the token wrong, or the time/date on your server is wrong,
88 88
                             or an SSL issue preventing Google from Authenticating. <br><br>
89 89
                             <br><br><strong>Tech Info </strong> ' . $e->getCode() . ':' . $e->getMessage();
90 90
 
91
-                    return false;
92
-                }
93
-
94
-                if($accessToken)
95
-                {
96
-                    $this->client->setAccessToken($accessToken);
97
-                    update_option('geodir_ga_auth_token', $accessToken);
98
-                }
99
-                else
100
-                {
101
-                    return false;
102
-                }
103
-            }
104
-
105
-            $this->token =  $this->client->getAccessToken();
106
-            return true;
91
+					return false;
92
+				}
93
+
94
+				if($accessToken)
95
+				{
96
+					$this->client->setAccessToken($accessToken);
97
+					update_option('geodir_ga_auth_token', $accessToken);
98
+				}
99
+				else
100
+				{
101
+					return false;
102
+				}
103
+			}
104
+
105
+			$this->token =  $this->client->getAccessToken();
106
+			return true;
107 107
 	}
108 108
 
109 109
 	function deauthorize()
110 110
 	{
111
-            update_option('geodir_ga_auth_code', '');
112
-            update_option('geodir_ga_auth_token', '');
111
+			update_option('geodir_ga_auth_code', '');
112
+			update_option('geodir_ga_auth_token', '');
113 113
 	}
114 114
 
115 115
 	function getSingleProfile()
116 116
 	{
117
-            $webproperty_id = get_option('geodir_ga_account_id');
118
-            list($pre, $account_id, $post) = explode('-',$webproperty_id);
119
-
120
-            if (empty($webproperty_id)) return false;
121
-
122
-            try {
123
-                $profiles = $this->analytics->management_profiles->listManagementProfiles($account_id, $webproperty_id);
124
-            }
125
-            catch (Google_ServiceException $e)
126
-            {
127
-                print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage();
128
-                return false;
129
-            }
130
-
131
-            $profile_id = $profiles->items[0]->id;
132
-            if (empty($profile_id)) return false;
133
-
134
-            $account_array = array();
135
-            array_push($account_array, array('id'=>$profile_id, 'ga:webPropertyId'=>$webproperty_id));
136
-            return $account_array;
117
+			$webproperty_id = get_option('geodir_ga_account_id');
118
+			list($pre, $account_id, $post) = explode('-',$webproperty_id);
119
+
120
+			if (empty($webproperty_id)) return false;
121
+
122
+			try {
123
+				$profiles = $this->analytics->management_profiles->listManagementProfiles($account_id, $webproperty_id);
124
+			}
125
+			catch (Google_ServiceException $e)
126
+			{
127
+				print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage();
128
+				return false;
129
+			}
130
+
131
+			$profile_id = $profiles->items[0]->id;
132
+			if (empty($profile_id)) return false;
133
+
134
+			$account_array = array();
135
+			array_push($account_array, array('id'=>$profile_id, 'ga:webPropertyId'=>$webproperty_id));
136
+			return $account_array;
137 137
 	}
138 138
 
139
-        function getAllProfiles()
140
-        {
141
-            $profile_array = array();
139
+		function getAllProfiles()
140
+		{
141
+			$profile_array = array();
142 142
             
143
-            try {
144
-                    $profiles = $this->analytics->management_webproperties->listManagementWebproperties('~all');
145
-                }
146
-                catch (Google_ServiceException $e)
147
-                {
148
-                    print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage();
149
-                }
150
-
151
-
152
-            if( !empty( $profiles->items ) )
153
-            {
154
-                foreach( $profiles->items as $profile )
155
-                {
156
-                    $profile_array[ $profile->id ] = str_replace('http://','',$profile->name );
157
-                }
158
-            }
159
-
160
-            return $profile_array;
161
-        }
143
+			try {
144
+					$profiles = $this->analytics->management_webproperties->listManagementWebproperties('~all');
145
+				}
146
+				catch (Google_ServiceException $e)
147
+				{
148
+					print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage();
149
+				}
150
+
151
+
152
+			if( !empty( $profiles->items ) )
153
+			{
154
+				foreach( $profiles->items as $profile )
155
+				{
156
+					$profile_array[ $profile->id ] = str_replace('http://','',$profile->name );
157
+				}
158
+			}
159
+
160
+			return $profile_array;
161
+		}
162 162
 
163 163
 	function getAnalyticsAccounts()
164 164
 	{
@@ -241,13 +241,13 @@  discard block
 block discarded – undo
241 241
 			$params['max-results'] = $limit;
242 242
 		}
243 243
            
244
-           // Just incase, the ga: is still used in the account id, strip it out to prevent it breaking
245
-           $filtered_id = str_replace( 'ga:', '', $this->accountId );
244
+		   // Just incase, the ga: is still used in the account id, strip it out to prevent it breaking
245
+		   $filtered_id = str_replace( 'ga:', '', $this->accountId );
246 246
            
247
-           if(!$filtered_id){
248
-                echo 'Error - Account ID is blank';
249
-                return false;
250
-           }
247
+		   if(!$filtered_id){
248
+				echo 'Error - Account ID is blank';
249
+				return false;
250
+		   }
251 251
 
252 252
 		if($realtime){
253 253
 			return $analytics->data_realtime->get(
Please login to merge, or discard this patch.
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
                 }
45 45
             catch (Google_ServiceException $e)
46 46
                 {
47
-                    print '(cas:48) There was an Analytics API service error ' . $e->getCode() . ':' . $e->getMessage();
47
+                    print '(cas:48) There was an Analytics API service error '.$e->getCode().':'.$e->getMessage();
48 48
 					return false;
49 49
                 }
50 50
 	}
@@ -59,13 +59,13 @@  discard block
 block discarded – undo
59 59
                 {
60 60
                     $this->client->setAccessToken($ga_google_authtoken);
61 61
 				}
62
-				catch( Google_AuthException $e )
62
+				catch (Google_AuthException $e)
63 63
                 {
64 64
                     print '(cas:72) GeoDirectory was unable to authenticate you with
65 65
                             Google using the Auth Token you pasted into the input box on the previous step. <br><br>
66 66
                             This could mean either you pasted the token wrong, or the time/date on your server is wrong,
67 67
                             or an SSL issue preventing Google from Authenticating. <br><br>
68
-                            <br><br><strong>Tech Info </strong> ' . $e->getCode() . ':' . $e->getMessage();
68
+                            <br><br><strong>Tech Info </strong> ' . $e->getCode().':'.$e->getMessage();
69 69
 
70 70
                     return false;
71 71
                 }
@@ -80,18 +80,18 @@  discard block
 block discarded – undo
80 80
                 {
81 81
                     $accessToken = $this->client->authenticate($authCode);
82 82
                 }
83
-                catch( Exception $e )
83
+                catch (Exception $e)
84 84
                 {
85 85
                     print '(cas:72) GeoDirectory was unable to authenticate you with
86 86
                             Google using the Auth Token you pasted into the input box on the previous step. <br><br>
87 87
                             This could mean either you pasted the token wrong, or the time/date on your server is wrong,
88 88
                             or an SSL issue preventing Google from Authenticating. <br><br>
89
-                            <br><br><strong>Tech Info </strong> ' . $e->getCode() . ':' . $e->getMessage();
89
+                            <br><br><strong>Tech Info </strong> ' . $e->getCode().':'.$e->getMessage();
90 90
 
91 91
                     return false;
92 92
                 }
93 93
 
94
-                if($accessToken)
94
+                if ($accessToken)
95 95
                 {
96 96
                     $this->client->setAccessToken($accessToken);
97 97
                     update_option('geodir_ga_auth_token', $accessToken);
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
                 }
103 103
             }
104 104
 
105
-            $this->token =  $this->client->getAccessToken();
105
+            $this->token = $this->client->getAccessToken();
106 106
             return true;
107 107
 	}
108 108
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 	function getSingleProfile()
116 116
 	{
117 117
             $webproperty_id = get_option('geodir_ga_account_id');
118
-            list($pre, $account_id, $post) = explode('-',$webproperty_id);
118
+            list($pre, $account_id, $post) = explode('-', $webproperty_id);
119 119
 
120 120
             if (empty($webproperty_id)) return false;
121 121
 
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
             }
125 125
             catch (Google_ServiceException $e)
126 126
             {
127
-                print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage();
127
+                print 'There was an Analytics API service error '.$e->getCode().': '.$e->getMessage();
128 128
                 return false;
129 129
             }
130 130
 
@@ -145,15 +145,15 @@  discard block
 block discarded – undo
145 145
                 }
146 146
                 catch (Google_ServiceException $e)
147 147
                 {
148
-                    print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage();
148
+                    print 'There was an Analytics API service error '.$e->getCode().': '.$e->getMessage();
149 149
                 }
150 150
 
151 151
 
152
-            if( !empty( $profiles->items ) )
152
+            if (!empty($profiles->items))
153 153
             {
154
-                foreach( $profiles->items as $profile )
154
+                foreach ($profiles->items as $profile)
155 155
                 {
156
-                    $profile_array[ $profile->id ] = str_replace('http://','',$profile->name );
156
+                    $profile_array[$profile->id] = str_replace('http://', '', $profile->name);
157 157
                 }
158 158
             }
159 159
 
@@ -242,20 +242,20 @@  discard block
 block discarded – undo
242 242
 		}
243 243
            
244 244
            // Just incase, the ga: is still used in the account id, strip it out to prevent it breaking
245
-           $filtered_id = str_replace( 'ga:', '', $this->accountId );
245
+           $filtered_id = str_replace('ga:', '', $this->accountId);
246 246
            
247
-           if(!$filtered_id){
247
+           if (!$filtered_id) {
248 248
                 echo 'Error - Account ID is blank';
249 249
                 return false;
250 250
            }
251 251
 
252
-		if($realtime){
252
+		if ($realtime) {
253 253
 			return $analytics->data_realtime->get(
254 254
 				'ga:'.$filtered_id,
255 255
 				$metric,
256 256
 				$params
257 257
 			);
258
-		}else{
258
+		} else {
259 259
 			return $analytics->data_ga->get(
260 260
 				'ga:'.$filtered_id,
261 261
 				$startDate,
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
 	 **/
280 280
 	function verifyStartDate($date)
281 281
 	{
282
-		if ( strtotime($date) > strtotime('2005-01-01') )
282
+		if (strtotime($date) > strtotime('2005-01-01'))
283 283
 			return $date;
284 284
 		else
285 285
 			return '2005-01-01';
Please login to merge, or discard this patch.
Braces   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -41,8 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
             try {
43 43
                     $this->analytics = new Google_Service_Analytics($this->client);
44
-                }
45
-            catch (Google_ServiceException $e)
44
+                } catch (Google_ServiceException $e)
46 45
                 {
47 46
                     print '(cas:48) There was an Analytics API service error ' . $e->getCode() . ':' . $e->getMessage();
48 47
 					return false;
@@ -58,8 +57,7 @@  discard block
 block discarded – undo
58 57
 				try
59 58
                 {
60 59
                     $this->client->setAccessToken($ga_google_authtoken);
61
-				}
62
-				catch( Google_AuthException $e )
60
+				} catch( Google_AuthException $e )
63 61
                 {
64 62
                     print '(cas:72) GeoDirectory was unable to authenticate you with
65 63
                             Google using the Auth Token you pasted into the input box on the previous step. <br><br>
@@ -69,18 +67,18 @@  discard block
 block discarded – undo
69 67
 
70 68
                     return false;
71 69
                 }
72
-            }
73
-            else
70
+            } else
74 71
             {
75 72
                 $authCode = get_option('geodir_ga_auth_code');
76 73
 
77
-                if (empty($authCode)) return false;
74
+                if (empty($authCode)) {
75
+                	return false;
76
+                }
78 77
 
79 78
                 try
80 79
                 {
81 80
                     $accessToken = $this->client->authenticate($authCode);
82
-                }
83
-                catch( Exception $e )
81
+                } catch( Exception $e )
84 82
                 {
85 83
                     print '(cas:72) GeoDirectory was unable to authenticate you with
86 84
                             Google using the Auth Token you pasted into the input box on the previous step. <br><br>
@@ -95,8 +93,7 @@  discard block
 block discarded – undo
95 93
                 {
96 94
                     $this->client->setAccessToken($accessToken);
97 95
                     update_option('geodir_ga_auth_token', $accessToken);
98
-                }
99
-                else
96
+                } else
100 97
                 {
101 98
                     return false;
102 99
                 }
@@ -117,19 +114,22 @@  discard block
 block discarded – undo
117 114
             $webproperty_id = get_option('geodir_ga_account_id');
118 115
             list($pre, $account_id, $post) = explode('-',$webproperty_id);
119 116
 
120
-            if (empty($webproperty_id)) return false;
117
+            if (empty($webproperty_id)) {
118
+            	return false;
119
+            }
121 120
 
122 121
             try {
123 122
                 $profiles = $this->analytics->management_profiles->listManagementProfiles($account_id, $webproperty_id);
124
-            }
125
-            catch (Google_ServiceException $e)
123
+            } catch (Google_ServiceException $e)
126 124
             {
127 125
                 print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage();
128 126
                 return false;
129 127
             }
130 128
 
131 129
             $profile_id = $profiles->items[0]->id;
132
-            if (empty($profile_id)) return false;
130
+            if (empty($profile_id)) {
131
+            	return false;
132
+            }
133 133
 
134 134
             $account_array = array();
135 135
             array_push($account_array, array('id'=>$profile_id, 'ga:webPropertyId'=>$webproperty_id));
@@ -142,8 +142,7 @@  discard block
 block discarded – undo
142 142
             
143 143
             try {
144 144
                     $profiles = $this->analytics->management_webproperties->listManagementWebproperties('~all');
145
-                }
146
-                catch (Google_ServiceException $e)
145
+                } catch (Google_ServiceException $e)
147 146
                 {
148 147
                     print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage();
149 148
                 }
@@ -255,7 +254,7 @@  discard block
 block discarded – undo
255 254
 				$metric,
256 255
 				$params
257 256
 			);
258
-		}else{
257
+		} else{
259 258
 			return $analytics->data_ga->get(
260 259
 				'ga:'.$filtered_id,
261 260
 				$startDate,
@@ -279,10 +278,11 @@  discard block
 block discarded – undo
279 278
 	 **/
280 279
 	function verifyStartDate($date)
281 280
 	{
282
-		if ( strtotime($date) > strtotime('2005-01-01') )
283
-			return $date;
284
-		else
285
-			return '2005-01-01';
281
+		if ( strtotime($date) > strtotime('2005-01-01') ) {
282
+					return $date;
283
+		} else {
284
+					return '2005-01-01';
285
+		}
286 286
 	}
287 287
 
288 288
 } // END class	
289 289
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-functions/google_analytics.php 4 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
  * @param string $page Page url to use in analytics filters.
56 56
  * @param bool   $ga_start The start date of the data to include in YYYY-MM-DD format.
57 57
  * @param bool   $ga_end The end date of the data to include in YYYY-MM-DD format.
58
- * @return string Html text content.
58
+ * @return false|null Html text content.
59 59
  */
60 60
 function geodir_getGoogleAnalytics($page, $ga_start, $ga_end)
61 61
 {
Please login to merge, or discard this patch.
Indentation   +128 added lines, -128 removed lines patch added patch discarded remove patch
@@ -17,34 +17,34 @@  discard block
 block discarded – undo
17 17
  */
18 18
 function geodir_sec2hms($sec, $padHours = false)
19 19
 {
20
-    // holds formatted string
21
-    $hms = "";
22
-    // there are 3600 seconds in an hour, so if we
23
-    // divide total seconds by 3600 and throw away
24
-    // the remainder, we've got the number of hours
25
-    $hours = intval(intval($sec) / 3600);
26
-
27
-    // add to $hms, with a leading 0 if asked for
28
-    $hms .= ($padHours) ? str_pad($hours, 2, "0", STR_PAD_LEFT) . ':' : $hours . ':';
29
-
30
-    // dividing the total seconds by 60 will give us
31
-    // the number of minutes, but we're interested in
32
-    // minutes past the hour: to get that, we need to
33
-    // divide by 60 again and keep the remainder
34
-    $minutes = intval(($sec / 60) % 60);
35
-
36
-    // then add to $hms (with a leading 0 if needed)
37
-    $hms .= str_pad($minutes, 2, "0", STR_PAD_LEFT) . ':';
38
-
39
-    // seconds are simple - just divide the total
40
-    // seconds by 60 and keep the remainder
41
-    $seconds = intval($sec % 60);
42
-
43
-    // add to $hms, again with a leading 0 if needed
44
-    $hms .= str_pad($seconds, 2, "0", STR_PAD_LEFT);
45
-
46
-    // done!
47
-    return $hms;
20
+	// holds formatted string
21
+	$hms = "";
22
+	// there are 3600 seconds in an hour, so if we
23
+	// divide total seconds by 3600 and throw away
24
+	// the remainder, we've got the number of hours
25
+	$hours = intval(intval($sec) / 3600);
26
+
27
+	// add to $hms, with a leading 0 if asked for
28
+	$hms .= ($padHours) ? str_pad($hours, 2, "0", STR_PAD_LEFT) . ':' : $hours . ':';
29
+
30
+	// dividing the total seconds by 60 will give us
31
+	// the number of minutes, but we're interested in
32
+	// minutes past the hour: to get that, we need to
33
+	// divide by 60 again and keep the remainder
34
+	$minutes = intval(($sec / 60) % 60);
35
+
36
+	// then add to $hms (with a leading 0 if needed)
37
+	$hms .= str_pad($minutes, 2, "0", STR_PAD_LEFT) . ':';
38
+
39
+	// seconds are simple - just divide the total
40
+	// seconds by 60 and keep the remainder
41
+	$seconds = intval($sec % 60);
42
+
43
+	// add to $hms, again with a leading 0 if needed
44
+	$hms .= str_pad($seconds, 2, "0", STR_PAD_LEFT);
45
+
46
+	// done!
47
+	return $hms;
48 48
 }
49 49
 
50 50
 /**
@@ -60,122 +60,122 @@  discard block
 block discarded – undo
60 60
 function geodir_getGoogleAnalytics($page, $ga_start, $ga_end)
61 61
 {
62 62
 
63
-    // NEW ANALYTICS
64
-
65
-    $start_date = '';
66
-    $end_date = '';
67
-    $dimensions = '';
68
-    $sort = '';
69
-    $filters = "ga:pagePath==".$page;
70
-    $metrics = "ga:pageviews";
71
-    $realtime = false;
72
-    $limit = false;
73
-    if(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisweek'){
74
-        $start_date = date('Y-m-d', strtotime("-6 day"));
75
-        $end_date = date('Y-m-d');
76
-        $dimensions = "ga:date,ga:nthDay";
77
-    }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastweek'){
78
-        $start_date = date('Y-m-d', strtotime("-13 day"));
79
-        $end_date = date('Y-m-d', strtotime("-7 day"));
80
-        $dimensions = "ga:date,ga:nthDay";
81
-    }
82
-    elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisyear'){
83
-        $start_date = date('Y')."-01-01";
84
-        $end_date = date('Y-m-d');
85
-        $dimensions = "ga:month,ga:nthMonth";
86
-    }
87
-    elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastyear'){
88
-        $start_date = date('Y', strtotime("-1 year"))."-01-01";
89
-        $end_date = date('Y', strtotime("-1 year"))."-12-31";
90
-        $dimensions = "ga:month,ga:nthMonth";
91
-    }
92
-    elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='country'){
93
-        $start_date = "14daysAgo";
94
-        $end_date = "yesterday";
95
-        $dimensions = "ga:country";
96
-        $sort = "ga:pageviews";
97
-        $limit  = 5;
98
-    }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='realtime'){
99
-        $metrics = "rt:activeUsers";
100
-        $realtime = true;
101
-    }
102
-
103
-    # Create a new Gdata call
104
-    $gaApi = new GDGoogleAnalyticsStats();
105
-
106
-    # Check if Google sucessfully logged in
107
-    if (!$gaApi->checkLogin()){
108
-        echo json_encode(array('error'=>__('Please check Google Analytics Settings','geodirectory')));
109
-        return false;
110
-    }
111
-
112
-    $account = $gaApi->getSingleProfile();
113
-
114
-    if(!isset($account[0]['id'])){
115
-        echo json_encode(array('error'=>__('Please check Google Analytics Settings','geodirectory')));
116
-        return false;
117
-    }
118
-
119
-    $account = $account[0]['id'];
120
-
121
-    # Set the account to the one requested
122
-    $gaApi->setAccount($account);
123
-
124
-
125
-
126
-    # Get the metrics needed to build the visits graph;
127
-    try {
128
-        $stats = $gaApi->getMetrics($metrics, $start_date, $end_date, $dimensions, $sort, $filters, $limit , $realtime);
129
-    }
130
-    catch (Exception $e) {
131
-        print 'GA Summary Widget - there was a service error ' . $e->getCode() . ':' . $e->getMessage();
132
-    }
133
-
134
-
135
-    //print_r($stats);
136
-    echo json_encode($stats);
137
-    exit;
63
+	// NEW ANALYTICS
64
+
65
+	$start_date = '';
66
+	$end_date = '';
67
+	$dimensions = '';
68
+	$sort = '';
69
+	$filters = "ga:pagePath==".$page;
70
+	$metrics = "ga:pageviews";
71
+	$realtime = false;
72
+	$limit = false;
73
+	if(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisweek'){
74
+		$start_date = date('Y-m-d', strtotime("-6 day"));
75
+		$end_date = date('Y-m-d');
76
+		$dimensions = "ga:date,ga:nthDay";
77
+	}elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastweek'){
78
+		$start_date = date('Y-m-d', strtotime("-13 day"));
79
+		$end_date = date('Y-m-d', strtotime("-7 day"));
80
+		$dimensions = "ga:date,ga:nthDay";
81
+	}
82
+	elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisyear'){
83
+		$start_date = date('Y')."-01-01";
84
+		$end_date = date('Y-m-d');
85
+		$dimensions = "ga:month,ga:nthMonth";
86
+	}
87
+	elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastyear'){
88
+		$start_date = date('Y', strtotime("-1 year"))."-01-01";
89
+		$end_date = date('Y', strtotime("-1 year"))."-12-31";
90
+		$dimensions = "ga:month,ga:nthMonth";
91
+	}
92
+	elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='country'){
93
+		$start_date = "14daysAgo";
94
+		$end_date = "yesterday";
95
+		$dimensions = "ga:country";
96
+		$sort = "ga:pageviews";
97
+		$limit  = 5;
98
+	}elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='realtime'){
99
+		$metrics = "rt:activeUsers";
100
+		$realtime = true;
101
+	}
102
+
103
+	# Create a new Gdata call
104
+	$gaApi = new GDGoogleAnalyticsStats();
105
+
106
+	# Check if Google sucessfully logged in
107
+	if (!$gaApi->checkLogin()){
108
+		echo json_encode(array('error'=>__('Please check Google Analytics Settings','geodirectory')));
109
+		return false;
110
+	}
111
+
112
+	$account = $gaApi->getSingleProfile();
113
+
114
+	if(!isset($account[0]['id'])){
115
+		echo json_encode(array('error'=>__('Please check Google Analytics Settings','geodirectory')));
116
+		return false;
117
+	}
118
+
119
+	$account = $account[0]['id'];
120
+
121
+	# Set the account to the one requested
122
+	$gaApi->setAccount($account);
123
+
124
+
125
+
126
+	# Get the metrics needed to build the visits graph;
127
+	try {
128
+		$stats = $gaApi->getMetrics($metrics, $start_date, $end_date, $dimensions, $sort, $filters, $limit , $realtime);
129
+	}
130
+	catch (Exception $e) {
131
+		print 'GA Summary Widget - there was a service error ' . $e->getCode() . ':' . $e->getMessage();
132
+	}
133
+
134
+
135
+	//print_r($stats);
136
+	echo json_encode($stats);
137
+	exit;
138 138
 
139 139
 
140 140
 }// end GA function
141 141
 
142 142
 
143 143
 function geodir_ga_get_token(){
144
-    $at = get_option('gd_ga_access_token');
145
-    $use_url = "https://www.googleapis.com/oauth2/v1/tokeninfo?access_token=".$at;
146
-    $response =  wp_remote_get($use_url,array('timeout' => 15));
144
+	$at = get_option('gd_ga_access_token');
145
+	$use_url = "https://www.googleapis.com/oauth2/v1/tokeninfo?access_token=".$at;
146
+	$response =  wp_remote_get($use_url,array('timeout' => 15));
147 147
 
148
-    if(!empty($response['response']['code']) && $response['response']['code']==200) {//access token is valid
148
+	if(!empty($response['response']['code']) && $response['response']['code']==200) {//access token is valid
149 149
 
150
-    return $at;
151
-    }else{//else get new access token
150
+	return $at;
151
+	}else{//else get new access token
152 152
 
153
-        $refresh_at = get_option('gd_ga_refresh_token');
154
-        if(!$refresh_at){
155
-            echo json_encode(array('error'=>__('Not authorized, please click authorized in GD > Google analytic settings.', 'geodirectory')));exit;
156
-        }
153
+		$refresh_at = get_option('gd_ga_refresh_token');
154
+		if(!$refresh_at){
155
+			echo json_encode(array('error'=>__('Not authorized, please click authorized in GD > Google analytic settings.', 'geodirectory')));exit;
156
+		}
157 157
 
158
-        $rat_url = "https://www.googleapis.com/oauth2/v3/token?";
159
-        $client_id = "client_id=".get_option('geodir_ga_client_id');
160
-        $client_secret = "&client_secret=".get_option('geodir_ga_client_secret');
161
-        $refresh_token = "&refresh_token=".$refresh_at;
162
-        $grant_type = "&grant_type=refresh_token";
158
+		$rat_url = "https://www.googleapis.com/oauth2/v3/token?";
159
+		$client_id = "client_id=".get_option('geodir_ga_client_id');
160
+		$client_secret = "&client_secret=".get_option('geodir_ga_client_secret');
161
+		$refresh_token = "&refresh_token=".$refresh_at;
162
+		$grant_type = "&grant_type=refresh_token";
163 163
 
164
-        $rat_url_use = $rat_url.$client_id.$client_secret.$refresh_token.$grant_type;
164
+		$rat_url_use = $rat_url.$client_id.$client_secret.$refresh_token.$grant_type;
165 165
 
166
-        $rat_response =  wp_remote_post($rat_url_use,array('timeout' => 15));
167
-        if(!empty($rat_response['response']['code']) && $rat_response['response']['code']==200) {
168
-            $parts = json_decode($rat_response['body']);
166
+		$rat_response =  wp_remote_post($rat_url_use,array('timeout' => 15));
167
+		if(!empty($rat_response['response']['code']) && $rat_response['response']['code']==200) {
168
+			$parts = json_decode($rat_response['body']);
169 169
 
170 170
 
171
-            update_option('gd_ga_access_token', $parts->access_token);
172
-            return $parts->access_token;
171
+			update_option('gd_ga_access_token', $parts->access_token);
172
+			return $parts->access_token;
173 173
 
174
-        }else{
175
-            echo json_encode(array('error'=>__('Login failed', 'geodirectory')));exit;
176
-        }
174
+		}else{
175
+			echo json_encode(array('error'=>__('Login failed', 'geodirectory')));exit;
176
+		}
177 177
 
178 178
 
179
-    }
179
+	}
180 180
 
181 181
 }
182 182
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     $hours = intval(intval($sec) / 3600);
26 26
 
27 27
     // add to $hms, with a leading 0 if asked for
28
-    $hms .= ($padHours) ? str_pad($hours, 2, "0", STR_PAD_LEFT) . ':' : $hours . ':';
28
+    $hms .= ($padHours) ? str_pad($hours, 2, "0", STR_PAD_LEFT).':' : $hours.':';
29 29
 
30 30
     // dividing the total seconds by 60 will give us
31 31
     // the number of minutes, but we're interested in
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     $minutes = intval(($sec / 60) % 60);
35 35
 
36 36
     // then add to $hms (with a leading 0 if needed)
37
-    $hms .= str_pad($minutes, 2, "0", STR_PAD_LEFT) . ':';
37
+    $hms .= str_pad($minutes, 2, "0", STR_PAD_LEFT).':';
38 38
 
39 39
     // seconds are simple - just divide the total
40 40
     // seconds by 60 and keep the remainder
@@ -70,32 +70,32 @@  discard block
 block discarded – undo
70 70
     $metrics = "ga:pageviews";
71 71
     $realtime = false;
72 72
     $limit = false;
73
-    if(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisweek'){
73
+    if (isset($_REQUEST['ga_type']) && $_REQUEST['ga_type'] == 'thisweek') {
74 74
         $start_date = date('Y-m-d', strtotime("-6 day"));
75 75
         $end_date = date('Y-m-d');
76 76
         $dimensions = "ga:date,ga:nthDay";
77
-    }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastweek'){
77
+    }elseif (isset($_REQUEST['ga_type']) && $_REQUEST['ga_type'] == 'lastweek') {
78 78
         $start_date = date('Y-m-d', strtotime("-13 day"));
79 79
         $end_date = date('Y-m-d', strtotime("-7 day"));
80 80
         $dimensions = "ga:date,ga:nthDay";
81 81
     }
82
-    elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisyear'){
82
+    elseif (isset($_REQUEST['ga_type']) && $_REQUEST['ga_type'] == 'thisyear') {
83 83
         $start_date = date('Y')."-01-01";
84 84
         $end_date = date('Y-m-d');
85 85
         $dimensions = "ga:month,ga:nthMonth";
86 86
     }
87
-    elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastyear'){
87
+    elseif (isset($_REQUEST['ga_type']) && $_REQUEST['ga_type'] == 'lastyear') {
88 88
         $start_date = date('Y', strtotime("-1 year"))."-01-01";
89 89
         $end_date = date('Y', strtotime("-1 year"))."-12-31";
90 90
         $dimensions = "ga:month,ga:nthMonth";
91 91
     }
92
-    elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='country'){
92
+    elseif (isset($_REQUEST['ga_type']) && $_REQUEST['ga_type'] == 'country') {
93 93
         $start_date = "14daysAgo";
94 94
         $end_date = "yesterday";
95 95
         $dimensions = "ga:country";
96 96
         $sort = "ga:pageviews";
97
-        $limit  = 5;
98
-    }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='realtime'){
97
+        $limit = 5;
98
+    }elseif (isset($_REQUEST['ga_type']) && $_REQUEST['ga_type'] == 'realtime') {
99 99
         $metrics = "rt:activeUsers";
100 100
         $realtime = true;
101 101
     }
@@ -104,15 +104,15 @@  discard block
 block discarded – undo
104 104
     $gaApi = new GDGoogleAnalyticsStats();
105 105
 
106 106
     # Check if Google sucessfully logged in
107
-    if (!$gaApi->checkLogin()){
108
-        echo json_encode(array('error'=>__('Please check Google Analytics Settings','geodirectory')));
107
+    if (!$gaApi->checkLogin()) {
108
+        echo json_encode(array('error'=>__('Please check Google Analytics Settings', 'geodirectory')));
109 109
         return false;
110 110
     }
111 111
 
112 112
     $account = $gaApi->getSingleProfile();
113 113
 
114
-    if(!isset($account[0]['id'])){
115
-        echo json_encode(array('error'=>__('Please check Google Analytics Settings','geodirectory')));
114
+    if (!isset($account[0]['id'])) {
115
+        echo json_encode(array('error'=>__('Please check Google Analytics Settings', 'geodirectory')));
116 116
         return false;
117 117
     }
118 118
 
@@ -125,10 +125,10 @@  discard block
 block discarded – undo
125 125
 
126 126
     # Get the metrics needed to build the visits graph;
127 127
     try {
128
-        $stats = $gaApi->getMetrics($metrics, $start_date, $end_date, $dimensions, $sort, $filters, $limit , $realtime);
128
+        $stats = $gaApi->getMetrics($metrics, $start_date, $end_date, $dimensions, $sort, $filters, $limit, $realtime);
129 129
     }
130 130
     catch (Exception $e) {
131
-        print 'GA Summary Widget - there was a service error ' . $e->getCode() . ':' . $e->getMessage();
131
+        print 'GA Summary Widget - there was a service error '.$e->getCode().':'.$e->getMessage();
132 132
     }
133 133
 
134 134
 
@@ -140,19 +140,19 @@  discard block
 block discarded – undo
140 140
 }// end GA function
141 141
 
142 142
 
143
-function geodir_ga_get_token(){
143
+function geodir_ga_get_token() {
144 144
     $at = get_option('gd_ga_access_token');
145 145
     $use_url = "https://www.googleapis.com/oauth2/v1/tokeninfo?access_token=".$at;
146
-    $response =  wp_remote_get($use_url,array('timeout' => 15));
146
+    $response = wp_remote_get($use_url, array('timeout' => 15));
147 147
 
148
-    if(!empty($response['response']['code']) && $response['response']['code']==200) {//access token is valid
148
+    if (!empty($response['response']['code']) && $response['response']['code'] == 200) {//access token is valid
149 149
 
150 150
     return $at;
151
-    }else{//else get new access token
151
+    } else {//else get new access token
152 152
 
153 153
         $refresh_at = get_option('gd_ga_refresh_token');
154
-        if(!$refresh_at){
155
-            echo json_encode(array('error'=>__('Not authorized, please click authorized in GD > Google analytic settings.', 'geodirectory')));exit;
154
+        if (!$refresh_at) {
155
+            echo json_encode(array('error'=>__('Not authorized, please click authorized in GD > Google analytic settings.', 'geodirectory'))); exit;
156 156
         }
157 157
 
158 158
         $rat_url = "https://www.googleapis.com/oauth2/v3/token?";
@@ -163,16 +163,16 @@  discard block
 block discarded – undo
163 163
 
164 164
         $rat_url_use = $rat_url.$client_id.$client_secret.$refresh_token.$grant_type;
165 165
 
166
-        $rat_response =  wp_remote_post($rat_url_use,array('timeout' => 15));
167
-        if(!empty($rat_response['response']['code']) && $rat_response['response']['code']==200) {
166
+        $rat_response = wp_remote_post($rat_url_use, array('timeout' => 15));
167
+        if (!empty($rat_response['response']['code']) && $rat_response['response']['code'] == 200) {
168 168
             $parts = json_decode($rat_response['body']);
169 169
 
170 170
 
171 171
             update_option('gd_ga_access_token', $parts->access_token);
172 172
             return $parts->access_token;
173 173
 
174
-        }else{
175
-            echo json_encode(array('error'=>__('Login failed', 'geodirectory')));exit;
174
+        } else {
175
+            echo json_encode(array('error'=>__('Login failed', 'geodirectory'))); exit;
176 176
         }
177 177
 
178 178
 
Please login to merge, or discard this patch.
Braces   +8 added lines, -12 removed lines patch added patch discarded remove patch
@@ -74,28 +74,25 @@  discard block
 block discarded – undo
74 74
         $start_date = date('Y-m-d', strtotime("-6 day"));
75 75
         $end_date = date('Y-m-d');
76 76
         $dimensions = "ga:date,ga:nthDay";
77
-    }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastweek'){
77
+    } elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastweek'){
78 78
         $start_date = date('Y-m-d', strtotime("-13 day"));
79 79
         $end_date = date('Y-m-d', strtotime("-7 day"));
80 80
         $dimensions = "ga:date,ga:nthDay";
81
-    }
82
-    elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisyear'){
81
+    } elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisyear'){
83 82
         $start_date = date('Y')."-01-01";
84 83
         $end_date = date('Y-m-d');
85 84
         $dimensions = "ga:month,ga:nthMonth";
86
-    }
87
-    elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastyear'){
85
+    } elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastyear'){
88 86
         $start_date = date('Y', strtotime("-1 year"))."-01-01";
89 87
         $end_date = date('Y', strtotime("-1 year"))."-12-31";
90 88
         $dimensions = "ga:month,ga:nthMonth";
91
-    }
92
-    elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='country'){
89
+    } elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='country'){
93 90
         $start_date = "14daysAgo";
94 91
         $end_date = "yesterday";
95 92
         $dimensions = "ga:country";
96 93
         $sort = "ga:pageviews";
97 94
         $limit  = 5;
98
-    }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='realtime'){
95
+    } elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='realtime'){
99 96
         $metrics = "rt:activeUsers";
100 97
         $realtime = true;
101 98
     }
@@ -126,8 +123,7 @@  discard block
 block discarded – undo
126 123
     # Get the metrics needed to build the visits graph;
127 124
     try {
128 125
         $stats = $gaApi->getMetrics($metrics, $start_date, $end_date, $dimensions, $sort, $filters, $limit , $realtime);
129
-    }
130
-    catch (Exception $e) {
126
+    } catch (Exception $e) {
131 127
         print 'GA Summary Widget - there was a service error ' . $e->getCode() . ':' . $e->getMessage();
132 128
     }
133 129
 
@@ -148,7 +144,7 @@  discard block
 block discarded – undo
148 144
     if(!empty($response['response']['code']) && $response['response']['code']==200) {//access token is valid
149 145
 
150 146
     return $at;
151
-    }else{//else get new access token
147
+    } else{//else get new access token
152 148
 
153 149
         $refresh_at = get_option('gd_ga_refresh_token');
154 150
         if(!$refresh_at){
@@ -171,7 +167,7 @@  discard block
 block discarded – undo
171 167
             update_option('gd_ga_access_token', $parts->access_token);
172 168
             return $parts->access_token;
173 169
 
174
-        }else{
170
+        } else{
175 171
             echo json_encode(array('error'=>__('Login failed', 'geodirectory')));exit;
176 172
         }
177 173
 
Please login to merge, or discard this patch.
geodirectory.php 3 patches
Braces   +41 added lines, -13 removed lines patch added patch discarded remove patch
@@ -79,43 +79,71 @@
 block discarded – undo
79 79
 /**
80 80
  * Do not store any revisions (except the one autosave per post).
81 81
  */
82
-if (!defined('WP_POST_REVISIONS')) define('WP_POST_REVISIONS', 0);
82
+if (!defined('WP_POST_REVISIONS')) {
83
+	define('WP_POST_REVISIONS', 0);
84
+}
83 85
 
84 86
 /**
85 87
  * Define constants
86 88
  */
87
-if(!defined('GEODIRECTORY_PLUGIN_DIR')) define('GEODIRECTORY_PLUGIN_DIR', plugin_dir_path( __FILE__ ));
89
+if(!defined('GEODIRECTORY_PLUGIN_DIR')) {
90
+	define('GEODIRECTORY_PLUGIN_DIR', plugin_dir_path( __FILE__ ));
91
+}
88 92
 
89 93
 /*
90 94
  * Declare database table names. All since version 1.0.0
91 95
  */
92 96
 
93 97
 /** Define the database name for the countries table. */
94
-if (!defined('GEODIR_COUNTRIES_TABLE')) define('GEODIR_COUNTRIES_TABLE', $plugin_prefix . 'countries');
98
+if (!defined('GEODIR_COUNTRIES_TABLE')) {
99
+	define('GEODIR_COUNTRIES_TABLE', $plugin_prefix . 'countries');
100
+}
95 101
 /** Define the database name for the custom fields table. */
96
-if (!defined('GEODIR_CUSTOM_FIELDS_TABLE')) define('GEODIR_CUSTOM_FIELDS_TABLE', $plugin_prefix . 'custom_fields');
102
+if (!defined('GEODIR_CUSTOM_FIELDS_TABLE')) {
103
+	define('GEODIR_CUSTOM_FIELDS_TABLE', $plugin_prefix . 'custom_fields');
104
+}
97 105
 /** Define the database name for the icons table. */
98
-if (!defined('GEODIR_ICON_TABLE')) define('GEODIR_ICON_TABLE', $plugin_prefix . 'post_icon');
106
+if (!defined('GEODIR_ICON_TABLE')) {
107
+	define('GEODIR_ICON_TABLE', $plugin_prefix . 'post_icon');
108
+}
99 109
 /** Define the database name for the attachments table. */
100
-if (!defined('GEODIR_ATTACHMENT_TABLE')) define('GEODIR_ATTACHMENT_TABLE', $plugin_prefix . 'attachments');
110
+if (!defined('GEODIR_ATTACHMENT_TABLE')) {
111
+	define('GEODIR_ATTACHMENT_TABLE', $plugin_prefix . 'attachments');
112
+}
101 113
 /** Define the database name for the review table. */
102
-if (!defined('GEODIR_REVIEW_TABLE')) define('GEODIR_REVIEW_TABLE', $plugin_prefix . 'post_review');
114
+if (!defined('GEODIR_REVIEW_TABLE')) {
115
+	define('GEODIR_REVIEW_TABLE', $plugin_prefix . 'post_review');
116
+}
103 117
 /** Define the database name for the custom sort fields table. */
104
-if (!defined('GEODIR_CUSTOM_SORT_FIELDS_TABLE')) define('GEODIR_CUSTOM_SORT_FIELDS_TABLE', $plugin_prefix . 'custom_sort_fields');
118
+if (!defined('GEODIR_CUSTOM_SORT_FIELDS_TABLE')) {
119
+	define('GEODIR_CUSTOM_SORT_FIELDS_TABLE', $plugin_prefix . 'custom_sort_fields');
120
+}
105 121
 
106 122
 /*
107 123
  * Define our Google Analytic app settings
108 124
  */
109
-if (!defined('GEODIR_GA_CLIENTID')) define('GEODIR_GA_CLIENTID', '687912069872-sdpsjssrdt7t3ao1dnv1ib71hkckbt5s.apps.googleusercontent.com');
110
-if (!defined('GEODIR_GA_CLIENTSECRET')) define('GEODIR_GA_CLIENTSECRET', 'yBVkDpqJ1B9nAETHy738Zn8C'); //don't worry - this don't need to be secret in our case
111
-if (!defined('GEODIR_GA_REDIRECT')) define('GEODIR_GA_REDIRECT', 'urn:ietf:wg:oauth:2.0:oob');
112
-if (!defined('GEODIR_GA_SCOPE')) define('GEODIR_GA_SCOPE', 'https://www.googleapis.com/auth/analytics');//.readonly
125
+if (!defined('GEODIR_GA_CLIENTID')) {
126
+	define('GEODIR_GA_CLIENTID', '687912069872-sdpsjssrdt7t3ao1dnv1ib71hkckbt5s.apps.googleusercontent.com');
127
+}
128
+if (!defined('GEODIR_GA_CLIENTSECRET')) {
129
+	define('GEODIR_GA_CLIENTSECRET', 'yBVkDpqJ1B9nAETHy738Zn8C');
130
+}
131
+//don't worry - this don't need to be secret in our case
132
+if (!defined('GEODIR_GA_REDIRECT')) {
133
+	define('GEODIR_GA_REDIRECT', 'urn:ietf:wg:oauth:2.0:oob');
134
+}
135
+if (!defined('GEODIR_GA_SCOPE')) {
136
+	define('GEODIR_GA_SCOPE', 'https://www.googleapis.com/auth/analytics');
137
+}
138
+//.readonly
113 139
 
114 140
 
115 141
 /*
116 142
  * Localisation items.
117 143
  */
118
-if (!defined('GEODIRECTORY_TEXTDOMAIN')) define('GEODIRECTORY_TEXTDOMAIN', 'geodirectory');
144
+if (!defined('GEODIRECTORY_TEXTDOMAIN')) {
145
+	define('GEODIRECTORY_TEXTDOMAIN', 'geodirectory');
146
+}
119 147
 
120 148
 // Load geodirectory plugin textdomain.
121 149
 add_action( 'init', 'geodir_load_textdomain' );
Please login to merge, or discard this patch.
Indentation   +91 added lines, -91 removed lines patch added patch discarded remove patch
@@ -31,30 +31,30 @@  discard block
 block discarded – undo
31 31
  * CHECK FOR OLD COMPATIBILITY PACKS AND DISABLE IF THEY ARE ACTIVE
32 32
  */
33 33
 if (is_admin()) {
34
-    /**
35
-     * Include WordPress core file so we can use core functions to check for active plugins.
36
-     */
37
-    include_once(ABSPATH . 'wp-admin/includes/plugin.php');
34
+	/**
35
+	 * Include WordPress core file so we can use core functions to check for active plugins.
36
+	 */
37
+	include_once(ABSPATH . 'wp-admin/includes/plugin.php');
38 38
 
39
-    if (is_plugin_active('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php')) {
40
-        deactivate_plugins('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php');
41
-    }
39
+	if (is_plugin_active('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php')) {
40
+		deactivate_plugins('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php');
41
+	}
42 42
 
43
-    if (is_plugin_active('geodirectory-x-theme-compatibility-pack/geodir_x_compatibility.php')) {
44
-        deactivate_plugins('geodirectory-x-theme-compatibility-pack/geodir_x_compatibility.php');
45
-    }
43
+	if (is_plugin_active('geodirectory-x-theme-compatibility-pack/geodir_x_compatibility.php')) {
44
+		deactivate_plugins('geodirectory-x-theme-compatibility-pack/geodir_x_compatibility.php');
45
+	}
46 46
 
47
-    if (is_plugin_active('geodirectory-enfold-theme-compatibility-pack/geodir_enfold_compatibility.php')) {
48
-        deactivate_plugins('geodirectory-enfold-theme-compatibility-pack/geodir_enfold_compatibility.php');
49
-    }
47
+	if (is_plugin_active('geodirectory-enfold-theme-compatibility-pack/geodir_enfold_compatibility.php')) {
48
+		deactivate_plugins('geodirectory-enfold-theme-compatibility-pack/geodir_enfold_compatibility.php');
49
+	}
50 50
 
51
-    if (is_plugin_active('geodir_avada_compatibility/geodir_avada_compatibility.php')) {
52
-        deactivate_plugins('geodir_avada_compatibility/geodir_avada_compatibility.php');
53
-    }
51
+	if (is_plugin_active('geodir_avada_compatibility/geodir_avada_compatibility.php')) {
52
+		deactivate_plugins('geodir_avada_compatibility/geodir_avada_compatibility.php');
53
+	}
54 54
 
55
-    if (is_plugin_active('geodir_compat_pack_divi/geodir_divi_compatibility.php')) {
56
-        deactivate_plugins('geodir_compat_pack_divi/geodir_divi_compatibility.php');
57
-    }
55
+	if (is_plugin_active('geodir_compat_pack_divi/geodir_divi_compatibility.php')) {
56
+		deactivate_plugins('geodir_compat_pack_divi/geodir_divi_compatibility.php');
57
+	}
58 58
 
59 59
 }
60 60
 
@@ -130,19 +130,19 @@  discard block
 block discarded – undo
130 130
  * @package GeoDirectory
131 131
  */
132 132
 function geodir_error_log($log){
133
-    /*
133
+	/*
134 134
      * A filter to override the WP_DEBUG setting for function geodir_error_log().
135 135
      *
136 136
      * @since 1.5.7
137 137
      */
138
-    $should_log = apply_filters( 'geodir_log_errors', WP_DEBUG);
139
-    if ( true === $should_log ) {
140
-        if ( is_array( $log ) || is_object( $log ) ) {
141
-            error_log( print_r( $log, true ) );
142
-        } else {
143
-            error_log( $log );
144
-        }
145
-    }
138
+	$should_log = apply_filters( 'geodir_log_errors', WP_DEBUG);
139
+	if ( true === $should_log ) {
140
+		if ( is_array( $log ) || is_object( $log ) ) {
141
+			error_log( print_r( $log, true ) );
142
+		} else {
143
+			error_log( $log );
144
+		}
145
+	}
146 146
 }
147 147
 /**
148 148
  * Include all plugin functions.
@@ -181,72 +181,72 @@  discard block
 block discarded – undo
181 181
  */
182 182
 if (is_admin() || defined( 'GD_TESTING_MODE' ) || ( defined( 'WP_CLI' ) && WP_CLI )) {
183 183
 
184
-    /**
185
-     * Include functions used in admin area only.
186
-     *
187
-     * @since 1.0.0
188
-     */
189
-    require_once('geodirectory-admin/admin_functions.php');
190
-    /**
191
-     * Most actions/hooks used in admin area only are called from here.
192
-     *
193
-     * @since 1.6.11
194
-     */
195
-    require_once('geodirectory-admin/admin_dummy_data_functions.php');
196
-    /**
197
-     * Most actions/hooks used in admin area only are called from here.
198
-     *
199
-     * @since 1.0.0
200
-     */
201
-    require_once('geodirectory-admin/admin_hooks_actions.php');
202
-    /**
203
-     * Most admin JS and CSS is called from here.
204
-     *
205
-     * @since 1.0.0
206
-     */
207
-    require_once('geodirectory-admin/admin_template_tags.php');
208
-    /**
209
-     * Include Google Analytics Class.
210
-     *
211
-     * @since 1.6.11
212
-     */
213
-    require_once('geodirectory-admin/class.analytics.stats.php');
214
-    /**
215
-     * Include any functions needed for upgrades.
216
-     *
217
-     * @since 1.0.0
218
-     */
219
-    require_once(geodir_plugin_path() . '/upgrade.php');
220
-    if (get_option('geodir_installed') != 1) {
221
-        /**
222
-         * Define language constants, here as they are not loaded yet.
223
-         *
224
-         * @since 1.0.0
225
-         */
226
-        require_once(geodir_plugin_path() . '/language.php');
227
-        /**
228
-         * Include the plugin install file that sets up the databases and any options on first run.
229
-         *
230
-         * @since 1.0.0
231
-         */
232
-        require_once('geodirectory-admin/admin_install.php');
233
-        register_activation_hook(__FILE__, 'geodir_activation');
234
-    }
235
-    register_deactivation_hook(__FILE__, 'geodir_deactivation');
236
-
237
-    /*
184
+	/**
185
+	 * Include functions used in admin area only.
186
+	 *
187
+	 * @since 1.0.0
188
+	 */
189
+	require_once('geodirectory-admin/admin_functions.php');
190
+	/**
191
+	 * Most actions/hooks used in admin area only are called from here.
192
+	 *
193
+	 * @since 1.6.11
194
+	 */
195
+	require_once('geodirectory-admin/admin_dummy_data_functions.php');
196
+	/**
197
+	 * Most actions/hooks used in admin area only are called from here.
198
+	 *
199
+	 * @since 1.0.0
200
+	 */
201
+	require_once('geodirectory-admin/admin_hooks_actions.php');
202
+	/**
203
+	 * Most admin JS and CSS is called from here.
204
+	 *
205
+	 * @since 1.0.0
206
+	 */
207
+	require_once('geodirectory-admin/admin_template_tags.php');
208
+	/**
209
+	 * Include Google Analytics Class.
210
+	 *
211
+	 * @since 1.6.11
212
+	 */
213
+	require_once('geodirectory-admin/class.analytics.stats.php');
214
+	/**
215
+	 * Include any functions needed for upgrades.
216
+	 *
217
+	 * @since 1.0.0
218
+	 */
219
+	require_once(geodir_plugin_path() . '/upgrade.php');
220
+	if (get_option('geodir_installed') != 1) {
221
+		/**
222
+		 * Define language constants, here as they are not loaded yet.
223
+		 *
224
+		 * @since 1.0.0
225
+		 */
226
+		require_once(geodir_plugin_path() . '/language.php');
227
+		/**
228
+		 * Include the plugin install file that sets up the databases and any options on first run.
229
+		 *
230
+		 * @since 1.0.0
231
+		 */
232
+		require_once('geodirectory-admin/admin_install.php');
233
+		register_activation_hook(__FILE__, 'geodir_activation');
234
+	}
235
+	register_deactivation_hook(__FILE__, 'geodir_deactivation');
236
+
237
+	/*
238 238
      * Show a upgrade warning message if applicable.
239 239
      *
240 240
      * @since 1.5.6
241 241
      */
242
-    global $pagenow;
243
-    if ( 'plugins.php' === $pagenow )
244
-    {
245
-        // Better update message
246
-        $file   = basename( __FILE__ );
247
-        $folder = basename( dirname( __FILE__ ) );
248
-        $hook = "in_plugin_update_message-{$folder}/{$file}";
249
-        add_action( $hook, 'geodire_admin_upgrade_notice', 20, 2 );
250
-    }
242
+	global $pagenow;
243
+	if ( 'plugins.php' === $pagenow )
244
+	{
245
+		// Better update message
246
+		$file   = basename( __FILE__ );
247
+		$folder = basename( dirname( __FILE__ ) );
248
+		$hook = "in_plugin_update_message-{$folder}/{$file}";
249
+		add_action( $hook, 'geodire_admin_upgrade_notice', 20, 2 );
250
+	}
251 251
 
252 252
 }
253 253
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     /**
35 35
      * Include WordPress core file so we can use core functions to check for active plugins.
36 36
      */
37
-    include_once(ABSPATH . 'wp-admin/includes/plugin.php');
37
+    include_once(ABSPATH.'wp-admin/includes/plugin.php');
38 38
 
39 39
     if (is_plugin_active('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php')) {
40 40
         deactivate_plugins('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php');
@@ -68,8 +68,8 @@  discard block
 block discarded – undo
68 68
  * @global string $plugin_file_name Base file name. 'geodirectory/geodirectory.php'.
69 69
  */
70 70
 global $wpdb, $plugin_prefix, $geodir_addon_list, $plugin_file_name;
71
-$plugin_prefix = $wpdb->prefix . 'geodir_';
72
-$plugin_file_name = basename(plugin_dir_path(__FILE__)) . '/' . basename(__FILE__);
71
+$plugin_prefix = $wpdb->prefix.'geodir_';
72
+$plugin_file_name = basename(plugin_dir_path(__FILE__)).'/'.basename(__FILE__);
73 73
 
74 74
 /*
75 75
  * This will store the cached post custom fields per package for each page load so not to run for each listing.
@@ -84,24 +84,24 @@  discard block
 block discarded – undo
84 84
 /**
85 85
  * Define constants
86 86
  */
87
-if(!defined('GEODIRECTORY_PLUGIN_DIR')) define('GEODIRECTORY_PLUGIN_DIR', plugin_dir_path( __FILE__ ));
87
+if (!defined('GEODIRECTORY_PLUGIN_DIR')) define('GEODIRECTORY_PLUGIN_DIR', plugin_dir_path(__FILE__));
88 88
 
89 89
 /*
90 90
  * Declare database table names. All since version 1.0.0
91 91
  */
92 92
 
93 93
 /** Define the database name for the countries table. */
94
-if (!defined('GEODIR_COUNTRIES_TABLE')) define('GEODIR_COUNTRIES_TABLE', $plugin_prefix . 'countries');
94
+if (!defined('GEODIR_COUNTRIES_TABLE')) define('GEODIR_COUNTRIES_TABLE', $plugin_prefix.'countries');
95 95
 /** Define the database name for the custom fields table. */
96
-if (!defined('GEODIR_CUSTOM_FIELDS_TABLE')) define('GEODIR_CUSTOM_FIELDS_TABLE', $plugin_prefix . 'custom_fields');
96
+if (!defined('GEODIR_CUSTOM_FIELDS_TABLE')) define('GEODIR_CUSTOM_FIELDS_TABLE', $plugin_prefix.'custom_fields');
97 97
 /** Define the database name for the icons table. */
98
-if (!defined('GEODIR_ICON_TABLE')) define('GEODIR_ICON_TABLE', $plugin_prefix . 'post_icon');
98
+if (!defined('GEODIR_ICON_TABLE')) define('GEODIR_ICON_TABLE', $plugin_prefix.'post_icon');
99 99
 /** Define the database name for the attachments table. */
100
-if (!defined('GEODIR_ATTACHMENT_TABLE')) define('GEODIR_ATTACHMENT_TABLE', $plugin_prefix . 'attachments');
100
+if (!defined('GEODIR_ATTACHMENT_TABLE')) define('GEODIR_ATTACHMENT_TABLE', $plugin_prefix.'attachments');
101 101
 /** Define the database name for the review table. */
102
-if (!defined('GEODIR_REVIEW_TABLE')) define('GEODIR_REVIEW_TABLE', $plugin_prefix . 'post_review');
102
+if (!defined('GEODIR_REVIEW_TABLE')) define('GEODIR_REVIEW_TABLE', $plugin_prefix.'post_review');
103 103
 /** Define the database name for the custom sort fields table. */
104
-if (!defined('GEODIR_CUSTOM_SORT_FIELDS_TABLE')) define('GEODIR_CUSTOM_SORT_FIELDS_TABLE', $plugin_prefix . 'custom_sort_fields');
104
+if (!defined('GEODIR_CUSTOM_SORT_FIELDS_TABLE')) define('GEODIR_CUSTOM_SORT_FIELDS_TABLE', $plugin_prefix.'custom_sort_fields');
105 105
 
106 106
 /*
107 107
  * Define our Google Analytic app settings
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 if (!defined('GEODIR_GA_CLIENTID')) define('GEODIR_GA_CLIENTID', '687912069872-sdpsjssrdt7t3ao1dnv1ib71hkckbt5s.apps.googleusercontent.com');
110 110
 if (!defined('GEODIR_GA_CLIENTSECRET')) define('GEODIR_GA_CLIENTSECRET', 'yBVkDpqJ1B9nAETHy738Zn8C'); //don't worry - this don't need to be secret in our case
111 111
 if (!defined('GEODIR_GA_REDIRECT')) define('GEODIR_GA_REDIRECT', 'urn:ietf:wg:oauth:2.0:oob');
112
-if (!defined('GEODIR_GA_SCOPE')) define('GEODIR_GA_SCOPE', 'https://www.googleapis.com/auth/analytics');//.readonly
112
+if (!defined('GEODIR_GA_SCOPE')) define('GEODIR_GA_SCOPE', 'https://www.googleapis.com/auth/analytics'); //.readonly
113 113
 
114 114
 
115 115
 /*
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 if (!defined('GEODIRECTORY_TEXTDOMAIN')) define('GEODIRECTORY_TEXTDOMAIN', 'geodirectory');
119 119
 
120 120
 // Load geodirectory plugin textdomain.
121
-add_action( 'init', 'geodir_load_textdomain' );
121
+add_action('init', 'geodir_load_textdomain');
122 122
 
123 123
 /*
124 124
  * A function to log GD errors no matter the type given.
@@ -129,18 +129,18 @@  discard block
 block discarded – undo
129 129
  * @param mixed $log The thing that should be logged.
130 130
  * @package GeoDirectory
131 131
  */
132
-function geodir_error_log($log){
132
+function geodir_error_log($log) {
133 133
     /*
134 134
      * A filter to override the WP_DEBUG setting for function geodir_error_log().
135 135
      *
136 136
      * @since 1.5.7
137 137
      */
138
-    $should_log = apply_filters( 'geodir_log_errors', WP_DEBUG);
139
-    if ( true === $should_log ) {
140
-        if ( is_array( $log ) || is_object( $log ) ) {
141
-            error_log( print_r( $log, true ) );
138
+    $should_log = apply_filters('geodir_log_errors', WP_DEBUG);
139
+    if (true === $should_log) {
140
+        if (is_array($log) || is_object($log)) {
141
+            error_log(print_r($log, true));
142 142
         } else {
143
-            error_log( $log );
143
+            error_log($log);
144 144
         }
145 145
     }
146 146
 }
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
 /*
180 180
  * Admin init + activation hooks
181 181
  */
182
-if (is_admin() || defined( 'GD_TESTING_MODE' ) || ( defined( 'WP_CLI' ) && WP_CLI )) {
182
+if (is_admin() || defined('GD_TESTING_MODE') || (defined('WP_CLI') && WP_CLI)) {
183 183
 
184 184
     /**
185 185
      * Include functions used in admin area only.
@@ -216,14 +216,14 @@  discard block
 block discarded – undo
216 216
      *
217 217
      * @since 1.0.0
218 218
      */
219
-    require_once(geodir_plugin_path() . '/upgrade.php');
219
+    require_once(geodir_plugin_path().'/upgrade.php');
220 220
     if (get_option('geodir_installed') != 1) {
221 221
         /**
222 222
          * Define language constants, here as they are not loaded yet.
223 223
          *
224 224
          * @since 1.0.0
225 225
          */
226
-        require_once(geodir_plugin_path() . '/language.php');
226
+        require_once(geodir_plugin_path().'/language.php');
227 227
         /**
228 228
          * Include the plugin install file that sets up the databases and any options on first run.
229 229
          *
@@ -240,13 +240,13 @@  discard block
 block discarded – undo
240 240
      * @since 1.5.6
241 241
      */
242 242
     global $pagenow;
243
-    if ( 'plugins.php' === $pagenow )
243
+    if ('plugins.php' === $pagenow)
244 244
     {
245 245
         // Better update message
246
-        $file   = basename( __FILE__ );
247
-        $folder = basename( dirname( __FILE__ ) );
246
+        $file   = basename(__FILE__);
247
+        $folder = basename(dirname(__FILE__));
248 248
         $hook = "in_plugin_update_message-{$folder}/{$file}";
249
-        add_action( $hook, 'geodire_admin_upgrade_notice', 20, 2 );
249
+        add_action($hook, 'geodire_admin_upgrade_notice', 20, 2);
250 250
     }
251 251
 
252 252
 }
253 253
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-functions/ajax_handler_functions.php 3 patches
Braces   +27 added lines, -20 removed lines patch added patch discarded remove patch
@@ -112,10 +112,11 @@  discard block
 block discarded – undo
112 112
     }
113 113
 
114 114
     if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'category_ajax') {
115
-        if (isset($_REQUEST['main_catid']) && isset($_REQUEST['cat_tax']) && isset($_REQUEST['exclude']))
116
-            geodir_addpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['main_catid'], '', '', '', $_REQUEST['exclude']);
117
-        else if (isset($_REQUEST['catpid']) && isset($_REQUEST['cat_tax']))
118
-            geodir_editpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['catpid']);
115
+        if (isset($_REQUEST['main_catid']) && isset($_REQUEST['cat_tax']) && isset($_REQUEST['exclude'])) {
116
+                    geodir_addpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['main_catid'], '', '', '', $_REQUEST['exclude']);
117
+        } else if (isset($_REQUEST['catpid']) && isset($_REQUEST['cat_tax'])) {
118
+                    geodir_editpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['catpid']);
119
+        }
119 120
     }
120 121
 
121 122
     if ((isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'admin_ajax') || isset($_REQUEST['create_field']) || isset($_REQUEST['sort_create_field'])) {
@@ -137,12 +138,13 @@  discard block
 block discarded – undo
137 138
         if (current_user_can('manage_options')) {
138 139
             switch ($_REQUEST['geodir_autofill']):
139 140
                 case "geodir_dummy_delete" :
140
-                    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename'))
141
-                        return;
141
+                    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) {
142
+                                            return;
143
+                    }
142 144
 
143 145
                     $datatype = isset($_REQUEST['datatype']) ? sanitize_key($_REQUEST['datatype']) : '';
144
-                    if (isset($_REQUEST['posttype']))
145
-                        /**
146
+                    if (isset($_REQUEST['posttype'])) {
147
+                                            /**
146 148
                          * Used to delete the dummy post data per post type.
147 149
                          *
148 150
                          * Uses dynamic hook, geodir_delete_dummy_posts_$_REQUEST['posttype'].
@@ -151,11 +153,13 @@  discard block
 block discarded – undo
151 153
                          * @param string $posttype The post type to insert.
152 154
                          * @param string $datatype The type of dummy data to insert.
153 155
                          */
154
-                        do_action('geodir_delete_dummy_posts' ,sanitize_key($_REQUEST['posttype']),$datatype);
156
+                        do_action('geodir_delete_dummy_posts' ,sanitize_key($_REQUEST['posttype']),$datatype);
157
+                    }
155 158
                     break;
156 159
                 case "geodir_dummy_insert" :
157
-                    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename'))
158
-                        return;
160
+                    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) {
161
+                                            return;
162
+                    }
159 163
 
160 164
                     global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2;
161 165
                     $city_bound_lat1 = $_REQUEST['city_bound_lat1'];
@@ -254,8 +258,9 @@  discard block
 block discarded – undo
254 258
                         } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
255 259
                             $redirect_to = get_permalink(geodir_add_listing_page_id());
256 260
                             $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false);
257
-                        } else
258
-                            $redirect_to = get_permalink(geodir_add_listing_page_id());
261
+                        } else {
262
+                                                    $redirect_to = get_permalink(geodir_add_listing_page_id());
263
+                        }
259 264
 
260 265
                         wp_redirect($redirect_to);
261 266
                     } else {
@@ -268,9 +273,9 @@  discard block
 block discarded – undo
268 273
 
269 274
                     $gd_session->un_set('listing');
270 275
 
271
-                    if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && get_permalink($_REQUEST['pid']))
272
-                        wp_redirect(get_permalink($_REQUEST['pid']));
273
-                    else {
276
+                    if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && get_permalink($_REQUEST['pid'])) {
277
+                                            wp_redirect(get_permalink($_REQUEST['pid']));
278
+                    } else {
274 279
                         geodir_remove_temp_images();
275 280
                         wp_redirect(geodir_getlink(get_permalink(geodir_add_listing_page_id()), array('listing_type' => $_REQUEST['listing_type'])));
276 281
                     }
@@ -298,8 +303,9 @@  discard block
 block discarded – undo
298 303
                             } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
299 304
                                 $redirect_to = get_permalink(geodir_add_listing_page_id());
300 305
                                 $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false);
301
-                            } else
302
-                                $redirect_to = get_permalink(geodir_add_listing_page_id());
306
+                            } else {
307
+                                                            $redirect_to = get_permalink(geodir_add_listing_page_id());
308
+                            }
303 309
 
304 310
                             $gd_session->un_set('listing');
305 311
                             wp_redirect($redirect_to);
@@ -320,8 +326,9 @@  discard block
 block discarded – undo
320 326
                             $lastid = wp_delete_post($_REQUEST['pid']);
321 327
                         }
322 328
 
323
-                        if ($lastid && !is_wp_error($lastid))
324
-                            wp_redirect($_SERVER['HTTP_REFERER']);
329
+                        if ($lastid && !is_wp_error($lastid)) {
330
+                                                    wp_redirect($_SERVER['HTTP_REFERER']);
331
+                        }
325 332
 
326 333
                         //wp_redirect( geodir_getlink(get_author_posts_url($current_user->ID),array('geodir_dashbord'=>'true','stype'=>$post_type ),false) );
327 334
                     }
Please login to merge, or discard this patch.
Indentation   +343 added lines, -343 removed lines patch added patch discarded remove patch
@@ -16,22 +16,22 @@  discard block
 block discarded – undo
16 16
  */
17 17
 function geodir_on_wp_loaded()
18 18
 {
19
-    /**
20
-     * Called on the wp_loaded WP hook and used to send the send inquiry and send to friend forms.
21
-     *
22
-     * @since 1.0.0
23
-     */
24
-    do_action('giodir_handle_request_plugins_loaded');
25
-    global $wpdb;
19
+	/**
20
+	 * Called on the wp_loaded WP hook and used to send the send inquiry and send to friend forms.
21
+	 *
22
+	 * @since 1.0.0
23
+	 */
24
+	do_action('giodir_handle_request_plugins_loaded');
25
+	global $wpdb;
26 26
 
27 27
 
28
-    if (isset($_POST['sendact']) && $_POST['sendact'] == 'send_inqury') {
29
-        geodir_send_inquiry($_REQUEST); // function in custom_functions.php
28
+	if (isset($_POST['sendact']) && $_POST['sendact'] == 'send_inqury') {
29
+		geodir_send_inquiry($_REQUEST); // function in custom_functions.php
30 30
 
31
-    } elseif (isset($_POST['sendact']) && $_POST['sendact'] == 'email_frnd') {
32
-        geodir_send_friend($_REQUEST); // function in custom_functions.php
31
+	} elseif (isset($_POST['sendact']) && $_POST['sendact'] == 'email_frnd') {
32
+		geodir_send_friend($_REQUEST); // function in custom_functions.php
33 33
 
34
-    }
34
+	}
35 35
 
36 36
 }
37 37
 
@@ -44,9 +44,9 @@  discard block
 block discarded – undo
44 44
  */
45 45
 function geodir_on_wp()
46 46
 {
47
-    if(geodir_is_page('login')) {
48
-        geodir_user_signup();
49
-    }
47
+	if(geodir_is_page('login')) {
48
+		geodir_user_signup();
49
+	}
50 50
 
51 51
 }
52 52
 
@@ -60,36 +60,36 @@  discard block
 block discarded – undo
60 60
  */
61 61
 function geodir_on_init()
62 62
 {
63
-    /**
64
-     * Called on the wp_init WP hook at the start of the geodir_on_init() function.
65
-     *
66
-     * @since 1.0.0
67
-     */
68
-    do_action('giodir_handle_request');
69
-    global $wpdb;
63
+	/**
64
+	 * Called on the wp_init WP hook at the start of the geodir_on_init() function.
65
+	 *
66
+	 * @since 1.0.0
67
+	 */
68
+	do_action('giodir_handle_request');
69
+	global $wpdb;
70 70
 
71 71
 
72 72
 
73 73
 
74
-    if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && !current_user_can('manage_options') && !class_exists('BuddyPress')) {
75
-        show_admin_bar(false);
76
-    }
74
+	if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && !current_user_can('manage_options') && !class_exists('BuddyPress')) {
75
+		show_admin_bar(false);
76
+	}
77 77
 
78 78
 
79
-    if (isset($_REQUEST['ptype']) && $_REQUEST['ptype'] == 'get_markers') {
80
-        /**
81
-         * Contains map marker functions.
82
-         *
83
-         * @since 1.0.0
84
-         * @package GeoDirectory
85
-         */
86
-        include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php');
87
-        die;
88
-    }
79
+	if (isset($_REQUEST['ptype']) && $_REQUEST['ptype'] == 'get_markers') {
80
+		/**
81
+		 * Contains map marker functions.
82
+		 *
83
+		 * @since 1.0.0
84
+		 * @package GeoDirectory
85
+		 */
86
+		include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php');
87
+		die;
88
+	}
89 89
     
90
-    if ( class_exists( 'WPSEO_Frontend' ) && !is_admin() ) {
91
-        add_action( 'template_redirect', 'geodir_remove_yoast_seo_metas' );
92
-    }
90
+	if ( class_exists( 'WPSEO_Frontend' ) && !is_admin() ) {
91
+		add_action( 'template_redirect', 'geodir_remove_yoast_seo_metas' );
92
+	}
93 93
 }
94 94
 
95 95
 
@@ -106,328 +106,328 @@  discard block
 block discarded – undo
106 106
  * @todo check if nonce is required here and if so add one.
107 107
  */
108 108
 function geodir_ajax_handler() {
109
-    global $wpdb, $gd_session,$post;
109
+	global $wpdb, $gd_session,$post;
110 110
 
111
-    if (isset($_REQUEST['gd_listing_view']) && $_REQUEST['gd_listing_view'] != '') {
111
+	if (isset($_REQUEST['gd_listing_view']) && $_REQUEST['gd_listing_view'] != '') {
112 112
 		$gd_session->set('gd_listing_view', $_REQUEST['gd_listing_view']);
113
-        echo '1';
114
-    }
115
-
116
-    if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'category_ajax') {
117
-        if (isset($_REQUEST['main_catid']) && isset($_REQUEST['cat_tax']) && isset($_REQUEST['exclude']))
118
-            geodir_addpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['main_catid'], '', '', '', $_REQUEST['exclude']);
119
-        else if (isset($_REQUEST['catpid']) && isset($_REQUEST['cat_tax']))
120
-            geodir_editpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['catpid']);
121
-    }
122
-
123
-    if ((isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'admin_ajax') || isset($_REQUEST['create_field']) || isset($_REQUEST['sort_create_field'])) {
124
-        if (current_user_can('manage_options')) {
125
-            /**
126
-             * Contains admin ajax handling functions.
127
-             *
128
-             * @since 1.0.0
129
-             * @package GeoDirectory
130
-             */
131
-            include_once(geodir_plugin_path() . '/geodirectory-admin/geodir_admin_ajax.php');
132
-        } else {
133
-            wp_redirect(geodir_login_url());
134
-            gd_die();
135
-        }
136
-    }
137
-
138
-    if (isset($_REQUEST['geodir_autofill']) && $_REQUEST['geodir_autofill'] != '' && isset($_REQUEST['_wpnonce'])) {
139
-        if (current_user_can('manage_options')) {
140
-            switch ($_REQUEST['geodir_autofill']):
141
-                case "geodir_dummy_delete" :
142
-                    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename'))
143
-                        return;
144
-
145
-                    $datatype = isset($_REQUEST['datatype']) ? sanitize_key($_REQUEST['datatype']) : '';
146
-                    if (isset($_REQUEST['posttype']))
147
-                        /**
148
-                         * Used to delete the dummy post data per post type.
149
-                         *
150
-                         * Uses dynamic hook, geodir_delete_dummy_posts_$_REQUEST['posttype'].
151
-                         *
152
-                         * @since 1.6.11
153
-                         * @param string $posttype The post type to insert.
154
-                         * @param string $datatype The type of dummy data to insert.
155
-                         */
156
-                        do_action('geodir_delete_dummy_posts' ,sanitize_key($_REQUEST['posttype']),$datatype);
157
-                    break;
158
-                case "geodir_dummy_insert" :
159
-                    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename'))
160
-                        return;
161
-
162
-                    global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2;
163
-                    $city_bound_lat1 = $_REQUEST['city_bound_lat1'];
164
-                    $city_bound_lng1 = $_REQUEST['city_bound_lng1'];
165
-                    $city_bound_lat2 = $_REQUEST['city_bound_lat2'];
166
-                    $city_bound_lng2 = $_REQUEST['city_bound_lng2'];
167
-
168
-                    if (isset($_REQUEST['posttype'])){
169
-                        /**
170
-                         * Used to insert the dummy post data per post type.
171
-                         *
172
-                         * Uses dynamic hook, geodir_insert_dummy_posts_$_REQUEST['posttype'].
173
-                         *
174
-                         * @since 1.6.11
175
-                         * @param string $posttype The post type to insert.
176
-                         * @param string $datatype The type of dummy data to insert.
177
-                         * @param int $post_index The item number to insert.
178
-                         */
179
-                        do_action('geodir_insert_dummy_posts',sanitize_key($_REQUEST['posttype']),sanitize_key($_REQUEST['datatype']),absint($_REQUEST['insert_dummy_post_index']));
180
-                    }
181
-
182
-
183
-                    break;
184
-            endswitch;
185
-        } else {
186
-            wp_redirect(geodir_login_url());
187
-            exit();
188
-        }
189
-    }
190
-
191
-    if (isset($_REQUEST['popuptype']) && $_REQUEST['popuptype'] != '' && isset($_REQUEST['post_id']) && $_REQUEST['post_id'] != '') {
192
-
193
-        if ($_REQUEST['popuptype'] == 'b_send_inquiry' || $_REQUEST['popuptype'] == 'b_sendtofriend') {
194
-            $template = locate_template(array("geodirectory/popup-forms.php"));
195
-            if (!$template) {
196
-                $template = geodir_plugin_path() . '/geodirectory-templates/popup-forms.php';
197
-            }
198
-            require_once($template);
199
-        }
200
-
201
-        gd_die();
202
-    }
203
-
204
-    /*if(isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'filter_ajax'){
113
+		echo '1';
114
+	}
115
+
116
+	if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'category_ajax') {
117
+		if (isset($_REQUEST['main_catid']) && isset($_REQUEST['cat_tax']) && isset($_REQUEST['exclude']))
118
+			geodir_addpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['main_catid'], '', '', '', $_REQUEST['exclude']);
119
+		else if (isset($_REQUEST['catpid']) && isset($_REQUEST['cat_tax']))
120
+			geodir_editpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['catpid']);
121
+	}
122
+
123
+	if ((isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'admin_ajax') || isset($_REQUEST['create_field']) || isset($_REQUEST['sort_create_field'])) {
124
+		if (current_user_can('manage_options')) {
125
+			/**
126
+			 * Contains admin ajax handling functions.
127
+			 *
128
+			 * @since 1.0.0
129
+			 * @package GeoDirectory
130
+			 */
131
+			include_once(geodir_plugin_path() . '/geodirectory-admin/geodir_admin_ajax.php');
132
+		} else {
133
+			wp_redirect(geodir_login_url());
134
+			gd_die();
135
+		}
136
+	}
137
+
138
+	if (isset($_REQUEST['geodir_autofill']) && $_REQUEST['geodir_autofill'] != '' && isset($_REQUEST['_wpnonce'])) {
139
+		if (current_user_can('manage_options')) {
140
+			switch ($_REQUEST['geodir_autofill']):
141
+				case "geodir_dummy_delete" :
142
+					if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename'))
143
+						return;
144
+
145
+					$datatype = isset($_REQUEST['datatype']) ? sanitize_key($_REQUEST['datatype']) : '';
146
+					if (isset($_REQUEST['posttype']))
147
+						/**
148
+						 * Used to delete the dummy post data per post type.
149
+						 *
150
+						 * Uses dynamic hook, geodir_delete_dummy_posts_$_REQUEST['posttype'].
151
+						 *
152
+						 * @since 1.6.11
153
+						 * @param string $posttype The post type to insert.
154
+						 * @param string $datatype The type of dummy data to insert.
155
+						 */
156
+						do_action('geodir_delete_dummy_posts' ,sanitize_key($_REQUEST['posttype']),$datatype);
157
+					break;
158
+				case "geodir_dummy_insert" :
159
+					if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename'))
160
+						return;
161
+
162
+					global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2;
163
+					$city_bound_lat1 = $_REQUEST['city_bound_lat1'];
164
+					$city_bound_lng1 = $_REQUEST['city_bound_lng1'];
165
+					$city_bound_lat2 = $_REQUEST['city_bound_lat2'];
166
+					$city_bound_lng2 = $_REQUEST['city_bound_lng2'];
167
+
168
+					if (isset($_REQUEST['posttype'])){
169
+						/**
170
+						 * Used to insert the dummy post data per post type.
171
+						 *
172
+						 * Uses dynamic hook, geodir_insert_dummy_posts_$_REQUEST['posttype'].
173
+						 *
174
+						 * @since 1.6.11
175
+						 * @param string $posttype The post type to insert.
176
+						 * @param string $datatype The type of dummy data to insert.
177
+						 * @param int $post_index The item number to insert.
178
+						 */
179
+						do_action('geodir_insert_dummy_posts',sanitize_key($_REQUEST['posttype']),sanitize_key($_REQUEST['datatype']),absint($_REQUEST['insert_dummy_post_index']));
180
+					}
181
+
182
+
183
+					break;
184
+			endswitch;
185
+		} else {
186
+			wp_redirect(geodir_login_url());
187
+			exit();
188
+		}
189
+	}
190
+
191
+	if (isset($_REQUEST['popuptype']) && $_REQUEST['popuptype'] != '' && isset($_REQUEST['post_id']) && $_REQUEST['post_id'] != '') {
192
+
193
+		if ($_REQUEST['popuptype'] == 'b_send_inquiry' || $_REQUEST['popuptype'] == 'b_sendtofriend') {
194
+			$template = locate_template(array("geodirectory/popup-forms.php"));
195
+			if (!$template) {
196
+				$template = geodir_plugin_path() . '/geodirectory-templates/popup-forms.php';
197
+			}
198
+			require_once($template);
199
+		}
200
+
201
+		gd_die();
202
+	}
203
+
204
+	/*if(isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'filter_ajax'){
205 205
         include_once ( geodir_plugin_path() . '/geodirectory-templates/advance-search-form.php');
206 206
     }*/
207 207
 
208
-    if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'map_ajax') {
209
-        /**
210
-         * Contains map marker functions.
211
-         *
212
-         * @since 1.0.0
213
-         * @package GeoDirectory
214
-         */
215
-        include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php');
216
-    }
217
-
218
-    if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'favorite') {
219
-        if (is_user_logged_in()) {
220
-            switch ($_REQUEST['ajax_action']):
221
-                case "add" :
222
-                    geodir_add_to_favorite((int)$_REQUEST['pid']);
223
-                    break;
224
-                case "remove" :
225
-                    geodir_remove_from_favorite((int)$_REQUEST['pid']);
226
-                    break;
227
-            endswitch;
228
-        } else {
229
-            wp_redirect(geodir_login_url());
230
-            exit();
231
-        }
232
-    }
233
-
234
-    if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'add_listing') {
235
-
236
-        $is_current_user_owner = true;
237
-        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
238
-            $is_current_user_owner = geodir_listing_belong_to_current_user((int)$_REQUEST['pid']);
239
-        }
240
-
241
-        $request = $gd_session->get('listing');
242
-
243
-        if (is_user_logged_in() && $is_current_user_owner) {
244
-
245
-            switch ($_REQUEST['ajax_action']):
246
-                case "add":
247
-                case "update":
248
-
249
-                    if (isset($request['geodir_spamblocker']) && $request['geodir_spamblocker'] == '64' && isset($request['geodir_filled_by_spam_bot']) && $request['geodir_filled_by_spam_bot'] == '') {
250
-                        $last_id = geodir_save_listing();
251
-
252
-                        if ($last_id) {
253
-                            //$redirect_to = get_permalink( $last_id );
254
-                            $redirect_to = geodir_getlink(get_permalink(geodir_success_page_id()), array('pid' => $last_id));
255
-
256
-                        } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
257
-                            $redirect_to = get_permalink(geodir_add_listing_page_id());
258
-                            $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false);
259
-                        } else
260
-                            $redirect_to = get_permalink(geodir_add_listing_page_id());
261
-
262
-                        wp_redirect($redirect_to);
263
-                    } else {
264
-                        $gd_session->un_set('listing');
265
-                        wp_redirect(home_url());
266
-                    }
267
-
268
-                    break;
269
-                case "cancel" :
270
-
271
-                    $gd_session->un_set('listing');
272
-
273
-                    if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && get_permalink($_REQUEST['pid']))
274
-                        wp_redirect(get_permalink($_REQUEST['pid']));
275
-                    else {
276
-                        geodir_remove_temp_images();
277
-                        wp_redirect(geodir_getlink(get_permalink(geodir_add_listing_page_id()), array('listing_type' => $_REQUEST['listing_type'])));
278
-                    }
279
-
280
-                    break;
281
-
282
-                case "publish" :
283
-
284
-                    if (isset($request['geodir_spamblocker']) && $request['geodir_spamblocker'] == '64' && isset($request['geodir_filled_by_spam_bot']) && $request['geodir_filled_by_spam_bot'] == '') {
285
-
286
-                        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
287
-                            $new_post = array();
288
-                            $new_post['ID'] = $_REQUEST['pid'];
289
-
290
-                            $lastid = wp_update_post($new_post);
291
-
292
-                            $gd_session->un_set('listing');
293
-                            wp_redirect(get_permalink($lastid));
294
-                        } else {
295
-                            $last_id = geodir_save_listing();
296
-
297
-                            if ($last_id) {
298
-                                //$redirect_to = get_permalink( $last_id );
299
-                                $redirect_to = geodir_getlink(get_permalink(geodir_success_page_id()), array('pid' => $last_id));
300
-                            } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
301
-                                $redirect_to = get_permalink(geodir_add_listing_page_id());
302
-                                $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false);
303
-                            } else
304
-                                $redirect_to = get_permalink(geodir_add_listing_page_id());
305
-
306
-                            $gd_session->un_set('listing');
307
-                            wp_redirect($redirect_to);
308
-                        }
309
-                    } else {
310
-                        $gd_session->un_set('listing');
311
-                        wp_redirect(home_url());
312
-                    }
313
-
314
-                    break;
315
-                case "delete" :
316
-                    if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
317
-                        global $current_user;
318
-
319
-                        if (get_option('geodir_disable_perm_delete')) {
320
-                            $lastid = wp_trash_post($_REQUEST['pid']);
321
-                        } else {
322
-                            $lastid = wp_delete_post($_REQUEST['pid']);
323
-                        }
324
-
325
-                        if ($lastid && !is_wp_error($lastid))
326
-                            wp_redirect($_SERVER['HTTP_REFERER']);
327
-
328
-                        //wp_redirect( geodir_getlink(get_author_posts_url($current_user->ID),array('geodir_dashbord'=>'true','stype'=>$post_type ),false) );
329
-                    }
330
-                    break;
331
-            endswitch;
332
-
333
-            $gd_session->un_set('listing');
334
-        } else {
335
-            $gd_session->un_set('listing');
336
-            wp_redirect(geodir_login_url());
337
-            exit();
338
-        }
339
-    }
340
-
341
-    if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'user_login') {
342
-        /**
343
-         * Contains registration and login functions.
344
-         * @todo Fix the file path.
345
-         *
346
-         * @since 1.0.0
347
-         * @package GeoDirectory
348
-         */
349
-        include_once(geodir_plugin_path() . '/geodirectory-functions/geodirectory_reg.php');
350
-    }
351
-
352
-    if (isset($_REQUEST['ajax_action']) && $_REQUEST['ajax_action'] == 'geodir_get_term_list') {
353
-        $args = array('taxonomy' => sanitize_text_field($_REQUEST['term']));
354
-        if (!empty($_REQUEST['parent_only'])) {
355
-            $args['parent'] = 0;
356
-        }
357
-        $terms_o = get_terms($args);
358
-
359
-        // Skip terms which has no listing
360
-        if (!empty($terms_o)) {
361
-            $filter_terms = array();
362
-
363
-            foreach ($terms_o as $term) {
364
-                if (isset($term->count) && $term->count > 0) {
365
-                    $filter_terms[] = $term;
366
-                }
367
-            }
368
-            $terms_o = $filter_terms;
369
-        }
370
-
371
-        $terms = geodir_sort_terms($terms_o, 'count');
372
-        geodir_helper_cat_list_output($terms, intval($_REQUEST['limit']));
373
-        exit();
374
-    }
208
+	if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'map_ajax') {
209
+		/**
210
+		 * Contains map marker functions.
211
+		 *
212
+		 * @since 1.0.0
213
+		 * @package GeoDirectory
214
+		 */
215
+		include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php');
216
+	}
217
+
218
+	if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'favorite') {
219
+		if (is_user_logged_in()) {
220
+			switch ($_REQUEST['ajax_action']):
221
+				case "add" :
222
+					geodir_add_to_favorite((int)$_REQUEST['pid']);
223
+					break;
224
+				case "remove" :
225
+					geodir_remove_from_favorite((int)$_REQUEST['pid']);
226
+					break;
227
+			endswitch;
228
+		} else {
229
+			wp_redirect(geodir_login_url());
230
+			exit();
231
+		}
232
+	}
233
+
234
+	if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'add_listing') {
235
+
236
+		$is_current_user_owner = true;
237
+		if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
238
+			$is_current_user_owner = geodir_listing_belong_to_current_user((int)$_REQUEST['pid']);
239
+		}
240
+
241
+		$request = $gd_session->get('listing');
242
+
243
+		if (is_user_logged_in() && $is_current_user_owner) {
244
+
245
+			switch ($_REQUEST['ajax_action']):
246
+				case "add":
247
+				case "update":
248
+
249
+					if (isset($request['geodir_spamblocker']) && $request['geodir_spamblocker'] == '64' && isset($request['geodir_filled_by_spam_bot']) && $request['geodir_filled_by_spam_bot'] == '') {
250
+						$last_id = geodir_save_listing();
251
+
252
+						if ($last_id) {
253
+							//$redirect_to = get_permalink( $last_id );
254
+							$redirect_to = geodir_getlink(get_permalink(geodir_success_page_id()), array('pid' => $last_id));
255
+
256
+						} elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
257
+							$redirect_to = get_permalink(geodir_add_listing_page_id());
258
+							$redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false);
259
+						} else
260
+							$redirect_to = get_permalink(geodir_add_listing_page_id());
261
+
262
+						wp_redirect($redirect_to);
263
+					} else {
264
+						$gd_session->un_set('listing');
265
+						wp_redirect(home_url());
266
+					}
267
+
268
+					break;
269
+				case "cancel" :
270
+
271
+					$gd_session->un_set('listing');
272
+
273
+					if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && get_permalink($_REQUEST['pid']))
274
+						wp_redirect(get_permalink($_REQUEST['pid']));
275
+					else {
276
+						geodir_remove_temp_images();
277
+						wp_redirect(geodir_getlink(get_permalink(geodir_add_listing_page_id()), array('listing_type' => $_REQUEST['listing_type'])));
278
+					}
279
+
280
+					break;
281
+
282
+				case "publish" :
283
+
284
+					if (isset($request['geodir_spamblocker']) && $request['geodir_spamblocker'] == '64' && isset($request['geodir_filled_by_spam_bot']) && $request['geodir_filled_by_spam_bot'] == '') {
285
+
286
+						if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
287
+							$new_post = array();
288
+							$new_post['ID'] = $_REQUEST['pid'];
289
+
290
+							$lastid = wp_update_post($new_post);
291
+
292
+							$gd_session->un_set('listing');
293
+							wp_redirect(get_permalink($lastid));
294
+						} else {
295
+							$last_id = geodir_save_listing();
296
+
297
+							if ($last_id) {
298
+								//$redirect_to = get_permalink( $last_id );
299
+								$redirect_to = geodir_getlink(get_permalink(geodir_success_page_id()), array('pid' => $last_id));
300
+							} elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
301
+								$redirect_to = get_permalink(geodir_add_listing_page_id());
302
+								$redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false);
303
+							} else
304
+								$redirect_to = get_permalink(geodir_add_listing_page_id());
305
+
306
+							$gd_session->un_set('listing');
307
+							wp_redirect($redirect_to);
308
+						}
309
+					} else {
310
+						$gd_session->un_set('listing');
311
+						wp_redirect(home_url());
312
+					}
313
+
314
+					break;
315
+				case "delete" :
316
+					if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
317
+						global $current_user;
318
+
319
+						if (get_option('geodir_disable_perm_delete')) {
320
+							$lastid = wp_trash_post($_REQUEST['pid']);
321
+						} else {
322
+							$lastid = wp_delete_post($_REQUEST['pid']);
323
+						}
324
+
325
+						if ($lastid && !is_wp_error($lastid))
326
+							wp_redirect($_SERVER['HTTP_REFERER']);
327
+
328
+						//wp_redirect( geodir_getlink(get_author_posts_url($current_user->ID),array('geodir_dashbord'=>'true','stype'=>$post_type ),false) );
329
+					}
330
+					break;
331
+			endswitch;
332
+
333
+			$gd_session->un_set('listing');
334
+		} else {
335
+			$gd_session->un_set('listing');
336
+			wp_redirect(geodir_login_url());
337
+			exit();
338
+		}
339
+	}
340
+
341
+	if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'user_login') {
342
+		/**
343
+		 * Contains registration and login functions.
344
+		 * @todo Fix the file path.
345
+		 *
346
+		 * @since 1.0.0
347
+		 * @package GeoDirectory
348
+		 */
349
+		include_once(geodir_plugin_path() . '/geodirectory-functions/geodirectory_reg.php');
350
+	}
351
+
352
+	if (isset($_REQUEST['ajax_action']) && $_REQUEST['ajax_action'] == 'geodir_get_term_list') {
353
+		$args = array('taxonomy' => sanitize_text_field($_REQUEST['term']));
354
+		if (!empty($_REQUEST['parent_only'])) {
355
+			$args['parent'] = 0;
356
+		}
357
+		$terms_o = get_terms($args);
358
+
359
+		// Skip terms which has no listing
360
+		if (!empty($terms_o)) {
361
+			$filter_terms = array();
362
+
363
+			foreach ($terms_o as $term) {
364
+				if (isset($term->count) && $term->count > 0) {
365
+					$filter_terms[] = $term;
366
+				}
367
+			}
368
+			$terms_o = $filter_terms;
369
+		}
370
+
371
+		$terms = geodir_sort_terms($terms_o, 'count');
372
+		geodir_helper_cat_list_output($terms, intval($_REQUEST['limit']));
373
+		exit();
374
+	}
375 375
     
376
-    if ( !empty($_REQUEST['geodir_ajax'] ) && $_REQUEST['geodir_ajax'] == 'duplicate' && geodir_is_wpml() ) {
377
-        if ( !empty( $_REQUEST['_nonce'] ) && wp_verify_nonce( $_REQUEST['_nonce'], 'geodir_duplicate_nonce' ) ) {
378
-            $json = array();
379
-            $json['success'] = false;
376
+	if ( !empty($_REQUEST['geodir_ajax'] ) && $_REQUEST['geodir_ajax'] == 'duplicate' && geodir_is_wpml() ) {
377
+		if ( !empty( $_REQUEST['_nonce'] ) && wp_verify_nonce( $_REQUEST['_nonce'], 'geodir_duplicate_nonce' ) ) {
378
+			$json = array();
379
+			$json['success'] = false;
380 380
             
381
-            $post_id = !empty( $_REQUEST['post_id'] ) ? absint( $_REQUEST['post_id'] ) : 0;
382
-            $langs = !empty( $_REQUEST['dups'] ) ? explode( ',', sanitize_text_field( $_REQUEST['dups'] ) ) : array();
381
+			$post_id = !empty( $_REQUEST['post_id'] ) ? absint( $_REQUEST['post_id'] ) : 0;
382
+			$langs = !empty( $_REQUEST['dups'] ) ? explode( ',', sanitize_text_field( $_REQUEST['dups'] ) ) : array();
383 383
             
384
-            if ( !empty( $post_id ) && !empty( $langs ) ) {
385
-                if ( geodir_wpml_allowed_to_duplicate( $post_id ) ) {
386
-                    global $sitepress;
384
+			if ( !empty( $post_id ) && !empty( $langs ) ) {
385
+				if ( geodir_wpml_allowed_to_duplicate( $post_id ) ) {
386
+					global $sitepress;
387 387
                     
388
-                    $element_type = 'post_' . get_post_type( $post_id );
389
-                    $master_post_id = $sitepress->get_original_element_id( $post_id, $element_type );
388
+					$element_type = 'post_' . get_post_type( $post_id );
389
+					$master_post_id = $sitepress->get_original_element_id( $post_id, $element_type );
390 390
                     
391
-                    if ( $master_post_id == $post_id ) {
392
-                        $_REQUEST['icl_ajx_action'] = 'make_duplicates';
391
+					if ( $master_post_id == $post_id ) {
392
+						$_REQUEST['icl_ajx_action'] = 'make_duplicates';
393 393
                         
394
-                        foreach ( $langs as $lang ) {
395
-                            $return = $sitepress->make_duplicate( $master_post_id, $lang );
396
-                        }
397
-                        $json['success'] = true;
398
-                    } else {
399
-                        $json['error'] = __( 'Translation can be done from original listing only.', 'geodirectory' );
400
-                    }
401
-                } else {
402
-                    $json['error'] = __( 'You are not allowed to translate this listing.', 'geodirectory' );
403
-                }
404
-            }
394
+						foreach ( $langs as $lang ) {
395
+							$return = $sitepress->make_duplicate( $master_post_id, $lang );
396
+						}
397
+						$json['success'] = true;
398
+					} else {
399
+						$json['error'] = __( 'Translation can be done from original listing only.', 'geodirectory' );
400
+					}
401
+				} else {
402
+					$json['error'] = __( 'You are not allowed to translate this listing.', 'geodirectory' );
403
+				}
404
+			}
405 405
             
406
-            wp_send_json( $json );
407
-        }
408
-    }
406
+			wp_send_json( $json );
407
+		}
408
+	}
409 409
 
410
-    gd_die();
410
+	gd_die();
411 411
 }
412 412
 
413 413
 
414 414
 function geodir_show_ga_stats(){
415
-    if (isset($_REQUEST['ga_start'])) {
416
-        $ga_start = $_REQUEST['ga_start'];
417
-    } else {
418
-        $ga_start = '';
419
-    }
420
-    if (isset($_REQUEST['ga_end'])) {
421
-        $ga_end = $_REQUEST['ga_end'];
422
-    } else {
423
-        $ga_end = '';
424
-    }
425
-    try {
426
-        geodir_getGoogleAnalytics($_REQUEST['ga_page'], $ga_start, $ga_end);
427
-    } catch (Exception $e) {
428
-        geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) );
429
-    }
430
-    die;
415
+	if (isset($_REQUEST['ga_start'])) {
416
+		$ga_start = $_REQUEST['ga_start'];
417
+	} else {
418
+		$ga_start = '';
419
+	}
420
+	if (isset($_REQUEST['ga_end'])) {
421
+		$ga_end = $_REQUEST['ga_end'];
422
+	} else {
423
+		$ga_end = '';
424
+	}
425
+	try {
426
+		geodir_getGoogleAnalytics($_REQUEST['ga_page'], $ga_start, $ga_end);
427
+	} catch (Exception $e) {
428
+		geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) );
429
+	}
430
+	die;
431 431
 }
432 432
 add_action( 'wp_ajax_gdga', 'geodir_show_ga_stats' );
433 433
 add_action( 'wp_ajax_nopriv_gdga', 'geodir_show_ga_stats' );
434 434
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
  */
45 45
 function geodir_on_wp()
46 46
 {
47
-    if(geodir_is_page('login')) {
47
+    if (geodir_is_page('login')) {
48 48
         geodir_user_signup();
49 49
     }
50 50
 
@@ -83,12 +83,12 @@  discard block
 block discarded – undo
83 83
          * @since 1.0.0
84 84
          * @package GeoDirectory
85 85
          */
86
-        include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php');
86
+        include_once(geodir_plugin_path().'/geodirectory-functions/map-functions/get_markers.php');
87 87
         die;
88 88
     }
89 89
     
90
-    if ( class_exists( 'WPSEO_Frontend' ) && !is_admin() ) {
91
-        add_action( 'template_redirect', 'geodir_remove_yoast_seo_metas' );
90
+    if (class_exists('WPSEO_Frontend') && !is_admin()) {
91
+        add_action('template_redirect', 'geodir_remove_yoast_seo_metas');
92 92
     }
93 93
 }
94 94
 
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
  * @todo check if nonce is required here and if so add one.
107 107
  */
108 108
 function geodir_ajax_handler() {
109
-    global $wpdb, $gd_session,$post;
109
+    global $wpdb, $gd_session, $post;
110 110
 
111 111
     if (isset($_REQUEST['gd_listing_view']) && $_REQUEST['gd_listing_view'] != '') {
112 112
 		$gd_session->set('gd_listing_view', $_REQUEST['gd_listing_view']);
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
              * @since 1.0.0
129 129
              * @package GeoDirectory
130 130
              */
131
-            include_once(geodir_plugin_path() . '/geodirectory-admin/geodir_admin_ajax.php');
131
+            include_once(geodir_plugin_path().'/geodirectory-admin/geodir_admin_ajax.php');
132 132
         } else {
133 133
             wp_redirect(geodir_login_url());
134 134
             gd_die();
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
                          * @param string $posttype The post type to insert.
154 154
                          * @param string $datatype The type of dummy data to insert.
155 155
                          */
156
-                        do_action('geodir_delete_dummy_posts' ,sanitize_key($_REQUEST['posttype']),$datatype);
156
+                        do_action('geodir_delete_dummy_posts', sanitize_key($_REQUEST['posttype']), $datatype);
157 157
                     break;
158 158
                 case "geodir_dummy_insert" :
159 159
                     if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename'))
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
                     $city_bound_lat2 = $_REQUEST['city_bound_lat2'];
166 166
                     $city_bound_lng2 = $_REQUEST['city_bound_lng2'];
167 167
 
168
-                    if (isset($_REQUEST['posttype'])){
168
+                    if (isset($_REQUEST['posttype'])) {
169 169
                         /**
170 170
                          * Used to insert the dummy post data per post type.
171 171
                          *
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
                          * @param string $datatype The type of dummy data to insert.
177 177
                          * @param int $post_index The item number to insert.
178 178
                          */
179
-                        do_action('geodir_insert_dummy_posts',sanitize_key($_REQUEST['posttype']),sanitize_key($_REQUEST['datatype']),absint($_REQUEST['insert_dummy_post_index']));
179
+                        do_action('geodir_insert_dummy_posts', sanitize_key($_REQUEST['posttype']), sanitize_key($_REQUEST['datatype']), absint($_REQUEST['insert_dummy_post_index']));
180 180
                     }
181 181
 
182 182
 
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
         if ($_REQUEST['popuptype'] == 'b_send_inquiry' || $_REQUEST['popuptype'] == 'b_sendtofriend') {
194 194
             $template = locate_template(array("geodirectory/popup-forms.php"));
195 195
             if (!$template) {
196
-                $template = geodir_plugin_path() . '/geodirectory-templates/popup-forms.php';
196
+                $template = geodir_plugin_path().'/geodirectory-templates/popup-forms.php';
197 197
             }
198 198
             require_once($template);
199 199
         }
@@ -212,17 +212,17 @@  discard block
 block discarded – undo
212 212
          * @since 1.0.0
213 213
          * @package GeoDirectory
214 214
          */
215
-        include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php');
215
+        include_once(geodir_plugin_path().'/geodirectory-functions/map-functions/get_markers.php');
216 216
     }
217 217
 
218 218
     if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'favorite') {
219 219
         if (is_user_logged_in()) {
220 220
             switch ($_REQUEST['ajax_action']):
221 221
                 case "add" :
222
-                    geodir_add_to_favorite((int)$_REQUEST['pid']);
222
+                    geodir_add_to_favorite((int) $_REQUEST['pid']);
223 223
                     break;
224 224
                 case "remove" :
225
-                    geodir_remove_from_favorite((int)$_REQUEST['pid']);
225
+                    geodir_remove_from_favorite((int) $_REQUEST['pid']);
226 226
                     break;
227 227
             endswitch;
228 228
         } else {
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
 
236 236
         $is_current_user_owner = true;
237 237
         if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
238
-            $is_current_user_owner = geodir_listing_belong_to_current_user((int)$_REQUEST['pid']);
238
+            $is_current_user_owner = geodir_listing_belong_to_current_user((int) $_REQUEST['pid']);
239 239
         }
240 240
 
241 241
         $request = $gd_session->get('listing');
@@ -346,7 +346,7 @@  discard block
 block discarded – undo
346 346
          * @since 1.0.0
347 347
          * @package GeoDirectory
348 348
          */
349
-        include_once(geodir_plugin_path() . '/geodirectory-functions/geodirectory_reg.php');
349
+        include_once(geodir_plugin_path().'/geodirectory-functions/geodirectory_reg.php');
350 350
     }
351 351
 
352 352
     if (isset($_REQUEST['ajax_action']) && $_REQUEST['ajax_action'] == 'geodir_get_term_list') {
@@ -373,37 +373,37 @@  discard block
 block discarded – undo
373 373
         exit();
374 374
     }
375 375
     
376
-    if ( !empty($_REQUEST['geodir_ajax'] ) && $_REQUEST['geodir_ajax'] == 'duplicate' && geodir_is_wpml() ) {
377
-        if ( !empty( $_REQUEST['_nonce'] ) && wp_verify_nonce( $_REQUEST['_nonce'], 'geodir_duplicate_nonce' ) ) {
376
+    if (!empty($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'duplicate' && geodir_is_wpml()) {
377
+        if (!empty($_REQUEST['_nonce']) && wp_verify_nonce($_REQUEST['_nonce'], 'geodir_duplicate_nonce')) {
378 378
             $json = array();
379 379
             $json['success'] = false;
380 380
             
381
-            $post_id = !empty( $_REQUEST['post_id'] ) ? absint( $_REQUEST['post_id'] ) : 0;
382
-            $langs = !empty( $_REQUEST['dups'] ) ? explode( ',', sanitize_text_field( $_REQUEST['dups'] ) ) : array();
381
+            $post_id = !empty($_REQUEST['post_id']) ? absint($_REQUEST['post_id']) : 0;
382
+            $langs = !empty($_REQUEST['dups']) ? explode(',', sanitize_text_field($_REQUEST['dups'])) : array();
383 383
             
384
-            if ( !empty( $post_id ) && !empty( $langs ) ) {
385
-                if ( geodir_wpml_allowed_to_duplicate( $post_id ) ) {
384
+            if (!empty($post_id) && !empty($langs)) {
385
+                if (geodir_wpml_allowed_to_duplicate($post_id)) {
386 386
                     global $sitepress;
387 387
                     
388
-                    $element_type = 'post_' . get_post_type( $post_id );
389
-                    $master_post_id = $sitepress->get_original_element_id( $post_id, $element_type );
388
+                    $element_type = 'post_'.get_post_type($post_id);
389
+                    $master_post_id = $sitepress->get_original_element_id($post_id, $element_type);
390 390
                     
391
-                    if ( $master_post_id == $post_id ) {
391
+                    if ($master_post_id == $post_id) {
392 392
                         $_REQUEST['icl_ajx_action'] = 'make_duplicates';
393 393
                         
394
-                        foreach ( $langs as $lang ) {
395
-                            $return = $sitepress->make_duplicate( $master_post_id, $lang );
394
+                        foreach ($langs as $lang) {
395
+                            $return = $sitepress->make_duplicate($master_post_id, $lang);
396 396
                         }
397 397
                         $json['success'] = true;
398 398
                     } else {
399
-                        $json['error'] = __( 'Translation can be done from original listing only.', 'geodirectory' );
399
+                        $json['error'] = __('Translation can be done from original listing only.', 'geodirectory');
400 400
                     }
401 401
                 } else {
402
-                    $json['error'] = __( 'You are not allowed to translate this listing.', 'geodirectory' );
402
+                    $json['error'] = __('You are not allowed to translate this listing.', 'geodirectory');
403 403
                 }
404 404
             }
405 405
             
406
-            wp_send_json( $json );
406
+            wp_send_json($json);
407 407
         }
408 408
     }
409 409
 
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
 }
412 412
 
413 413
 
414
-function geodir_show_ga_stats(){
414
+function geodir_show_ga_stats() {
415 415
     if (isset($_REQUEST['ga_start'])) {
416 416
         $ga_start = $_REQUEST['ga_start'];
417 417
     } else {
@@ -425,9 +425,9 @@  discard block
 block discarded – undo
425 425
     try {
426 426
         geodir_getGoogleAnalytics($_REQUEST['ga_page'], $ga_start, $ga_end);
427 427
     } catch (Exception $e) {
428
-        geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) );
428
+        geodir_error_log(wp_sprintf(__('GD Google Analytics API Error(%s) : %s', 'geodirectory'), $e->getCode(), $e->getMessage()));
429 429
     }
430 430
     die;
431 431
 }
432
-add_action( 'wp_ajax_gdga', 'geodir_show_ga_stats' );
433
-add_action( 'wp_ajax_nopriv_gdga', 'geodir_show_ga_stats' );
434 432
\ No newline at end of file
433
+add_action('wp_ajax_gdga', 'geodir_show_ga_stats');
434
+add_action('wp_ajax_nopriv_gdga', 'geodir_show_ga_stats');
435 435
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-templates/login_frm.php 3 patches
Indentation   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -10,13 +10,13 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 if (isset($_GET['redirect_to']) && $_GET['redirect_to'] != '') {
13
-    $redirect_to = $_GET['redirect_to'];
13
+	$redirect_to = $_GET['redirect_to'];
14 14
 } else {
15
-    //echo $_SERVER['HTTP_HOST'] ;
16
-    $redirect_to = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '';
17
-    if (strpos($redirect_to, $_SERVER['HTTP_HOST']) === false) {
18
-        $redirect_to = home_url();
19
-    }
15
+	//echo $_SERVER['HTTP_HOST'] ;
16
+	$redirect_to = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '';
17
+	if (strpos($redirect_to, $_SERVER['HTTP_HOST']) === false) {
18
+		$redirect_to = home_url();
19
+	}
20 20
 
21 21
 }
22 22
 
@@ -38,37 +38,37 @@  discard block
 block discarded – undo
38 38
     <h4>
39 39
         <?php
40 40
 
41
-            /**
42
-             * Filter the `SIGN_IN_PAGE_TITLE` title text on login form template.
43
-             *
44
-             * @since 1.0.0
45
-             */
46
-            echo apply_filters('geodir_login_page_title', SIGN_IN_PAGE_TITLE);
41
+			/**
42
+			 * Filter the `SIGN_IN_PAGE_TITLE` title text on login form template.
43
+			 *
44
+			 * @since 1.0.0
45
+			 */
46
+			echo apply_filters('geodir_login_page_title', SIGN_IN_PAGE_TITLE);
47 47
 
48
-        ?>
48
+		?>
49 49
     </h4>
50 50
     <?php
51
-    if (isset($_REQUEST['emsg']) && $_REQUEST['emsg'] == 'fw') {
52
-        echo "<p class=\"error_msg\"> " . INVALID_USER_FPW_MSG . " </p>";
53
-    } elseif (isset($_REQUEST['logemsg']) && $_REQUEST['logemsg'] == 1) {
54
-        echo "<p class=\"error_msg\"> " . INVALID_USER_PW_MSG . " </p>";
55
-    }
51
+	if (isset($_REQUEST['emsg']) && $_REQUEST['emsg'] == 'fw') {
52
+		echo "<p class=\"error_msg\"> " . INVALID_USER_FPW_MSG . " </p>";
53
+	} elseif (isset($_REQUEST['logemsg']) && $_REQUEST['logemsg'] == 1) {
54
+		echo "<p class=\"error_msg\"> " . INVALID_USER_PW_MSG . " </p>";
55
+	}
56 56
 
57
-    if (isset($_REQUEST['checkemail']) && $_REQUEST['checkemail'] == 'confirm')
58
-        echo '<p class="sucess_msg">' . PW_SEND_CONFIRM_MSG . '</p>';
57
+	if (isset($_REQUEST['checkemail']) && $_REQUEST['checkemail'] == 'confirm')
58
+		echo '<p class="sucess_msg">' . PW_SEND_CONFIRM_MSG . '</p>';
59 59
 
60
-    do_action('geodir_login_error_messages');
60
+	do_action('geodir_login_error_messages');
61 61
 
62
-    ?>
62
+	?>
63 63
     <form name="cus_loginform" id="cus_loginform" method="post">
64 64
 
65 65
         <div class="form_row clearfix">
66 66
             <input placeholder='<?php echo USERNAME_TEXT; ?>' type="text" name="log" id="user_login"
67 67
                    value="<?php global $user_login;
68
-                   if (!isset($user_login)) {
69
-                       $user_login = '';
70
-                   }
71
-                   echo esc_attr($user_login); ?>" size="20" class="textfield"/>
68
+				   if (!isset($user_login)) {
69
+					   $user_login = '';
70
+				   }
71
+				   echo esc_attr($user_login); ?>" size="20" class="textfield"/>
72 72
             <span class="user_loginInfo"></span>
73 73
         </div>
74 74
 
@@ -79,14 +79,14 @@  discard block
 block discarded – undo
79 79
         </div>
80 80
 
81 81
         <?php
82
-        /**
83
-         * This is a default WordPress action that calls any additional elements needed for any login forms.
84
-         *
85
-         * We use this action before the remember me checkbox on the sigin form.
86
-         *
87
-         * @since 1.0.0
88
-         */
89
-        do_action('login_form'); ?>
82
+		/**
83
+		 * This is a default WordPress action that calls any additional elements needed for any login forms.
84
+		 *
85
+		 * We use this action before the remember me checkbox on the sigin form.
86
+		 *
87
+		 * @since 1.0.0
88
+		 */
89
+		do_action('login_form'); ?>
90 90
         <p class="rember">
91 91
             <input name="rememberme" type="checkbox" id="rememberme" value="forever" class="fl"/>
92 92
             <?php echo REMEMBER_ON_COMPUTER_TEXT; ?>
@@ -110,12 +110,12 @@  discard block
 block discarded – undo
110 110
                 <input placeholder='<?php echo USERNAME_EMAIL_TEXT; ?>' type="text" name="user_login"
111 111
                        value="<?php echo esc_attr($user_login); ?>" size="20" class="user_login1 textfield"/>
112 112
                 <?php
113
-                /**
114
-                 * Called before the get new password button in the login box template.
115
-                 *
116
-                 * @since 1.0.0
117
-                 */
118
-                do_action('lostpassword_form'); ?>
113
+				/**
114
+				 * Called before the get new password button in the login box template.
115
+				 *
116
+				 * @since 1.0.0
117
+				 */
118
+				do_action('lostpassword_form'); ?>
119 119
             </div>
120 120
             <input type="submit" name="get_new_password" value="<?php echo GET_NEW_PW_TEXT; ?>" class="geodir_button"/>
121 121
         </form>
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,13 +49,13 @@
 block discarded – undo
49 49
     </h4>
50 50
     <?php
51 51
     if (isset($_REQUEST['emsg']) && $_REQUEST['emsg'] == 'fw') {
52
-        echo "<p class=\"error_msg\"> " . INVALID_USER_FPW_MSG . " </p>";
52
+        echo "<p class=\"error_msg\"> ".INVALID_USER_FPW_MSG." </p>";
53 53
     } elseif (isset($_REQUEST['logemsg']) && $_REQUEST['logemsg'] == 1) {
54
-        echo "<p class=\"error_msg\"> " . INVALID_USER_PW_MSG . " </p>";
54
+        echo "<p class=\"error_msg\"> ".INVALID_USER_PW_MSG." </p>";
55 55
     }
56 56
 
57 57
     if (isset($_REQUEST['checkemail']) && $_REQUEST['checkemail'] == 'confirm')
58
-        echo '<p class="sucess_msg">' . PW_SEND_CONFIRM_MSG . '</p>';
58
+        echo '<p class="sucess_msg">'.PW_SEND_CONFIRM_MSG.'</p>';
59 59
 
60 60
     do_action('geodir_login_error_messages');
61 61
 
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,8 +54,9 @@
 block discarded – undo
54 54
         echo "<p class=\"error_msg\"> " . INVALID_USER_PW_MSG . " </p>";
55 55
     }
56 56
 
57
-    if (isset($_REQUEST['checkemail']) && $_REQUEST['checkemail'] == 'confirm')
58
-        echo '<p class="sucess_msg">' . PW_SEND_CONFIRM_MSG . '</p>';
57
+    if (isset($_REQUEST['checkemail']) && $_REQUEST['checkemail'] == 'confirm') {
58
+            echo '<p class="sucess_msg">' . PW_SEND_CONFIRM_MSG . '</p>';
59
+    }
59 60
 
60 61
     do_action('geodir_login_error_messages');
61 62
 
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Auth/OAuth2.php 3 patches
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -500,7 +500,7 @@  discard block
 block discarded – undo
500 500
    * @param [$issuer] the expected issues, defaults to Google
501 501
    * @param [$max_expiry] the max lifetime of a token, defaults to MAX_TOKEN_LIFETIME_SECS
502 502
    * @throws Google_Auth_Exception
503
-   * @return mixed token information if valid, false if not
503
+   * @return Google_Auth_LoginTicket token information if valid, false if not
504 504
    */
505 505
   public function verifySignedJwtWithCerts(
506 506
       $jwt,
@@ -626,6 +626,7 @@  discard block
 block discarded – undo
626 626
 
627 627
   /**
628 628
    * Add a parameter to the auth params if not empty string.
629
+   * @param string $name
629 630
    */
630 631
   private function maybeAddParam($params, $name)
631 632
   {
Please login to merge, or discard this patch.
Indentation   +411 added lines, -411 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
    */
58 58
   public function __construct(Google_Client $client)
59 59
   {
60
-    $this->client = $client;
60
+	$this->client = $client;
61 61
   }
62 62
 
63 63
   /**
@@ -72,8 +72,8 @@  discard block
 block discarded – undo
72 72
    */
73 73
   public function authenticatedRequest(Google_Http_Request $request)
74 74
   {
75
-    $request = $this->sign($request);
76
-    return $this->client->getIo()->makeRequest($request);
75
+	$request = $this->sign($request);
76
+	return $this->client->getIo()->makeRequest($request);
77 77
   }
78 78
 
79 79
   /**
@@ -84,52 +84,52 @@  discard block
 block discarded – undo
84 84
    */
85 85
   public function authenticate($code, $crossClient = false)
86 86
   {
87
-    if (strlen($code) == 0) {
88
-      throw new Google_Auth_Exception("Invalid code");
89
-    }
90
-
91
-    $arguments = array(
92
-          'code' => $code,
93
-          'grant_type' => 'authorization_code',
94
-          'client_id' => $this->client->getClassConfig($this, 'client_id'),
95
-          'client_secret' => $this->client->getClassConfig($this, 'client_secret')
96
-    );
97
-
98
-    if ($crossClient !== true) {
99
-        $arguments['redirect_uri'] = $this->client->getClassConfig($this, 'redirect_uri');
100
-    }
101
-
102
-    // We got here from the redirect from a successful authorization grant,
103
-    // fetch the access token
104
-    $request = new Google_Http_Request(
105
-        self::OAUTH2_TOKEN_URI,
106
-        'POST',
107
-        array(),
108
-        $arguments
109
-    );
110
-    $request->disableGzip();
111
-    $response = $this->client->getIo()->makeRequest($request);
112
-
113
-    if ($response->getResponseHttpCode() == 200) {
114
-      $this->setAccessToken($response->getResponseBody());
115
-      $this->token['created'] = time();
116
-      return $this->getAccessToken();
117
-    } else {
118
-      $decodedResponse = json_decode($response->getResponseBody(), true);
119
-      if ($decodedResponse != null && $decodedResponse['error']) {
120
-        $errorText = $decodedResponse['error'];
121
-        if (isset($decodedResponse['error_description'])) {
122
-          $errorText .= ": " . $decodedResponse['error_description'];
123
-        }
124
-      }
125
-      throw new Google_Auth_Exception(
126
-          sprintf(
127
-              "Error fetching OAuth2 access token, message: '%s'",
128
-              $errorText
129
-          ),
130
-          $response->getResponseHttpCode()
131
-      );
132
-    }
87
+	if (strlen($code) == 0) {
88
+	  throw new Google_Auth_Exception("Invalid code");
89
+	}
90
+
91
+	$arguments = array(
92
+		  'code' => $code,
93
+		  'grant_type' => 'authorization_code',
94
+		  'client_id' => $this->client->getClassConfig($this, 'client_id'),
95
+		  'client_secret' => $this->client->getClassConfig($this, 'client_secret')
96
+	);
97
+
98
+	if ($crossClient !== true) {
99
+		$arguments['redirect_uri'] = $this->client->getClassConfig($this, 'redirect_uri');
100
+	}
101
+
102
+	// We got here from the redirect from a successful authorization grant,
103
+	// fetch the access token
104
+	$request = new Google_Http_Request(
105
+		self::OAUTH2_TOKEN_URI,
106
+		'POST',
107
+		array(),
108
+		$arguments
109
+	);
110
+	$request->disableGzip();
111
+	$response = $this->client->getIo()->makeRequest($request);
112
+
113
+	if ($response->getResponseHttpCode() == 200) {
114
+	  $this->setAccessToken($response->getResponseBody());
115
+	  $this->token['created'] = time();
116
+	  return $this->getAccessToken();
117
+	} else {
118
+	  $decodedResponse = json_decode($response->getResponseBody(), true);
119
+	  if ($decodedResponse != null && $decodedResponse['error']) {
120
+		$errorText = $decodedResponse['error'];
121
+		if (isset($decodedResponse['error_description'])) {
122
+		  $errorText .= ": " . $decodedResponse['error_description'];
123
+		}
124
+	  }
125
+	  throw new Google_Auth_Exception(
126
+		  sprintf(
127
+			  "Error fetching OAuth2 access token, message: '%s'",
128
+			  $errorText
129
+		  ),
130
+		  $response->getResponseHttpCode()
131
+	  );
132
+	}
133 133
   }
134 134
 
135 135
   /**
@@ -141,37 +141,37 @@  discard block
 block discarded – undo
141 141
    */
142 142
   public function createAuthUrl($scope)
143 143
   {
144
-    $params = array(
145
-        'response_type' => 'code',
146
-        'redirect_uri' => $this->client->getClassConfig($this, 'redirect_uri'),
147
-        'client_id' => $this->client->getClassConfig($this, 'client_id'),
148
-        'scope' => $scope,
149
-        'access_type' => $this->client->getClassConfig($this, 'access_type'),
150
-    );
151
-
152
-    // Prefer prompt to approval prompt.
153
-    if ($this->client->getClassConfig($this, 'prompt')) {
154
-      $params = $this->maybeAddParam($params, 'prompt');
155
-    } else {
156
-      $params = $this->maybeAddParam($params, 'approval_prompt');
157
-    }
158
-    $params = $this->maybeAddParam($params, 'login_hint');
159
-    $params = $this->maybeAddParam($params, 'hd');
160
-    $params = $this->maybeAddParam($params, 'openid.realm');
161
-    $params = $this->maybeAddParam($params, 'include_granted_scopes');
162
-
163
-    // If the list of scopes contains plus.login, add request_visible_actions
164
-    // to auth URL.
165
-    $rva = $this->client->getClassConfig($this, 'request_visible_actions');
166
-    if (strpos($scope, 'plus.login') && strlen($rva) > 0) {
167
-        $params['request_visible_actions'] = $rva;
168
-    }
169
-
170
-    if (isset($this->state)) {
171
-      $params['state'] = $this->state;
172
-    }
173
-
174
-    return self::OAUTH2_AUTH_URL . "?" . http_build_query($params, '', '&');
144
+	$params = array(
145
+		'response_type' => 'code',
146
+		'redirect_uri' => $this->client->getClassConfig($this, 'redirect_uri'),
147
+		'client_id' => $this->client->getClassConfig($this, 'client_id'),
148
+		'scope' => $scope,
149
+		'access_type' => $this->client->getClassConfig($this, 'access_type'),
150
+	);
151
+
152
+	// Prefer prompt to approval prompt.
153
+	if ($this->client->getClassConfig($this, 'prompt')) {
154
+	  $params = $this->maybeAddParam($params, 'prompt');
155
+	} else {
156
+	  $params = $this->maybeAddParam($params, 'approval_prompt');
157
+	}
158
+	$params = $this->maybeAddParam($params, 'login_hint');
159
+	$params = $this->maybeAddParam($params, 'hd');
160
+	$params = $this->maybeAddParam($params, 'openid.realm');
161
+	$params = $this->maybeAddParam($params, 'include_granted_scopes');
162
+
163
+	// If the list of scopes contains plus.login, add request_visible_actions
164
+	// to auth URL.
165
+	$rva = $this->client->getClassConfig($this, 'request_visible_actions');
166
+	if (strpos($scope, 'plus.login') && strlen($rva) > 0) {
167
+		$params['request_visible_actions'] = $rva;
168
+	}
169
+
170
+	if (isset($this->state)) {
171
+	  $params['state'] = $this->state;
172
+	}
173
+
174
+	return self::OAUTH2_AUTH_URL . "?" . http_build_query($params, '', '&');
175 175
   }
176 176
 
177 177
   /**
@@ -180,38 +180,38 @@  discard block
 block discarded – undo
180 180
    */
181 181
   public function setAccessToken($token)
182 182
   {
183
-    $token = json_decode($token, true);
184
-    if ($token == null) {
185
-      throw new Google_Auth_Exception('Could not json decode the token');
186
-    }
187
-    if (! isset($token['access_token'])) {
188
-      throw new Google_Auth_Exception("Invalid token format");
189
-    }
190
-    $this->token = $token;
183
+	$token = json_decode($token, true);
184
+	if ($token == null) {
185
+	  throw new Google_Auth_Exception('Could not json decode the token');
186
+	}
187
+	if (! isset($token['access_token'])) {
188
+	  throw new Google_Auth_Exception("Invalid token format");
189
+	}
190
+	$this->token = $token;
191 191
   }
192 192
 
193 193
   public function getAccessToken()
194 194
   {
195
-    return json_encode($this->token);
195
+	return json_encode($this->token);
196 196
   }
197 197
 
198 198
   public function getRefreshToken()
199 199
   {
200
-    if (array_key_exists('refresh_token', $this->token)) {
201
-      return $this->token['refresh_token'];
202
-    } else {
203
-      return null;
204
-    }
200
+	if (array_key_exists('refresh_token', $this->token)) {
201
+	  return $this->token['refresh_token'];
202
+	} else {
203
+	  return null;
204
+	}
205 205
   }
206 206
 
207 207
   public function setState($state)
208 208
   {
209
-    $this->state = $state;
209
+	$this->state = $state;
210 210
   }
211 211
 
212 212
   public function setAssertionCredentials(Google_Auth_AssertionCredentials $creds)
213 213
   {
214
-    $this->assertionCredentials = $creds;
214
+	$this->assertionCredentials = $creds;
215 215
   }
216 216
 
217 217
   /**
@@ -222,43 +222,43 @@  discard block
 block discarded – undo
222 222
    */
223 223
   public function sign(Google_Http_Request $request)
224 224
   {
225
-    // add the developer key to the request before signing it
226
-    if ($this->client->getClassConfig($this, 'developer_key')) {
227
-      $request->setQueryParam('key', $this->client->getClassConfig($this, 'developer_key'));
228
-    }
229
-
230
-    // Cannot sign the request without an OAuth access token.
231
-    if (null == $this->token && null == $this->assertionCredentials) {
232
-      return $request;
233
-    }
234
-
235
-    // Check if the token is set to expire in the next 30 seconds
236
-    // (or has already expired).
237
-    if ($this->isAccessTokenExpired()) {
238
-      if ($this->assertionCredentials) {
239
-        $this->refreshTokenWithAssertion();
240
-      } else {
241
-        $this->client->getLogger()->debug('OAuth2 access token expired');
242
-        if (! array_key_exists('refresh_token', $this->token)) {
243
-          $error = "The OAuth 2.0 access token has expired,"
244
-                  ." and a refresh token is not available. Refresh tokens"
245
-                  ." are not returned for responses that were auto-approved.";
246
-
247
-          $this->client->getLogger()->error($error);
248
-          throw new Google_Auth_Exception($error);
249
-        }
250
-        $this->refreshToken($this->token['refresh_token']);
251
-      }
252
-    }
253
-
254
-    $this->client->getLogger()->debug('OAuth2 authentication');
255
-
256
-    // Add the OAuth2 header to the request
257
-    $request->setRequestHeaders(
258
-        array('Authorization' => 'Bearer ' . $this->token['access_token'])
259
-    );
260
-
261
-    return $request;
225
+	// add the developer key to the request before signing it
226
+	if ($this->client->getClassConfig($this, 'developer_key')) {
227
+	  $request->setQueryParam('key', $this->client->getClassConfig($this, 'developer_key'));
228
+	}
229
+
230
+	// Cannot sign the request without an OAuth access token.
231
+	if (null == $this->token && null == $this->assertionCredentials) {
232
+	  return $request;
233
+	}
234
+
235
+	// Check if the token is set to expire in the next 30 seconds
236
+	// (or has already expired).
237
+	if ($this->isAccessTokenExpired()) {
238
+	  if ($this->assertionCredentials) {
239
+		$this->refreshTokenWithAssertion();
240
+	  } else {
241
+		$this->client->getLogger()->debug('OAuth2 access token expired');
242
+		if (! array_key_exists('refresh_token', $this->token)) {
243
+		  $error = "The OAuth 2.0 access token has expired,"
244
+				  ." and a refresh token is not available. Refresh tokens"
245
+				  ." are not returned for responses that were auto-approved.";
246
+
247
+		  $this->client->getLogger()->error($error);
248
+		  throw new Google_Auth_Exception($error);
249
+		}
250
+		$this->refreshToken($this->token['refresh_token']);
251
+	  }
252
+	}
253
+
254
+	$this->client->getLogger()->debug('OAuth2 authentication');
255
+
256
+	// Add the OAuth2 header to the request
257
+	$request->setRequestHeaders(
258
+		array('Authorization' => 'Bearer ' . $this->token['access_token'])
259
+	);
260
+
261
+	return $request;
262 262
   }
263 263
 
264 264
   /**
@@ -268,14 +268,14 @@  discard block
 block discarded – undo
268 268
    */
269 269
   public function refreshToken($refreshToken)
270 270
   {
271
-    $this->refreshTokenRequest(
272
-        array(
273
-          'client_id' => $this->client->getClassConfig($this, 'client_id'),
274
-          'client_secret' => $this->client->getClassConfig($this, 'client_secret'),
275
-          'refresh_token' => $refreshToken,
276
-          'grant_type' => 'refresh_token'
277
-        )
278
-    );
271
+	$this->refreshTokenRequest(
272
+		array(
273
+		  'client_id' => $this->client->getClassConfig($this, 'client_id'),
274
+		  'client_secret' => $this->client->getClassConfig($this, 'client_secret'),
275
+		  'refresh_token' => $refreshToken,
276
+		  'grant_type' => 'refresh_token'
277
+		)
278
+	);
279 279
   }
280 280
 
281 281
   /**
@@ -285,83 +285,83 @@  discard block
 block discarded – undo
285 285
    */
286 286
   public function refreshTokenWithAssertion($assertionCredentials = null)
287 287
   {
288
-    if (!$assertionCredentials) {
289
-      $assertionCredentials = $this->assertionCredentials;
290
-    }
291
-
292
-    $cacheKey = $assertionCredentials->getCacheKey();
293
-
294
-    if ($cacheKey) {
295
-      // We can check whether we have a token available in the
296
-      // cache. If it is expired, we can retrieve a new one from
297
-      // the assertion.
298
-      $token = $this->client->getCache()->get($cacheKey);
299
-      if ($token) {
300
-        $this->setAccessToken($token);
301
-      }
302
-      if (!$this->isAccessTokenExpired()) {
303
-        return;
304
-      }
305
-    }
306
-
307
-    $this->client->getLogger()->debug('OAuth2 access token expired');
308
-    $this->refreshTokenRequest(
309
-        array(
310
-          'grant_type' => 'assertion',
311
-          'assertion_type' => $assertionCredentials->assertionType,
312
-          'assertion' => $assertionCredentials->generateAssertion(),
313
-        )
314
-    );
315
-
316
-    if ($cacheKey) {
317
-      // Attempt to cache the token.
318
-      $this->client->getCache()->set(
319
-          $cacheKey,
320
-          $this->getAccessToken()
321
-      );
322
-    }
288
+	if (!$assertionCredentials) {
289
+	  $assertionCredentials = $this->assertionCredentials;
290
+	}
291
+
292
+	$cacheKey = $assertionCredentials->getCacheKey();
293
+
294
+	if ($cacheKey) {
295
+	  // We can check whether we have a token available in the
296
+	  // cache. If it is expired, we can retrieve a new one from
297
+	  // the assertion.
298
+	  $token = $this->client->getCache()->get($cacheKey);
299
+	  if ($token) {
300
+		$this->setAccessToken($token);
301
+	  }
302
+	  if (!$this->isAccessTokenExpired()) {
303
+		return;
304
+	  }
305
+	}
306
+
307
+	$this->client->getLogger()->debug('OAuth2 access token expired');
308
+	$this->refreshTokenRequest(
309
+		array(
310
+		  'grant_type' => 'assertion',
311
+		  'assertion_type' => $assertionCredentials->assertionType,
312
+		  'assertion' => $assertionCredentials->generateAssertion(),
313
+		)
314
+	);
315
+
316
+	if ($cacheKey) {
317
+	  // Attempt to cache the token.
318
+	  $this->client->getCache()->set(
319
+		  $cacheKey,
320
+		  $this->getAccessToken()
321
+	  );
322
+	}
323 323
   }
324 324
 
325 325
   private function refreshTokenRequest($params)
326 326
   {
327
-    if (isset($params['assertion'])) {
328
-      $this->client->getLogger()->info(
329
-          'OAuth2 access token refresh with Signed JWT assertion grants.'
330
-      );
331
-    } else {
332
-      $this->client->getLogger()->info('OAuth2 access token refresh');
333
-    }
334
-
335
-    $http = new Google_Http_Request(
336
-        self::OAUTH2_TOKEN_URI,
337
-        'POST',
338
-        array(),
339
-        $params
340
-    );
341
-    $http->disableGzip();
342
-    $request = $this->client->getIo()->makeRequest($http);
343
-
344
-    $code = $request->getResponseHttpCode();
345
-    $body = $request->getResponseBody();
346
-    if (200 == $code) {
347
-      $token = json_decode($body, true);
348
-      if ($token == null) {
349
-        throw new Google_Auth_Exception("Could not json decode the access token");
350
-      }
351
-
352
-      if (! isset($token['access_token']) || ! isset($token['expires_in'])) {
353
-        throw new Google_Auth_Exception("Invalid token format");
354
-      }
355
-
356
-      if (isset($token['id_token'])) {
357
-        $this->token['id_token'] = $token['id_token'];
358
-      }
359
-      $this->token['access_token'] = $token['access_token'];
360
-      $this->token['expires_in'] = $token['expires_in'];
361
-      $this->token['created'] = time();
362
-    } else {
363
-      throw new Google_Auth_Exception("Error refreshing the OAuth2 token, message: '$body'", $code);
364
-    }
327
+	if (isset($params['assertion'])) {
328
+	  $this->client->getLogger()->info(
329
+		  'OAuth2 access token refresh with Signed JWT assertion grants.'
330
+	  );
331
+	} else {
332
+	  $this->client->getLogger()->info('OAuth2 access token refresh');
333
+	}
334
+
335
+	$http = new Google_Http_Request(
336
+		self::OAUTH2_TOKEN_URI,
337
+		'POST',
338
+		array(),
339
+		$params
340
+	);
341
+	$http->disableGzip();
342
+	$request = $this->client->getIo()->makeRequest($http);
343
+
344
+	$code = $request->getResponseHttpCode();
345
+	$body = $request->getResponseBody();
346
+	if (200 == $code) {
347
+	  $token = json_decode($body, true);
348
+	  if ($token == null) {
349
+		throw new Google_Auth_Exception("Could not json decode the access token");
350
+	  }
351
+
352
+	  if (! isset($token['access_token']) || ! isset($token['expires_in'])) {
353
+		throw new Google_Auth_Exception("Invalid token format");
354
+	  }
355
+
356
+	  if (isset($token['id_token'])) {
357
+		$this->token['id_token'] = $token['id_token'];
358
+	  }
359
+	  $this->token['access_token'] = $token['access_token'];
360
+	  $this->token['expires_in'] = $token['expires_in'];
361
+	  $this->token['created'] = time();
362
+	} else {
363
+	  throw new Google_Auth_Exception("Error refreshing the OAuth2 token, message: '$body'", $code);
364
+	}
365 365
   }
366 366
 
367 367
   /**
@@ -373,31 +373,31 @@  discard block
 block discarded – undo
373 373
    */
374 374
   public function revokeToken($token = null)
375 375
   {
376
-    if (!$token) {
377
-      if (!$this->token) {
378
-        // Not initialized, no token to actually revoke
379
-        return false;
380
-      } elseif (array_key_exists('refresh_token', $this->token)) {
381
-        $token = $this->token['refresh_token'];
382
-      } else {
383
-        $token = $this->token['access_token'];
384
-      }
385
-    }
386
-    $request = new Google_Http_Request(
387
-        self::OAUTH2_REVOKE_URI,
388
-        'POST',
389
-        array(),
390
-        "token=$token"
391
-    );
392
-    $request->disableGzip();
393
-    $response = $this->client->getIo()->makeRequest($request);
394
-    $code = $response->getResponseHttpCode();
395
-    if ($code == 200) {
396
-      $this->token = null;
397
-      return true;
398
-    }
399
-
400
-    return false;
376
+	if (!$token) {
377
+	  if (!$this->token) {
378
+		// Not initialized, no token to actually revoke
379
+		return false;
380
+	  } elseif (array_key_exists('refresh_token', $this->token)) {
381
+		$token = $this->token['refresh_token'];
382
+	  } else {
383
+		$token = $this->token['access_token'];
384
+	  }
385
+	}
386
+	$request = new Google_Http_Request(
387
+		self::OAUTH2_REVOKE_URI,
388
+		'POST',
389
+		array(),
390
+		"token=$token"
391
+	);
392
+	$request->disableGzip();
393
+	$response = $this->client->getIo()->makeRequest($request);
394
+	$code = $response->getResponseHttpCode();
395
+	if ($code == 200) {
396
+	  $this->token = null;
397
+	  return true;
398
+	}
399
+
400
+	return false;
401 401
   }
402 402
 
403 403
   /**
@@ -406,15 +406,15 @@  discard block
 block discarded – undo
406 406
    */
407 407
   public function isAccessTokenExpired()
408 408
   {
409
-    if (!$this->token || !isset($this->token['created'])) {
410
-      return true;
411
-    }
409
+	if (!$this->token || !isset($this->token['created'])) {
410
+	  return true;
411
+	}
412 412
 
413
-    // If the token is set to expire in the next 30 seconds.
414
-    $expired = ($this->token['created']
415
-        + ($this->token['expires_in'] - 30)) < time();
413
+	// If the token is set to expire in the next 30 seconds.
414
+	$expired = ($this->token['created']
415
+		+ ($this->token['expires_in'] - 30)) < time();
416 416
 
417
-    return $expired;
417
+	return $expired;
418 418
   }
419 419
 
420 420
   // Gets federated sign-on certificates to use for verifying identity tokens.
@@ -422,9 +422,9 @@  discard block
 block discarded – undo
422 422
   // are PEM encoded certificates.
423 423
   private function getFederatedSignOnCerts()
424 424
   {
425
-    return $this->retrieveCertsFromLocation(
426
-        $this->client->getClassConfig($this, 'federated_signon_certs_url')
427
-    );
425
+	return $this->retrieveCertsFromLocation(
426
+		$this->client->getClassConfig($this, 'federated_signon_certs_url')
427
+	);
428 428
   }
429 429
 
430 430
   /**
@@ -436,36 +436,36 @@  discard block
 block discarded – undo
436 436
    */
437 437
   public function retrieveCertsFromLocation($url)
438 438
   {
439
-    // If we're retrieving a local file, just grab it.
440
-    if ("http" != substr($url, 0, 4)) {
441
-      $file = file_get_contents($url);
442
-      if ($file) {
443
-        return json_decode($file, true);
444
-      } else {
445
-        throw new Google_Auth_Exception(
446
-            "Failed to retrieve verification certificates: '" .
447
-            $url . "'."
448
-        );
449
-      }
450
-    }
451
-
452
-    // This relies on makeRequest caching certificate responses.
453
-    $request = $this->client->getIo()->makeRequest(
454
-        new Google_Http_Request(
455
-            $url
456
-        )
457
-    );
458
-    if ($request->getResponseHttpCode() == 200) {
459
-      $certs = json_decode($request->getResponseBody(), true);
460
-      if ($certs) {
461
-        return $certs;
462
-      }
463
-    }
464
-    throw new Google_Auth_Exception(
465
-        "Failed to retrieve verification certificates: '" .
466
-        $request->getResponseBody() . "'.",
467
-        $request->getResponseHttpCode()
468
-    );
439
+	// If we're retrieving a local file, just grab it.
440
+	if ("http" != substr($url, 0, 4)) {
441
+	  $file = file_get_contents($url);
442
+	  if ($file) {
443
+		return json_decode($file, true);
444
+	  } else {
445
+		throw new Google_Auth_Exception(
446
+			"Failed to retrieve verification certificates: '" .
447
+			$url . "'."
448
+		);
449
+	  }
450
+	}
451
+
452
+	// This relies on makeRequest caching certificate responses.
453
+	$request = $this->client->getIo()->makeRequest(
454
+		new Google_Http_Request(
455
+			$url
456
+		)
457
+	);
458
+	if ($request->getResponseHttpCode() == 200) {
459
+	  $certs = json_decode($request->getResponseBody(), true);
460
+	  if ($certs) {
461
+		return $certs;
462
+	  }
463
+	}
464
+	throw new Google_Auth_Exception(
465
+		"Failed to retrieve verification certificates: '" .
466
+		$request->getResponseBody() . "'.",
467
+		$request->getResponseHttpCode()
468
+	);
469 469
   }
470 470
 
471 471
   /**
@@ -480,15 +480,15 @@  discard block
 block discarded – undo
480 480
    */
481 481
   public function verifyIdToken($id_token = null, $audience = null)
482 482
   {
483
-    if (!$id_token) {
484
-      $id_token = $this->token['id_token'];
485
-    }
486
-    $certs = $this->getFederatedSignonCerts();
487
-    if (!$audience) {
488
-      $audience = $this->client->getClassConfig($this, 'client_id');
489
-    }
490
-
491
-    return $this->verifySignedJwtWithCerts($id_token, $certs, $audience, self::OAUTH2_ISSUER);
483
+	if (!$id_token) {
484
+	  $id_token = $this->token['id_token'];
485
+	}
486
+	$certs = $this->getFederatedSignonCerts();
487
+	if (!$audience) {
488
+	  $audience = $this->client->getClassConfig($this, 'client_id');
489
+	}
490
+
491
+	return $this->verifySignedJwtWithCerts($id_token, $certs, $audience, self::OAUTH2_ISSUER);
492 492
   }
493 493
 
494 494
   /**
@@ -503,125 +503,125 @@  discard block
 block discarded – undo
503 503
    * @return mixed token information if valid, false if not
504 504
    */
505 505
   public function verifySignedJwtWithCerts(
506
-      $jwt,
507
-      $certs,
508
-      $required_audience,
509
-      $issuer = null,
510
-      $max_expiry = null
506
+	  $jwt,
507
+	  $certs,
508
+	  $required_audience,
509
+	  $issuer = null,
510
+	  $max_expiry = null
511 511
   ) {
512
-    if (!$max_expiry) {
513
-      // Set the maximum time we will accept a token for.
514
-      $max_expiry = self::MAX_TOKEN_LIFETIME_SECS;
515
-    }
516
-
517
-    $segments = explode(".", $jwt);
518
-    if (count($segments) != 3) {
519
-      throw new Google_Auth_Exception("Wrong number of segments in token: $jwt");
520
-    }
521
-    $signed = $segments[0] . "." . $segments[1];
522
-    $signature = Google_Utils::urlSafeB64Decode($segments[2]);
523
-
524
-    // Parse envelope.
525
-    $envelope = json_decode(Google_Utils::urlSafeB64Decode($segments[0]), true);
526
-    if (!$envelope) {
527
-      throw new Google_Auth_Exception("Can't parse token envelope: " . $segments[0]);
528
-    }
529
-
530
-    // Parse token
531
-    $json_body = Google_Utils::urlSafeB64Decode($segments[1]);
532
-    $payload = json_decode($json_body, true);
533
-    if (!$payload) {
534
-      throw new Google_Auth_Exception("Can't parse token payload: " . $segments[1]);
535
-    }
536
-
537
-    // Check signature
538
-    $verified = false;
539
-    foreach ($certs as $keyName => $pem) {
540
-      $public_key = new Google_Verifier_Pem($pem);
541
-      if ($public_key->verify($signed, $signature)) {
542
-        $verified = true;
543
-        break;
544
-      }
545
-    }
546
-
547
-    if (!$verified) {
548
-      throw new Google_Auth_Exception("Invalid token signature: $jwt");
549
-    }
550
-
551
-    // Check issued-at timestamp
552
-    $iat = 0;
553
-    if (array_key_exists("iat", $payload)) {
554
-      $iat = $payload["iat"];
555
-    }
556
-    if (!$iat) {
557
-      throw new Google_Auth_Exception("No issue time in token: $json_body");
558
-    }
559
-    $earliest = $iat - self::CLOCK_SKEW_SECS;
560
-
561
-    // Check expiration timestamp
562
-    $now = time();
563
-    $exp = 0;
564
-    if (array_key_exists("exp", $payload)) {
565
-      $exp = $payload["exp"];
566
-    }
567
-    if (!$exp) {
568
-      throw new Google_Auth_Exception("No expiration time in token: $json_body");
569
-    }
570
-    if ($exp >= $now + $max_expiry) {
571
-      throw new Google_Auth_Exception(
572
-          sprintf("Expiration time too far in future: %s", $json_body)
573
-      );
574
-    }
575
-
576
-    $latest = $exp + self::CLOCK_SKEW_SECS;
577
-    if ($now < $earliest) {
578
-      throw new Google_Auth_Exception(
579
-          sprintf(
580
-              "Token used too early, %s < %s: %s",
581
-              $now,
582
-              $earliest,
583
-              $json_body
584
-          )
585
-      );
586
-    }
587
-    if ($now > $latest) {
588
-      throw new Google_Auth_Exception(
589
-          sprintf(
590
-              "Token used too late, %s > %s: %s",
591
-              $now,
592
-              $latest,
593
-              $json_body
594
-          )
595
-      );
596
-    }
597
-
598
-    $iss = $payload['iss'];
599
-    if ($issuer && $iss != $issuer) {
600
-      throw new Google_Auth_Exception(
601
-          sprintf(
602
-              "Invalid issuer, %s != %s: %s",
603
-              $iss,
604
-              $issuer,
605
-              $json_body
606
-          )
607
-      );
608
-    }
609
-
610
-    // Check audience
611
-    $aud = $payload["aud"];
612
-    if ($aud != $required_audience) {
613
-      throw new Google_Auth_Exception(
614
-          sprintf(
615
-              "Wrong recipient, %s != %s:",
616
-              $aud,
617
-              $required_audience,
618
-              $json_body
619
-          )
620
-      );
621
-    }
622
-
623
-    // All good.
624
-    return new Google_Auth_LoginTicket($envelope, $payload);
512
+	if (!$max_expiry) {
513
+	  // Set the maximum time we will accept a token for.
514
+	  $max_expiry = self::MAX_TOKEN_LIFETIME_SECS;
515
+	}
516
+
517
+	$segments = explode(".", $jwt);
518
+	if (count($segments) != 3) {
519
+	  throw new Google_Auth_Exception("Wrong number of segments in token: $jwt");
520
+	}
521
+	$signed = $segments[0] . "." . $segments[1];
522
+	$signature = Google_Utils::urlSafeB64Decode($segments[2]);
523
+
524
+	// Parse envelope.
525
+	$envelope = json_decode(Google_Utils::urlSafeB64Decode($segments[0]), true);
526
+	if (!$envelope) {
527
+	  throw new Google_Auth_Exception("Can't parse token envelope: " . $segments[0]);
528
+	}
529
+
530
+	// Parse token
531
+	$json_body = Google_Utils::urlSafeB64Decode($segments[1]);
532
+	$payload = json_decode($json_body, true);
533
+	if (!$payload) {
534
+	  throw new Google_Auth_Exception("Can't parse token payload: " . $segments[1]);
535
+	}
536
+
537
+	// Check signature
538
+	$verified = false;
539
+	foreach ($certs as $keyName => $pem) {
540
+	  $public_key = new Google_Verifier_Pem($pem);
541
+	  if ($public_key->verify($signed, $signature)) {
542
+		$verified = true;
543
+		break;
544
+	  }
545
+	}
546
+
547
+	if (!$verified) {
548
+	  throw new Google_Auth_Exception("Invalid token signature: $jwt");
549
+	}
550
+
551
+	// Check issued-at timestamp
552
+	$iat = 0;
553
+	if (array_key_exists("iat", $payload)) {
554
+	  $iat = $payload["iat"];
555
+	}
556
+	if (!$iat) {
557
+	  throw new Google_Auth_Exception("No issue time in token: $json_body");
558
+	}
559
+	$earliest = $iat - self::CLOCK_SKEW_SECS;
560
+
561
+	// Check expiration timestamp
562
+	$now = time();
563
+	$exp = 0;
564
+	if (array_key_exists("exp", $payload)) {
565
+	  $exp = $payload["exp"];
566
+	}
567
+	if (!$exp) {
568
+	  throw new Google_Auth_Exception("No expiration time in token: $json_body");
569
+	}
570
+	if ($exp >= $now + $max_expiry) {
571
+	  throw new Google_Auth_Exception(
572
+		  sprintf("Expiration time too far in future: %s", $json_body)
573
+	  );
574
+	}
575
+
576
+	$latest = $exp + self::CLOCK_SKEW_SECS;
577
+	if ($now < $earliest) {
578
+	  throw new Google_Auth_Exception(
579
+		  sprintf(
580
+			  "Token used too early, %s < %s: %s",
581
+			  $now,
582
+			  $earliest,
583
+			  $json_body
584
+		  )
585
+	  );
586
+	}
587
+	if ($now > $latest) {
588
+	  throw new Google_Auth_Exception(
589
+		  sprintf(
590
+			  "Token used too late, %s > %s: %s",
591
+			  $now,
592
+			  $latest,
593
+			  $json_body
594
+		  )
595
+	  );
596
+	}
597
+
598
+	$iss = $payload['iss'];
599
+	if ($issuer && $iss != $issuer) {
600
+	  throw new Google_Auth_Exception(
601
+		  sprintf(
602
+			  "Invalid issuer, %s != %s: %s",
603
+			  $iss,
604
+			  $issuer,
605
+			  $json_body
606
+		  )
607
+	  );
608
+	}
609
+
610
+	// Check audience
611
+	$aud = $payload["aud"];
612
+	if ($aud != $required_audience) {
613
+	  throw new Google_Auth_Exception(
614
+		  sprintf(
615
+			  "Wrong recipient, %s != %s:",
616
+			  $aud,
617
+			  $required_audience,
618
+			  $json_body
619
+		  )
620
+	  );
621
+	}
622
+
623
+	// All good.
624
+	return new Google_Auth_LoginTicket($envelope, $payload);
625 625
   }
626 626
 
627 627
   /**
@@ -629,10 +629,10 @@  discard block
 block discarded – undo
629 629
    */
630 630
   private function maybeAddParam($params, $name)
631 631
   {
632
-    $param = $this->client->getClassConfig($this, $name);
633
-    if ($param != '') {
634
-      $params[$name] = $param;
635
-    }
636
-    return $params;
632
+	$param = $this->client->getClassConfig($this, $name);
633
+	if ($param != '') {
634
+	  $params[$name] = $param;
635
+	}
636
+	return $params;
637 637
   }
638 638
 }
Please login to merge, or discard this patch.
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
  */
17 17
 
18 18
 if (!class_exists('Google_Client')) {
19
-  require_once dirname(__FILE__) . '/../autoload.php';
19
+  require_once dirname(__FILE__).'/../autoload.php';
20 20
 }
21 21
 
22 22
 /**
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
       if ($decodedResponse != null && $decodedResponse['error']) {
120 120
         $errorText = $decodedResponse['error'];
121 121
         if (isset($decodedResponse['error_description'])) {
122
-          $errorText .= ": " . $decodedResponse['error_description'];
122
+          $errorText .= ": ".$decodedResponse['error_description'];
123 123
         }
124 124
       }
125 125
       throw new Google_Auth_Exception(
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
       $params['state'] = $this->state;
172 172
     }
173 173
 
174
-    return self::OAUTH2_AUTH_URL . "?" . http_build_query($params, '', '&');
174
+    return self::OAUTH2_AUTH_URL."?".http_build_query($params, '', '&');
175 175
   }
176 176
 
177 177
   /**
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
     if ($token == null) {
185 185
       throw new Google_Auth_Exception('Could not json decode the token');
186 186
     }
187
-    if (! isset($token['access_token'])) {
187
+    if (!isset($token['access_token'])) {
188 188
       throw new Google_Auth_Exception("Invalid token format");
189 189
     }
190 190
     $this->token = $token;
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
         $this->refreshTokenWithAssertion();
240 240
       } else {
241 241
         $this->client->getLogger()->debug('OAuth2 access token expired');
242
-        if (! array_key_exists('refresh_token', $this->token)) {
242
+        if (!array_key_exists('refresh_token', $this->token)) {
243 243
           $error = "The OAuth 2.0 access token has expired,"
244 244
                   ." and a refresh token is not available. Refresh tokens"
245 245
                   ." are not returned for responses that were auto-approved.";
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
 
256 256
     // Add the OAuth2 header to the request
257 257
     $request->setRequestHeaders(
258
-        array('Authorization' => 'Bearer ' . $this->token['access_token'])
258
+        array('Authorization' => 'Bearer '.$this->token['access_token'])
259 259
     );
260 260
 
261 261
     return $request;
@@ -349,7 +349,7 @@  discard block
 block discarded – undo
349 349
         throw new Google_Auth_Exception("Could not json decode the access token");
350 350
       }
351 351
 
352
-      if (! isset($token['access_token']) || ! isset($token['expires_in'])) {
352
+      if (!isset($token['access_token']) || !isset($token['expires_in'])) {
353 353
         throw new Google_Auth_Exception("Invalid token format");
354 354
       }
355 355
 
@@ -443,8 +443,8 @@  discard block
 block discarded – undo
443 443
         return json_decode($file, true);
444 444
       } else {
445 445
         throw new Google_Auth_Exception(
446
-            "Failed to retrieve verification certificates: '" .
447
-            $url . "'."
446
+            "Failed to retrieve verification certificates: '".
447
+            $url."'."
448 448
         );
449 449
       }
450 450
     }
@@ -462,8 +462,8 @@  discard block
 block discarded – undo
462 462
       }
463 463
     }
464 464
     throw new Google_Auth_Exception(
465
-        "Failed to retrieve verification certificates: '" .
466
-        $request->getResponseBody() . "'.",
465
+        "Failed to retrieve verification certificates: '".
466
+        $request->getResponseBody()."'.",
467 467
         $request->getResponseHttpCode()
468 468
     );
469 469
   }
@@ -518,20 +518,20 @@  discard block
 block discarded – undo
518 518
     if (count($segments) != 3) {
519 519
       throw new Google_Auth_Exception("Wrong number of segments in token: $jwt");
520 520
     }
521
-    $signed = $segments[0] . "." . $segments[1];
521
+    $signed = $segments[0].".".$segments[1];
522 522
     $signature = Google_Utils::urlSafeB64Decode($segments[2]);
523 523
 
524 524
     // Parse envelope.
525 525
     $envelope = json_decode(Google_Utils::urlSafeB64Decode($segments[0]), true);
526 526
     if (!$envelope) {
527
-      throw new Google_Auth_Exception("Can't parse token envelope: " . $segments[0]);
527
+      throw new Google_Auth_Exception("Can't parse token envelope: ".$segments[0]);
528 528
     }
529 529
 
530 530
     // Parse token
531 531
     $json_body = Google_Utils::urlSafeB64Decode($segments[1]);
532 532
     $payload = json_decode($json_body, true);
533 533
     if (!$payload) {
534
-      throw new Google_Auth_Exception("Can't parse token payload: " . $segments[1]);
534
+      throw new Google_Auth_Exception("Can't parse token payload: ".$segments[1]);
535 535
     }
536 536
 
537 537
     // Check signature
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Cache/File.php 3 patches
Doc Comments   +18 added lines patch added patch discarded remove patch
@@ -129,6 +129,9 @@  discard block
 block discarded – undo
129 129
     );
130 130
   }
131 131
 
132
+  /**
133
+   * @param string $file
134
+   */
132 135
   private function getWriteableCacheFile($file)
133 136
   {
134 137
     return $this->getCacheFile($file, true);
@@ -139,6 +142,9 @@  discard block
 block discarded – undo
139 142
     return $this->getCacheDir($file, $forWrite) . '/' . md5($file);
140 143
   }
141 144
 
145
+  /**
146
+   * @param boolean $forWrite
147
+   */
142 148
   private function getCacheDir($file, $forWrite)
143 149
   {
144 150
     // use the first 2 characters of the hash as a directory prefix
@@ -157,11 +163,17 @@  discard block
 block discarded – undo
157 163
     return $storageDir;
158 164
   }
159 165
 
166
+  /**
167
+   * @param string $storageFile
168
+   */
160 169
   private function acquireReadLock($storageFile)
161 170
   {
162 171
     return $this->acquireLock(LOCK_SH, $storageFile);
163 172
   }
164 173
 
174
+  /**
175
+   * @param string $storageFile
176
+   */
165 177
   private function acquireWriteLock($storageFile)
166 178
   {
167 179
     $rc = $this->acquireLock(LOCK_EX, $storageFile);
@@ -175,6 +187,9 @@  discard block
 block discarded – undo
175 187
     return $rc;
176 188
   }
177 189
 
190
+  /**
191
+   * @param integer $type
192
+   */
178 193
   private function acquireLock($type, $storageFile)
179 194
   {
180 195
     $mode = $type == LOCK_EX ? "w" : "r";
@@ -197,6 +212,9 @@  discard block
 block discarded – undo
197 212
     return true;
198 213
   }
199 214
 
215
+  /**
216
+   * @param string $storageFile
217
+   */
200 218
   public function unlock($storageFile)
201 219
   {
202 220
     if ($this->fh) {
Please login to merge, or discard this patch.
Indentation   +122 added lines, -122 removed lines patch added patch discarded remove patch
@@ -40,167 +40,167 @@
 block discarded – undo
40 40
 
41 41
   public function __construct(Google_Client $client)
42 42
   {
43
-    $this->client = $client;
44
-    $this->path = $this->client->getClassConfig($this, 'directory');
43
+	$this->client = $client;
44
+	$this->path = $this->client->getClassConfig($this, 'directory');
45 45
   }
46 46
 
47 47
   public function get($key, $expiration = false)
48 48
   {
49
-    $storageFile = $this->getCacheFile($key);
50
-    $data = false;
51
-
52
-    if (!file_exists($storageFile)) {
53
-      $this->client->getLogger()->debug(
54
-          'File cache miss',
55
-          array('key' => $key, 'file' => $storageFile)
56
-      );
57
-      return false;
58
-    }
59
-
60
-    if ($expiration) {
61
-      $mtime = filemtime($storageFile);
62
-      if ((time() - $mtime) >= $expiration) {
63
-        $this->client->getLogger()->debug(
64
-            'File cache miss (expired)',
65
-            array('key' => $key, 'file' => $storageFile)
66
-        );
67
-        $this->delete($key);
68
-        return false;
69
-      }
70
-    }
71
-
72
-    if ($this->acquireReadLock($storageFile)) {
73
-      if (filesize($storageFile) > 0) {
74
-        $data = fread($this->fh, filesize($storageFile));
75
-        $data =  unserialize($data);
76
-      } else {
77
-        $this->client->getLogger()->debug(
78
-            'Cache file was empty',
79
-            array('file' => $storageFile)
80
-        );
81
-      }
82
-      $this->unlock($storageFile);
83
-    }
84
-
85
-    $this->client->getLogger()->debug(
86
-        'File cache hit',
87
-        array('key' => $key, 'file' => $storageFile, 'var' => $data)
88
-    );
89
-
90
-    return $data;
49
+	$storageFile = $this->getCacheFile($key);
50
+	$data = false;
51
+
52
+	if (!file_exists($storageFile)) {
53
+	  $this->client->getLogger()->debug(
54
+		  'File cache miss',
55
+		  array('key' => $key, 'file' => $storageFile)
56
+	  );
57
+	  return false;
58
+	}
59
+
60
+	if ($expiration) {
61
+	  $mtime = filemtime($storageFile);
62
+	  if ((time() - $mtime) >= $expiration) {
63
+		$this->client->getLogger()->debug(
64
+			'File cache miss (expired)',
65
+			array('key' => $key, 'file' => $storageFile)
66
+		);
67
+		$this->delete($key);
68
+		return false;
69
+	  }
70
+	}
71
+
72
+	if ($this->acquireReadLock($storageFile)) {
73
+	  if (filesize($storageFile) > 0) {
74
+		$data = fread($this->fh, filesize($storageFile));
75
+		$data =  unserialize($data);
76
+	  } else {
77
+		$this->client->getLogger()->debug(
78
+			'Cache file was empty',
79
+			array('file' => $storageFile)
80
+		);
81
+	  }
82
+	  $this->unlock($storageFile);
83
+	}
84
+
85
+	$this->client->getLogger()->debug(
86
+		'File cache hit',
87
+		array('key' => $key, 'file' => $storageFile, 'var' => $data)
88
+	);
89
+
90
+	return $data;
91 91
   }
92 92
 
93 93
   public function set($key, $value)
94 94
   {
95
-    $storageFile = $this->getWriteableCacheFile($key);
96
-    if ($this->acquireWriteLock($storageFile)) {
97
-      // We serialize the whole request object, since we don't only want the
98
-      // responseContent but also the postBody used, headers, size, etc.
99
-      $data = serialize($value);
100
-      $result = fwrite($this->fh, $data);
101
-      $this->unlock($storageFile);
102
-
103
-      $this->client->getLogger()->debug(
104
-          'File cache set',
105
-          array('key' => $key, 'file' => $storageFile, 'var' => $value)
106
-      );
107
-    } else {
108
-      $this->client->getLogger()->notice(
109
-          'File cache set failed',
110
-          array('key' => $key, 'file' => $storageFile)
111
-      );
112
-    }
95
+	$storageFile = $this->getWriteableCacheFile($key);
96
+	if ($this->acquireWriteLock($storageFile)) {
97
+	  // We serialize the whole request object, since we don't only want the
98
+	  // responseContent but also the postBody used, headers, size, etc.
99
+	  $data = serialize($value);
100
+	  $result = fwrite($this->fh, $data);
101
+	  $this->unlock($storageFile);
102
+
103
+	  $this->client->getLogger()->debug(
104
+		  'File cache set',
105
+		  array('key' => $key, 'file' => $storageFile, 'var' => $value)
106
+	  );
107
+	} else {
108
+	  $this->client->getLogger()->notice(
109
+		  'File cache set failed',
110
+		  array('key' => $key, 'file' => $storageFile)
111
+	  );
112
+	}
113 113
   }
114 114
 
115 115
   public function delete($key)
116 116
   {
117
-    $file = $this->getCacheFile($key);
118
-    if (file_exists($file) && !unlink($file)) {
119
-      $this->client->getLogger()->error(
120
-          'File cache delete failed',
121
-          array('key' => $key, 'file' => $file)
122
-      );
123
-      throw new Google_Cache_Exception("Cache file could not be deleted");
124
-    }
125
-
126
-    $this->client->getLogger()->debug(
127
-        'File cache delete',
128
-        array('key' => $key, 'file' => $file)
129
-    );
117
+	$file = $this->getCacheFile($key);
118
+	if (file_exists($file) && !unlink($file)) {
119
+	  $this->client->getLogger()->error(
120
+		  'File cache delete failed',
121
+		  array('key' => $key, 'file' => $file)
122
+	  );
123
+	  throw new Google_Cache_Exception("Cache file could not be deleted");
124
+	}
125
+
126
+	$this->client->getLogger()->debug(
127
+		'File cache delete',
128
+		array('key' => $key, 'file' => $file)
129
+	);
130 130
   }
131 131
 
132 132
   private function getWriteableCacheFile($file)
133 133
   {
134
-    return $this->getCacheFile($file, true);
134
+	return $this->getCacheFile($file, true);
135 135
   }
136 136
 
137 137
   private function getCacheFile($file, $forWrite = false)
138 138
   {
139
-    return $this->getCacheDir($file, $forWrite) . '/' . md5($file);
139
+	return $this->getCacheDir($file, $forWrite) . '/' . md5($file);
140 140
   }
141 141
 
142 142
   private function getCacheDir($file, $forWrite)
143 143
   {
144
-    // use the first 2 characters of the hash as a directory prefix
145
-    // this should prevent slowdowns due to huge directory listings
146
-    // and thus give some basic amount of scalability
147
-    $storageDir = $this->path . '/' . substr(md5($file), 0, 2);
148
-    if ($forWrite && ! is_dir($storageDir)) {
149
-      if (! mkdir($storageDir, 0755, true)) {
150
-        $this->client->getLogger()->error(
151
-            'File cache creation failed',
152
-            array('dir' => $storageDir)
153
-        );
154
-        throw new Google_Cache_Exception("Could not create storage directory: $storageDir");
155
-      }
156
-    }
157
-    return $storageDir;
144
+	// use the first 2 characters of the hash as a directory prefix
145
+	// this should prevent slowdowns due to huge directory listings
146
+	// and thus give some basic amount of scalability
147
+	$storageDir = $this->path . '/' . substr(md5($file), 0, 2);
148
+	if ($forWrite && ! is_dir($storageDir)) {
149
+	  if (! mkdir($storageDir, 0755, true)) {
150
+		$this->client->getLogger()->error(
151
+			'File cache creation failed',
152
+			array('dir' => $storageDir)
153
+		);
154
+		throw new Google_Cache_Exception("Could not create storage directory: $storageDir");
155
+	  }
156
+	}
157
+	return $storageDir;
158 158
   }
159 159
 
160 160
   private function acquireReadLock($storageFile)
161 161
   {
162
-    return $this->acquireLock(LOCK_SH, $storageFile);
162
+	return $this->acquireLock(LOCK_SH, $storageFile);
163 163
   }
164 164
 
165 165
   private function acquireWriteLock($storageFile)
166 166
   {
167
-    $rc = $this->acquireLock(LOCK_EX, $storageFile);
168
-    if (!$rc) {
169
-      $this->client->getLogger()->notice(
170
-          'File cache write lock failed',
171
-          array('file' => $storageFile)
172
-      );
173
-      $this->delete($storageFile);
174
-    }
175
-    return $rc;
167
+	$rc = $this->acquireLock(LOCK_EX, $storageFile);
168
+	if (!$rc) {
169
+	  $this->client->getLogger()->notice(
170
+		  'File cache write lock failed',
171
+		  array('file' => $storageFile)
172
+	  );
173
+	  $this->delete($storageFile);
174
+	}
175
+	return $rc;
176 176
   }
177 177
 
178 178
   private function acquireLock($type, $storageFile)
179 179
   {
180
-    $mode = $type == LOCK_EX ? "w" : "r";
181
-    $this->fh = fopen($storageFile, $mode);
182
-    if (!$this->fh) {
183
-      $this->client->getLogger()->error(
184
-          'Failed to open file during lock acquisition',
185
-          array('file' => $storageFile)
186
-      );
187
-      return false;
188
-    }
189
-    $count = 0;
190
-    while (!flock($this->fh, $type | LOCK_NB)) {
191
-      // Sleep for 10ms.
192
-      usleep(10000);
193
-      if (++$count < self::MAX_LOCK_RETRIES) {
194
-        return false;
195
-      }
196
-    }
197
-    return true;
180
+	$mode = $type == LOCK_EX ? "w" : "r";
181
+	$this->fh = fopen($storageFile, $mode);
182
+	if (!$this->fh) {
183
+	  $this->client->getLogger()->error(
184
+		  'Failed to open file during lock acquisition',
185
+		  array('file' => $storageFile)
186
+	  );
187
+	  return false;
188
+	}
189
+	$count = 0;
190
+	while (!flock($this->fh, $type | LOCK_NB)) {
191
+	  // Sleep for 10ms.
192
+	  usleep(10000);
193
+	  if (++$count < self::MAX_LOCK_RETRIES) {
194
+		return false;
195
+	  }
196
+	}
197
+	return true;
198 198
   }
199 199
 
200 200
   public function unlock($storageFile)
201 201
   {
202
-    if ($this->fh) {
203
-      flock($this->fh, LOCK_UN);
204
-    }
202
+	if ($this->fh) {
203
+	  flock($this->fh, LOCK_UN);
204
+	}
205 205
   }
206 206
 }
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
  */
17 17
 
18 18
 if (!class_exists('Google_Client')) {
19
-  require_once dirname(__FILE__) . '/../autoload.php';
19
+  require_once dirname(__FILE__).'/../autoload.php';
20 20
 }
21 21
 
22 22
 /*
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     if ($this->acquireReadLock($storageFile)) {
73 73
       if (filesize($storageFile) > 0) {
74 74
         $data = fread($this->fh, filesize($storageFile));
75
-        $data =  unserialize($data);
75
+        $data = unserialize($data);
76 76
       } else {
77 77
         $this->client->getLogger()->debug(
78 78
             'Cache file was empty',
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 
137 137
   private function getCacheFile($file, $forWrite = false)
138 138
   {
139
-    return $this->getCacheDir($file, $forWrite) . '/' . md5($file);
139
+    return $this->getCacheDir($file, $forWrite).'/'.md5($file);
140 140
   }
141 141
 
142 142
   private function getCacheDir($file, $forWrite)
@@ -144,9 +144,9 @@  discard block
 block discarded – undo
144 144
     // use the first 2 characters of the hash as a directory prefix
145 145
     // this should prevent slowdowns due to huge directory listings
146 146
     // and thus give some basic amount of scalability
147
-    $storageDir = $this->path . '/' . substr(md5($file), 0, 2);
148
-    if ($forWrite && ! is_dir($storageDir)) {
149
-      if (! mkdir($storageDir, 0755, true)) {
147
+    $storageDir = $this->path.'/'.substr(md5($file), 0, 2);
148
+    if ($forWrite && !is_dir($storageDir)) {
149
+      if (!mkdir($storageDir, 0755, true)) {
150 150
         $this->client->getLogger()->error(
151 151
             'File cache creation failed',
152 152
             array('dir' => $storageDir)
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Client.php 3 patches
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
 
192 192
   /**
193 193
    * @throws Google_Auth_Exception
194
-   * @return array
194
+   * @return string
195 195
    * @visible For Testing
196 196
    */
197 197
   public function prepareScopes()
@@ -490,7 +490,7 @@  discard block
 block discarded – undo
490 490
    * @param $audience string the expected consumer of the token
491 491
    * @param $issuer string the expected issuer, defaults to Google
492 492
    * @param [$max_expiry] the max lifetime of a token, defaults to MAX_TOKEN_LIFETIME_SECS
493
-   * @return mixed token information if valid, false if not
493
+   * @return Google_Auth_LoginTicket token information if valid, false if not
494 494
    */
495 495
   public function verifySignedJwt($id_token, $cert_location, $audience, $issuer, $max_expiry = null)
496 496
   {
@@ -512,6 +512,7 @@  discard block
 block discarded – undo
512 512
    * Will remove any previously configured scopes.
513 513
    * @param array $scopes, ie: array('https://www.googleapis.com/auth/plus.login',
514 514
    * 'https://www.googleapis.com/auth/moderator')
515
+   * @param string[] $scopes
515 516
    */
516 517
   public function setScopes($scopes)
517 518
   {
Please login to merge, or discard this patch.
Indentation   +160 added lines, -160 removed lines patch added patch discarded remove patch
@@ -74,32 +74,32 @@  discard block
 block discarded – undo
74 74
    */
75 75
   public function __construct($config = null)
76 76
   {
77
-    if (is_string($config) && strlen($config)) {
78
-      $config = new Google_Config($config);
79
-    } else if ( !($config instanceof Google_Config)) {
80
-      $config = new Google_Config();
77
+	if (is_string($config) && strlen($config)) {
78
+	  $config = new Google_Config($config);
79
+	} else if ( !($config instanceof Google_Config)) {
80
+	  $config = new Google_Config();
81 81
 
82
-      if ($this->isAppEngine()) {
83
-        // Automatically use Memcache if we're in AppEngine.
84
-        $config->setCacheClass('Google_Cache_Memcache');
85
-      }
82
+	  if ($this->isAppEngine()) {
83
+		// Automatically use Memcache if we're in AppEngine.
84
+		$config->setCacheClass('Google_Cache_Memcache');
85
+	  }
86 86
 
87
-      if (version_compare(phpversion(), "5.3.4", "<=") || $this->isAppEngine()) {
88
-        // Automatically disable compress.zlib, as currently unsupported.
89
-        $config->setClassConfig('Google_Http_Request', 'disable_gzip', true);
90
-      }
91
-    }
87
+	  if (version_compare(phpversion(), "5.3.4", "<=") || $this->isAppEngine()) {
88
+		// Automatically disable compress.zlib, as currently unsupported.
89
+		$config->setClassConfig('Google_Http_Request', 'disable_gzip', true);
90
+	  }
91
+	}
92 92
 
93
-    if ($config->getIoClass() == Google_Config::USE_AUTO_IO_SELECTION) {
94
-      if (function_exists('curl_version') && function_exists('curl_exec')
95
-          && !$this->isAppEngine()) {
96
-        $config->setIoClass("Google_IO_Curl");
97
-      } else {
98
-        $config->setIoClass("Google_IO_Stream");
99
-      }
100
-    }
93
+	if ($config->getIoClass() == Google_Config::USE_AUTO_IO_SELECTION) {
94
+	  if (function_exists('curl_version') && function_exists('curl_exec')
95
+		  && !$this->isAppEngine()) {
96
+		$config->setIoClass("Google_IO_Curl");
97
+	  } else {
98
+		$config->setIoClass("Google_IO_Stream");
99
+	  }
100
+	}
101 101
 
102
-    $this->config = $config;
102
+	$this->config = $config;
103 103
   }
104 104
 
105 105
   /**
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
    */
110 110
   public function getLibraryVersion()
111 111
   {
112
-    return self::LIBVER;
112
+	return self::LIBVER;
113 113
   }
114 114
 
115 115
   /**
@@ -124,8 +124,8 @@  discard block
 block discarded – undo
124 124
    */
125 125
   public function authenticate($code, $crossClient = false)
126 126
   {
127
-    $this->authenticated = true;
128
-    return $this->getAuth()->authenticate($code, $crossClient);
127
+	$this->authenticated = true;
128
+	return $this->getAuth()->authenticate($code, $crossClient);
129 129
   }
130 130
   
131 131
   /**
@@ -141,18 +141,18 @@  discard block
 block discarded – undo
141 141
    */
142 142
   public function loadServiceAccountJson($jsonLocation, $scopes)
143 143
   {
144
-    $data = json_decode(file_get_contents($jsonLocation));
145
-    if (isset($data->type) && $data->type == 'service_account') {
146
-      // Service Account format.
147
-      $cred = new Google_Auth_AssertionCredentials(
148
-          $data->client_email,
149
-          $scopes,
150
-          $data->private_key
151
-      );
152
-      return $cred;
153
-    } else {
154
-      throw new Google_Exception("Invalid service account JSON file.");
155
-    }
144
+	$data = json_decode(file_get_contents($jsonLocation));
145
+	if (isset($data->type) && $data->type == 'service_account') {
146
+	  // Service Account format.
147
+	  $cred = new Google_Auth_AssertionCredentials(
148
+		  $data->client_email,
149
+		  $scopes,
150
+		  $data->private_key
151
+	  );
152
+	  return $cred;
153
+	} else {
154
+	  throw new Google_Exception("Invalid service account JSON file.");
155
+	}
156 156
   }
157 157
 
158 158
   /**
@@ -165,16 +165,16 @@  discard block
 block discarded – undo
165 165
    */
166 166
   public function setAuthConfig($json)
167 167
   {
168
-    $data = json_decode($json);
169
-    $key = isset($data->installed) ? 'installed' : 'web';
170
-    if (!isset($data->$key)) {
171
-      throw new Google_Exception("Invalid client secret JSON file.");
172
-    }
173
-    $this->setClientId($data->$key->client_id);
174
-    $this->setClientSecret($data->$key->client_secret);
175
-    if (isset($data->$key->redirect_uris)) {
176
-      $this->setRedirectUri($data->$key->redirect_uris[0]);
177
-    }
168
+	$data = json_decode($json);
169
+	$key = isset($data->installed) ? 'installed' : 'web';
170
+	if (!isset($data->$key)) {
171
+	  throw new Google_Exception("Invalid client secret JSON file.");
172
+	}
173
+	$this->setClientId($data->$key->client_id);
174
+	$this->setClientSecret($data->$key->client_secret);
175
+	if (isset($data->$key->redirect_uris)) {
176
+	  $this->setRedirectUri($data->$key->redirect_uris[0]);
177
+	}
178 178
   }
179 179
 
180 180
   /**
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
    */
187 187
   public function setAuthConfigFile($file)
188 188
   {
189
-    $this->setAuthConfig(file_get_contents($file));
189
+	$this->setAuthConfig(file_get_contents($file));
190 190
   }
191 191
 
192 192
   /**
@@ -196,11 +196,11 @@  discard block
 block discarded – undo
196 196
    */
197 197
   public function prepareScopes()
198 198
   {
199
-    if (empty($this->requestedScopes)) {
200
-      throw new Google_Auth_Exception("No scopes specified");
201
-    }
202
-    $scopes = implode(' ', $this->requestedScopes);
203
-    return $scopes;
199
+	if (empty($this->requestedScopes)) {
200
+	  throw new Google_Auth_Exception("No scopes specified");
201
+	}
202
+	$scopes = implode(' ', $this->requestedScopes);
203
+	return $scopes;
204 204
   }
205 205
 
206 206
   /**
@@ -212,10 +212,10 @@  discard block
 block discarded – undo
212 212
    */
213 213
   public function setAccessToken($accessToken)
214 214
   {
215
-    if ($accessToken == 'null') {
216
-      $accessToken = null;
217
-    }
218
-    $this->getAuth()->setAccessToken($accessToken);
215
+	if ($accessToken == 'null') {
216
+	  $accessToken = null;
217
+	}
218
+	$this->getAuth()->setAccessToken($accessToken);
219 219
   }
220 220
 
221 221
 
@@ -226,8 +226,8 @@  discard block
 block discarded – undo
226 226
    */
227 227
   public function setAuth(Google_Auth_Abstract $auth)
228 228
   {
229
-    $this->config->setAuthClass(get_class($auth));
230
-    $this->auth = $auth;
229
+	$this->config->setAuthClass(get_class($auth));
230
+	$this->auth = $auth;
231 231
   }
232 232
 
233 233
   /**
@@ -236,8 +236,8 @@  discard block
 block discarded – undo
236 236
    */
237 237
   public function setIo(Google_IO_Abstract $io)
238 238
   {
239
-    $this->config->setIoClass(get_class($io));
240
-    $this->io = $io;
239
+	$this->config->setIoClass(get_class($io));
240
+	$this->io = $io;
241 241
   }
242 242
 
243 243
   /**
@@ -246,8 +246,8 @@  discard block
 block discarded – undo
246 246
    */
247 247
   public function setCache(Google_Cache_Abstract $cache)
248 248
   {
249
-    $this->config->setCacheClass(get_class($cache));
250
-    $this->cache = $cache;
249
+	$this->config->setCacheClass(get_class($cache));
250
+	$this->cache = $cache;
251 251
   }
252 252
 
253 253
   /**
@@ -256,8 +256,8 @@  discard block
 block discarded – undo
256 256
    */
257 257
   public function setLogger(Google_Logger_Abstract $logger)
258 258
   {
259
-    $this->config->setLoggerClass(get_class($logger));
260
-    $this->logger = $logger;
259
+	$this->config->setLoggerClass(get_class($logger));
260
+	$this->logger = $logger;
261 261
   }
262 262
 
263 263
   /**
@@ -266,8 +266,8 @@  discard block
 block discarded – undo
266 266
    */
267 267
   public function createAuthUrl()
268 268
   {
269
-    $scopes = $this->prepareScopes();
270
-    return $this->getAuth()->createAuthUrl($scopes);
269
+	$scopes = $this->prepareScopes();
270
+	return $this->getAuth()->createAuthUrl($scopes);
271 271
   }
272 272
 
273 273
   /**
@@ -278,11 +278,11 @@  discard block
 block discarded – undo
278 278
    */
279 279
   public function getAccessToken()
280 280
   {
281
-    $token = $this->getAuth()->getAccessToken();
282
-    // The response is json encoded, so could be the string null.
283
-    // It is arguable whether this check should be here or lower
284
-    // in the library.
285
-    return (null == $token || 'null' == $token || '[]' == $token) ? null : $token;
281
+	$token = $this->getAuth()->getAccessToken();
282
+	// The response is json encoded, so could be the string null.
283
+	// It is arguable whether this check should be here or lower
284
+	// in the library.
285
+	return (null == $token || 'null' == $token || '[]' == $token) ? null : $token;
286 286
   }
287 287
 
288 288
   /**
@@ -291,7 +291,7 @@  discard block
 block discarded – undo
291 291
    */
292 292
   public function getRefreshToken()
293 293
   {
294
-    return $this->getAuth()->getRefreshToken();
294
+	return $this->getAuth()->getRefreshToken();
295 295
   }
296 296
 
297 297
   /**
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
    */
301 301
   public function isAccessTokenExpired()
302 302
   {
303
-    return $this->getAuth()->isAccessTokenExpired();
303
+	return $this->getAuth()->isAccessTokenExpired();
304 304
   }
305 305
 
306 306
   /**
@@ -310,7 +310,7 @@  discard block
 block discarded – undo
310 310
    */
311 311
   public function setState($state)
312 312
   {
313
-    $this->getAuth()->setState($state);
313
+	$this->getAuth()->setState($state);
314 314
   }
315 315
 
316 316
   /**
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
    */
321 321
   public function setAccessType($accessType)
322 322
   {
323
-    $this->config->setAccessType($accessType);
323
+	$this->config->setAccessType($accessType);
324 324
   }
325 325
 
326 326
   /**
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
    */
331 331
   public function setApprovalPrompt($approvalPrompt)
332 332
   {
333
-    $this->config->setApprovalPrompt($approvalPrompt);
333
+	$this->config->setApprovalPrompt($approvalPrompt);
334 334
   }
335 335
 
336 336
   /**
@@ -339,7 +339,7 @@  discard block
 block discarded – undo
339 339
    */
340 340
   public function setLoginHint($loginHint)
341 341
   {
342
-      $this->config->setLoginHint($loginHint);
342
+	  $this->config->setLoginHint($loginHint);
343 343
   }
344 344
 
345 345
   /**
@@ -348,7 +348,7 @@  discard block
 block discarded – undo
348 348
    */
349 349
   public function setApplicationName($applicationName)
350 350
   {
351
-    $this->config->setApplicationName($applicationName);
351
+	$this->config->setApplicationName($applicationName);
352 352
   }
353 353
 
354 354
   /**
@@ -357,7 +357,7 @@  discard block
 block discarded – undo
357 357
    */
358 358
   public function setClientId($clientId)
359 359
   {
360
-    $this->config->setClientId($clientId);
360
+	$this->config->setClientId($clientId);
361 361
   }
362 362
 
363 363
   /**
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
    */
367 367
   public function setClientSecret($clientSecret)
368 368
   {
369
-    $this->config->setClientSecret($clientSecret);
369
+	$this->config->setClientSecret($clientSecret);
370 370
   }
371 371
 
372 372
   /**
@@ -375,7 +375,7 @@  discard block
 block discarded – undo
375 375
    */
376 376
   public function setRedirectUri($redirectUri)
377 377
   {
378
-    $this->config->setRedirectUri($redirectUri);
378
+	$this->config->setRedirectUri($redirectUri);
379 379
   }
380 380
 
381 381
   /**
@@ -388,10 +388,10 @@  discard block
 block discarded – undo
388 388
    */
389 389
   public function setRequestVisibleActions($requestVisibleActions)
390 390
   {
391
-    if (is_array($requestVisibleActions)) {
392
-      $requestVisibleActions = join(" ", $requestVisibleActions);
393
-    }
394
-    $this->config->setRequestVisibleActions($requestVisibleActions);
391
+	if (is_array($requestVisibleActions)) {
392
+	  $requestVisibleActions = join(" ", $requestVisibleActions);
393
+	}
394
+	$this->config->setRequestVisibleActions($requestVisibleActions);
395 395
   }
396 396
 
397 397
   /**
@@ -401,7 +401,7 @@  discard block
 block discarded – undo
401 401
    */
402 402
   public function setDeveloperKey($developerKey)
403 403
   {
404
-    $this->config->setDeveloperKey($developerKey);
404
+	$this->config->setDeveloperKey($developerKey);
405 405
   }
406 406
 
407 407
   /**
@@ -412,7 +412,7 @@  discard block
 block discarded – undo
412 412
    */
413 413
   public function setHostedDomain($hd)
414 414
   {
415
-    $this->config->setHostedDomain($hd);
415
+	$this->config->setHostedDomain($hd);
416 416
   }
417 417
 
418 418
   /**
@@ -423,7 +423,7 @@  discard block
 block discarded – undo
423 423
    */
424 424
   public function setPrompt($prompt)
425 425
   {
426
-    $this->config->setPrompt($prompt);
426
+	$this->config->setPrompt($prompt);
427 427
   }
428 428
 
429 429
   /**
@@ -434,7 +434,7 @@  discard block
 block discarded – undo
434 434
    */
435 435
   public function setOpenidRealm($realm)
436 436
   {
437
-    $this->config->setOpenidRealm($realm);
437
+	$this->config->setOpenidRealm($realm);
438 438
   }
439 439
 
440 440
   /**
@@ -445,7 +445,7 @@  discard block
 block discarded – undo
445 445
    */
446 446
   public function setIncludeGrantedScopes($include)
447 447
   {
448
-    $this->config->setIncludeGrantedScopes($include);
448
+	$this->config->setIncludeGrantedScopes($include);
449 449
   }
450 450
 
451 451
   /**
@@ -454,7 +454,7 @@  discard block
 block discarded – undo
454 454
    */
455 455
   public function refreshToken($refreshToken)
456 456
   {
457
-    $this->getAuth()->refreshToken($refreshToken);
457
+	$this->getAuth()->refreshToken($refreshToken);
458 458
   }
459 459
 
460 460
   /**
@@ -466,7 +466,7 @@  discard block
 block discarded – undo
466 466
    */
467 467
   public function revokeToken($token = null)
468 468
   {
469
-    return $this->getAuth()->revokeToken($token);
469
+	return $this->getAuth()->revokeToken($token);
470 470
   }
471 471
 
472 472
   /**
@@ -479,7 +479,7 @@  discard block
 block discarded – undo
479 479
    */
480 480
   public function verifyIdToken($token = null)
481 481
   {
482
-    return $this->getAuth()->verifyIdToken($token);
482
+	return $this->getAuth()->verifyIdToken($token);
483 483
   }
484 484
 
485 485
   /**
@@ -494,9 +494,9 @@  discard block
 block discarded – undo
494 494
    */
495 495
   public function verifySignedJwt($id_token, $cert_location, $audience, $issuer, $max_expiry = null)
496 496
   {
497
-    $auth = new Google_Auth_OAuth2($this);
498
-    $certs = $auth->retrieveCertsFromLocation($cert_location);
499
-    return $auth->verifySignedJwtWithCerts($id_token, $certs, $audience, $issuer, $max_expiry);
497
+	$auth = new Google_Auth_OAuth2($this);
498
+	$certs = $auth->retrieveCertsFromLocation($cert_location);
499
+	return $auth->verifySignedJwtWithCerts($id_token, $certs, $audience, $issuer, $max_expiry);
500 500
   }
501 501
 
502 502
   /**
@@ -504,7 +504,7 @@  discard block
 block discarded – undo
504 504
    */
505 505
   public function setAssertionCredentials(Google_Auth_AssertionCredentials $creds)
506 506
   {
507
-    $this->getAuth()->setAssertionCredentials($creds);
507
+	$this->getAuth()->setAssertionCredentials($creds);
508 508
   }
509 509
 
510 510
   /**
@@ -515,8 +515,8 @@  discard block
 block discarded – undo
515 515
    */
516 516
   public function setScopes($scopes)
517 517
   {
518
-    $this->requestedScopes = array();
519
-    $this->addScope($scopes);
518
+	$this->requestedScopes = array();
519
+	$this->addScope($scopes);
520 520
   }
521 521
 
522 522
   /**
@@ -528,13 +528,13 @@  discard block
 block discarded – undo
528 528
    */
529 529
   public function addScope($scope_or_scopes)
530 530
   {
531
-    if (is_string($scope_or_scopes) && !in_array($scope_or_scopes, $this->requestedScopes)) {
532
-      $this->requestedScopes[] = $scope_or_scopes;
533
-    } else if (is_array($scope_or_scopes)) {
534
-      foreach ($scope_or_scopes as $scope) {
535
-        $this->addScope($scope);
536
-      }
537
-    }
531
+	if (is_string($scope_or_scopes) && !in_array($scope_or_scopes, $this->requestedScopes)) {
532
+	  $this->requestedScopes[] = $scope_or_scopes;
533
+	} else if (is_array($scope_or_scopes)) {
534
+	  foreach ($scope_or_scopes as $scope) {
535
+		$this->addScope($scope);
536
+	  }
537
+	}
538 538
   }
539 539
 
540 540
   /**
@@ -544,7 +544,7 @@  discard block
 block discarded – undo
544 544
    */
545 545
   public function getScopes()
546 546
   {
547
-     return $this->requestedScopes;
547
+	 return $this->requestedScopes;
548 548
   }
549 549
 
550 550
   /**
@@ -556,8 +556,8 @@  discard block
 block discarded – undo
556 556
    */
557 557
   public function setUseBatch($useBatch)
558 558
   {
559
-    // This is actually an alias for setDefer.
560
-    $this->setDefer($useBatch);
559
+	// This is actually an alias for setDefer.
560
+	$this->setDefer($useBatch);
561 561
   }
562 562
 
563 563
   /**
@@ -568,7 +568,7 @@  discard block
 block discarded – undo
568 568
    */
569 569
   public function setDefer($defer)
570 570
   {
571
-    $this->deferExecution = $defer;
571
+	$this->deferExecution = $defer;
572 572
   }
573 573
 
574 574
   /**
@@ -580,22 +580,22 @@  discard block
 block discarded – undo
580 580
    */
581 581
   public function execute($request)
582 582
   {
583
-    if ($request instanceof Google_Http_Request) {
584
-      $request->setUserAgent(
585
-          $this->getApplicationName()
586
-          . " " . self::USER_AGENT_SUFFIX
587
-          . $this->getLibraryVersion()
588
-      );
589
-      if (!$this->getClassConfig("Google_Http_Request", "disable_gzip")) {
590
-        $request->enableGzip();
591
-      }
592
-      $request->maybeMoveParametersToBody();
593
-      return Google_Http_REST::execute($this, $request);
594
-    } else if ($request instanceof Google_Http_Batch) {
595
-      return $request->execute();
596
-    } else {
597
-      throw new Google_Exception("Do not know how to execute this type of object.");
598
-    }
583
+	if ($request instanceof Google_Http_Request) {
584
+	  $request->setUserAgent(
585
+		  $this->getApplicationName()
586
+		  . " " . self::USER_AGENT_SUFFIX
587
+		  . $this->getLibraryVersion()
588
+	  );
589
+	  if (!$this->getClassConfig("Google_Http_Request", "disable_gzip")) {
590
+		$request->enableGzip();
591
+	  }
592
+	  $request->maybeMoveParametersToBody();
593
+	  return Google_Http_REST::execute($this, $request);
594
+	} else if ($request instanceof Google_Http_Batch) {
595
+	  return $request->execute();
596
+	} else {
597
+	  throw new Google_Exception("Do not know how to execute this type of object.");
598
+	}
599 599
   }
600 600
 
601 601
   /**
@@ -604,7 +604,7 @@  discard block
 block discarded – undo
604 604
    */
605 605
   public function shouldDefer()
606 606
   {
607
-    return $this->deferExecution;
607
+	return $this->deferExecution;
608 608
   }
609 609
 
610 610
   /**
@@ -612,11 +612,11 @@  discard block
 block discarded – undo
612 612
    */
613 613
   public function getAuth()
614 614
   {
615
-    if (!isset($this->auth)) {
616
-      $class = $this->config->getAuthClass();
617
-      $this->auth = new $class($this);
618
-    }
619
-    return $this->auth;
615
+	if (!isset($this->auth)) {
616
+	  $class = $this->config->getAuthClass();
617
+	  $this->auth = new $class($this);
618
+	}
619
+	return $this->auth;
620 620
   }
621 621
 
622 622
   /**
@@ -624,11 +624,11 @@  discard block
 block discarded – undo
624 624
    */
625 625
   public function getIo()
626 626
   {
627
-    if (!isset($this->io)) {
628
-      $class = $this->config->getIoClass();
629
-      $this->io = new $class($this);
630
-    }
631
-    return $this->io;
627
+	if (!isset($this->io)) {
628
+	  $class = $this->config->getIoClass();
629
+	  $this->io = new $class($this);
630
+	}
631
+	return $this->io;
632 632
   }
633 633
 
634 634
   /**
@@ -636,11 +636,11 @@  discard block
 block discarded – undo
636 636
    */
637 637
   public function getCache()
638 638
   {
639
-    if (!isset($this->cache)) {
640
-      $class = $this->config->getCacheClass();
641
-      $this->cache = new $class($this);
642
-    }
643
-    return $this->cache;
639
+	if (!isset($this->cache)) {
640
+	  $class = $this->config->getCacheClass();
641
+	  $this->cache = new $class($this);
642
+	}
643
+	return $this->cache;
644 644
   }
645 645
 
646 646
   /**
@@ -648,11 +648,11 @@  discard block
 block discarded – undo
648 648
    */
649 649
   public function getLogger()
650 650
   {
651
-    if (!isset($this->logger)) {
652
-      $class = $this->config->getLoggerClass();
653
-      $this->logger = new $class($this);
654
-    }
655
-    return $this->logger;
651
+	if (!isset($this->logger)) {
652
+	  $class = $this->config->getLoggerClass();
653
+	  $this->logger = new $class($this);
654
+	}
655
+	return $this->logger;
656 656
   }
657 657
 
658 658
   /**
@@ -663,10 +663,10 @@  discard block
 block discarded – undo
663 663
    */
664 664
   public function getClassConfig($class, $key = null)
665 665
   {
666
-    if (!is_string($class)) {
667
-      $class = get_class($class);
668
-    }
669
-    return $this->config->getClassConfig($class, $key);
666
+	if (!is_string($class)) {
667
+	  $class = get_class($class);
668
+	}
669
+	return $this->config->getClassConfig($class, $key);
670 670
   }
671 671
 
672 672
   /**
@@ -680,10 +680,10 @@  discard block
 block discarded – undo
680 680
    */
681 681
   public function setClassConfig($class, $config, $value = null)
682 682
   {
683
-    if (!is_string($class)) {
684
-      $class = get_class($class);
685
-    }
686
-    $this->config->setClassConfig($class, $config, $value);
683
+	if (!is_string($class)) {
684
+	  $class = get_class($class);
685
+	}
686
+	$this->config->setClassConfig($class, $config, $value);
687 687
 
688 688
   }
689 689
 
@@ -692,7 +692,7 @@  discard block
 block discarded – undo
692 692
    */
693 693
   public function getBasePath()
694 694
   {
695
-    return $this->config->getBasePath();
695
+	return $this->config->getBasePath();
696 696
   }
697 697
 
698 698
   /**
@@ -700,7 +700,7 @@  discard block
 block discarded – undo
700 700
    */
701 701
   public function getApplicationName()
702 702
   {
703
-    return $this->config->getApplicationName();
703
+	return $this->config->getApplicationName();
704 704
   }
705 705
 
706 706
   /**
@@ -709,7 +709,7 @@  discard block
 block discarded – undo
709 709
    */
710 710
   public function isAppEngine()
711 711
   {
712
-    return (isset($_SERVER['SERVER_SOFTWARE']) &&
713
-        strpos($_SERVER['SERVER_SOFTWARE'], 'Google App Engine') !== false);
712
+	return (isset($_SERVER['SERVER_SOFTWARE']) &&
713
+		strpos($_SERVER['SERVER_SOFTWARE'], 'Google App Engine') !== false);
714 714
   }
715 715
 }
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
  */
17 17
 
18 18
 if (!class_exists('Google_Client')) {
19
-  require_once dirname(__FILE__) . '/autoload.php';
19
+  require_once dirname(__FILE__).'/autoload.php';
20 20
 }
21 21
 
22 22
 /**
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
   {
77 77
     if (is_string($config) && strlen($config)) {
78 78
       $config = new Google_Config($config);
79
-    } else if ( !($config instanceof Google_Config)) {
79
+    } else if (!($config instanceof Google_Config)) {
80 80
       $config = new Google_Config();
81 81
 
82 82
       if ($this->isAppEngine()) {
@@ -583,7 +583,7 @@  discard block
 block discarded – undo
583 583
     if ($request instanceof Google_Http_Request) {
584 584
       $request->setUserAgent(
585 585
           $this->getApplicationName()
586
-          . " " . self::USER_AGENT_SUFFIX
586
+          . " ".self::USER_AGENT_SUFFIX
587 587
           . $this->getLibraryVersion()
588 588
       );
589 589
       if (!$this->getClassConfig("Google_Http_Request", "disable_gzip")) {
Please login to merge, or discard this patch.