Passed
Push — master ( 2ee8d2...63175f )
by Fran
02:39
created
src/base/types/helpers/SecurityHelper.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
             && (preg_match('/^\/(admin|setup\-admin)/i', $route) || Config::getParam('restricted', false))
34 34
         ) {
35 35
             if (!self::isTest() &&
36
-                null === Cache::getInstance()->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'admins.json', Cache::JSONGZ, true)) {
36
+                null === Cache::getInstance()->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR.'admins.json', Cache::JSONGZ, true)) {
37 37
                 throw new AdminCredentialsException();
38 38
             }
39 39
             if (!Security::getInstance()->checkAdmin()) {
@@ -53,8 +53,8 @@  discard block
 block discarded – undo
53 53
         $token = '';
54 54
         $ct = strlen($ts);
55 55
         for ($i = 0; $i < $ct; $i++) {
56
-            $token = substr($hash, $i, 1) .
57
-                    substr($ts, $i, 1) .
56
+            $token = substr($hash, $i, 1).
57
+                    substr($ts, $i, 1).
58 58
                     $token;
59 59
         }
60 60
         return $token;
@@ -72,16 +72,16 @@  discard block
 block discarded – undo
72 72
         $charsLength = strlen(self::RAND_SEP) - 1;
73 73
         $tsLength = strlen($ts);
74 74
         $i = 0;
75
-        $ct = ceil($hashRest / 4);
76
-        $part = substr($hash, $tsLength + $ct * $i, $ct);
77
-        while(false !== $part) {
78
-            $mixedToken .= $part .
79
-                substr(self::RAND_SEP, round(rand(0, $charsLength), 0, PHP_ROUND_HALF_DOWN), 1) .
75
+        $ct = ceil($hashRest/4);
76
+        $part = substr($hash, $tsLength + $ct*$i, $ct);
77
+        while (false !== $part) {
78
+            $mixedToken .= $part.
79
+                substr(self::RAND_SEP, round(rand(0, $charsLength), 0, PHP_ROUND_HALF_DOWN), 1).
80 80
                 substr(self::RAND_SEP, round(rand(0, $charsLength), 0, PHP_ROUND_HALF_DOWN), 1);
81
-            $part = substr($hash, $tsLength + $ct * $i, $ct);
81
+            $part = substr($hash, $tsLength + $ct*$i, $ct);
82 82
             $i++;
83 83
         }
84
-        return $mixedToken . $token;
84
+        return $mixedToken.$token;
85 85
     }
86 86
 
87 87
     /**
@@ -90,10 +90,10 @@  discard block
 block discarded – undo
90 90
      */
91 91
     private static function getTs($isOdd = null) {
92 92
         $ts = time();
93
-        $tsIsOdd = (bool)((int)substr($ts, -1) % 2);
94
-        if(false === $isOdd && !$tsIsOdd) {
93
+        $tsIsOdd = (bool)((int)substr($ts, -1)%2);
94
+        if (false === $isOdd && !$tsIsOdd) {
95 95
             $ts--;
96
-        } elseif(true === $isOdd && !$tsIsOdd) {
96
+        } elseif (true === $isOdd && !$tsIsOdd) {
97 97
             $ts--;
98 98
         }
99 99
         return $ts;
@@ -125,10 +125,10 @@  discard block
 block discarded – undo
125 125
         $partToken = '';
126 126
         $ts = '';
127 127
         $part = strrev($part);
128
-        for($i = 0, $ct = strlen($part); $i < $ct; $i++) {
129
-            if($i % 2 == 0) {
128
+        for ($i = 0, $ct = strlen($part); $i < $ct; $i++) {
129
+            if ($i%2 == 0) {
130 130
                 $ts .= substr($part, $i, 1);
131
-            } else {
131
+            }else {
132 132
                 $partToken .= substr($part, $i, 1);
133 133
             }
134 134
         }
@@ -143,11 +143,11 @@  discard block
 block discarded – undo
143 143
     private static function parseTokenParts(array $parts) {
144 144
         $token = '';
145 145
         list($partToken, $ts) = self::extractTs(array_pop($parts));
146
-        if($ts > 0) {
147
-            foreach($parts as $part) {
146
+        if ($ts > 0) {
147
+            foreach ($parts as $part) {
148 148
                 $token .= $part;
149 149
             }
150
-            $token = $partToken . $token;
150
+            $token = $partToken.$token;
151 151
         }
152 152
         return [$token, $ts];
153 153
     }
@@ -175,8 +175,8 @@  discard block
 block discarded – undo
175 175
      * @return array
176 176
      */
177 177
     private static function extractTokenParts($token) {
178
-        for($i = 0, $ct = strlen(self::RAND_SEP); $i < $ct; $i++) {
179
-            $token = str_replace(substr(self::RAND_SEP,$i,1), "|", $token);
178
+        for ($i = 0, $ct = strlen(self::RAND_SEP); $i < $ct; $i++) {
179
+            $token = str_replace(substr(self::RAND_SEP, $i, 1), "|", $token);
180 180
         }
181 181
         return array_unique(explode('||', $token));
182 182
     }
Please login to merge, or discard this patch.
src/Dispatcher.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -73,18 +73,18 @@
 block discarded – undo
73 73
                 if (!Request::getInstance()->isFile()) {
74 74
                     return $this->router->execute($uri ?: $this->actualUri);
75 75
                 }
76
-            } else {
76
+            }else {
77 77
                 return ConfigController::getInstance()->config();
78 78
             }
79
-        } catch (AdminCredentialsException $a) {
79
+        }catch (AdminCredentialsException $a) {
80 80
             return UserController::showAdminManager();
81
-        } catch (SecurityException $s) {
81
+        }catch (SecurityException $s) {
82 82
             return $this->security->notAuthorized($this->actualUri);
83
-        } catch (RouterException $r) {
83
+        }catch (RouterException $r) {
84 84
             return $this->router->httpNotFound($r);
85
-        } catch(ApiException $a) {
85
+        }catch (ApiException $a) {
86 86
             return $this->router->httpNotFound($a, true);
87
-        } catch (\Exception $e) {
87
+        }catch (\Exception $e) {
88 88
             return $this->dumpException($e);
89 89
         }
90 90
     }
Please login to merge, or discard this patch.
src/base/types/traits/OutputTrait.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
                 $this->setStatusCode(Template::STATUS_OK);
122 122
                 break;
123 123
             default:
124
-                $this->setStatusCode('HTTP/1.0 ' .($status ?: 200));
124
+                $this->setStatusCode('HTTP/1.0 '.($status ?: 200));
125 125
                 break;
126 126
         }
127 127
         return $this;
@@ -135,11 +135,11 @@  discard block
 block discarded – undo
135 135
     private function setReponseHeaders($contentType = 'text/html', array $cookies = array())
136 136
     {
137 137
         $powered = Config::getParam('poweredBy', 'PSFS');
138
-        header('X-Powered-By: ' . $powered);
138
+        header('X-Powered-By: '.$powered);
139 139
         ResponseHelper::setStatusHeader($this->getStatusCode());
140 140
         ResponseHelper::setAuthHeaders($this->isPublicZone());
141 141
         ResponseHelper::setCookieHeaders($cookies);
142
-        header('Content-type: ' . $contentType);
142
+        header('Content-type: '.$contentType);
143 143
 
144 144
     }
145 145
 
@@ -152,20 +152,20 @@  discard block
 block discarded – undo
152 152
      */
153 153
     public function output($output = '', $contentType = 'text/html', array $cookies = array())
154 154
     {
155
-        if(!self::isTest()) {
155
+        if (!self::isTest()) {
156 156
             Logger::log('Start output response');
157 157
             ob_start();
158 158
             $this->setReponseHeaders($contentType, $cookies);
159
-            header('Content-length: ' . strlen($output));
160
-            header('CRC: ' . crc32($output));
159
+            header('Content-length: '.strlen($output));
160
+            header('CRC: '.crc32($output));
161 161
 
162 162
             $needCache = Cache::needCache();
163 163
             $cache = Cache::getInstance();
164 164
             list($path, $cacheDataName) = $cache->getRequestCacheHash();
165 165
             if (null !== $cacheDataName && false !== $needCache && $this->getStatusCode() === Template::STATUS_OK) {
166 166
                 Logger::log('Saving output response into cache');
167
-                $cache->storeData('json' . DIRECTORY_SEPARATOR . $path . $cacheDataName, $output);
168
-                $cache->storeData('json' . DIRECTORY_SEPARATOR . $path . $cacheDataName . '.headers', headers_list(), Cache::JSON);
167
+                $cache->storeData('json'.DIRECTORY_SEPARATOR.$path.$cacheDataName, $output);
168
+                $cache->storeData('json'.DIRECTORY_SEPARATOR.$path.$cacheDataName.'.headers', headers_list(), Cache::JSON);
169 169
             } elseif (Request::getInstance()->getMethod() !== 'GET') {
170 170
                 $cache->flushCache();
171 171
             }
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
             ob_end_clean();
176 176
             Logger::log('End output response');
177 177
             $this->closeRender();
178
-        } else {
178
+        }else {
179 179
             return $output;
180 180
         }
181 181
     }
@@ -188,11 +188,11 @@  discard block
 block discarded – undo
188 188
         Logger::log('Close template render');
189 189
         $uri = Request::requestUri();
190 190
         Security::getInstance()->setSessionKey('lastRequest', array(
191
-            'url' => Request::getInstance()->getRootUrl() . $uri,
191
+            'url' => Request::getInstance()->getRootUrl().$uri,
192 192
             'ts' => microtime(true),
193 193
         ));
194 194
         Security::getInstance()->updateSession();
195
-        Logger::log('End request: ' . $uri, LOG_INFO);
195
+        Logger::log('End request: '.$uri, LOG_INFO);
196 196
         exit;
197 197
     }
198 198
 
@@ -230,17 +230,17 @@  discard block
 block discarded – undo
230 230
         /////////////////////////////////////////////////////////////
231 231
         // Date in the past sets the value to already have been expired.
232 232
         header('Expires: Sat, 26 Jul 1997 05:00:00 GMT');
233
-        header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
233
+        header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
234 234
         header('Cache-Control: no-store, no-cache, must-revalidate'); // HTTP/1.1
235 235
         header('Cache-Control: pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
236 236
         header('Pragma: no-cache');
237 237
         header('Expires: 0');
238 238
         header('Content-Transfer-Encoding: binary');
239
-        header('Content-type: ' . $content);
240
-        header('Content-length: ' . strlen($data));
241
-        header('Content-Disposition: attachment; filename="' . $filename . '"');
239
+        header('Content-type: '.$content);
240
+        header('Content-length: '.strlen($data));
241
+        header('Content-Disposition: attachment; filename="'.$filename.'"');
242 242
         header('Access-Control-Expose-Headers: Filename');
243
-        header('Filename: ' . $filename);
243
+        header('Filename: '.$filename);
244 244
         echo $data;
245 245
         ob_flush();
246 246
         ob_end_clean();
Please login to merge, or discard this patch.
src/base/types/helpers/SlackHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
             'attachments' => [
30 30
                 [
31 31
                     "author_name" => $request->getRootUrl(true),
32
-                    "text" => $file . (strlen($line) ? ' [' . $line . ']' : ''),
32
+                    "text" => $file.(strlen($line) ? ' ['.$line.']' : ''),
33 33
                     "color" => Config::getParam('debug', true) ? 'warning' : "danger",
34 34
                     "title" => $message,
35 35
                     'fallback' => 'PSFS Error notifier',
Please login to merge, or discard this patch.
src/base/types/Api.php 1 patch
Spacing   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -81,20 +81,20 @@  discard block
 block discarded – undo
81 81
     public function init()
82 82
     {
83 83
         parent::init();
84
-        Logger::log(static::class . ' init', LOG_DEBUG);
84
+        Logger::log(static::class.' init', LOG_DEBUG);
85 85
         $this->domain = $this->getDomain();
86 86
         $this->hydrateRequestData();
87 87
         $this->hydrateOrders();
88
-        if($this instanceof CustomApi === false) {
88
+        if ($this instanceof CustomApi === false) {
89 89
             $this->createConnection($this->getTableMap());
90 90
         }
91 91
         $this->checkFieldType();
92 92
         $this->setLoaded(true);
93
-        Logger::log(static::class . ' loaded', LOG_DEBUG);
93
+        Logger::log(static::class.' loaded', LOG_DEBUG);
94 94
     }
95 95
 
96 96
     private function checkActions($method) {
97
-        switch($method) {
97
+        switch ($method) {
98 98
             default:
99 99
             case 'modelList': $this->action = self::API_ACTION_LIST; break;
100 100
             case 'get': $this->action = self::API_ACTION_GET; break;
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     protected function hydrateOrders()
112 112
     {
113 113
         if (count($this->query)) {
114
-            Logger::log(static::class . ' gathering query string', LOG_DEBUG);
114
+            Logger::log(static::class.' gathering query string', LOG_DEBUG);
115 115
             foreach ($this->query as $key => $value) {
116 116
                 if ($key === self::API_ORDER_FIELD && is_array($value)) {
117 117
                     foreach ($value as $field => $direction) {
@@ -128,10 +128,10 @@  discard block
 block discarded – undo
128 128
      */
129 129
     protected function extractPagination()
130 130
     {
131
-        Logger::log(static::class . ' extract pagination start', LOG_DEBUG);
131
+        Logger::log(static::class.' extract pagination start', LOG_DEBUG);
132 132
         $page = array_key_exists(self::API_PAGE_FIELD, $this->query) ? $this->query[self::API_PAGE_FIELD] : 1;
133 133
         $limit = array_key_exists(self::API_LIMIT_FIELD, $this->query) ? $this->query[self::API_LIMIT_FIELD] : 100;
134
-        Logger::log(static::class . ' extract pagination end', LOG_DEBUG);
134
+        Logger::log(static::class.' extract pagination end', LOG_DEBUG);
135 135
         return array($page, (int)$limit);
136 136
     }
137 137
 
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
      */
143 143
     private function addOrders(ModelCriteria &$query)
144 144
     {
145
-        Logger::log(static::class . ' extract orders start ', LOG_DEBUG);
145
+        Logger::log(static::class.' extract orders start ', LOG_DEBUG);
146 146
         $orderAdded = FALSE;
147 147
         $tableMap = $this->getTableMap();
148 148
         foreach ($this->order->getOrders() as $field => $direction) {
@@ -150,18 +150,18 @@  discard block
 block discarded – undo
150 150
                 $orderAdded = TRUE;
151 151
                 if ($direction === Order::ASC) {
152 152
                     $query->addAscendingOrderByColumn($column->getPhpName());
153
-                } else {
153
+                }else {
154 154
                     $query->addDescendingOrderByColumn($column->getPhpName());
155 155
                 }
156 156
             }
157 157
         }
158 158
         if (!$orderAdded) {
159 159
             $pks = $this->getPkDbName();
160
-            foreach(array_keys($pks) as $key) {
160
+            foreach (array_keys($pks) as $key) {
161 161
                 $query->addAscendingOrderByColumn($key);
162 162
             }
163 163
         }
164
-        Logger::log(static::class . ' extract orders end', LOG_DEBUG);
164
+        Logger::log(static::class.' extract orders end', LOG_DEBUG);
165 165
     }
166 166
 
167 167
     /**
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
             foreach ($this->query as $field => $value) {
177 177
                 if (self::API_COMBO_FIELD === $field) {
178 178
                     ApiHelper::composerComboField($tableMap, $query, $this->extraColumns, $value);
179
-                } elseif(!preg_match('/^__/', $field)) {
179
+                } elseif (!preg_match('/^__/', $field)) {
180 180
                     ApiHelper::addModelField($tableMap, $query, $field, $value);
181 181
                 }
182 182
             }
@@ -197,10 +197,10 @@  discard block
 block discarded – undo
197 197
             list($page, $limit) = $this->extractPagination();
198 198
             if ($limit === -1) {
199 199
                 $this->list = $query->find($this->con);
200
-            } else {
200
+            }else {
201 201
                 $this->list = $query->paginate($page, $limit, $this->con);
202 202
             }
203
-        } catch (\Exception $e) {
203
+        }catch (\Exception $e) {
204 204
             Logger::log($e->getMessage(), LOG_ERR);
205 205
         }
206 206
     }
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
         $code = 200;
220 220
         list($return, $total, $pages) = $this->getList();
221 221
         $message = null;
222
-        if(!$total) {
222
+        if (!$total) {
223 223
             $message = t('No se han encontrado elementos para la búsqueda');
224 224
         }
225 225
 
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
         $pages = 1;
246 246
         $message = null;
247 247
         list($code, $return) = $this->getSingleResult($pk);
248
-        if($code !== 200) {
248
+        if ($code !== 200) {
249 249
             $message = t('No se ha encontrado el elemento solicitado');
250 250
         }
251 251
 
@@ -274,13 +274,13 @@  discard block
 block discarded – undo
274 274
                 $status = 200;
275 275
                 $saved = TRUE;
276 276
                 $model = $this->model->toArray($this->fieldType ?: TableMap::TYPE_PHPNAME, true, [], true);
277
-            } else {
277
+            }else {
278 278
                 $message = t('No se ha podido guardar el modelo seleccionado');
279 279
             }
280
-        } catch (\Exception $e) {
281
-            $message = t('Ha ocurrido un error intentando guardar el elemento: ') .'<br>'. $e->getMessage();
280
+        }catch (\Exception $e) {
281
+            $message = t('Ha ocurrido un error intentando guardar el elemento: ').'<br>'.$e->getMessage();
282 282
             $context = [];
283
-            if(null !== $e->getPrevious()) {
283
+            if (null !== $e->getPrevious()) {
284 284
                 $context[] = $e->getPrevious()->getMessage();
285 285
             }
286 286
             Logger::log($e->getMessage(), LOG_CRIT, $context);
@@ -316,18 +316,18 @@  discard block
 block discarded – undo
316 316
                     $updated = TRUE;
317 317
                     $status = 200;
318 318
                     $model = $this->model->toArray($this->fieldType ?: TableMap::TYPE_PHPNAME, true, [], true);
319
-                } else {
319
+                }else {
320 320
                     $message = t('Ha ocurrido un error intentando actualizar el elemento, por favor revisa los logs');
321 321
                 }
322
-            } catch (\Exception $e) {
322
+            }catch (\Exception $e) {
323 323
                 $message = t('Ha ocurrido un error intentando actualizar el elemento, por favor revisa los logs');
324 324
                 $context = [];
325
-                if(null !== $e->getPrevious()) {
325
+                if (null !== $e->getPrevious()) {
326 326
                     $context[] = $e->getPrevious()->getMessage();
327 327
                 }
328 328
                 Logger::log($e->getMessage(), LOG_CRIT, $context);
329 329
             }
330
-        } else {
330
+        }else {
331 331
             $message = t('No se ha encontrado el modelo al que se hace referencia para actualizar');
332 332
         }
333 333
 
@@ -355,15 +355,15 @@  discard block
 block discarded – undo
355 355
                 $this->con->beginTransaction();
356 356
                 $this->hydrateModel($pk);
357 357
                 if (NULL !== $this->model) {
358
-                    if(method_exists('clearAllReferences', $this->model)) {
358
+                    if (method_exists('clearAllReferences', $this->model)) {
359 359
                         $this->model->clearAllReferences(true);
360 360
                     }
361 361
                     $this->model->delete($this->con);
362 362
                     $deleted = TRUE;
363 363
                 }
364
-            } catch (\Exception $e) {
364
+            }catch (\Exception $e) {
365 365
                 $context = [];
366
-                if(null !== $e->getPrevious()) {
366
+                if (null !== $e->getPrevious()) {
367 367
                     $context[] = $e->getPrevious()->getMessage();
368 368
                 }
369 369
                 Logger::log($e->getMessage(), LOG_CRIT, $context);
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
             $this->saveBulk();
393 393
             $saved = true;
394 394
             $status = 200;
395
-        } catch(\Exception $e) {
395
+        }catch (\Exception $e) {
396 396
             Logger::log($e->getMessage(), LOG_CRIT, $this->getRequest()->getData());
397 397
             $message = t('Bulk insert rolled back');
398 398
         }
@@ -414,7 +414,7 @@  discard block
 block discarded – undo
414 414
 
415 415
         /** @var CustomerTableMap $tableMap */
416 416
         $modelPk = ApiHelper::extractPrimaryKeyColumnName($this->getTableMap());
417
-        foreach($this->list->getData() as $data) {
417
+        foreach ($this->list->getData() as $data) {
418 418
             $return[] = ApiHelper::mapArrayObject($this->getModelNamespace(), $modelPk, $this->query, $data);
419 419
         }
420 420
         return $return;
@@ -431,23 +431,23 @@  discard block
 block discarded – undo
431 431
         try {
432 432
             $this->paginate();
433 433
             if (null !== $this->list) {
434
-                if(array_key_exists(self::API_FIELDS_RESULT_FIELD, $this->query) && Config::getParam('api.field.types')) {
434
+                if (array_key_exists(self::API_FIELDS_RESULT_FIELD, $this->query) && Config::getParam('api.field.types')) {
435 435
                     $return = $this->extractDataWithFormat();
436
-                } else {
436
+                }else {
437 437
                     $return = $this->list->toArray(null, false, $this->fieldType ?: TableMap::TYPE_PHPNAME, false);
438 438
                 }
439 439
                 $total = 0;
440 440
                 $pages = 0;
441
-                if($this->list instanceof PropelModelPager) {
441
+                if ($this->list instanceof PropelModelPager) {
442 442
                     $total = $this->list->getNbResults();
443 443
                     $pages = $this->list->getLastPage();
444
-                } elseif($this->list instanceof ArrayCollection) {
444
+                } elseif ($this->list instanceof ArrayCollection) {
445 445
                     $total = count($return);
446 446
                     $pages = 1;
447 447
                 }
448 448
             }
449
-        } catch (\Exception $e) {
450
-            Logger::log(get_class($this) . ': ' . $e->getMessage(), LOG_ERR);
449
+        }catch (\Exception $e) {
450
+            Logger::log(get_class($this).': '.$e->getMessage(), LOG_ERR);
451 451
         }
452 452
 
453 453
         return array($return, $total, $pages);
@@ -465,7 +465,7 @@  discard block
 block discarded – undo
465 465
         $return = array();
466 466
         if (NULL === $model || !method_exists($model, 'toArray')) {
467 467
             $code = 404;
468
-        } else {
468
+        }else {
469 469
             $return = $model->toArray($this->fieldType ?: TableMap::TYPE_PHPNAME, true, [], true);
470 470
         }
471 471
 
Please login to merge, or discard this patch.
src/base/config/ConfigForm.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -83,9 +83,9 @@
 block discarded – undo
83 83
             'class' => 'btn-warning md-default',
84 84
             'icon' => 'fa-plus',
85 85
         ];
86
-        if(Config::getParam('admin.version', 'v1') === 'v1') {
87
-            $add['onclick'] = 'javascript:addNewField(document.getElementById("' . $this->getName() . '"));';
88
-        } else {
86
+        if (Config::getParam('admin.version', 'v1') === 'v1') {
87
+            $add['onclick'] = 'javascript:addNewField(document.getElementById("'.$this->getName().'"));';
88
+        }else {
89 89
             $add['ng-click'] = 'addNewField()';
90 90
         }
91 91
         $this->addButton('submit', t('Guardar configuración'), 'submit', array(
Please login to merge, or discard this patch.
src/base/types/helpers/DocumentorHelper.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -14,9 +14,9 @@  discard block
 block discarded – undo
14 14
      */
15 15
     private static function searchPayloadParam($params, $variable) {
16 16
         $exists = false;
17
-        if(null !== $params && count($params)) {
18
-            foreach($params as $param) {
19
-                if($param['name'] === $variable) {
17
+        if (null !== $params && count($params)) {
18
+            foreach ($params as $param) {
19
+                if ($param['name'] === $variable) {
20 20
                     $exists = true;
21 21
                     break;
22 22
                 }
@@ -40,12 +40,12 @@  discard block
 block discarded – undo
40 40
         ];
41 41
         if ($endpoint['payload']['is_array']) {
42 42
             $schema['items'] = [
43
-                '$ref' => '#/definitions/' . $endpoint['payload']['type'],
43
+                '$ref' => '#/definitions/'.$endpoint['payload']['type'],
44 44
             ];
45
-        } else {
46
-            $schema['$ref'] = '#/definitions/' . $endpoint['payload']['type'];
45
+        }else {
46
+            $schema['$ref'] = '#/definitions/'.$endpoint['payload']['type'];
47 47
         }
48
-        if(!self::searchPayloadParam($paths[$url][$method]['parameters'], $endpoint['payload']['type'])) {
48
+        if (!self::searchPayloadParam($paths[$url][$method]['parameters'], $endpoint['payload']['type'])) {
49 49
             $paths[$url][$method]['parameters'][] = [
50 50
                 'in' => 'body',
51 51
                 'name' => $endpoint['payload']['type'],
@@ -74,18 +74,18 @@  discard block
 block discarded – undo
74 74
             if (array_key_exists('data', $endpoint['return']) && count(array_keys($object)) === count(array_keys($endpoint['return']['data']))) {
75 75
                 $classDefinition = [
76 76
                     'type' => 'object',
77
-                    '$ref' => '#/definitions/' . $class,
77
+                    '$ref' => '#/definitions/'.$class,
78 78
                 ];
79
-            } else {
79
+            }else {
80 80
                 $classDefinition = [
81 81
                     'type' => 'array',
82 82
                     'items' => [
83
-                        '$ref' => '#/definitions/' . $class,
83
+                        '$ref' => '#/definitions/'.$class,
84 84
                     ],
85 85
                 ];
86 86
             }
87 87
 
88
-            if($paths[$url][$method]['responses'][200]['schema']['properties']['data']['type'] === 'boolean') {
88
+            if ($paths[$url][$method]['responses'][200]['schema']['properties']['data']['type'] === 'boolean') {
89 89
                 $paths[$url][$method]['responses'][200]['schema']['properties']['data'] = $classDefinition;
90 90
             }
91 91
             $dtos += self::extractSwaggerDefinition($class, $object);
@@ -163,18 +163,18 @@  discard block
 block discarded – undo
163 163
             ],
164 164
         ];
165 165
         foreach ($fields as $field => $info) {
166
-            if(array_key_exists('type', $info) && in_array($info['type'], ['array', 'object'])) {
166
+            if (array_key_exists('type', $info) && in_array($info['type'], ['array', 'object'])) {
167 167
                 $definition[$name]['properties'][$field] = $info;
168
-            } elseif(array_key_exists('type', $info)) {
168
+            } elseif (array_key_exists('type', $info)) {
169 169
                 list($type, $format) = self::translateSwaggerFormats($info['type']);
170 170
                 $fieldData = [
171 171
                     "type" => $type,
172 172
                     "required" => $info['required'],
173 173
                 ];
174
-                if(array_key_exists('description', $info)) {
174
+                if (array_key_exists('description', $info)) {
175 175
                     $fieldData['description'] = $info['description'];
176 176
                 }
177
-                if(array_key_exists('format', $info)) {
177
+                if (array_key_exists('format', $info)) {
178 178
                     $fieldData['format'] = $info['format'];
179 179
                 }
180 180
                 $dto['properties'][$field] = $fieldData;
Please login to merge, or discard this patch.
src/base/Template.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
         $dump = '';
118 118
         try {
119 119
             $dump = $this->tpl->render($tpl, $vars);
120
-        } catch (\Exception $e) {
120
+        }catch (\Exception $e) {
121 121
             Logger::log($e->getMessage(), LOG_ERR);
122 122
         }
123 123
         return $dump;
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
     public function regenerateTemplates()
145 145
     {
146 146
         $this->generateTemplatesCache();
147
-        $domains = Cache::getInstance()->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'domains.json', Cache::JSON, true);
147
+        $domains = Cache::getInstance()->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR.'domains.json', Cache::JSON, true);
148 148
         $translations = [];
149 149
         if (is_array($domains)) {
150 150
             $translations = $this->parsePathTranslations($domains);
@@ -166,8 +166,8 @@  discard block
 block discarded – undo
166 166
             // force compilation
167 167
             if ($file->isFile()) {
168 168
                 try {
169
-                    $this->tpl->load(str_replace($tplDir . '/', '', $file));
170
-                } catch (\Exception $e) {
169
+                    $this->tpl->load(str_replace($tplDir.'/', '', $file));
170
+                }catch (\Exception $e) {
171 171
                     Logger::log($e->getMessage(), LOG_ERR, ['file' => $e->getFile(), 'line' => $e->getLine()]);
172 172
                 }
173 173
             }
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
             'getFlash' => TemplateFunctions::GET_FLASH_FUNCTION,
229 229
             'getQuery' => TemplateFunctions::GET_QUERY_FUNCTION,
230 230
         ];
231
-        foreach($functions as $name => $function) {
231
+        foreach ($functions as $name => $function) {
232 232
             $this->addTemplateFunction($name, $function);
233 233
         }
234 234
     }
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
      */
248 248
     private function loadDomains()
249 249
     {
250
-        $domains = Cache::getInstance()->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'domains.json', Cache::JSON, true);
250
+        $domains = Cache::getInstance()->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR.'domains.json', Cache::JSON, true);
251 251
         if (null !== $domains) {
252 252
             foreach ($domains as $domain => $paths) {
253 253
                 $this->addPath($paths['template'], preg_replace('/(@|\/)/', '', $domain));
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
     {
263 263
         $loader = new FilesystemLoader(GeneratorHelper::getTemplatePath());
264 264
         $this->tpl = new Environment($loader, array(
265
-            'cache' => CACHE_DIR . DIRECTORY_SEPARATOR . 'twig',
265
+            'cache' => CACHE_DIR.DIRECTORY_SEPARATOR.'twig',
266 266
             'debug' => (bool)$this->debug,
267 267
             'auto_reload' => Config::getParam('twig.autoreload', TRUE),
268 268
         ));
Please login to merge, or discard this patch.
src/base/extension/AssetsParser.php 1 patch
Spacing   +58 added lines, -58 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     public function __construct($type = 'js')
36 36
     {
37 37
         $this->type = $type;
38
-        $this->path = WEB_DIR . DIRECTORY_SEPARATOR;
38
+        $this->path = WEB_DIR.DIRECTORY_SEPARATOR;
39 39
         $this->domains = Template::getDomains(true);
40 40
         $this->debug = Config::getParam('debug', true);
41 41
         $this->cdnPath = Config::getParam('resources.cdn.url', Request::getInstance()->getRootUrl());
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
             $sourceFile = explode("?", $sourceFile);
59 59
             $sourceFile = $sourceFile[0];
60 60
         }
61
-        $orig = realpath(dirname($filenamePath) . DIRECTORY_SEPARATOR . $sourceFile);
61
+        $orig = realpath(dirname($filenamePath).DIRECTORY_SEPARATOR.$sourceFile);
62 62
         return $orig;
63 63
     }
64 64
 
@@ -71,12 +71,12 @@  discard block
 block discarded – undo
71 71
      */
72 72
     public function addFile($filename)
73 73
     {
74
-        if (file_exists($this->path . $filename) && preg_match('/\.' . $this->type . '$/i', $filename)) {
74
+        if (file_exists($this->path.$filename) && preg_match('/\.'.$this->type.'$/i', $filename)) {
75 75
             $this->files[] = $filename;
76 76
         } elseif (!empty($this->domains)) {
77 77
             foreach ($this->domains as $domain => $paths) {
78 78
                 $domainFilename = str_replace($domain, $paths["public"], $filename);
79
-                if (file_exists($domainFilename) && preg_match('/\.' . $this->type . '$/i', $domainFilename)) {
79
+                if (file_exists($domainFilename) && preg_match('/\.'.$this->type.'$/i', $domainFilename)) {
80 80
                     $this->files[] = $domainFilename;
81 81
                 }
82 82
             }
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     public function setHash($hash)
94 94
     {
95 95
         $cache = Config::getParam('cache.var', '');
96
-        $this->hash = $hash . (strlen($cache) ? '.' : '') . $cache;
96
+        $this->hash = $hash.(strlen($cache) ? '.' : '').$cache;
97 97
         return $this;
98 98
     }
99 99
 
@@ -127,8 +127,8 @@  discard block
 block discarded – undo
127 127
      */
128 128
     protected function compileCss()
129 129
     {
130
-        $base = $this->path . "css" . DIRECTORY_SEPARATOR;
131
-        if ($this->debug || !file_exists($base . $this->hash . ".css")) {
130
+        $base = $this->path."css".DIRECTORY_SEPARATOR;
131
+        if ($this->debug || !file_exists($base.$this->hash.".css")) {
132 132
             $data = '';
133 133
             if (0 < count($this->files)) {
134 134
                 $minifier = new CSS();
@@ -136,15 +136,15 @@  discard block
 block discarded – undo
136 136
                     $data = $this->processCssLine($file, $base, $data);
137 137
                 }
138 138
             }
139
-            if($this->debug) {
140
-                $this->storeContents($base . $this->hash . ".css", $data);
141
-            } else {
139
+            if ($this->debug) {
140
+                $this->storeContents($base.$this->hash.".css", $data);
141
+            }else {
142 142
                 $minifier = new CSS();
143 143
                 $minifier->add($data);
144 144
                 ini_set('max_execution_time', -1);
145 145
                 ini_set('memory_limit', -1);
146 146
                 GeneratorHelper::createDir($base);
147
-                $minifier->minify($base . $this->hash . ".css");
147
+                $minifier->minify($base.$this->hash.".css");
148 148
                 ini_restore('memory_limit');
149 149
                 ini_restore('max_execution_time');
150 150
             }
@@ -160,8 +160,8 @@  discard block
 block discarded – undo
160 160
      */
161 161
     protected function compileJs()
162 162
     {
163
-        $base = $this->path . "js" . DIRECTORY_SEPARATOR;
164
-        if ($this->debug || !file_exists($base . $this->hash . ".js")) {
163
+        $base = $this->path."js".DIRECTORY_SEPARATOR;
164
+        if ($this->debug || !file_exists($base.$this->hash.".js")) {
165 165
             $data = '';
166 166
             if (0 < count($this->files)) {
167 167
                 $minifier = new JS();
@@ -170,19 +170,19 @@  discard block
 block discarded – undo
170 170
                     if (file_exists($file)) {
171 171
                         if ($this->debug) {
172 172
                             $data = $this->putDebugJs($pathParts, $base, $file);
173
-                        } elseif (!file_exists($base . $this->hash . ".js")) {
173
+                        } elseif (!file_exists($base.$this->hash.".js")) {
174 174
                             $minifier->add($file);
175 175
                             //$data = $this->putProductionJs($base, $file, $data);
176 176
                         }
177 177
                     }
178 178
                 }
179
-                if($this->debug) {
180
-                    $this->storeContents($base . $this->hash . ".js", $data);
181
-                } else {
179
+                if ($this->debug) {
180
+                    $this->storeContents($base.$this->hash.".js", $data);
181
+                }else {
182 182
                     ini_set('max_execution_time', -1);
183 183
                     ini_set('memory_limit', -1);
184 184
                     GeneratorHelper::createDir($base);
185
-                    $minifier->minify($base . $this->hash . ".js");
185
+                    $minifier->minify($base.$this->hash.".js");
186 186
                     ini_restore('memory_limit');
187 187
                     ini_restore('max_execution_time');
188 188
                 }
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
     {
203 203
         GeneratorHelper::createDir(dirname($path));
204 204
         if ("" !== $content && false === file_put_contents($path, $content)) {
205
-            throw new ConfigException(t('No se tienen permisos para escribir en ' . $path));
205
+            throw new ConfigException(t('No se tienen permisos para escribir en '.$path));
206 206
         }
207 207
     }
208 208
 
@@ -231,9 +231,9 @@  discard block
 block discarded – undo
231 231
             foreach ($this->compiled_files as $file) {
232 232
                 echo "\t\t<script type='text/javascript' src='{$file}'></script>\n";
233 233
             }
234
-        } else {
234
+        }else {
235 235
             $basePath = $this->cdnPath ?: '';
236
-            echo "\t\t<script type='text/javascript' src='" . $basePath . "/js/" . $this->hash . ".js'></script>\n";
236
+            echo "\t\t<script type='text/javascript' src='".$basePath."/js/".$this->hash.".js'></script>\n";
237 237
         }
238 238
     }
239 239
 
@@ -246,9 +246,9 @@  discard block
 block discarded – undo
246 246
             foreach ($this->compiled_files as $file) {
247 247
                 echo "\t\t<link href='{$file}' rel='stylesheet' media='screen, print'>";
248 248
             }
249
-        } else {
249
+        }else {
250 250
             $basePath = $this->cdnPath ?: '';
251
-            echo "\t\t<link href='" . $basePath . "/css/" . $this->hash . ".css' rel='stylesheet'>";
251
+            echo "\t\t<link href='".$basePath."/css/".$this->hash.".css' rel='stylesheet'>";
252 252
         }
253 253
     }
254 254
 
@@ -259,20 +259,20 @@  discard block
 block discarded – undo
259 259
     protected function extractCssResources($source, $file)
260 260
     {
261 261
         $sourceFile = $this->extractSourceFilename($source);
262
-        $orig = realpath(dirname($file) . DIRECTORY_SEPARATOR . $sourceFile);
262
+        $orig = realpath(dirname($file).DIRECTORY_SEPARATOR.$sourceFile);
263 263
         $origPart = preg_split('/(\/|\\\)public(\/|\\\)/i', $orig);
264 264
         try {
265 265
             if (count($source) > 1 && array_key_exists(1, $origPart)) {
266
-                $dest = $this->path . $origPart[1];
266
+                $dest = $this->path.$origPart[1];
267 267
                 GeneratorHelper::createDir(dirname($dest));
268 268
                 if (!file_exists($dest) || filemtime($orig) > filemtime($dest)) {
269 269
                     if (@copy($orig, $dest) === FALSE) {
270
-                        throw new \RuntimeException('Can\' copy ' . $dest . '');
270
+                        throw new \RuntimeException('Can\' copy '.$dest.'');
271 271
                     }
272 272
                     Logger::log("$orig copiado a $dest", LOG_INFO);
273 273
                 }
274 274
             }
275
-        } catch (\Exception $e) {
275
+        }catch (\Exception $e) {
276 276
             Logger::log($e->getMessage(), LOG_ERR);
277 277
         }
278 278
     }
@@ -289,21 +289,21 @@  discard block
 block discarded – undo
289 289
     {
290 290
         if (file_exists($file)) {
291 291
             $pathParts = explode("/", $file);
292
-            $filePath = $this->hash . "_" . $pathParts[count($pathParts) - 1];
293
-            if (!file_exists($base . $filePath) || filemtime($base . $filePath) < filemtime($file) || $this->debug) {
292
+            $filePath = $this->hash."_".$pathParts[count($pathParts) - 1];
293
+            if (!file_exists($base.$filePath) || filemtime($base.$filePath) < filemtime($file) || $this->debug) {
294 294
                 //Si tenemos modificaciones tenemos que compilar de nuevo todos los ficheros modificados
295
-                if (file_exists($base . $this->hash . ".css") && @unlink($base . $this->hash . ".css") === false) {
296
-                    throw new ConfigException("Can't unlink file " . $base . $this->hash . ".css");
295
+                if (file_exists($base.$this->hash.".css") && @unlink($base.$this->hash.".css") === false) {
296
+                    throw new ConfigException("Can't unlink file ".$base.$this->hash.".css");
297 297
                 }
298 298
                 $this->loopCssLines($file);
299 299
             }
300 300
             if ($this->debug) {
301 301
                 $data = file_get_contents($file);
302
-                $this->storeContents($base . $filePath, $data);
303
-            } else {
302
+                $this->storeContents($base.$filePath, $data);
303
+            }else {
304 304
                 $data .= file_get_contents($file);
305 305
             }
306
-            $this->compiled_files[] = "/css/" . $filePath;
306
+            $this->compiled_files[] = "/css/".$filePath;
307 307
         }
308 308
 
309 309
         return $data;
@@ -318,12 +318,12 @@  discard block
 block discarded – undo
318 318
      */
319 319
     protected function putDebugJs($pathParts, $base, $file)
320 320
     {
321
-        $filePath = $this->hash . "_" . $pathParts[count($pathParts) - 1];
322
-        $this->compiled_files[] = "/js/" . $filePath;
321
+        $filePath = $this->hash."_".$pathParts[count($pathParts) - 1];
322
+        $this->compiled_files[] = "/js/".$filePath;
323 323
         $data = "";
324
-        if (!file_exists($base . $filePath) || filemtime($base . $filePath) < filemtime($file)) {
324
+        if (!file_exists($base.$filePath) || filemtime($base.$filePath) < filemtime($file)) {
325 325
             $data = file_get_contents($file);
326
-            $this->storeContents($base . $filePath, $data);
326
+            $this->storeContents($base.$filePath, $data);
327 327
         }
328 328
         return $data;
329 329
     }
@@ -365,60 +365,60 @@  discard block
 block discarded – undo
365 365
     {
366 366
         $ppath = explode("/", $string);
367 367
         $originalFilename = $ppath[count($ppath) - 1];
368
-        $base = WEB_DIR . DIRECTORY_SEPARATOR;
368
+        $base = WEB_DIR.DIRECTORY_SEPARATOR;
369 369
         $file = "";
370 370
         $htmlBase = "";
371 371
         $debug = Config::getInstance()->getDebugMode();
372 372
         $cache = Config::getInstance()->get('cache.var');
373
-        $cache = $cache ? '.' . $cache : '';
373
+        $cache = $cache ? '.'.$cache : '';
374 374
         $finfo = finfo_open(FILEINFO_MIME_TYPE); // devuelve el tipo mime de su extensión
375 375
         $mime = finfo_file($finfo, $filenamePath);
376 376
         finfo_close($finfo);
377 377
         if (preg_match('/\.css$/i', $string)) {
378
-            $file = "/" . substr(md5($string), 0, 8) . "$cache.css";
378
+            $file = "/".substr(md5($string), 0, 8)."$cache.css";
379 379
             $htmlBase = "css";
380 380
             if ($debug) {
381
-                $file = str_replace(".css", "_" . $originalFilename, $file);
381
+                $file = str_replace(".css", "_".$originalFilename, $file);
382 382
             }
383 383
         } elseif (preg_match('/\.js$/i', $string)) {
384
-            $file = "/" . substr(md5($string), 0, 8) . "$cache.js";
384
+            $file = "/".substr(md5($string), 0, 8)."$cache.js";
385 385
             $htmlBase = "js";
386 386
             if ($debug) {
387
-                $file = str_replace(".js", "_" . $originalFilename, $file);
387
+                $file = str_replace(".js", "_".$originalFilename, $file);
388 388
             }
389 389
         } elseif (preg_match("/image/i", $mime)) {
390 390
             $ext = explode(".", $string);
391
-            $file = "/" . substr(md5($string), 0, 8) . "." . $ext[count($ext) - 1];
391
+            $file = "/".substr(md5($string), 0, 8).".".$ext[count($ext) - 1];
392 392
             $htmlBase = "img";
393 393
             if ($debug) {
394
-                $file = str_replace("." . $ext[count($ext) - 1], "_" . $originalFilename, $file);
394
+                $file = str_replace(".".$ext[count($ext) - 1], "_".$originalFilename, $file);
395 395
             }
396 396
         } elseif (preg_match("/(doc|pdf)/i", $mime)) {
397 397
             $ext = explode(".", $string);
398
-            $file = "/" . substr(md5($string), 0, 8) . "." . $ext[count($ext) - 1];
398
+            $file = "/".substr(md5($string), 0, 8).".".$ext[count($ext) - 1];
399 399
             $htmlBase = "docs";
400 400
             if ($debug) {
401
-                $file = str_replace("." . $ext[count($ext) - 1], "_" . $originalFilename, $file);
401
+                $file = str_replace(".".$ext[count($ext) - 1], "_".$originalFilename, $file);
402 402
             }
403 403
         } elseif (preg_match("/(video|audio|ogg)/i", $mime)) {
404 404
             $ext = explode(".", $string);
405
-            $file = "/" . substr(md5($string), 0, 8) . "." . $ext[count($ext) - 1];
405
+            $file = "/".substr(md5($string), 0, 8).".".$ext[count($ext) - 1];
406 406
             $htmlBase = "media";
407 407
             if ($debug) {
408
-                $file = str_replace("." . $ext[count($ext) - 1], "_" . $originalFilename, $file);
408
+                $file = str_replace(".".$ext[count($ext) - 1], "_".$originalFilename, $file);
409 409
             }
410 410
         } elseif (preg_match("/(text|html)/i", $mime)) {
411 411
             $ext = explode(".", $string);
412
-            $file = "/" . substr(md5($string), 0, 8) . "." . $ext[count($ext) - 1];
412
+            $file = "/".substr(md5($string), 0, 8).".".$ext[count($ext) - 1];
413 413
             $htmlBase = "templates";
414 414
             if ($debug) {
415
-                $file = str_replace("." . $ext[count($ext) - 1], "_" . $originalFilename, $file);
415
+                $file = str_replace(".".$ext[count($ext) - 1], "_".$originalFilename, $file);
416 416
             }
417 417
         } elseif (!$return && !is_null($name)) {
418 418
             $htmlBase = '';
419 419
             $file = $name;
420 420
         }
421
-        $filePath = $htmlBase . $file;
421
+        $filePath = $htmlBase.$file;
422 422
 
423 423
         return array($base, $htmlBase, $filePath);
424 424
     }
@@ -436,15 +436,15 @@  discard block
 block discarded – undo
436 436
         if (preg_match_all('#url\((.*?)\)#', $line, $urls, PREG_SET_ORDER)) {
437 437
             foreach ($urls as $source) {
438 438
                 $orig = self::calculateResourcePathname($filenamePath, $source);
439
-                if(!empty($orig)) {
439
+                if (!empty($orig)) {
440 440
                     $origPart = preg_split("/Public/i", $orig);
441
-                    $dest = WEB_DIR . $origPart[1];
441
+                    $dest = WEB_DIR.$origPart[1];
442 442
                     GeneratorHelper::createDir(dirname($dest));
443 443
                     if (@copy($orig, $dest) === false) {
444
-                        throw new ConfigException("Can't copy " . $orig . " to " . $dest);
444
+                        throw new ConfigException("Can't copy ".$orig." to ".$dest);
445 445
                     }
446
-                } else {
447
-                    Logger::log($filenamePath . ' has an empty origin with the url ' . $source, LOG_WARNING);
446
+                }else {
447
+                    Logger::log($filenamePath.' has an empty origin with the url '.$source, LOG_WARNING);
448 448
                 }
449 449
             }
450 450
         }
Please login to merge, or discard this patch.