@@ -48,9 +48,9 @@ |
||
48 | 48 | |
49 | 49 | $type = GqlEntityRegistry::createEntity(self::class, new InterfaceType([ |
50 | 50 | 'name' => static::getName(), |
51 | - 'fields' => self::class.'::getFieldDefinitions', |
|
51 | + 'fields' => self::class . '::getFieldDefinitions', |
|
52 | 52 | 'description' => 'This is the interface implemented by Retour.', |
53 | - 'resolveType' => function (array $value) { |
|
53 | + 'resolveType' => function(array $value) { |
|
54 | 54 | return GqlEntityRegistry::getEntity(RetourGenerator::getName()); |
55 | 55 | }, |
56 | 56 | ])); |
@@ -34,24 +34,24 @@ |
||
34 | 34 | */ |
35 | 35 | public static function generateTypes($context = null): array |
36 | 36 | { |
37 | - $gqlTypes = []; |
|
37 | + $gqlTypes = [ ]; |
|
38 | 38 | $retourFields = RetourInterface::getFieldDefinitions(); |
39 | 39 | $retourArgs = RetourArguments::getArguments(); |
40 | 40 | $typeName = self::getName(); |
41 | 41 | $retourType = GqlEntityRegistry::getEntity($typeName) |
42 | 42 | ?: GqlEntityRegistry::createEntity($typeName, new RetourType([ |
43 | 43 | 'name' => $typeName, |
44 | - 'args' => function () use ($retourArgs) { |
|
44 | + 'args' => function() use ($retourArgs) { |
|
45 | 45 | return $retourArgs; |
46 | 46 | }, |
47 | - 'fields' => function () use ($retourFields) { |
|
47 | + 'fields' => function() use ($retourFields) { |
|
48 | 48 | return $retourFields; |
49 | 49 | }, |
50 | 50 | 'description' => 'This entity has all the Retour fields', |
51 | 51 | ])); |
52 | 52 | |
53 | - $gqlTypes[$typeName] = $retourType; |
|
54 | - TypeLoader::registerType($typeName, function () use ($retourType) { |
|
53 | + $gqlTypes[ $typeName ] = $retourType; |
|
54 | + TypeLoader::registerType($typeName, function() use ($retourType) { |
|
55 | 55 | return $retourType; |
56 | 56 | }); |
57 | 57 |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | // Protected Properties |
41 | 41 | // ========================================================================= |
42 | 42 | |
43 | - protected $allowAnonymous = []; |
|
43 | + protected $allowAnonymous = [ ]; |
|
44 | 44 | |
45 | 45 | // Public Methods |
46 | 46 | // ========================================================================= |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | */ |
57 | 57 | public function actionDashboard(string $siteHandle = null, bool $showWelcome = false): Response |
58 | 58 | { |
59 | - $variables = []; |
|
59 | + $variables = [ ]; |
|
60 | 60 | PermissionHelper::controllerPermissionCheck('retour:dashboard'); |
61 | 61 | // Trim the statistics |
62 | 62 | Retour::$plugin->statistics->trimStatistics(); |
@@ -71,34 +71,34 @@ discard block |
||
71 | 71 | } catch (InvalidConfigException $e) { |
72 | 72 | Craft::error($e->getMessage(), __METHOD__); |
73 | 73 | } |
74 | - $variables['baseAssetsUrl'] = Craft::$app->assetManager->getPublishedUrl( |
|
74 | + $variables[ 'baseAssetsUrl' ] = Craft::$app->assetManager->getPublishedUrl( |
|
75 | 75 | '@nystudio107/retour/assetbundles/retour/dist', |
76 | 76 | true |
77 | 77 | ); |
78 | 78 | // Enabled sites |
79 | 79 | MultiSiteHelper::setMultiSiteVariables($siteHandle, $siteId, $variables); |
80 | - $variables['controllerHandle'] = 'dashboard'; |
|
80 | + $variables[ 'controllerHandle' ] = 'dashboard'; |
|
81 | 81 | |
82 | 82 | // Basic variables |
83 | - $variables['fullPageForm'] = false; |
|
84 | - $variables['docsUrl'] = self::DOCUMENTATION_URL; |
|
85 | - $variables['pluginName'] = $pluginName; |
|
86 | - $variables['title'] = $templateTitle; |
|
87 | - $siteHandleUri = Craft::$app->isMultiSite ? '/'.$siteHandle : ''; |
|
88 | - $variables['crumbs'] = [ |
|
83 | + $variables[ 'fullPageForm' ] = false; |
|
84 | + $variables[ 'docsUrl' ] = self::DOCUMENTATION_URL; |
|
85 | + $variables[ 'pluginName' ] = $pluginName; |
|
86 | + $variables[ 'title' ] = $templateTitle; |
|
87 | + $siteHandleUri = Craft::$app->isMultiSite ? '/' . $siteHandle : ''; |
|
88 | + $variables[ 'crumbs' ] = [ |
|
89 | 89 | [ |
90 | 90 | 'label' => $pluginName, |
91 | 91 | 'url' => UrlHelper::cpUrl('retour'), |
92 | 92 | ], |
93 | 93 | [ |
94 | 94 | 'label' => $templateTitle, |
95 | - 'url' => UrlHelper::cpUrl('retour/dashboard'.$siteHandleUri), |
|
95 | + 'url' => UrlHelper::cpUrl('retour/dashboard' . $siteHandleUri), |
|
96 | 96 | ], |
97 | 97 | ]; |
98 | - $variables['docTitle'] = "{$pluginName} - {$templateTitle}"; |
|
99 | - $variables['selectedSubnavItem'] = 'dashboard'; |
|
100 | - $variables['showWelcome'] = $showWelcome; |
|
101 | - $variables['settings'] = Retour::$settings; |
|
98 | + $variables[ 'docTitle' ] = "{$pluginName} - {$templateTitle}"; |
|
99 | + $variables[ 'selectedSubnavItem' ] = 'dashboard'; |
|
100 | + $variables[ 'showWelcome' ] = $showWelcome; |
|
101 | + $variables[ 'settings' ] = Retour::$settings; |
|
102 | 102 | |
103 | 103 | // Render the template |
104 | 104 | return $this->renderTemplate('retour/dashboard/index', $variables); |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | Craft::t( |
117 | 117 | 'retour', |
118 | 118 | 'Retour statistics cleared: {error}', |
119 | - ['error' => $error] |
|
119 | + [ 'error' => $error ] |
|
120 | 120 | ), |
121 | 121 | __METHOD__ |
122 | 122 | ); |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | Craft::t( |
150 | 150 | 'retour', |
151 | 151 | 'Retour statistics deleted: {error}', |
152 | - ['error' => $stickyError] |
|
152 | + [ 'error' => $stickyError ] |
|
153 | 153 | ), |
154 | 154 | __METHOD__ |
155 | 155 | ); |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | $handled = 'all' |
97 | 97 | ): Response { |
98 | 98 | PermissionHelper::controllerPermissionCheck('retour:dashboard'); |
99 | - $data = []; |
|
99 | + $data = [ ]; |
|
100 | 100 | $sortField = 'hitCount'; |
101 | 101 | $sortType = 'DESC'; |
102 | 102 | // Figure out the sorting type |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | } |
109 | 109 | } |
110 | 110 | $sortType = strtoupper($sortType); |
111 | - $sortType = self::SORT_MAP[$sortType] ?? self::SORT_MAP['DESC']; |
|
111 | + $sortType = self::SORT_MAP[ $sortType ] ?? self::SORT_MAP[ 'DESC' ]; |
|
112 | 112 | // Validate untrusted data |
113 | 113 | if (!in_array($sortField, self::ALLOWED_STATS_SORT_FIELDS, true)) { |
114 | 114 | throw new BadRequestHttpException(Craft::t('retour', 'Invalid sort field specified.')); |
@@ -116,48 +116,48 @@ discard block |
||
116 | 116 | // Query the db table |
117 | 117 | $offset = ($page - 1) * $per_page; |
118 | 118 | $query = (new Query()) |
119 | - ->from(['{{%retour_stats}}']) |
|
119 | + ->from([ '{{%retour_stats}}' ]) |
|
120 | 120 | ->offset($offset) |
121 | 121 | ->limit($per_page) |
122 | - ->orderBy([$sortField => $sortType]); |
|
123 | - if ((int)$siteId !== 0) { |
|
124 | - $query->where(['siteId' => $siteId]); |
|
122 | + ->orderBy([ $sortField => $sortType ]); |
|
123 | + if ((int) $siteId !== 0) { |
|
124 | + $query->where([ 'siteId' => $siteId ]); |
|
125 | 125 | } |
126 | 126 | if ($handled !== 'all') { |
127 | - $query->where(['handledByRetour' => self::HANDLED_MAP[$handled]]); |
|
127 | + $query->where([ 'handledByRetour' => self::HANDLED_MAP[ $handled ] ]); |
|
128 | 128 | } |
129 | 129 | if ($filter !== '') { |
130 | - $query->where(['like', 'redirectSrcUrl', $filter]); |
|
131 | - $query->orWhere(['like', 'referrerUrl', $filter]); |
|
130 | + $query->where([ 'like', 'redirectSrcUrl', $filter ]); |
|
131 | + $query->orWhere([ 'like', 'referrerUrl', $filter ]); |
|
132 | 132 | } |
133 | 133 | $stats = $query->all(); |
134 | 134 | if ($stats) { |
135 | 135 | // Add in the `addLink` field |
136 | 136 | foreach ($stats as &$stat) { |
137 | - $stat['addLink'] = ''; |
|
138 | - if (!$stat['handledByRetour']) { |
|
139 | - $encodedUrl = urlencode('/'.ltrim($stat['redirectSrcUrl'], '/')); |
|
140 | - $stat['addLink'] = UrlHelper::cpUrl('retour/add-redirect', [ |
|
137 | + $stat[ 'addLink' ] = ''; |
|
138 | + if (!$stat[ 'handledByRetour' ]) { |
|
139 | + $encodedUrl = urlencode('/' . ltrim($stat[ 'redirectSrcUrl' ], '/')); |
|
140 | + $stat[ 'addLink' ] = UrlHelper::cpUrl('retour/add-redirect', [ |
|
141 | 141 | 'defaultUrl' => $encodedUrl |
142 | 142 | ]); |
143 | 143 | } |
144 | 144 | } |
145 | 145 | // Format the data for the API |
146 | - $data['data'] = $stats; |
|
146 | + $data[ 'data' ] = $stats; |
|
147 | 147 | $query = (new Query()) |
148 | - ->from(['{{%retour_stats}}']); |
|
149 | - if ((int)$siteId !== 0) { |
|
150 | - $query->where(['siteId' => $siteId]); |
|
148 | + ->from([ '{{%retour_stats}}' ]); |
|
149 | + if ((int) $siteId !== 0) { |
|
150 | + $query->where([ 'siteId' => $siteId ]); |
|
151 | 151 | } |
152 | 152 | if ($handled !== 'all') { |
153 | - $query->where(['handledByRetour' => self::HANDLED_MAP[$handled]]); |
|
153 | + $query->where([ 'handledByRetour' => self::HANDLED_MAP[ $handled ] ]); |
|
154 | 154 | } |
155 | 155 | if ($filter !== '') { |
156 | - $query->where(['like', 'redirectSrcUrl', $filter]); |
|
157 | - $query->orWhere(['like', 'referrerUrl', $filter]); |
|
156 | + $query->where([ 'like', 'redirectSrcUrl', $filter ]); |
|
157 | + $query->orWhere([ 'like', 'referrerUrl', $filter ]); |
|
158 | 158 | } |
159 | 159 | $count = $query->count(); |
160 | - $data['links']['pagination'] = [ |
|
160 | + $data[ 'links' ][ 'pagination' ] = [ |
|
161 | 161 | 'total' => $count, |
162 | 162 | 'per_page' => $per_page, |
163 | 163 | 'current_page' => $page, |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | $siteId = 0 |
194 | 194 | ): Response { |
195 | 195 | PermissionHelper::controllerPermissionCheck('retour:redirects'); |
196 | - $data = []; |
|
196 | + $data = [ ]; |
|
197 | 197 | $sortField = 'hitCount'; |
198 | 198 | $sortType = 'DESC'; |
199 | 199 | // Figure out the sorting type |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | } |
206 | 206 | } |
207 | 207 | $sortType = strtoupper($sortType); |
208 | - $sortType = self::SORT_MAP[$sortType] ?? self::SORT_MAP['DESC']; |
|
208 | + $sortType = self::SORT_MAP[ $sortType ] ?? self::SORT_MAP[ 'DESC' ]; |
|
209 | 209 | // Validate untrusted data |
210 | 210 | if (!in_array($sortField, self::ALLOWED_REDIRECTS_SORT_FIELDS, true)) { |
211 | 211 | throw new BadRequestHttpException(Craft::t('retour', 'Invalid sort field specified.')); |
@@ -213,52 +213,52 @@ discard block |
||
213 | 213 | // Query the db table |
214 | 214 | $offset = ($page - 1) * $per_page; |
215 | 215 | $query = (new Query()) |
216 | - ->from(['{{%retour_static_redirects}}']) |
|
216 | + ->from([ '{{%retour_static_redirects}}' ]) |
|
217 | 217 | ->offset($offset) |
218 | 218 | ->limit($per_page) |
219 | - ->orderBy([$sortField => $sortType]); |
|
220 | - if ((int)$siteId !== 0) { |
|
221 | - $query->where(['siteId' => $siteId]); |
|
219 | + ->orderBy([ $sortField => $sortType ]); |
|
220 | + if ((int) $siteId !== 0) { |
|
221 | + $query->where([ 'siteId' => $siteId ]); |
|
222 | 222 | } |
223 | 223 | if ($filter !== '') { |
224 | - $query->where(['like', 'redirectSrcUrl', $filter]); |
|
225 | - $query->orWhere(['like', 'redirectDestUrl', $filter]); |
|
224 | + $query->where([ 'like', 'redirectSrcUrl', $filter ]); |
|
225 | + $query->orWhere([ 'like', 'redirectDestUrl', $filter ]); |
|
226 | 226 | } |
227 | 227 | $redirects = $query->all(); |
228 | 228 | // Add in the `deleteLink` field and clean up the redirects |
229 | 229 | foreach ($redirects as &$redirect) { |
230 | 230 | // Make sure the destination URL is not a regex |
231 | - if ($redirect['redirectMatchType'] !== 'exactmatch') { |
|
232 | - if (preg_match("/\$\d+/", $redirect['redirectDestUrl'])) { |
|
233 | - $redirect['redirectDestUrl'] = ''; |
|
231 | + if ($redirect[ 'redirectMatchType' ] !== 'exactmatch') { |
|
232 | + if (preg_match("/\$\d+/", $redirect[ 'redirectDestUrl' ])) { |
|
233 | + $redirect[ 'redirectDestUrl' ] = ''; |
|
234 | 234 | } |
235 | 235 | } |
236 | 236 | // Handle extracting the site name |
237 | - $redirect['siteName'] = Craft::t('retour', 'All Sites'); |
|
238 | - if ($redirect['siteId']) { |
|
237 | + $redirect[ 'siteName' ] = Craft::t('retour', 'All Sites'); |
|
238 | + if ($redirect[ 'siteId' ]) { |
|
239 | 239 | $sites = Craft::$app->getSites(); |
240 | - $site = $sites->getSiteById($redirect['siteId']); |
|
240 | + $site = $sites->getSiteById($redirect[ 'siteId' ]); |
|
241 | 241 | if ($site) { |
242 | - $redirect['siteName'] = $site->name; |
|
242 | + $redirect[ 'siteName' ] = $site->name; |
|
243 | 243 | } |
244 | 244 | } |
245 | 245 | |
246 | - $redirect['editLink'] = UrlHelper::cpUrl('retour/edit-redirect/'.$redirect['id']); |
|
246 | + $redirect[ 'editLink' ] = UrlHelper::cpUrl('retour/edit-redirect/' . $redirect[ 'id' ]); |
|
247 | 247 | } |
248 | 248 | // Format the data for the API |
249 | 249 | if ($redirects) { |
250 | - $data['data'] = $redirects; |
|
250 | + $data[ 'data' ] = $redirects; |
|
251 | 251 | $query = (new Query()) |
252 | - ->from(['{{%retour_static_redirects}}']); |
|
253 | - if ((int)$siteId !== 0) { |
|
254 | - $query->where(['siteId' => $siteId]); |
|
252 | + ->from([ '{{%retour_static_redirects}}' ]); |
|
253 | + if ((int) $siteId !== 0) { |
|
254 | + $query->where([ 'siteId' => $siteId ]); |
|
255 | 255 | } |
256 | 256 | if ($filter !== '') { |
257 | - $query->where(['like', 'redirectSrcUrl', $filter]); |
|
258 | - $query->orWhere(['like', 'redirectDestUrl', $filter]); |
|
257 | + $query->where([ 'like', 'redirectSrcUrl', $filter ]); |
|
258 | + $query->orWhere([ 'like', 'redirectDestUrl', $filter ]); |
|
259 | 259 | } |
260 | 260 | $count = $query->count(); |
261 | - $data['links']['pagination'] = [ |
|
261 | + $data[ 'links' ][ 'pagination' ] = [ |
|
262 | 262 | 'total' => $count, |
263 | 263 | 'per_page' => $per_page, |
264 | 264 | 'current_page' => $page, |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | /** |
122 | 122 | * @var array The URIs for the element before it was saved |
123 | 123 | */ |
124 | - public $oldElementUris = []; |
|
124 | + public $oldElementUris = [ ]; |
|
125 | 125 | |
126 | 126 | // Public Methods |
127 | 127 | // ========================================================================= |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | Craft::t( |
155 | 155 | 'retour', |
156 | 156 | '{name} plugin loaded', |
157 | - ['name' => $this->name] |
|
157 | + [ 'name' => $this->name ] |
|
158 | 158 | ), |
159 | 159 | __METHOD__ |
160 | 160 | ); |
@@ -174,18 +174,18 @@ discard block |
||
174 | 174 | */ |
175 | 175 | public function getCpNavItem() |
176 | 176 | { |
177 | - $subNavs = []; |
|
177 | + $subNavs = [ ]; |
|
178 | 178 | $navItem = parent::getCpNavItem(); |
179 | 179 | $currentUser = Craft::$app->getUser()->getIdentity(); |
180 | 180 | // Only show sub-navs the user has permission to view |
181 | 181 | if ($currentUser->can('retour:dashboard')) { |
182 | - $subNavs['dashboard'] = [ |
|
182 | + $subNavs[ 'dashboard' ] = [ |
|
183 | 183 | 'label' => 'Dashboard', |
184 | 184 | 'url' => 'retour/dashboard', |
185 | 185 | ]; |
186 | 186 | } |
187 | 187 | if ($currentUser->can('retour:redirects')) { |
188 | - $subNavs['redirects'] = [ |
|
188 | + $subNavs[ 'redirects' ] = [ |
|
189 | 189 | 'label' => 'Redirects', |
190 | 190 | 'url' => 'retour/redirects', |
191 | 191 | ]; |
@@ -196,7 +196,7 @@ discard block |
||
196 | 196 | $editableSettings = false; |
197 | 197 | } |
198 | 198 | if ($currentUser->can('retour:settings') && $editableSettings) { |
199 | - $subNavs['settings'] = [ |
|
199 | + $subNavs[ 'settings' ] = [ |
|
200 | 200 | 'label' => 'Settings', |
201 | 201 | 'url' => 'retour/settings', |
202 | 202 | ]; |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | Event::on( |
256 | 256 | ClearCaches::class, |
257 | 257 | ClearCaches::EVENT_REGISTER_CACHE_OPTIONS, |
258 | - function (RegisterCacheOptionsEvent $event) { |
|
258 | + function(RegisterCacheOptionsEvent $event) { |
|
259 | 259 | Craft::debug( |
260 | 260 | 'ClearCaches::EVENT_REGISTER_CACHE_OPTIONS', |
261 | 261 | __METHOD__ |
@@ -271,7 +271,7 @@ discard block |
||
271 | 271 | Event::on( |
272 | 272 | Plugins::class, |
273 | 273 | Plugins::EVENT_AFTER_INSTALL_PLUGIN, |
274 | - function (PluginEvent $event) { |
|
274 | + function(PluginEvent $event) { |
|
275 | 275 | if ($event->plugin === $this) { |
276 | 276 | // Invalidate our caches after we've been installed |
277 | 277 | $this->clearAllCaches(); |
@@ -298,7 +298,7 @@ discard block |
||
298 | 298 | Event::on( |
299 | 299 | CraftVariable::class, |
300 | 300 | CraftVariable::EVENT_INIT, |
301 | - function (Event $event) { |
|
301 | + function(Event $event) { |
|
302 | 302 | /** @var CraftVariable $variable */ |
303 | 303 | $variable = $event->sender; |
304 | 304 | $variable->set('retour', RetourVariable::class); |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | Event::on( |
309 | 309 | Elements::class, |
310 | 310 | Elements::EVENT_BEFORE_SAVE_ELEMENT, |
311 | - function (ElementEvent $event) { |
|
311 | + function(ElementEvent $event) { |
|
312 | 312 | Craft::debug( |
313 | 313 | 'Elements::EVENT_BEFORE_SAVE_ELEMENT', |
314 | 314 | __METHOD__ |
@@ -333,8 +333,8 @@ discard block |
||
333 | 333 | if (strpos($element->uri, '__temp_') === false && !$element->propagating) { |
334 | 334 | // Stash the old URLs by element id, and do so only once, |
335 | 335 | // in case we are called more than once per request |
336 | - if (empty($this->oldElementUris[$element->id])) { |
|
337 | - $this->oldElementUris[$element->id] = $this->getAllElementUris($element); |
|
336 | + if (empty($this->oldElementUris[ $element->id ])) { |
|
337 | + $this->oldElementUris[ $element->id ] = $this->getAllElementUris($element); |
|
338 | 338 | } |
339 | 339 | } |
340 | 340 | } |
@@ -345,7 +345,7 @@ discard block |
||
345 | 345 | Event::on( |
346 | 346 | Elements::class, |
347 | 347 | Elements::EVENT_AFTER_SAVE_ELEMENT, |
348 | - function (ElementEvent $event) { |
|
348 | + function(ElementEvent $event) { |
|
349 | 349 | Craft::debug( |
350 | 350 | 'Elements::EVENT_AFTER_SAVE_ELEMENT', |
351 | 351 | __METHOD__ |
@@ -367,7 +367,7 @@ discard block |
||
367 | 367 | Event::on( |
368 | 368 | Plugins::class, |
369 | 369 | Plugins::EVENT_AFTER_LOAD_PLUGINS, |
370 | - function () { |
|
370 | + function() { |
|
371 | 371 | // Install these only after all other plugins have loaded |
372 | 372 | $request = Craft::$app->getRequest(); |
373 | 373 | // Only respond to non-console site requests |
@@ -385,26 +385,26 @@ discard block |
||
385 | 385 | Event::on( |
386 | 386 | Gql::class, |
387 | 387 | Gql::EVENT_REGISTER_GQL_TYPES, |
388 | - function (RegisterGqlTypesEvent $event) { |
|
388 | + function(RegisterGqlTypesEvent $event) { |
|
389 | 389 | Craft::debug( |
390 | 390 | 'Gql::EVENT_REGISTER_GQL_TYPES', |
391 | 391 | __METHOD__ |
392 | 392 | ); |
393 | - $event->types[] = RetourInterface::class; |
|
393 | + $event->types[ ] = RetourInterface::class; |
|
394 | 394 | } |
395 | 395 | ); |
396 | 396 | // Handler: Gql::EVENT_REGISTER_GQL_QUERIES |
397 | 397 | Event::on( |
398 | 398 | Gql::class, |
399 | 399 | Gql::EVENT_REGISTER_GQL_QUERIES, |
400 | - function (RegisterGqlQueriesEvent $event) { |
|
400 | + function(RegisterGqlQueriesEvent $event) { |
|
401 | 401 | Craft::debug( |
402 | 402 | 'Gql::EVENT_REGISTER_GQL_QUERIES', |
403 | 403 | __METHOD__ |
404 | 404 | ); |
405 | 405 | $queries = RetourQuery::getQueries(); |
406 | 406 | foreach ($queries as $key => $value) { |
407 | - $event->queries[$key] = $value; |
|
407 | + $event->queries[ $key ] = $value; |
|
408 | 408 | } |
409 | 409 | } |
410 | 410 | ); |
@@ -414,7 +414,7 @@ discard block |
||
414 | 414 | Event::on( |
415 | 415 | Schema::class, |
416 | 416 | AlterSchemaFields::EVENT, |
417 | - [GetCraftQLSchema::class, 'handle'] |
|
417 | + [ GetCraftQLSchema::class, 'handle' ] |
|
418 | 418 | ); |
419 | 419 | } |
420 | 420 | } |
@@ -428,7 +428,7 @@ discard block |
||
428 | 428 | Event::on( |
429 | 429 | UrlManager::class, |
430 | 430 | UrlManager::EVENT_REGISTER_SITE_URL_RULES, |
431 | - function (RegisterUrlRulesEvent $event) { |
|
431 | + function(RegisterUrlRulesEvent $event) { |
|
432 | 432 | Craft::debug( |
433 | 433 | 'UrlManager::EVENT_REGISTER_SITE_URL_RULES', |
434 | 434 | __METHOD__ |
@@ -451,15 +451,15 @@ discard block |
||
451 | 451 | Event::on( |
452 | 452 | Dashboard::class, |
453 | 453 | Dashboard::EVENT_REGISTER_WIDGET_TYPES, |
454 | - function (RegisterComponentTypesEvent $event) { |
|
455 | - $event->types[] = RetourWidget::class; |
|
454 | + function(RegisterComponentTypesEvent $event) { |
|
455 | + $event->types[ ] = RetourWidget::class; |
|
456 | 456 | } |
457 | 457 | ); |
458 | 458 | // Handler: UrlManager::EVENT_REGISTER_CP_URL_RULES |
459 | 459 | Event::on( |
460 | 460 | UrlManager::class, |
461 | 461 | UrlManager::EVENT_REGISTER_CP_URL_RULES, |
462 | - function (RegisterUrlRulesEvent $event) { |
|
462 | + function(RegisterUrlRulesEvent $event) { |
|
463 | 463 | Craft::debug( |
464 | 464 | 'UrlManager::EVENT_REGISTER_CP_URL_RULES', |
465 | 465 | __METHOD__ |
@@ -475,13 +475,13 @@ discard block |
||
475 | 475 | Event::on( |
476 | 476 | UserPermissions::class, |
477 | 477 | UserPermissions::EVENT_REGISTER_PERMISSIONS, |
478 | - function (RegisterUserPermissionsEvent $event) { |
|
478 | + function(RegisterUserPermissionsEvent $event) { |
|
479 | 479 | Craft::debug( |
480 | 480 | 'UserPermissions::EVENT_REGISTER_PERMISSIONS', |
481 | 481 | __METHOD__ |
482 | 482 | ); |
483 | 483 | // Register our custom permissions |
484 | - $event->permissions[Craft::t('retour', 'Retour')] = $this->customAdminCpPermissions(); |
|
484 | + $event->permissions[ Craft::t('retour', 'Retour') ] = $this->customAdminCpPermissions(); |
|
485 | 485 | } |
486 | 486 | ); |
487 | 487 | } |
@@ -497,7 +497,7 @@ discard block |
||
497 | 497 | Event::on( |
498 | 498 | ErrorHandler::class, |
499 | 499 | ErrorHandler::EVENT_BEFORE_HANDLE_EXCEPTION, |
500 | - function (ExceptionEvent $event) { |
|
500 | + function(ExceptionEvent $event) { |
|
501 | 501 | Craft::debug( |
502 | 502 | 'ErrorHandler::EVENT_BEFORE_HANDLE_EXCEPTION', |
503 | 503 | __METHOD__ |
@@ -540,16 +540,16 @@ discard block |
||
540 | 540 | protected function handleElementUriChange(Element $element) |
541 | 541 | { |
542 | 542 | $uris = $this->getAllElementUris($element); |
543 | - if (!empty($this->oldElementUris[$element->id])) { |
|
544 | - $oldElementUris = $this->oldElementUris[$element->id]; |
|
543 | + if (!empty($this->oldElementUris[ $element->id ])) { |
|
544 | + $oldElementUris = $this->oldElementUris[ $element->id ]; |
|
545 | 545 | foreach ($uris as $siteId => $newUri) { |
546 | - if (!empty($oldElementUris[$siteId])) { |
|
547 | - $oldUri = $oldElementUris[$siteId]; |
|
546 | + if (!empty($oldElementUris[ $siteId ])) { |
|
547 | + $oldUri = $oldElementUris[ $siteId ]; |
|
548 | 548 | Craft::debug( |
549 | 549 | Craft::t( |
550 | 550 | 'retour', |
551 | 551 | 'Comparing old: {oldUri} to new: {newUri}', |
552 | - ['oldUri' => print_r($oldUri, true), 'newUri' => print_r($newUri, true)] |
|
552 | + [ 'oldUri' => print_r($oldUri, true), 'newUri' => print_r($newUri, true) ] |
|
553 | 553 | ), |
554 | 554 | __METHOD__ |
555 | 555 | ); |
@@ -569,7 +569,7 @@ discard block |
||
569 | 569 | if (self::$settings->uriChangeRedirectSrcMatch === 'fullurl') { |
570 | 570 | try { |
571 | 571 | if ($redirectSiteId !== null) { |
572 | - $redirectSiteId = (int)$redirectSiteId; |
|
572 | + $redirectSiteId = (int) $redirectSiteId; |
|
573 | 573 | } |
574 | 574 | $oldUri = UrlHelper::siteUrl($oldUri, null, null, $redirectSiteId); |
575 | 575 | $newUri = UrlHelper::siteUrl($newUri, null, null, $redirectSiteId); |
@@ -602,13 +602,13 @@ discard block |
||
602 | 602 | */ |
603 | 603 | protected function getAllElementUris(Element $element): array |
604 | 604 | { |
605 | - $uris = []; |
|
605 | + $uris = [ ]; |
|
606 | 606 | if (!self::$craft32 || !ElementHelper::isDraftOrRevision($element)) { |
607 | 607 | $sites = Craft::$app->getSites()->getAllSites(); |
608 | 608 | foreach ($sites as $site) { |
609 | 609 | $uri = Craft::$app->getElements()->getElementUriForSite($element->id, $site->id); |
610 | 610 | if ($uri !== null) { |
611 | - $uris[$site->id] = $uri; |
|
611 | + $uris[ $site->id ] = $uri; |
|
612 | 612 | } |
613 | 613 | } |
614 | 614 | } |
@@ -617,7 +617,7 @@ discard block |
||
617 | 617 | Craft::t( |
618 | 618 | 'retour', |
619 | 619 | 'Getting Element URIs: {uris}', |
620 | - ['uris' => print_r($uris, true)] |
|
620 | + [ 'uris' => print_r($uris, true) ] |
|
621 | 621 | ), |
622 | 622 | __METHOD__ |
623 | 623 | ); |
@@ -672,7 +672,7 @@ discard block |
||
672 | 672 | [ |
673 | 673 | 'key' => 'retour-redirect-caches', |
674 | 674 | 'label' => Craft::t('retour', 'Retour redirect caches'), |
675 | - 'action' => [self::$plugin->redirects, 'invalidateCaches'], |
|
675 | + 'action' => [ self::$plugin->redirects, 'invalidateCaches' ], |
|
676 | 676 | ], |
677 | 677 | ]; |
678 | 678 | } |
@@ -39,7 +39,7 @@ |
||
39 | 39 | /** @noinspection CallableParameterUseCaseInTypeContextInspection */ |
40 | 40 | $url = preg_replace('/{.*}/', '', $url); |
41 | 41 | // Remove any linebreaks that may be errantly in the URL |
42 | - $url = (string)str_replace([ |
|
42 | + $url = (string) str_replace([ |
|
43 | 43 | PHP_EOL, |
44 | 44 | "\r", |
45 | 45 | "\n", |
@@ -57,6 +57,6 @@ |
||
57 | 57 | { |
58 | 58 | $redirects = Retour::$plugin->redirects->getAllStaticRedirects(null, $siteId); |
59 | 59 | |
60 | - return $this->asJson($redirects ?? []); |
|
60 | + return $this->asJson($redirects ?? [ ]); |
|
61 | 61 | } |
62 | 62 | } |
@@ -135,8 +135,8 @@ discard block |
||
135 | 135 | public function rules() |
136 | 136 | { |
137 | 137 | return [ |
138 | - ['pluginName', 'string'], |
|
139 | - ['pluginName', 'default', 'value' => 'Retour'], |
|
138 | + [ 'pluginName', 'string' ], |
|
139 | + [ 'pluginName', 'default', 'value' => 'Retour' ], |
|
140 | 140 | [ |
141 | 141 | [ |
142 | 142 | 'createUriChangeRedirects', |
@@ -147,22 +147,22 @@ discard block |
||
147 | 147 | ], |
148 | 148 | 'boolean', |
149 | 149 | ], |
150 | - ['uriChangeRedirectSrcMatch', 'default', 'value' => 'pathonly'], |
|
151 | - ['uriChangeRedirectSrcMatch', 'string'], |
|
152 | - ['uriChangeRedirectSrcMatch', 'in', 'range' => [ |
|
150 | + [ 'uriChangeRedirectSrcMatch', 'default', 'value' => 'pathonly' ], |
|
151 | + [ 'uriChangeRedirectSrcMatch', 'string' ], |
|
152 | + [ 'uriChangeRedirectSrcMatch', 'in', 'range' => [ |
|
153 | 153 | 'pathonly', |
154 | 154 | 'fullurl' |
155 | - ]], |
|
156 | - ['staticRedirectDisplayLimit', 'integer', 'min' => 1], |
|
157 | - ['staticRedirectDisplayLimit', 'default', 'value' => 100], |
|
158 | - ['dynamicRedirectDisplayLimit', 'integer', 'min' => 1], |
|
159 | - ['dynamicRedirectDisplayLimit', 'default', 'value' => 100], |
|
160 | - ['statsStoredLimit', 'integer', 'min' => 1], |
|
161 | - ['statsStoredLimit', 'default', 'value' => 1000], |
|
162 | - ['refreshIntervalSecs', 'integer', 'min' => 0], |
|
163 | - ['refreshIntervalSecs', 'default', 'value' => 3], |
|
164 | - ['statsDisplayLimit', 'integer', 'min' => 1], |
|
165 | - ['statsDisplayLimit', 'default', 'value' => 1000], |
|
155 | + ] ], |
|
156 | + [ 'staticRedirectDisplayLimit', 'integer', 'min' => 1 ], |
|
157 | + [ 'staticRedirectDisplayLimit', 'default', 'value' => 100 ], |
|
158 | + [ 'dynamicRedirectDisplayLimit', 'integer', 'min' => 1 ], |
|
159 | + [ 'dynamicRedirectDisplayLimit', 'default', 'value' => 100 ], |
|
160 | + [ 'statsStoredLimit', 'integer', 'min' => 1 ], |
|
161 | + [ 'statsStoredLimit', 'default', 'value' => 1000 ], |
|
162 | + [ 'refreshIntervalSecs', 'integer', 'min' => 0 ], |
|
163 | + [ 'refreshIntervalSecs', 'default', 'value' => 3 ], |
|
164 | + [ 'statsDisplayLimit', 'integer', 'min' => 1 ], |
|
165 | + [ 'statsDisplayLimit', 'default', 'value' => 1000 ], |
|
166 | 166 | [ |
167 | 167 | [ |
168 | 168 | 'excludePatterns', |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | */ |
179 | 179 | public function behaviors() |
180 | 180 | { |
181 | - $craft31Behaviors = []; |
|
181 | + $craft31Behaviors = [ ]; |
|
182 | 182 | if (Retour::$craft31) { |
183 | 183 | $craft31Behaviors = [ |
184 | 184 | 'parser' => [ |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | Craft::t( |
191 | 191 | 'retour', |
192 | 192 | '404 full URL: {fullUrl}, 404 path only: {pathOnly}', |
193 | - ['fullUrl' => $fullUrl, 'pathOnly' => $pathOnly] |
|
193 | + [ 'fullUrl' => $fullUrl, 'pathOnly' => $pathOnly ] |
|
194 | 194 | ), |
195 | 195 | __METHOD__ |
196 | 196 | ); |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | $response = Craft::$app->getResponse(); |
225 | 225 | if ($redirect !== null) { |
226 | 226 | // Figure out what type of source matching was done |
227 | - $redirectSrcMatch = $redirect['redirectSrcMatch'] ?? 'pathonly'; |
|
227 | + $redirectSrcMatch = $redirect[ 'redirectSrcMatch' ] ?? 'pathonly'; |
|
228 | 228 | switch ($redirectSrcMatch) { |
229 | 229 | case 'pathonly': |
230 | 230 | $url = $pathOnly; |
@@ -236,13 +236,13 @@ discard block |
||
236 | 236 | $url = $pathOnly; |
237 | 237 | break; |
238 | 238 | } |
239 | - $dest = $redirect['redirectDestUrl']; |
|
239 | + $dest = $redirect[ 'redirectDestUrl' ]; |
|
240 | 240 | // If this isn't a full URL, make it one based on the appropriate site |
241 | 241 | if (!UrlHelper::isFullUrl($dest)) { |
242 | 242 | try { |
243 | - $siteId = $redirect['siteId'] ?? null; |
|
243 | + $siteId = $redirect[ 'siteId' ] ?? null; |
|
244 | 244 | if ($siteId !== null) { |
245 | - $siteId = (int)$siteId; |
|
245 | + $siteId = (int) $siteId; |
|
246 | 246 | } |
247 | 247 | $dest = UrlHelper::siteUrl($dest, null, null, $siteId); |
248 | 248 | } catch (\yii\base\Exception $e) { |
@@ -254,17 +254,17 @@ discard block |
||
254 | 254 | $dest .= '?' . $request->getQueryStringWithoutPath(); |
255 | 255 | } |
256 | 256 | } |
257 | - $redirectMatchType = $redirect['redirectMatchType'] ?? 'notfound'; |
|
257 | + $redirectMatchType = $redirect[ 'redirectMatchType' ] ?? 'notfound'; |
|
258 | 258 | // Parse reference tags for exact matches |
259 | 259 | if ($redirectMatchType === 'exactmatch') { |
260 | - $dest = Craft::$app->elements->parseRefs($dest, $redirect['siteId'] ?? null); |
|
260 | + $dest = Craft::$app->elements->parseRefs($dest, $redirect[ 'siteId' ] ?? null); |
|
261 | 261 | } |
262 | - $status = $redirect['redirectHttpCode']; |
|
262 | + $status = $redirect[ 'redirectHttpCode' ]; |
|
263 | 263 | Craft::info( |
264 | 264 | Craft::t( |
265 | 265 | 'retour', |
266 | 266 | 'Redirecting {url} to {dest} with status {status}', |
267 | - ['url' => $url, 'dest' => $dest, 'status' => $status] |
|
267 | + [ 'url' => $url, 'dest' => $dest, 'status' => $status ] |
|
268 | 268 | ), |
269 | 269 | __METHOD__ |
270 | 270 | ); |
@@ -288,7 +288,7 @@ discard block |
||
288 | 288 | // Add any additional headers (existing ones will be replaced) |
289 | 289 | if (!empty(Retour::$settings->additionalHeaders)) { |
290 | 290 | foreach (Retour::$settings->additionalHeaders as $additionalHeader) { |
291 | - $response->headers->set($additionalHeader['name'], $additionalHeader['value']); |
|
291 | + $response->headers->set($additionalHeader[ 'name' ], $additionalHeader[ 'value' ]); |
|
292 | 292 | } |
293 | 293 | } |
294 | 294 | // Redirect the request away; |
@@ -354,13 +354,13 @@ discard block |
||
354 | 354 | public function getRedirectFromCache($url, int $siteId = 0) |
355 | 355 | { |
356 | 356 | $cache = Craft::$app->getCache(); |
357 | - $cacheKey = $this::CACHE_KEY.md5($url).$siteId; |
|
357 | + $cacheKey = $this::CACHE_KEY . md5($url) . $siteId; |
|
358 | 358 | $redirect = $cache->get($cacheKey); |
359 | 359 | Craft::info( |
360 | 360 | Craft::t( |
361 | 361 | 'retour', |
362 | 362 | 'Cached redirect hit for {url}', |
363 | - ['url' => $url] |
|
363 | + [ 'url' => $url ] |
|
364 | 364 | ), |
365 | 365 | __METHOD__ |
366 | 366 | ); |
@@ -382,12 +382,12 @@ discard block |
||
382 | 382 | } catch (SiteNotFoundException $e) { |
383 | 383 | $siteId = 1; |
384 | 384 | } |
385 | - $cacheKey = $this::CACHE_KEY.md5($url).$siteId; |
|
385 | + $cacheKey = $this::CACHE_KEY . md5($url) . $siteId; |
|
386 | 386 | // Create the dependency tags |
387 | 387 | $dependency = new TagDependency([ |
388 | 388 | 'tags' => [ |
389 | 389 | $this::GLOBAL_REDIRECTS_CACHE_TAG, |
390 | - $this::GLOBAL_REDIRECTS_CACHE_TAG.$siteId, |
|
390 | + $this::GLOBAL_REDIRECTS_CACHE_TAG . $siteId, |
|
391 | 391 | ], |
392 | 392 | ]); |
393 | 393 | $cache->set($cacheKey, $redirect, Retour::$cacheDuration, $dependency); |
@@ -395,7 +395,7 @@ discard block |
||
395 | 395 | Craft::t( |
396 | 396 | 'retour', |
397 | 397 | 'Cached redirect saved for {url}', |
398 | - ['url' => $url] |
|
398 | + [ 'url' => $url ] |
|
399 | 399 | ), |
400 | 400 | __METHOD__ |
401 | 401 | ); |
@@ -425,8 +425,8 @@ discard block |
||
425 | 425 | // Iterate through the redirects |
426 | 426 | foreach ($redirects as $redirect) { |
427 | 427 | // Figure out what type of source matching to do |
428 | - $redirectSrcMatch = $redirect['redirectSrcMatch'] ?? 'pathonly'; |
|
429 | - $redirectEnabled = (bool)$redirect['enabled']; |
|
428 | + $redirectSrcMatch = $redirect[ 'redirectSrcMatch' ] ?? 'pathonly'; |
|
429 | + $redirectEnabled = (bool) $redirect[ 'enabled' ]; |
|
430 | 430 | if ($redirectEnabled === true) { |
431 | 431 | switch ($redirectSrcMatch) { |
432 | 432 | case 'pathonly': |
@@ -439,11 +439,11 @@ discard block |
||
439 | 439 | $url = $pathOnly; |
440 | 440 | break; |
441 | 441 | } |
442 | - $redirectMatchType = $redirect['redirectMatchType'] ?? 'notfound'; |
|
442 | + $redirectMatchType = $redirect[ 'redirectMatchType' ] ?? 'notfound'; |
|
443 | 443 | switch ($redirectMatchType) { |
444 | 444 | // Do a straight up match |
445 | 445 | case 'exactmatch': |
446 | - if (strcasecmp($redirect['redirectSrcUrlParsed'], $url) === 0) { |
|
446 | + if (strcasecmp($redirect[ 'redirectSrcUrlParsed' ], $url) === 0) { |
|
447 | 447 | $this->incrementRedirectHitCount($redirect); |
448 | 448 | $this->saveRedirectToCache($url, $redirect); |
449 | 449 | |
@@ -466,15 +466,15 @@ discard block |
||
466 | 466 | |
467 | 467 | // Do a regex match |
468 | 468 | case 'regexmatch': |
469 | - $matchRegEx = '`'.$redirect['redirectSrcUrlParsed'].'`i'; |
|
469 | + $matchRegEx = '`' . $redirect[ 'redirectSrcUrlParsed' ] . '`i'; |
|
470 | 470 | try { |
471 | 471 | if (preg_match($matchRegEx, $url) === 1) { |
472 | 472 | $this->incrementRedirectHitCount($redirect); |
473 | 473 | // If we're not associated with an EntryID, handle capture group replacement |
474 | - if ((int)$redirect['associatedElementId'] === 0) { |
|
475 | - $redirect['redirectDestUrl'] = preg_replace( |
|
474 | + if ((int) $redirect[ 'associatedElementId' ] === 0) { |
|
475 | + $redirect[ 'redirectDestUrl' ] = preg_replace( |
|
476 | 476 | $matchRegEx, |
477 | - $redirect['redirectDestUrl'], |
|
477 | + $redirect[ 'redirectDestUrl' ], |
|
478 | 478 | $url |
479 | 479 | ); |
480 | 480 | } |
@@ -498,7 +498,7 @@ discard block |
||
498 | 498 | } |
499 | 499 | } catch (\Exception $e) { |
500 | 500 | // That's fine |
501 | - Craft::error('Invalid Redirect Regex: '.$matchRegEx, __METHOD__); |
|
501 | + Craft::error('Invalid Redirect Regex: ' . $matchRegEx, __METHOD__); |
|
502 | 502 | } |
503 | 503 | |
504 | 504 | break; |
@@ -512,7 +512,7 @@ discard block |
||
512 | 512 | 'redirect' => &$redirect, |
513 | 513 | ], |
514 | 514 | ]; |
515 | - $result = \call_user_func_array([$plugin, 'retourMatch'], $args); |
|
515 | + $result = \call_user_func_array([ $plugin, 'retourMatch' ], $args); |
|
516 | 516 | if ($result) { |
517 | 517 | $this->incrementRedirectHitCount($redirect); |
518 | 518 | $this->saveRedirectToCache($url, $redirect); |
@@ -552,7 +552,7 @@ discard block |
||
552 | 552 | Craft::t( |
553 | 553 | 'retour', |
554 | 554 | 'Not handled-> full URL: {fullUrl}, path only: {pathOnly}', |
555 | - ['fullUrl' => $fullUrl, 'pathOnly' => $pathOnly] |
|
555 | + [ 'fullUrl' => $fullUrl, 'pathOnly' => $pathOnly ] |
|
556 | 556 | ), |
557 | 557 | __METHOD__ |
558 | 558 | ); |
@@ -597,7 +597,7 @@ discard block |
||
597 | 597 | foreach (Craft::$app->getPlugins()->getAllPlugins() as $plugin) { |
598 | 598 | /** @var Plugin $plugin */ |
599 | 599 | if (method_exists($plugin, 'retourMatch')) { |
600 | - $result[$plugin->getHandle()] = $plugin->name.Craft::t('retour', ' Match'); |
|
600 | + $result[ $plugin->getHandle() ] = $plugin->name . Craft::t('retour', ' Match'); |
|
601 | 601 | } |
602 | 602 | } |
603 | 603 | |
@@ -618,12 +618,12 @@ discard block |
||
618 | 618 | } |
619 | 619 | // Query the db table |
620 | 620 | $query = (new Query()) |
621 | - ->from(['{{%retour_static_redirects}}']) |
|
621 | + ->from([ '{{%retour_static_redirects}}' ]) |
|
622 | 622 | ->orderBy('redirectMatchType ASC, redirectSrcMatch ASC, hitCount DESC'); |
623 | 623 | if ($siteId) { |
624 | 624 | $query |
625 | - ->where(['siteId' => $siteId]) |
|
626 | - ->orWhere(['siteId' => null]); |
|
625 | + ->where([ 'siteId' => $siteId ]) |
|
626 | + ->orWhere([ 'siteId' => null ]); |
|
627 | 627 | } |
628 | 628 | if ($limit) { |
629 | 629 | $query->limit($limit); |
@@ -646,8 +646,8 @@ discard block |
||
646 | 646 | { |
647 | 647 | // Query the db table |
648 | 648 | $redirect = (new Query()) |
649 | - ->from(['{{%retour_static_redirects}}']) |
|
650 | - ->where(['id' => $id]) |
|
649 | + ->from([ '{{%retour_static_redirects}}' ]) |
|
650 | + ->where([ 'id' => $id ]) |
|
651 | 651 | ->one(); |
652 | 652 | |
653 | 653 | return $redirect; |
@@ -665,16 +665,16 @@ discard block |
||
665 | 665 | { |
666 | 666 | // Query the db table |
667 | 667 | $query = (new Query()) |
668 | - ->from(['{{%retour_static_redirects}}']) |
|
669 | - ->where(['redirectSrcUrl' => $redirectSrcUrl]) |
|
668 | + ->from([ '{{%retour_static_redirects}}' ]) |
|
669 | + ->where([ 'redirectSrcUrl' => $redirectSrcUrl ]) |
|
670 | 670 | ; |
671 | 671 | if ($siteId) { |
672 | 672 | $query |
673 | - ->andWhere(['or', [ |
|
673 | + ->andWhere([ 'or', [ |
|
674 | 674 | 'siteId' => $siteId, |
675 | 675 | ], [ |
676 | 676 | 'siteId' => null, |
677 | - ]]); |
|
677 | + ] ]); |
|
678 | 678 | } |
679 | 679 | $redirect = $query->one(); |
680 | 680 | |
@@ -716,13 +716,13 @@ discard block |
||
716 | 716 | { |
717 | 717 | if ($redirectConfig !== null) { |
718 | 718 | $db = Craft::$app->getDb(); |
719 | - $redirectConfig['hitCount']++; |
|
720 | - $redirectConfig['hitLastTime'] = Db::prepareDateForDb(new \DateTime()); |
|
719 | + $redirectConfig[ 'hitCount' ]++; |
|
720 | + $redirectConfig[ 'hitLastTime' ] = Db::prepareDateForDb(new \DateTime()); |
|
721 | 721 | Craft::debug( |
722 | 722 | Craft::t( |
723 | 723 | 'retour', |
724 | 724 | 'Incrementing statistics for: {redirect}', |
725 | - ['redirect' => print_r($redirectConfig, true)] |
|
725 | + [ 'redirect' => print_r($redirectConfig, true) ] |
|
726 | 726 | ), |
727 | 727 | __METHOD__ |
728 | 728 | ); |
@@ -731,14 +731,14 @@ discard block |
||
731 | 731 | $rowsAffected = $db->createCommand()->update( |
732 | 732 | '{{%retour_static_redirects}}', |
733 | 733 | [ |
734 | - 'hitCount' => $redirectConfig['hitCount'], |
|
735 | - 'hitLastTime' => $redirectConfig['hitLastTime'], |
|
734 | + 'hitCount' => $redirectConfig[ 'hitCount' ], |
|
735 | + 'hitLastTime' => $redirectConfig[ 'hitLastTime' ], |
|
736 | 736 | ], |
737 | 737 | [ |
738 | - 'id' => $redirectConfig['id'], |
|
738 | + 'id' => $redirectConfig[ 'id' ], |
|
739 | 739 | ] |
740 | 740 | )->execute(); |
741 | - Craft::debug('Rows affected: '.$rowsAffected, __METHOD__); |
|
741 | + Craft::debug('Rows affected: ' . $rowsAffected, __METHOD__); |
|
742 | 742 | } catch (\Exception $e) { |
743 | 743 | Craft::error($e->getMessage(), __METHOD__); |
744 | 744 | } |
@@ -757,7 +757,7 @@ discard block |
||
757 | 757 | Craft::t( |
758 | 758 | 'retour', |
759 | 759 | 'Error validating redirect {id}: {errors}', |
760 | - ['id' => $redirect->id, 'errors' => print_r($redirect->getErrors(), true)] |
|
760 | + [ 'id' => $redirect->id, 'errors' => print_r($redirect->getErrors(), true) ] |
|
761 | 761 | ), |
762 | 762 | __METHOD__ |
763 | 763 | ); |
@@ -767,32 +767,32 @@ discard block |
||
767 | 767 | // Get the validated model attributes and save them to the db |
768 | 768 | $redirectConfig = $redirect->getAttributes(); |
769 | 769 | // 0 for a siteId needs to be converted to null |
770 | - if (empty($redirectConfig['siteId']) || (int)$redirectConfig['siteId'] === 0) { |
|
771 | - $redirectConfig['siteId'] = null; |
|
770 | + if (empty($redirectConfig[ 'siteId' ]) || (int) $redirectConfig[ 'siteId' ] === 0) { |
|
771 | + $redirectConfig[ 'siteId' ] = null; |
|
772 | 772 | } |
773 | 773 | // Throw an event to before saving the redirect |
774 | 774 | $db = Craft::$app->getDb(); |
775 | 775 | // See if a redirect exists with this source URL already |
776 | - if ((int)$redirectConfig['id'] === 0) { |
|
776 | + if ((int) $redirectConfig[ 'id' ] === 0) { |
|
777 | 777 | // Query the db table |
778 | 778 | $redirect = (new Query()) |
779 | - ->from(['{{%retour_static_redirects}}']) |
|
780 | - ->where(['redirectSrcUrlParsed' => $redirectConfig['redirectSrcUrlParsed']]) |
|
781 | - ->andWhere(['siteId' => $redirectConfig['siteId']]) |
|
779 | + ->from([ '{{%retour_static_redirects}}' ]) |
|
780 | + ->where([ 'redirectSrcUrlParsed' => $redirectConfig[ 'redirectSrcUrlParsed' ] ]) |
|
781 | + ->andWhere([ 'siteId' => $redirectConfig[ 'siteId' ] ]) |
|
782 | 782 | ->one(); |
783 | 783 | // If it exists, update it rather than having duplicates |
784 | 784 | if (!empty($redirect)) { |
785 | - $redirectConfig['id'] = $redirect['id']; |
|
785 | + $redirectConfig[ 'id' ] = $redirect[ 'id' ]; |
|
786 | 786 | } |
787 | 787 | } |
788 | 788 | // Trigger a 'beforeSaveRedirect' event |
789 | - $isNew = (int)$redirectConfig['id'] === 0; |
|
789 | + $isNew = (int) $redirectConfig[ 'id' ] === 0; |
|
790 | 790 | $event = new RedirectEvent([ |
791 | 791 | 'isNew' => $isNew, |
792 | - 'legacyUrl' => $redirectConfig['redirectSrcUrlParsed'], |
|
793 | - 'destinationUrl' => $redirectConfig['redirectDestUrl'], |
|
794 | - 'matchType' => $redirectConfig['redirectSrcMatch'], |
|
795 | - 'redirectType' => $redirectConfig['redirectHttpCode'], |
|
792 | + 'legacyUrl' => $redirectConfig[ 'redirectSrcUrlParsed' ], |
|
793 | + 'destinationUrl' => $redirectConfig[ 'redirectDestUrl' ], |
|
794 | + 'matchType' => $redirectConfig[ 'redirectSrcMatch' ], |
|
795 | + 'redirectType' => $redirectConfig[ 'redirectHttpCode' ], |
|
796 | 796 | ]); |
797 | 797 | $this->trigger(self::EVENT_BEFORE_SAVE_REDIRECT, $event); |
798 | 798 | if (!$event->isValid) { |
@@ -804,7 +804,7 @@ discard block |
||
804 | 804 | Craft::t( |
805 | 805 | 'retour', |
806 | 806 | 'Updating existing redirect: {redirect}', |
807 | - ['redirect' => print_r($redirectConfig, true)] |
|
807 | + [ 'redirect' => print_r($redirectConfig, true) ] |
|
808 | 808 | ), |
809 | 809 | __METHOD__ |
810 | 810 | ); |
@@ -814,7 +814,7 @@ discard block |
||
814 | 814 | '{{%retour_static_redirects}}', |
815 | 815 | $redirectConfig, |
816 | 816 | [ |
817 | - 'id' => $redirectConfig['id'], |
|
817 | + 'id' => $redirectConfig[ 'id' ], |
|
818 | 818 | ] |
819 | 819 | )->execute(); |
820 | 820 | } catch (Exception $e) { |
@@ -825,11 +825,11 @@ discard block |
||
825 | 825 | Craft::t( |
826 | 826 | 'retour', |
827 | 827 | 'Creating new redirect: {redirect}', |
828 | - ['redirect' => print_r($redirectConfig, true)] |
|
828 | + [ 'redirect' => print_r($redirectConfig, true) ] |
|
829 | 829 | ), |
830 | 830 | __METHOD__ |
831 | 831 | ); |
832 | - unset($redirectConfig['id']); |
|
832 | + unset($redirectConfig[ 'id' ]); |
|
833 | 833 | // Create a new record |
834 | 834 | try { |
835 | 835 | $db->createCommand()->insert( |
@@ -842,15 +842,15 @@ discard block |
||
842 | 842 | } |
843 | 843 | // To prevent redirect loops, see if any static redirects have our redirectDestUrl as their redirectSrcUrl |
844 | 844 | $testRedirectConfig = $this->getRedirectByRedirectSrcUrl( |
845 | - $redirectConfig['redirectDestUrl'], |
|
846 | - $redirectConfig['siteId'] |
|
845 | + $redirectConfig[ 'redirectDestUrl' ], |
|
846 | + $redirectConfig[ 'siteId' ] |
|
847 | 847 | ); |
848 | 848 | if ($testRedirectConfig !== null) { |
849 | 849 | Craft::debug( |
850 | 850 | Craft::t( |
851 | 851 | 'retour', |
852 | 852 | 'Deleting redirect to prevent a loop: {redirect}', |
853 | - ['redirect' => print_r($testRedirectConfig, true)] |
|
853 | + [ 'redirect' => print_r($testRedirectConfig, true) ] |
|
854 | 854 | ), |
855 | 855 | __METHOD__ |
856 | 856 | ); |
@@ -858,7 +858,7 @@ discard block |
||
858 | 858 | try { |
859 | 859 | $db->createCommand()->delete( |
860 | 860 | '{{%retour_static_redirects}}', |
861 | - ['id' => $testRedirectConfig['id']] |
|
861 | + [ 'id' => $testRedirectConfig[ 'id' ] ] |
|
862 | 862 | )->execute(); |
863 | 863 | } catch (Exception $e) { |
864 | 864 | Craft::error($e->getMessage(), __METHOD__); |
@@ -891,17 +891,17 @@ discard block |
||
891 | 891 | */ |
892 | 892 | public function excludeUri($uri): bool |
893 | 893 | { |
894 | - $uri = '/'.ltrim($uri, '/'); |
|
894 | + $uri = '/' . ltrim($uri, '/'); |
|
895 | 895 | if (!empty(Retour::$settings->excludePatterns)) { |
896 | 896 | foreach (Retour::$settings->excludePatterns as $excludePattern) { |
897 | - $pattern = '`'.$excludePattern['pattern'].'`i'; |
|
897 | + $pattern = '`' . $excludePattern[ 'pattern' ] . '`i'; |
|
898 | 898 | try { |
899 | 899 | if (preg_match($pattern, $uri) === 1) { |
900 | 900 | return true; |
901 | 901 | } |
902 | 902 | } catch (\Exception $e) { |
903 | 903 | // That's fine |
904 | - Craft::error('Invalid exclude URI Regex: '.$pattern, __METHOD__); |
|
904 | + Craft::error('Invalid exclude URI Regex: ' . $pattern, __METHOD__); |
|
905 | 905 | } |
906 | 906 | } |
907 | 907 | } |