Passed
Push — master ( 08a67e...6063b2 )
by Fran
07:56
created
src/base/types/helpers/RequestHelper.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
                     header("Access-Control-Allow-Credentials: true");
45 45
                     header("Access-Control-Allow-Origin: *");
46 46
                     header("Access-Control-Allow-Methods: GET, POST, DELETE, PUT, PATCH, OPTIONS");
47
-                    header("Access-Control-Allow-Headers: " . implode(', ', self::getCorsHeaders()));
47
+                    header("Access-Control-Allow-Headers: ".implode(', ', self::getCorsHeaders()));
48 48
                 }
49 49
                 if (Request::getInstance()->getMethod() == 'OPTIONS') {
50 50
                     Logger::log('Returning OPTIONS header confirmation for CORS pre flight requests', LOG_DEBUG);
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
                     if (self::validateIpAddress($ip))
74 74
                         return $ip;
75 75
                 }
76
-            } else {
76
+            }else {
77 77
                 if (self::validateIpAddress($_SERVER['HTTP_X_FORWARDED_FOR']))
78 78
                     return $_SERVER['HTTP_X_FORWARDED_FOR'];
79 79
             }
Please login to merge, or discard this patch.
Braces   +45 added lines, -22 removed lines patch added patch discarded remove patch
@@ -70,22 +70,28 @@  discard block
 block discarded – undo
70 70
             if (strpos($_SERVER['HTTP_X_FORWARDED_FOR'], ',') !== false) {
71 71
                 $iplist = explode(',', $_SERVER['HTTP_X_FORWARDED_FOR']);
72 72
                 foreach ($iplist as $ip) {
73
-                    if (self::validateIpAddress($ip))
74
-                        return $ip;
73
+                    if (self::validateIpAddress($ip)) {
74
+                                            return $ip;
75
+                    }
75 76
                 }
76 77
             } else {
77
-                if (self::validateIpAddress($_SERVER['HTTP_X_FORWARDED_FOR']))
78
-                    return $_SERVER['HTTP_X_FORWARDED_FOR'];
78
+                if (self::validateIpAddress($_SERVER['HTTP_X_FORWARDED_FOR'])) {
79
+                                    return $_SERVER['HTTP_X_FORWARDED_FOR'];
80
+                }
79 81
             }
80 82
         }
81
-        if (!empty($_SERVER['HTTP_X_FORWARDED']) && self::validateIpAddress($_SERVER['HTTP_X_FORWARDED']))
82
-            return $_SERVER['HTTP_X_FORWARDED'];
83
-        if (!empty($_SERVER['HTTP_X_CLUSTER_CLIENT_IP']) && self::validateIpAddress($_SERVER['HTTP_X_CLUSTER_CLIENT_IP']))
84
-            return $_SERVER['HTTP_X_CLUSTER_CLIENT_IP'];
85
-        if (!empty($_SERVER['HTTP_FORWARDED_FOR']) && self::validateIpAddress($_SERVER['HTTP_FORWARDED_FOR']))
86
-            return $_SERVER['HTTP_FORWARDED_FOR'];
87
-        if (!empty($_SERVER['HTTP_FORWARDED']) && self::validateIpAddress($_SERVER['HTTP_FORWARDED']))
88
-            return $_SERVER['HTTP_FORWARDED'];
83
+        if (!empty($_SERVER['HTTP_X_FORWARDED']) && self::validateIpAddress($_SERVER['HTTP_X_FORWARDED'])) {
84
+                    return $_SERVER['HTTP_X_FORWARDED'];
85
+        }
86
+        if (!empty($_SERVER['HTTP_X_CLUSTER_CLIENT_IP']) && self::validateIpAddress($_SERVER['HTTP_X_CLUSTER_CLIENT_IP'])) {
87
+                    return $_SERVER['HTTP_X_CLUSTER_CLIENT_IP'];
88
+        }
89
+        if (!empty($_SERVER['HTTP_FORWARDED_FOR']) && self::validateIpAddress($_SERVER['HTTP_FORWARDED_FOR'])) {
90
+                    return $_SERVER['HTTP_FORWARDED_FOR'];
91
+        }
92
+        if (!empty($_SERVER['HTTP_FORWARDED']) && self::validateIpAddress($_SERVER['HTTP_FORWARDED'])) {
93
+                    return $_SERVER['HTTP_FORWARDED'];
94
+        }
89 95
 
90 96
         // return unreliable ip since all else failed
91 97
         return $_SERVER['REMOTE_ADDR'];
@@ -96,8 +102,9 @@  discard block
 block discarded – undo
96 102
      * a private network range.
97 103
      */
98 104
     public static function validateIpAddress($ip) {
99
-        if (strtolower($ip) === 'unknown')
100
-            return false;
105
+        if (strtolower($ip) === 'unknown') {
106
+                    return false;
107
+        }
101 108
 
102 109
         // generate ipv4 network address
103 110
         $ip = ip2long($ip);
@@ -109,14 +116,30 @@  discard block
 block discarded – undo
109 116
             // signed numbers (ints default to signed in PHP)
110 117
             $ip = sprintf('%u', $ip);
111 118
             // do private network range checking
112
-            if ($ip >= 0 && $ip <= 50331647) return false;
113
-            if ($ip >= 167772160 && $ip <= 184549375) return false;
114
-            if ($ip >= 2130706432 && $ip <= 2147483647) return false;
115
-            if ($ip >= 2851995648 && $ip <= 2852061183) return false;
116
-            if ($ip >= 2886729728 && $ip <= 2887778303) return false;
117
-            if ($ip >= 3221225984 && $ip <= 3221226239) return false;
118
-            if ($ip >= 3232235520 && $ip <= 3232301055) return false;
119
-            if ($ip >= 4294967040) return false;
119
+            if ($ip >= 0 && $ip <= 50331647) {
120
+                return false;
121
+            }
122
+            if ($ip >= 167772160 && $ip <= 184549375) {
123
+                return false;
124
+            }
125
+            if ($ip >= 2130706432 && $ip <= 2147483647) {
126
+                return false;
127
+            }
128
+            if ($ip >= 2851995648 && $ip <= 2852061183) {
129
+                return false;
130
+            }
131
+            if ($ip >= 2886729728 && $ip <= 2887778303) {
132
+                return false;
133
+            }
134
+            if ($ip >= 3221225984 && $ip <= 3221226239) {
135
+                return false;
136
+            }
137
+            if ($ip >= 3232235520 && $ip <= 3232301055) {
138
+                return false;
139
+            }
140
+            if ($ip >= 4294967040) {
141
+                return false;
142
+            }
120 143
         }
121 144
         return true;
122 145
     }
Please login to merge, or discard this patch.
src/base/dto/Dto.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
     public function __construct($hydrate = true)
18 18
     {
19 19
         parent::__construct();
20
-        if($hydrate) {
20
+        if ($hydrate) {
21 21
             $this->fromArray(Request::getInstance()->getData());
22 22
         }
23 23
     }
@@ -45,15 +45,15 @@  discard block
 block discarded – undo
45 45
                 /** @var \ReflectionProperty $property */
46 46
                 foreach ($properties as $property) {
47 47
                     $value = $property->getValue($this);
48
-                    if(is_object($value) && method_exists($value, 'toArray')) {
48
+                    if (is_object($value) && method_exists($value, 'toArray')) {
49 49
                         $dto[$property->getName()] = $value->toArray();
50
-                    } else {
50
+                    }else {
51 51
                         $dto[$property->getName()] = $property->getValue($this);
52 52
                     }
53 53
                 }
54 54
             }
55
-        } catch (\Exception $e) {
56
-            Logger::log(get_class($this) . ': ' . $e->getMessage(), LOG_ERR);
55
+        }catch (\Exception $e) {
56
+            Logger::log(get_class($this).': '.$e->getMessage(), LOG_ERR);
57 57
         }
58 58
         return $dto;
59 59
     }
@@ -75,28 +75,28 @@  discard block
 block discarded – undo
75 75
     protected function parseDtoField(array $properties, $key, $value = null) {
76 76
         $type = 'string';
77 77
         $is_array = false;
78
-        if(array_key_exists($key, $properties)) {
78
+        if (array_key_exists($key, $properties)) {
79 79
             $type = $properties[$key];
80
-            if(preg_match('/(\[\]|Array)/i', $type)) {
80
+            if (preg_match('/(\[\]|Array)/i', $type)) {
81 81
                 $type = preg_replace('/(\[\]|Array)/i', '', $type);
82 82
                 $is_array = true;
83 83
             }
84 84
         }
85 85
         $reflector = (class_exists($type)) ? new \ReflectionClass($type) : null;
86
-        if(null !== $reflector && $reflector->isSubclassOf(Dto::class)) {
87
-            if($is_array) {
86
+        if (null !== $reflector && $reflector->isSubclassOf(Dto::class)) {
87
+            if ($is_array) {
88 88
                 $this->$key = [];
89
-                foreach($value as $data) {
89
+                foreach ($value as $data) {
90 90
                     $dto = new $type(false);
91 91
                     $dto->fromArray($data);
92 92
                     array_push($this->$key, $dto);
93 93
                 }
94
-            } else {
94
+            }else {
95 95
                 $this->$key = new $type(false);
96 96
                 $this->$key->fromArray($value);
97 97
             }
98
-        } else {
99
-            switch($type) {
98
+        }else {
99
+            switch ($type) {
100 100
                 default:
101 101
                 case 'string':
102 102
                     $this->$key = $value;
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
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     public function __construct($type = 'js')
34 34
     {
35 35
         $this->type = $type;
36
-        $this->path = WEB_DIR . DIRECTORY_SEPARATOR;
36
+        $this->path = WEB_DIR.DIRECTORY_SEPARATOR;
37 37
         $this->domains = Template::getDomains(true);
38 38
         $this->debug = Config::getInstance()->getDebugMode();
39 39
     }
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
             $source_file = explode("?", $source_file);
56 56
             $source_file = $source_file[0];
57 57
         }
58
-        $orig = realpath(dirname($filename_path) . DIRECTORY_SEPARATOR . $source_file);
58
+        $orig = realpath(dirname($filename_path).DIRECTORY_SEPARATOR.$source_file);
59 59
         return $orig;
60 60
     }
61 61
 
@@ -68,12 +68,12 @@  discard block
 block discarded – undo
68 68
      */
69 69
     public function addFile($filename)
70 70
     {
71
-        if (file_exists($this->path . $filename) && preg_match('/\.' . $this->type . '$/i', $filename)) {
71
+        if (file_exists($this->path.$filename) && preg_match('/\.'.$this->type.'$/i', $filename)) {
72 72
             $this->files[] = $filename;
73 73
         } elseif (!empty($this->domains)) {
74 74
             foreach ($this->domains as $domain => $paths) {
75 75
                 $domain_filename = str_replace($domain, $paths["public"], $filename);
76
-                if (file_exists($domain_filename) && preg_match('/\.' . $this->type . '$/i', $domain_filename)) {
76
+                if (file_exists($domain_filename) && preg_match('/\.'.$this->type.'$/i', $domain_filename)) {
77 77
                     $this->files[] = $domain_filename;
78 78
                 }
79 79
             }
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     public function setHash($hash)
91 91
     {
92 92
         $cache = Config::getParam('cache.var', '');
93
-        $this->hash = $hash . (strlen($cache) ? '.' : '') . $cache;
93
+        $this->hash = $hash.(strlen($cache) ? '.' : '').$cache;
94 94
         return $this;
95 95
     }
96 96
 
@@ -124,8 +124,8 @@  discard block
 block discarded – undo
124 124
      */
125 125
     protected function compileCss()
126 126
     {
127
-        $base = $this->path . "css" . DIRECTORY_SEPARATOR;
128
-        if ($this->debug || !file_exists($base . $this->hash . ".css")) {
127
+        $base = $this->path."css".DIRECTORY_SEPARATOR;
128
+        if ($this->debug || !file_exists($base.$this->hash.".css")) {
129 129
             $data = '';
130 130
             if (0 < count($this->files)) {
131 131
                 $minifier = new CSS();
@@ -133,15 +133,15 @@  discard block
 block discarded – undo
133 133
                     $data = $this->processCssLine($file, $base, $data);
134 134
                 }
135 135
             }
136
-            if($this->debug) {
137
-                $this->storeContents($base . $this->hash . ".css", $data);
138
-            } else {
136
+            if ($this->debug) {
137
+                $this->storeContents($base.$this->hash.".css", $data);
138
+            }else {
139 139
                 $minifier = new CSS();
140 140
                 $minifier->add($data);
141 141
                 ini_set('max_execution_time', -1);
142 142
                 ini_set('memory_limit', -1);
143 143
                 GeneratorHelper::createDir($base);
144
-                $minifier->minify($base . $this->hash . ".css");
144
+                $minifier->minify($base.$this->hash.".css");
145 145
                 unset($cssMinifier);
146 146
                 ini_restore('memory_limit');
147 147
                 ini_restore('max_execution_time');
@@ -157,8 +157,8 @@  discard block
 block discarded – undo
157 157
      */
158 158
     protected function compileJs()
159 159
     {
160
-        $base = $this->path . "js" . DIRECTORY_SEPARATOR;
161
-        if ($this->debug || !file_exists($base . $this->hash . ".js")) {
160
+        $base = $this->path."js".DIRECTORY_SEPARATOR;
161
+        if ($this->debug || !file_exists($base.$this->hash.".js")) {
162 162
             $data = '';
163 163
             if (0 < count($this->files)) {
164 164
                 $minifier = new JS();
@@ -167,19 +167,19 @@  discard block
 block discarded – undo
167 167
                     if (file_exists($file)) {
168 168
                         if ($this->debug) {
169 169
                             $data = $this->putDebugJs($path_parts, $base, $file);
170
-                        } elseif (!file_exists($base . $this->hash . ".js")) {
170
+                        } elseif (!file_exists($base.$this->hash.".js")) {
171 171
                             $minifier->add($file);
172 172
                             //$data = $this->putProductionJs($base, $file, $data);
173 173
                         }
174 174
                     }
175 175
                 }
176
-                if($this->debug) {
177
-                    $this->storeContents($base . $this->hash . ".js", $data);
178
-                } else {
176
+                if ($this->debug) {
177
+                    $this->storeContents($base.$this->hash.".js", $data);
178
+                }else {
179 179
                     ini_set('max_execution_time', -1);
180 180
                     ini_set('memory_limit', -1);
181 181
                     GeneratorHelper::createDir($base);
182
-                    $minifier->minify($base . $this->hash . ".js");
182
+                    $minifier->minify($base.$this->hash.".js");
183 183
                     ini_restore('memory_limit');
184 184
                     ini_restore('max_execution_time');
185 185
                 }
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
     {
200 200
         GeneratorHelper::createDir(dirname($path));
201 201
         if ("" !== $content && false === file_put_contents($path, $content)) {
202
-            throw new ConfigException(_('No se tienen permisos para escribir en ' . $path));
202
+            throw new ConfigException(_('No se tienen permisos para escribir en '.$path));
203 203
         }
204 204
     }
205 205
 
@@ -228,8 +228,8 @@  discard block
 block discarded – undo
228 228
             foreach ($this->compiled_files as $file) {
229 229
                 echo "\t\t<script type='text/javascript' src='{$file}'></script>\n";
230 230
             }
231
-        } else {
232
-            echo "\t\t<script type='text/javascript' src='/js/" . $this->hash . ".js'></script>\n";
231
+        }else {
232
+            echo "\t\t<script type='text/javascript' src='/js/".$this->hash.".js'></script>\n";
233 233
         }
234 234
     }
235 235
 
@@ -242,8 +242,8 @@  discard block
 block discarded – undo
242 242
             foreach ($this->compiled_files as $file) {
243 243
                 echo "\t\t<link href='{$file}' rel='stylesheet' media='screen, print'>";
244 244
             }
245
-        } else {
246
-            echo "\t\t<link href='/css/" . $this->hash . ".css' rel='stylesheet'>";
245
+        }else {
246
+            echo "\t\t<link href='/css/".$this->hash.".css' rel='stylesheet'>";
247 247
         }
248 248
     }
249 249
 
@@ -254,20 +254,20 @@  discard block
 block discarded – undo
254 254
     protected function extractCssResources($source, $file)
255 255
     {
256 256
         $source_file = $this->extractSourceFilename($source);
257
-        $orig = realpath(dirname($file) . DIRECTORY_SEPARATOR . $source_file);
257
+        $orig = realpath(dirname($file).DIRECTORY_SEPARATOR.$source_file);
258 258
         $orig_part = preg_split('/(\/|\\\)public(\/|\\\)/i', $orig);
259 259
         try {
260 260
             if (count($source) > 1 && array_key_exists(1, $orig_part)) {
261
-                $dest = $this->path . $orig_part[1];
261
+                $dest = $this->path.$orig_part[1];
262 262
                 GeneratorHelper::createDir(dirname($dest));
263 263
                 if (!file_exists($dest) || filemtime($orig) > filemtime($dest)) {
264 264
                     if (@copy($orig, $dest) === FALSE) {
265
-                        throw new \RuntimeException('Can\' copy ' . $dest . '');
265
+                        throw new \RuntimeException('Can\' copy '.$dest.'');
266 266
                     }
267 267
                     Logger::log("$orig copiado a $dest", LOG_INFO);
268 268
                 }
269 269
             }
270
-        } catch (\Exception $e) {
270
+        }catch (\Exception $e) {
271 271
             Logger::log($e->getMessage(), LOG_ERR);
272 272
         }
273 273
     }
@@ -284,21 +284,21 @@  discard block
 block discarded – undo
284 284
     {
285 285
         if (file_exists($file)) {
286 286
             $path_parts = explode("/", $file);
287
-            $file_path = $this->hash . "_" . $path_parts[count($path_parts) - 1];
288
-            if (!file_exists($base . $file_path) || filemtime($base . $file_path) < filemtime($file) || $this->debug) {
287
+            $file_path = $this->hash."_".$path_parts[count($path_parts) - 1];
288
+            if (!file_exists($base.$file_path) || filemtime($base.$file_path) < filemtime($file) || $this->debug) {
289 289
                 //Si tenemos modificaciones tenemos que compilar de nuevo todos los ficheros modificados
290
-                if (file_exists($base . $this->hash . ".css") && @unlink($base . $this->hash . ".css") === false) {
291
-                    throw new ConfigException("Can't unlink file " . $base . $this->hash . ".css");
290
+                if (file_exists($base.$this->hash.".css") && @unlink($base.$this->hash.".css") === false) {
291
+                    throw new ConfigException("Can't unlink file ".$base.$this->hash.".css");
292 292
                 }
293 293
                 $this->loopCssLines($file);
294 294
             }
295 295
             if ($this->debug) {
296 296
                 $data = file_get_contents($file);
297
-                $this->storeContents($base . $file_path, $data);
298
-            } else {
297
+                $this->storeContents($base.$file_path, $data);
298
+            }else {
299 299
                 $data .= file_get_contents($file);
300 300
             }
301
-            $this->compiled_files[] = "/css/" . $file_path;
301
+            $this->compiled_files[] = "/css/".$file_path;
302 302
         }
303 303
 
304 304
         return $data;
@@ -313,12 +313,12 @@  discard block
 block discarded – undo
313 313
      */
314 314
     protected function putDebugJs($path_parts, $base, $file)
315 315
     {
316
-        $file_path = $this->hash . "_" . $path_parts[count($path_parts) - 1];
317
-        $this->compiled_files[] = "/js/" . $file_path;
316
+        $file_path = $this->hash."_".$path_parts[count($path_parts) - 1];
317
+        $this->compiled_files[] = "/js/".$file_path;
318 318
         $data = "";
319
-        if (!file_exists($base . $file_path) || filemtime($base . $file_path) < filemtime($file)) {
319
+        if (!file_exists($base.$file_path) || filemtime($base.$file_path) < filemtime($file)) {
320 320
             $data = file_get_contents($file);
321
-            $this->storeContents($base . $file_path, $data);
321
+            $this->storeContents($base.$file_path, $data);
322 322
         }
323 323
         return $data;
324 324
     }
@@ -360,60 +360,60 @@  discard block
 block discarded – undo
360 360
     {
361 361
         $ppath = explode("/", $string);
362 362
         $original_filename = $ppath[count($ppath) - 1];
363
-        $base = WEB_DIR . DIRECTORY_SEPARATOR;
363
+        $base = WEB_DIR.DIRECTORY_SEPARATOR;
364 364
         $file = "";
365 365
         $html_base = "";
366 366
         $debug = Config::getInstance()->getDebugMode();
367 367
         $cache = Config::getInstance()->get('cache.var');
368
-        $cache = $cache ? '.' . $cache : '';
368
+        $cache = $cache ? '.'.$cache : '';
369 369
         $finfo = finfo_open(FILEINFO_MIME_TYPE); // devuelve el tipo mime de su extensión
370 370
         $mime = finfo_file($finfo, $filename_path);
371 371
         finfo_close($finfo);
372 372
         if (preg_match('/\.css$/i', $string)) {
373
-            $file = "/" . substr(md5($string), 0, 8) . "$cache.css";
373
+            $file = "/".substr(md5($string), 0, 8)."$cache.css";
374 374
             $html_base = "css";
375 375
             if ($debug) {
376
-                $file = str_replace(".css", "_" . $original_filename, $file);
376
+                $file = str_replace(".css", "_".$original_filename, $file);
377 377
             }
378 378
         } elseif (preg_match('/\.js$/i', $string)) {
379
-            $file = "/" . substr(md5($string), 0, 8) . "$cache.js";
379
+            $file = "/".substr(md5($string), 0, 8)."$cache.js";
380 380
             $html_base = "js";
381 381
             if ($debug) {
382
-                $file = str_replace(".js", "_" . $original_filename, $file);
382
+                $file = str_replace(".js", "_".$original_filename, $file);
383 383
             }
384 384
         } elseif (preg_match("/image/i", $mime)) {
385 385
             $ext = explode(".", $string);
386
-            $file = "/" . substr(md5($string), 0, 8) . "." . $ext[count($ext) - 1];
386
+            $file = "/".substr(md5($string), 0, 8).".".$ext[count($ext) - 1];
387 387
             $html_base = "img";
388 388
             if ($debug) {
389
-                $file = str_replace("." . $ext[count($ext) - 1], "_" . $original_filename, $file);
389
+                $file = str_replace(".".$ext[count($ext) - 1], "_".$original_filename, $file);
390 390
             }
391 391
         } elseif (preg_match("/(doc|pdf)/i", $mime)) {
392 392
             $ext = explode(".", $string);
393
-            $file = "/" . substr(md5($string), 0, 8) . "." . $ext[count($ext) - 1];
393
+            $file = "/".substr(md5($string), 0, 8).".".$ext[count($ext) - 1];
394 394
             $html_base = "docs";
395 395
             if ($debug) {
396
-                $file = str_replace("." . $ext[count($ext) - 1], "_" . $original_filename, $file);
396
+                $file = str_replace(".".$ext[count($ext) - 1], "_".$original_filename, $file);
397 397
             }
398 398
         } elseif (preg_match("/(video|audio|ogg)/i", $mime)) {
399 399
             $ext = explode(".", $string);
400
-            $file = "/" . substr(md5($string), 0, 8) . "." . $ext[count($ext) - 1];
400
+            $file = "/".substr(md5($string), 0, 8).".".$ext[count($ext) - 1];
401 401
             $html_base = "media";
402 402
             if ($debug) {
403
-                $file = str_replace("." . $ext[count($ext) - 1], "_" . $original_filename, $file);
403
+                $file = str_replace(".".$ext[count($ext) - 1], "_".$original_filename, $file);
404 404
             }
405 405
         } elseif (preg_match("/(text|html)/i", $mime)) {
406 406
             $ext = explode(".", $string);
407
-            $file = "/" . substr(md5($string), 0, 8) . "." . $ext[count($ext) - 1];
407
+            $file = "/".substr(md5($string), 0, 8).".".$ext[count($ext) - 1];
408 408
             $html_base = "templates";
409 409
             if ($debug) {
410
-                $file = str_replace("." . $ext[count($ext) - 1], "_" . $original_filename, $file);
410
+                $file = str_replace(".".$ext[count($ext) - 1], "_".$original_filename, $file);
411 411
             }
412 412
         } elseif (!$return && !is_null($name)) {
413 413
             $html_base = '';
414 414
             $file = $name;
415 415
         }
416
-        $file_path = $html_base . $file;
416
+        $file_path = $html_base.$file;
417 417
 
418 418
         return array($base, $html_base, $file_path);
419 419
     }
@@ -431,15 +431,15 @@  discard block
 block discarded – undo
431 431
         if (preg_match_all('#url\((.*?)\)#', $line, $urls, PREG_SET_ORDER)) {
432 432
             foreach ($urls as $source) {
433 433
                 $orig = self::calculateResourcePathname($filename_path, $source);
434
-                if(!empty($orig)) {
434
+                if (!empty($orig)) {
435 435
                     $orig_part = preg_split("/Public/i", $orig);
436
-                    $dest = WEB_DIR . $orig_part[1];
436
+                    $dest = WEB_DIR.$orig_part[1];
437 437
                     GeneratorHelper::createDir(dirname($dest));
438 438
                     if (@copy($orig, $dest) === false) {
439
-                        throw new ConfigException("Can't copy " . $orig . " to " . $dest);
439
+                        throw new ConfigException("Can't copy ".$orig." to ".$dest);
440 440
                     }
441
-                } else {
442
-                    Logger::log($filename_path . ' has an empty origin with the url ' . $source, LOG_WARNING);
441
+                }else {
442
+                    Logger::log($filename_path.' has an empty origin with the url '.$source, LOG_WARNING);
443 443
                 }
444 444
             }
445 445
         }
Please login to merge, or discard this patch.
src/base/Security.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace PSFS\base;
3 3
 
4
-use PSFS\base\types\helpers\RequestHelper;
5 4
 use PSFS\base\types\helpers\ResponseHelper;
6 5
 use PSFS\base\types\traits\SecureTrait;
7 6
 use PSFS\base\types\traits\SingletonTrait;
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
             session_start();
76 76
         }
77 77
         // Fix for phpunits
78
-        if(!isset($_SESSION)) {
78
+        if (!isset($_SESSION)) {
79 79
             $_SESSION = [];
80 80
         }
81 81
     }
@@ -135,12 +135,12 @@  discard block
 block discarded – undo
135 135
     {
136 136
         $saved = true;
137 137
         try {
138
-            $admins = Cache::getInstance()->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'admins.json', Cache::JSONGZ, true) ?: [];
139
-            $admins[$user['username']]['hash'] = sha1($user['username'] . $user['password']);
138
+            $admins = Cache::getInstance()->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR.'admins.json', Cache::JSONGZ, true) ?: [];
139
+            $admins[$user['username']]['hash'] = sha1($user['username'].$user['password']);
140 140
             $admins[$user['username']]['profile'] = $user['profile'];
141 141
 
142
-            Cache::getInstance()->storeData(CONFIG_DIR . DIRECTORY_SEPARATOR . 'admins.json', $admins, Cache::JSONGZ, true);
143
-        } catch(\Exception $e) {
142
+            Cache::getInstance()->storeData(CONFIG_DIR.DIRECTORY_SEPARATOR.'admins.json', $admins, Cache::JSONGZ, true);
143
+        }catch (\Exception $e) {
144 144
             Logger::log($e->getMessage(), LOG_ERR);
145 145
             $saved = false;
146 146
         }
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
      */
178 178
     public function getAdmins()
179 179
     {
180
-        return Cache::getInstance()->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'admins.json', Cache::JSONGZ, true);
180
+        return Cache::getInstance()->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR.'admins.json', Cache::JSONGZ, true);
181 181
     }
182 182
 
183 183
     /**
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
                 }
206 206
                 if (!empty($user) && !empty($admins[$user])) {
207 207
                     $auth = $admins[$user]['hash'];
208
-                    $this->authorized = ($auth == sha1($user . $pass));
208
+                    $this->authorized = ($auth == sha1($user.$pass));
209 209
                     if ($this->authorized) {
210 210
                         $this->admin = array(
211 211
                             'alias' => $user,
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
                             ]
222 222
                         ]);
223 223
                     }
224
-                } else {
224
+                }else {
225 225
                     $this->admin = null;
226 226
                     $this->setSessionKey(self::ADMIN_ID_TOKEN, null);
227 227
                 }
Please login to merge, or discard this patch.
src/base/types/traits/SystemTrait.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 namespace PSFS\base\types\traits;
3 3
 
4 4
 use PSFS\base\Logger;
5
-use PSFS\base\Request;
6
-use PSFS\base\Router;
7 5
 
8 6
 /**
9 7
  * Class SystemTrait
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
                 $use /= 1024;
37 37
                 break;
38 38
             case "MBytes":
39
-                $use /= (1024 * 1024);
39
+                $use /= (1024*1024);
40 40
                 break;
41 41
             case "Bytes":
42 42
             default:
@@ -61,14 +61,14 @@  discard block
 block discarded – undo
61 61
     {
62 62
         Logger::log('Added handlers for errors');
63 63
         //Warning & Notice handler
64
-        set_error_handler(function ($errno, $errstr, $errfile, $errline) {
64
+        set_error_handler(function($errno, $errstr, $errfile, $errline) {
65 65
             Logger::log($errstr, LOG_CRIT, ['file' => $errfile, 'line' => $errline, 'errno' => $errno]);
66 66
             return true;
67 67
         }, E_ALL | E_STRICT);
68 68
 
69
-        register_shutdown_function(function () {
69
+        register_shutdown_function(function() {
70 70
             $error = error_get_last();
71
-            if( $error !== NULL) {
71
+            if ($error !== NULL) {
72 72
                 $errno   = $error["type"];
73 73
                 $errfile = $error["file"];
74 74
                 $errline = $error["line"];
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
         Logger::log('Initializing stats (mem + ts)');
89 89
         if (null !== $_SERVER && array_key_exists('REQUEST_TIME_FLOAT', $_SERVER)) {
90 90
             $this->ts = (float)$_SERVER['REQUEST_TIME_FLOAT'];
91
-        } else {
91
+        }else {
92 92
             $this->ts = PSFS_START_TS;
93 93
         }
94 94
         $this->mem = PSFS_START_MEM;
Please login to merge, or discard this patch.
src/services/GeneratorService.php 3 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
     /**
41 41
      * Método que revisa las traducciones directorio a directorio
42
-     * @param $path
42
+     * @param string $path
43 43
      * @param $locale
44 44
      * @return array
45 45
      */
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
      * Servicio que genera la estructura base
112 112
      * @param string $module
113 113
      * @param boolean $mod_path
114
-     * @return boolean
114
+     * @return boolean|null
115 115
      */
116 116
     private function createModulePathTree($module, $mod_path)
117 117
     {
@@ -467,7 +467,7 @@  discard block
 block discarded – undo
467 467
      * Method that copy resources recursively
468 468
      * @param string $dest
469 469
      * @param boolean $force
470
-     * @param $filename_path
470
+     * @param string $filename_path
471 471
      * @param boolean $debug
472 472
      */
473 473
     public static function copyResources($dest, $force, $filename_path, $debug)
@@ -509,7 +509,7 @@  discard block
 block discarded – undo
509 509
     }
510 510
 
511 511
     /**
512
-     * @param $module_path
512
+     * @param string $module_path
513 513
      * @return array
514 514
      */
515 515
     private function getPropelPaths($module_path)
Please login to merge, or discard this patch.
Unused Use Statements   -6 removed lines patch added patch discarded remove patch
@@ -1,16 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace PSFS\Services;
3 3
 
4
-use Propel\Common\Config\ConfigurationManager;
5 4
 use Propel\Generator\Config\GeneratorConfig;
6 5
 use Propel\Generator\Manager\AbstractManager;
7
-use Propel\Generator\Manager\MigrationManager;
8 6
 use Propel\Generator\Manager\ModelManager;
9 7
 use Propel\Generator\Manager\SqlManager;
10
-use Propel\Generator\Model\Database;
11
-use Propel\Generator\Model\Diff\DatabaseComparator;
12
-use Propel\Generator\Model\IdMethod;
13
-use Propel\Generator\Model\Schema;
14 8
 use PSFS\base\Cache;
15 9
 use PSFS\base\config\Config;
16 10
 use PSFS\base\exception\ConfigException;
Please login to merge, or discard this patch.
Spacing   +61 added lines, -61 removed lines patch added patch discarded remove patch
@@ -45,24 +45,24 @@  discard block
 block discarded – undo
45 45
      */
46 46
     public static function findTranslations($path, $locale)
47 47
     {
48
-        $locale_path = realpath(BASE_DIR . DIRECTORY_SEPARATOR . 'locale');
49
-        $locale_path .= DIRECTORY_SEPARATOR . $locale . DIRECTORY_SEPARATOR . 'LC_MESSAGES' . DIRECTORY_SEPARATOR;
48
+        $locale_path = realpath(BASE_DIR.DIRECTORY_SEPARATOR.'locale');
49
+        $locale_path .= DIRECTORY_SEPARATOR.$locale.DIRECTORY_SEPARATOR.'LC_MESSAGES'.DIRECTORY_SEPARATOR;
50 50
 
51 51
         $translations = array();
52 52
         if (file_exists($path)) {
53 53
             $d = dir($path);
54 54
             while (false !== ($dir = $d->read())) {
55 55
                 GeneratorHelper::createDir($locale_path);
56
-                if (!file_exists($locale_path . 'translations.po')) {
57
-                    file_put_contents($locale_path . 'translations.po', '');
56
+                if (!file_exists($locale_path.'translations.po')) {
57
+                    file_put_contents($locale_path.'translations.po', '');
58 58
                 }
59
-                $inspect_path = realpath($path . DIRECTORY_SEPARATOR . $dir);
60
-                $cmd_php = "export PATH=\$PATH:/opt/local/bin; xgettext " .
61
-                    $inspect_path . DIRECTORY_SEPARATOR .
59
+                $inspect_path = realpath($path.DIRECTORY_SEPARATOR.$dir);
60
+                $cmd_php = "export PATH=\$PATH:/opt/local/bin; xgettext ".
61
+                    $inspect_path.DIRECTORY_SEPARATOR.
62 62
                     "*.php --from-code=UTF-8 -j -L PHP --debug --force-po -o {$locale_path}translations.po";
63
-                if (is_dir($path . DIRECTORY_SEPARATOR . $dir) && preg_match('/^\./', $dir) == 0) {
64
-                    $res = _('Revisando directorio: ') . $inspect_path;
65
-                    $res .= _('Comando ejecutado: ') . $cmd_php;
63
+                if (is_dir($path.DIRECTORY_SEPARATOR.$dir) && preg_match('/^\./', $dir) == 0) {
64
+                    $res = _('Revisando directorio: ').$inspect_path;
65
+                    $res .= _('Comando ejecutado: ').$cmd_php;
66 66
                     $res .= shell_exec($cmd_php);
67 67
                     usleep(10);
68 68
                     $translations[] = $res;
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
      */
84 84
     public function createStructureModule($module, $force = false, $type = "", $apiClass = "")
85 85
     {
86
-        $mod_path = CORE_DIR . DIRECTORY_SEPARATOR;
86
+        $mod_path = CORE_DIR.DIRECTORY_SEPARATOR;
87 87
         $module = ucfirst($module);
88 88
         $this->createModulePath($module, $mod_path);
89 89
         $this->createModulePathTree($module, $mod_path);
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
         // Creates the src folder
105 105
         GeneratorHelper::createDir($mod_path);
106 106
         // Create module path
107
-        GeneratorHelper::createDir($mod_path . $module);
107
+        GeneratorHelper::createDir($mod_path.$module);
108 108
     }
109 109
 
110 110
     /**
@@ -119,16 +119,16 @@  discard block
 block discarded – undo
119 119
         $this->log->infoLog("Generamos la estructura");
120 120
         $paths = [
121 121
             "Api", "Api/base", "Config", "Controller", "Models", "Public", "Templates", "Services", "Test", "Doc",
122
-            "Locale", "Locale/" . Config::getParam('default.locale', 'es_ES'), "Locale/" . Config::getParam('default.locale', 'es_ES') . "/LC_MESSAGES"
122
+            "Locale", "Locale/".Config::getParam('default.locale', 'es_ES'), "Locale/".Config::getParam('default.locale', 'es_ES')."/LC_MESSAGES"
123 123
         ];
124
-        $module_path = $mod_path . $module;
124
+        $module_path = $mod_path.$module;
125 125
         foreach ($paths as $path) {
126
-            GeneratorHelper::createDir($module_path . DIRECTORY_SEPARATOR . $path);
126
+            GeneratorHelper::createDir($module_path.DIRECTORY_SEPARATOR.$path);
127 127
         }
128 128
         //Creamos las carpetas de los assets
129 129
         $htmlPaths = array("css", "js", "img", "media", "font");
130 130
         foreach ($htmlPaths as $path) {
131
-            GeneratorHelper::createDir($module_path . DIRECTORY_SEPARATOR . "Public" . DIRECTORY_SEPARATOR . $path);
131
+            GeneratorHelper::createDir($module_path.DIRECTORY_SEPARATOR."Public".DIRECTORY_SEPARATOR.$path);
132 132
         }
133 133
     }
134 134
 
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
      */
142 142
     private function createModuleBaseFiles($module, $mod_path, $force = false, $controllerType = '')
143 143
     {
144
-        $module_path = $mod_path . $module;
144
+        $module_path = $mod_path.$module;
145 145
         $this->generateControllerTemplate($module, $module_path, $force, $controllerType);
146 146
         $this->generateServiceTemplate($module, $module_path, $force);
147 147
         $this->genereateAutoloaderTemplate($module, $module_path, $force);
@@ -159,8 +159,8 @@  discard block
 block discarded – undo
159 159
      */
160 160
     private function createModuleModels($module, $path)
161 161
     {
162
-        $module_path = $path . $module;
163
-        $module_path = str_replace(CORE_DIR . DIRECTORY_SEPARATOR, '', $module_path);
162
+        $module_path = $path.$module;
163
+        $module_path = str_replace(CORE_DIR.DIRECTORY_SEPARATOR, '', $module_path);
164 164
 
165 165
         $configGenerator = $this->getConfigGenerator($module_path);
166 166
 
@@ -170,8 +170,8 @@  discard block
 block discarded – undo
170 170
         $configTemplate = $this->tpl->dump("generator/config.propel.template.twig", array(
171 171
             "module" => $module,
172 172
         ));
173
-        $this->writeTemplateToFile($configTemplate, CORE_DIR . DIRECTORY_SEPARATOR . $module_path . DIRECTORY_SEPARATOR . "Config" .
174
-            DIRECTORY_SEPARATOR . "config.php", true);
173
+        $this->writeTemplateToFile($configTemplate, CORE_DIR.DIRECTORY_SEPARATOR.$module_path.DIRECTORY_SEPARATOR."Config".
174
+            DIRECTORY_SEPARATOR."config.php", true);
175 175
         $this->log->infoLog("Generado config genérico para propel");
176 176
     }
177 177
 
@@ -193,28 +193,28 @@  discard block
 block discarded – undo
193 193
             "namespace" => preg_replace('/(\\\|\/)/', '\\', $module),
194 194
             "url" => preg_replace('/(\\\|\/)/', '/', $module),
195 195
             "class" => $class,
196
-            "controllerType" => $class . "Base",
196
+            "controllerType" => $class."Base",
197 197
             "is_base" => false
198 198
         ));
199
-        $controller = $this->writeTemplateToFile($controllerBody, $mod_path . DIRECTORY_SEPARATOR . "Controller" .
200
-            DIRECTORY_SEPARATOR . "{$class}Controller.php", $force);
199
+        $controller = $this->writeTemplateToFile($controllerBody, $mod_path.DIRECTORY_SEPARATOR."Controller".
200
+            DIRECTORY_SEPARATOR."{$class}Controller.php", $force);
201 201
 
202 202
         $controllerBody = $this->tpl->dump("generator/controller.template.twig", array(
203 203
             "module" => $module,
204 204
             "namespace" => preg_replace('/(\\\|\/)/', '\\', $module),
205 205
             "url" => preg_replace('/(\\\|\/)/', '/', $module),
206
-            "class" => $class . "Base",
206
+            "class" => $class."Base",
207 207
             "service" => $class,
208 208
             "controllerType" => $controllerType,
209 209
             "is_base" => true,
210 210
             "domain" => $class,
211 211
         ));
212
-        $controllerBase = $this->writeTemplateToFile($controllerBody, $mod_path . DIRECTORY_SEPARATOR . "Controller" .
213
-            DIRECTORY_SEPARATOR . "base" . DIRECTORY_SEPARATOR . "{$class}BaseController.php", true);
212
+        $controllerBase = $this->writeTemplateToFile($controllerBody, $mod_path.DIRECTORY_SEPARATOR."Controller".
213
+            DIRECTORY_SEPARATOR."base".DIRECTORY_SEPARATOR."{$class}BaseController.php", true);
214 214
 
215
-        $filename = $mod_path . DIRECTORY_SEPARATOR . "Test" . DIRECTORY_SEPARATOR . "{$class}Test.php";
215
+        $filename = $mod_path.DIRECTORY_SEPARATOR."Test".DIRECTORY_SEPARATOR."{$class}Test.php";
216 216
         $test = true;
217
-        if(!file_exists($filename)) {
217
+        if (!file_exists($filename)) {
218 218
             $testTemplate = $this->tpl->dump("generator/testCase.template.twig", array(
219 219
                 "module" => $module,
220 220
                 "namespace" => preg_replace('/(\\\|\/)/', '\\', $module),
@@ -235,8 +235,8 @@  discard block
 block discarded – undo
235 235
     private function generateBaseApiTemplate($module, $mod_path, $force = false, $apiClass = "")
236 236
     {
237 237
         $created = true;
238
-        $modelPath = $mod_path . $module . DIRECTORY_SEPARATOR . 'Models';
239
-        $api_path = $mod_path . $module . DIRECTORY_SEPARATOR . 'Api';
238
+        $modelPath = $mod_path.$module.DIRECTORY_SEPARATOR.'Models';
239
+        $api_path = $mod_path.$module.DIRECTORY_SEPARATOR.'Api';
240 240
         if (file_exists($modelPath)) {
241 241
             $dir = dir($modelPath);
242 242
             while ($file = $dir->read()) {
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
         //Generamos el fichero de configuración
265 265
         $this->log->infoLog("Generamos fichero vacío de configuración");
266 266
         return $this->writeTemplateToFile("<?php\n\t",
267
-            $mod_path . DIRECTORY_SEPARATOR . "Config" . DIRECTORY_SEPARATOR . "config.php",
267
+            $mod_path.DIRECTORY_SEPARATOR."Config".DIRECTORY_SEPARATOR."config.php",
268 268
             $force);
269 269
     }
270 270
 
@@ -279,10 +279,10 @@  discard block
 block discarded – undo
279 279
         //Generamos el fichero de configuración
280 280
         $this->log->infoLog("Generamos ficheros para assets base");
281 281
         $css = $this->writeTemplateToFile("/* CSS3 STYLES */\n\n",
282
-            $mod_path . DIRECTORY_SEPARATOR . "Public" . DIRECTORY_SEPARATOR . "css" . DIRECTORY_SEPARATOR . "styles.css",
282
+            $mod_path.DIRECTORY_SEPARATOR."Public".DIRECTORY_SEPARATOR."css".DIRECTORY_SEPARATOR."styles.css",
283 283
             $force);
284 284
         $js = $this->writeTemplateToFile("/* APP MODULE JS */\n\n(function() {\n\t'use strict';\n})();",
285
-            $mod_path . DIRECTORY_SEPARATOR . "Public" . DIRECTORY_SEPARATOR . "js" . DIRECTORY_SEPARATOR . "app.js",
285
+            $mod_path.DIRECTORY_SEPARATOR."Public".DIRECTORY_SEPARATOR."js".DIRECTORY_SEPARATOR."app.js",
286 286
             $force);
287 287
         return ($css && $js);
288 288
     }
@@ -304,7 +304,7 @@  discard block
 block discarded – undo
304 304
             "class" => $class,
305 305
         ));
306 306
         return $this->writeTemplateToFile($controller,
307
-            $mod_path . DIRECTORY_SEPARATOR . "Services" . DIRECTORY_SEPARATOR . "{$class}Service.php",
307
+            $mod_path.DIRECTORY_SEPARATOR."Services".DIRECTORY_SEPARATOR."{$class}Service.php",
308 308
             $force);
309 309
     }
310 310
 
@@ -323,13 +323,13 @@  discard block
 block discarded – undo
323 323
             "autoloader" => preg_replace('/(\\\|\/)/', '_', $module),
324 324
             "regex" => preg_replace('/(\\\|\/)/m', '\\\\\\\\\\\\', $module),
325 325
         ));
326
-        $autoload = $this->writeTemplateToFile($autoloader, $mod_path . DIRECTORY_SEPARATOR . "autoload.php", $force);
326
+        $autoload = $this->writeTemplateToFile($autoloader, $mod_path.DIRECTORY_SEPARATOR."autoload.php", $force);
327 327
 
328 328
         $this->log->infoLog("Generamos el phpunit");
329 329
         $phpUnitTemplate = $this->tpl->dump("generator/phpunit.template.twig", array(
330 330
             "module" => $module,
331 331
         ));
332
-        $phpunit = $this->writeTemplateToFile($phpUnitTemplate, $mod_path . DIRECTORY_SEPARATOR . "phpunit.xml.dist", $force);
332
+        $phpunit = $this->writeTemplateToFile($phpUnitTemplate, $mod_path.DIRECTORY_SEPARATOR."phpunit.xml.dist", $force);
333 333
         return $autoload && $phpunit;
334 334
     }
335 335
 
@@ -350,7 +350,7 @@  discard block
 block discarded – undo
350 350
             "db" => $this->config->get("db_name"),
351 351
         ));
352 352
         return $this->writeTemplateToFile($schema,
353
-            $mod_path . DIRECTORY_SEPARATOR . "Config" . DIRECTORY_SEPARATOR . "schema.xml",
353
+            $mod_path.DIRECTORY_SEPARATOR."Config".DIRECTORY_SEPARATOR."schema.xml",
354 354
             $force);
355 355
     }
356 356
 
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
             "namespace" => preg_replace('/(\\\|\/)/', '', $module),
369 369
         ));
370 370
         return $this->writeTemplateToFile($build_properties,
371
-            $mod_path . DIRECTORY_SEPARATOR . "Config" . DIRECTORY_SEPARATOR . "propel.yml",
371
+            $mod_path.DIRECTORY_SEPARATOR."Config".DIRECTORY_SEPARATOR."propel.yml",
372 372
             $force);
373 373
     }
374 374
 
@@ -386,7 +386,7 @@  discard block
 block discarded – undo
386 386
             "module" => $module,
387 387
         ));
388 388
         return $this->writeTemplateToFile($index,
389
-            $mod_path . DIRECTORY_SEPARATOR . "Templates" . DIRECTORY_SEPARATOR . "index.html.twig",
389
+            $mod_path.DIRECTORY_SEPARATOR."Templates".DIRECTORY_SEPARATOR."index.html.twig",
390 390
             $force);
391 391
     }
392 392
 
@@ -404,11 +404,11 @@  discard block
 block discarded – undo
404 404
             try {
405 405
                 $this->cache->storeData($filename, $fileContent, Cache::TEXT, true);
406 406
                 $created = true;
407
-            } catch (\Exception $e) {
407
+            }catch (\Exception $e) {
408 408
                 $this->log->errorLog($e->getMessage());
409 409
             }
410
-        } else {
411
-            $this->log->errorLog($filename . _(' not exists or cant write'));
410
+        }else {
411
+            $this->log->errorLog($filename._(' not exists or cant write'));
412 412
         }
413 413
         return $created;
414 414
     }
@@ -437,7 +437,7 @@  discard block
 block discarded – undo
437 437
         ));
438 438
 
439 439
         return $this->writeTemplateToFile($controller,
440
-            $mod_path . DIRECTORY_SEPARATOR . 'base' . DIRECTORY_SEPARATOR . "{$api}BaseApi.php", true);
440
+            $mod_path.DIRECTORY_SEPARATOR.'base'.DIRECTORY_SEPARATOR."{$api}BaseApi.php", true);
441 441
     }
442 442
 
443 443
     /**
@@ -460,7 +460,7 @@  discard block
 block discarded – undo
460 460
             "class" => $class,
461 461
         ));
462 462
 
463
-        return $this->writeTemplateToFile($controller, $mod_path . DIRECTORY_SEPARATOR . "{$api}.php", $force);
463
+        return $this->writeTemplateToFile($controller, $mod_path.DIRECTORY_SEPARATOR."{$api}.php", $force);
464 464
     }
465 465
 
466 466
     /**
@@ -474,12 +474,12 @@  discard block
 block discarded – undo
474 474
     {
475 475
         if (file_exists($filename_path)) {
476 476
             $destfolder = basename($filename_path);
477
-            if (!file_exists(WEB_DIR . $dest . DIRECTORY_SEPARATOR . $destfolder) || $debug || $force) {
477
+            if (!file_exists(WEB_DIR.$dest.DIRECTORY_SEPARATOR.$destfolder) || $debug || $force) {
478 478
                 if (is_dir($filename_path)) {
479
-                    self::copyr($filename_path, WEB_DIR . $dest . DIRECTORY_SEPARATOR . $destfolder);
480
-                } else {
481
-                    if (@copy($filename_path, WEB_DIR . $dest . DIRECTORY_SEPARATOR . $destfolder) === FALSE) {
482
-                        throw new ConfigException("Can't copy " . $filename_path . " to " . WEB_DIR . $dest . DIRECTORY_SEPARATOR . $destfolder);
479
+                    self::copyr($filename_path, WEB_DIR.$dest.DIRECTORY_SEPARATOR.$destfolder);
480
+                }else {
481
+                    if (@copy($filename_path, WEB_DIR.$dest.DIRECTORY_SEPARATOR.$destfolder) === FALSE) {
482
+                        throw new ConfigException("Can't copy ".$filename_path." to ".WEB_DIR.$dest.DIRECTORY_SEPARATOR.$destfolder);
483 483
                     }
484 484
                 }
485 485
             }
@@ -498,10 +498,10 @@  discard block
 block discarded – undo
498 498
         GeneratorHelper::createDir($dst);
499 499
         while (false !== ($file = readdir($dir))) {
500 500
             if (($file != '.') && ($file != '..')) {
501
-                if (is_dir($src . '/' . $file)) {
502
-                    self::copyr($src . '/' . $file, $dst . '/' . $file);
503
-                } elseif (@copy($src . '/' . $file, $dst . '/' . $file) === false) {
504
-                    throw new ConfigException("Can't copy " . $src . " to " . $dst);
501
+                if (is_dir($src.'/'.$file)) {
502
+                    self::copyr($src.'/'.$file, $dst.'/'.$file);
503
+                } elseif (@copy($src.'/'.$file, $dst.'/'.$file) === false) {
504
+                    throw new ConfigException("Can't copy ".$src." to ".$dst);
505 505
                 }
506 506
             }
507 507
         }
@@ -514,12 +514,12 @@  discard block
 block discarded – undo
514 514
      */
515 515
     private function getPropelPaths($module_path)
516 516
     {
517
-        $moduleDir = CORE_DIR . DIRECTORY_SEPARATOR . $module_path;
517
+        $moduleDir = CORE_DIR.DIRECTORY_SEPARATOR.$module_path;
518 518
         GeneratorHelper::createDir($moduleDir);
519 519
         $moduleDir = realpath($moduleDir);
520
-        $configDir = $moduleDir . DIRECTORY_SEPARATOR . 'Config';
521
-        $sqlDir = $moduleDir . DIRECTORY_SEPARATOR . 'Config' . DIRECTORY_SEPARATOR . 'Sql';
522
-        $migrationDir = $moduleDir . DIRECTORY_SEPARATOR . 'Config' . DIRECTORY_SEPARATOR . 'Migrations';
520
+        $configDir = $moduleDir.DIRECTORY_SEPARATOR.'Config';
521
+        $sqlDir = $moduleDir.DIRECTORY_SEPARATOR.'Config'.DIRECTORY_SEPARATOR.'Sql';
522
+        $migrationDir = $moduleDir.DIRECTORY_SEPARATOR.'Config'.DIRECTORY_SEPARATOR.'Migrations';
523 523
         $paths = [
524 524
             'projectDir' => $moduleDir,
525 525
             'outputDir' => $moduleDir,
@@ -581,12 +581,12 @@  discard block
 block discarded – undo
581 581
      * @param AbstractManager $manager
582 582
      * @param string $workingDir
583 583
      */
584
-    private function setupManager(GeneratorConfig $configGenerator, AbstractManager &$manager, $workingDir = CORE_DIR)
584
+    private function setupManager(GeneratorConfig $configGenerator, AbstractManager & $manager, $workingDir = CORE_DIR)
585 585
     {
586 586
         $manager->setGeneratorConfig($configGenerator);
587
-        $schemaFile = new \SplFileInfo($configGenerator->getSection('paths')['schemaDir'] . DIRECTORY_SEPARATOR . 'schema.xml');
587
+        $schemaFile = new \SplFileInfo($configGenerator->getSection('paths')['schemaDir'].DIRECTORY_SEPARATOR.'schema.xml');
588 588
         $manager->setSchemas([$schemaFile]);
589
-        $manager->setLoggerClosure(function ($message) {
589
+        $manager->setLoggerClosure(function($message) {
590 590
             Logger::log($message, LOG_INFO);
591 591
         });
592 592
         $manager->setWorkingDirectory($workingDir);
Please login to merge, or discard this patch.
src/controller/GeneratorController.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
                 GeneratorHelper::checkCustomNamespaceApi($apiClass);
65 65
                 $this->gen->createStructureModule($module, false, $type, $apiClass);
66 66
                 Security::getInstance()->setFlash("callback_message", str_replace("%s", $module, _("Módulo %s generado correctamente")));
67
-               // Security::getInstance()->setFlash("callback_route", $this->getRoute("admin-module", true));
67
+                // Security::getInstance()->setFlash("callback_route", $this->getRoute("admin-module", true));
68 68
             } catch (\Exception $e) {
69 69
                 Logger::getInstance()->infoLog($e->getMessage() . " [" . $e->getFile() . ":" . $e->getLine() . "]");
70 70
                 Security::getInstance()->setFlash("callback_message", htmlentities($e->getMessage()));
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      */
35 35
     public function generateModule()
36 36
     {
37
-        Logger::log("Arranque generador de módulos al solicitar " . $this->getRequest()->getRequestUri());
37
+        Logger::log("Arranque generador de módulos al solicitar ".$this->getRequest()->getRequestUri());
38 38
         /* @var $form \PSFS\base\config\ConfigForm */
39 39
         $form = new ModuleForm();
40 40
         $form->build();
@@ -65,8 +65,8 @@  discard block
 block discarded – undo
65 65
                 $this->gen->createStructureModule($module, false, $type, $apiClass);
66 66
                 Security::getInstance()->setFlash("callback_message", str_replace("%s", $module, _("Módulo %s generado correctamente")));
67 67
                // Security::getInstance()->setFlash("callback_route", $this->getRoute("admin-module", true));
68
-            } catch (\Exception $e) {
69
-                Logger::getInstance()->infoLog($e->getMessage() . " [" . $e->getFile() . ":" . $e->getLine() . "]");
68
+            }catch (\Exception $e) {
69
+                Logger::getInstance()->infoLog($e->getMessage()." [".$e->getFile().":".$e->getLine()."]");
70 70
                 Security::getInstance()->setFlash("callback_message", htmlentities($e->getMessage()));
71 71
             }
72 72
         }
@@ -77,14 +77,14 @@  discard block
 block discarded – undo
77 77
 
78 78
     public static function createRoot($path = WEB_DIR, OutputInterface $output = null) {
79 79
 
80
-        if(null === $output) {
80
+        if (null === $output) {
81 81
             $output = new ConsoleOutput();
82 82
         }
83 83
 
84 84
         GeneratorHelper::createDir($path);
85 85
         $paths = array("js", "css", "img", "media", "font");
86 86
         foreach ($paths as $htmlPath) {
87
-            GeneratorHelper::createDir($path . DIRECTORY_SEPARATOR . $htmlPath);
87
+            GeneratorHelper::createDir($path.DIRECTORY_SEPARATOR.$htmlPath);
88 88
         }
89 89
 
90 90
         // Generates the root needed files
@@ -96,18 +96,18 @@  discard block
 block discarded – undo
96 96
             'robots' => 'robots.txt',
97 97
         ];
98 98
         foreach ($files as $templates => $filename) {
99
-            $text = Template::getInstance()->dump("generator/html/" . $templates . '.html.twig');
100
-            if (false === file_put_contents($path . DIRECTORY_SEPARATOR . $filename, $text)) {
101
-                $output->writeln('Can\t create the file ' . $filename);
102
-            } else {
103
-                $output->writeln($filename . ' created successfully');
99
+            $text = Template::getInstance()->dump("generator/html/".$templates.'.html.twig');
100
+            if (false === file_put_contents($path.DIRECTORY_SEPARATOR.$filename, $text)) {
101
+                $output->writeln('Can\t create the file '.$filename);
102
+            }else {
103
+                $output->writeln($filename.' created successfully');
104 104
             }
105 105
         }
106 106
 
107 107
         //Export base locale translations
108
-        if (!file_exists(BASE_DIR . DIRECTORY_SEPARATOR . 'locale')) {
109
-            GeneratorHelper::createDir(BASE_DIR . DIRECTORY_SEPARATOR . 'locale');
110
-            GeneratorService::copyr(SOURCE_DIR . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'locale', BASE_DIR . DIRECTORY_SEPARATOR . 'locale');
108
+        if (!file_exists(BASE_DIR.DIRECTORY_SEPARATOR.'locale')) {
109
+            GeneratorHelper::createDir(BASE_DIR.DIRECTORY_SEPARATOR.'locale');
110
+            GeneratorService::copyr(SOURCE_DIR.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'locale', BASE_DIR.DIRECTORY_SEPARATOR.'locale');
111 111
         }
112 112
     }
113 113
 }
114 114
\ No newline at end of file
Please login to merge, or discard this patch.
src/base/types/Api.php 2 patches
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -4,15 +4,12 @@
 block discarded – undo
4 4
 use Propel\Runtime\ActiveQuery\ModelCriteria;
5 5
 use Propel\Runtime\Map\TableMap;
6 6
 use Propel\Runtime\Propel;
7
-use PSFS\base\config\Config;
8 7
 use PSFS\base\dto\JsonResponse;
9 8
 use PSFS\base\dto\Order;
10 9
 use PSFS\base\Logger;
11 10
 use PSFS\base\Request;
12
-use PSFS\base\Security;
13 11
 use PSFS\base\Singleton;
14 12
 use PSFS\base\types\helpers\ApiHelper;
15
-use PSFS\base\types\helpers\Inspector;
16 13
 use PSFS\base\types\traits\Api\ManagerTrait;
17 14
 
18 15
 /**
Please login to merge, or discard this patch.
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -74,15 +74,15 @@  discard block
 block discarded – undo
74 74
     public function init()
75 75
     {
76 76
         parent::init();
77
-        Logger::log(get_called_class() . ' init', LOG_DEBUG);
77
+        Logger::log(get_called_class().' init', LOG_DEBUG);
78 78
         $this->domain = $this->getDomain();
79 79
         $this->hydrateRequestData();
80 80
         $this->hydrateOrders();
81
-        if($this instanceof CustomApi === false) {
81
+        if ($this instanceof CustomApi === false) {
82 82
             $this->createConnection($this->getTableMap());
83 83
         }
84 84
         $this->setLoaded(true);
85
-        Logger::log(get_called_class() . ' loaded', LOG_DEBUG);
85
+        Logger::log(get_called_class().' loaded', LOG_DEBUG);
86 86
     }
87 87
 
88 88
     /**
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     protected function hydrateOrders()
92 92
     {
93 93
         if (count($this->query)) {
94
-            Logger::log(get_called_class() . ' gathering query string', LOG_DEBUG);
94
+            Logger::log(get_called_class().' gathering query string', LOG_DEBUG);
95 95
             foreach ($this->query as $key => $value) {
96 96
                 if ($key === self::API_ORDER_FIELD) {
97 97
                     foreach ($value as $field => $direction) {
@@ -108,10 +108,10 @@  discard block
 block discarded – undo
108 108
      */
109 109
     protected function extractPagination()
110 110
     {
111
-        Logger::log(get_called_class() . ' extract pagination start', LOG_DEBUG);
111
+        Logger::log(get_called_class().' extract pagination start', LOG_DEBUG);
112 112
         $page = (array_key_exists(self::API_PAGE_FIELD, $this->query)) ? $this->query[self::API_PAGE_FIELD] : 1;
113 113
         $limit = (array_key_exists(self::API_LIMIT_FIELD, $this->query)) ? $this->query[self::API_LIMIT_FIELD] : 100;
114
-        Logger::log(get_called_class() . ' extract pagination end', LOG_DEBUG);
114
+        Logger::log(get_called_class().' extract pagination end', LOG_DEBUG);
115 115
         return array($page, $limit);
116 116
     }
117 117
 
@@ -120,9 +120,9 @@  discard block
 block discarded – undo
120 120
      *
121 121
      * @param ModelCriteria $query
122 122
      */
123
-    private function addOrders(ModelCriteria &$query)
123
+    private function addOrders(ModelCriteria & $query)
124 124
     {
125
-        Logger::log(get_called_class() . ' extract orders start ', LOG_DEBUG);
125
+        Logger::log(get_called_class().' extract orders start ', LOG_DEBUG);
126 126
         $orderAdded = FALSE;
127 127
         $tableMap = $this->getTableMap();
128 128
         foreach ($this->order->getOrders() as $field => $direction) {
@@ -130,17 +130,17 @@  discard block
 block discarded – undo
130 130
                 $orderAdded = TRUE;
131 131
                 if ($direction === Order::ASC) {
132 132
                     $query->addAscendingOrderByColumn($column->getPhpName());
133
-                } else {
133
+                }else {
134 134
                     $query->addDescendingOrderByColumn($column->getPhpName());
135 135
                 }
136 136
             }
137 137
         }
138 138
         if (!$orderAdded) {
139
-            foreach($this->getPkDbName() as $pk => $phpName) {
139
+            foreach ($this->getPkDbName() as $pk => $phpName) {
140 140
                 $query->addAscendingOrderByColumn($pk);
141 141
             }
142 142
         }
143
-        Logger::log(get_called_class() . ' extract orders end', LOG_DEBUG);
143
+        Logger::log(get_called_class().' extract orders end', LOG_DEBUG);
144 144
     }
145 145
 
146 146
     /**
@@ -148,14 +148,14 @@  discard block
 block discarded – undo
148 148
      *
149 149
      * @param ModelCriteria $query
150 150
      */
151
-    protected function addFilters(ModelCriteria &$query)
151
+    protected function addFilters(ModelCriteria & $query)
152 152
     {
153 153
         if (count($this->query) > 0) {
154 154
             $tableMap = $this->getTableMap();
155 155
             foreach ($this->query as $field => $value) {
156 156
                 if (self::API_COMBO_FIELD === $field) {
157 157
                     ApiHelper::composerComboField($tableMap, $query, $this->extraColumns, $value);
158
-                } elseif(!preg_match('/^__/', $field)) {
158
+                } elseif (!preg_match('/^__/', $field)) {
159 159
                     ApiHelper::addModelField($tableMap, $query, $field, $value);
160 160
                 }
161 161
             }
@@ -176,10 +176,10 @@  discard block
 block discarded – undo
176 176
             list($page, $limit) = $this->extractPagination();
177 177
             if ($limit == -1) {
178 178
                 $this->list = $query->find($this->con);
179
-            } else {
179
+            }else {
180 180
                 $this->list = $query->paginate($page, $limit, $this->con);
181 181
             }
182
-        } catch (\Exception $e) {
182
+        }catch (\Exception $e) {
183 183
             Logger::log($e->getMessage(), LOG_ERR);
184 184
         }
185 185
     }
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
         $code = 200;
199 199
         list($return, $total, $pages) = $this->getList();
200 200
         $message = null;
201
-        if(!$total) {
201
+        if (!$total) {
202 202
             $message = _('No se han encontrado elementos para la búsqueda');
203 203
         }
204 204
 
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
         $pages = 1;
225 225
         $message = null;
226 226
         list($code, $return) = $this->getSingleResult($pk);
227
-        if($code !== 200) {
227
+        if ($code !== 200) {
228 228
             $message = _('No se ha encontrado el elemento solicitado');
229 229
         }
230 230
 
@@ -253,11 +253,11 @@  discard block
 block discarded – undo
253 253
                 $status = 200;
254 254
                 $saved = TRUE;
255 255
                 $model = $this->model->toArray();
256
-            } else {
256
+            }else {
257 257
                 $message = _('No se ha podido guardar el modelo seleccionado');
258 258
             }
259
-        } catch (\Exception $e) {
260
-            $message = _('Ha ocurrido un error intentando guardar el elemento: ') .'<br>'. $e->getMessage();
259
+        }catch (\Exception $e) {
260
+            $message = _('Ha ocurrido un error intentando guardar el elemento: ').'<br>'.$e->getMessage();
261 261
             Logger::log($e->getMessage(), LOG_ERR);
262 262
         }
263 263
 
@@ -291,14 +291,14 @@  discard block
 block discarded – undo
291 291
                     $updated = TRUE;
292 292
                     $status = 200;
293 293
                     $model = $this->model->toArray();
294
-                } else {
294
+                }else {
295 295
                     $message = _('Ha ocurrido un error intentando actualizar el elemento, por favor revisa los logs');
296 296
                 }
297
-            } catch (\Exception $e) {
297
+            }catch (\Exception $e) {
298 298
                 $message = $e->getMessage();
299 299
                 Logger::getInstance(get_class($this->model))->errorLog($e->getMessage());
300 300
             }
301
-        } else {
301
+        }else {
302 302
             $message = _('No se ha encontrado el modelo al que se hace referencia para actualizar');
303 303
         }
304 304
 
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
                     $this->model->delete($this->con);
329 329
                     $deleted = TRUE;
330 330
                 }
331
-            } catch (\Exception $e) {
331
+            }catch (\Exception $e) {
332 332
                 $message = _('Ha ocurrido un error intentando eliminar el elemento, por favor verifica que no tenga otros elementos relacionados');
333 333
                 Logger::getInstance(get_class($this->model))->errorLog($e->getMessage());
334 334
             }
@@ -356,7 +356,7 @@  discard block
 block discarded – undo
356 356
             $this->saveBulk();
357 357
             $saved = true;
358 358
             $status = 200;
359
-        } catch(\Exception $e) {
359
+        }catch (\Exception $e) {
360 360
             Logger::log($e->getMessage(), LOG_ERR, $this->getRequest()->getData());
361 361
             $message = _('Bulk insert rolled back');
362 362
         }
@@ -388,8 +388,8 @@  discard block
 block discarded – undo
388 388
                 $total = $this->list->getNbResults();
389 389
                 $pages = $this->list->getLastPage();
390 390
             }
391
-        } catch (\Exception $e) {
392
-            Logger::log(get_class($this) . ': ' . $e->getMessage(), LOG_ERR);
391
+        }catch (\Exception $e) {
392
+            Logger::log(get_class($this).': '.$e->getMessage(), LOG_ERR);
393 393
         }
394 394
 
395 395
         return array($return, $total, $pages);
@@ -407,7 +407,7 @@  discard block
 block discarded – undo
407 407
         $return = array();
408 408
         if (NULL === $model || !method_exists($model, 'toArray')) {
409 409
             $code = 404;
410
-        } else {
410
+        }else {
411 411
             $return = $model->toArray();
412 412
         }
413 413
 
Please login to merge, or discard this patch.
src/base/types/helpers/DocumentorHelper.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      * @param $object
48 48
      * @param $paths
49 49
      * @param $url
50
-     * @param $method
50
+     * @param string $method
51 51
      * @param $dtos
52 52
      * @return array
53 53
      */
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      * Translator from php types to swagger types
85 85
      * @param string $format
86 86
      *
87
-     * @return array
87
+     * @return string[]
88 88
      */
89 89
     public static function translateSwaggerFormats($format)
90 90
     {
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -27,10 +27,10 @@  discard block
 block discarded – undo
27 27
         ];
28 28
         if ($endpoint['payload']['is_array']) {
29 29
             $schema['items'] = [
30
-                '$ref' => '#/definitions/' . $endpoint['payload']['type'],
30
+                '$ref' => '#/definitions/'.$endpoint['payload']['type'],
31 31
             ];
32
-        } else {
33
-            $schema['$ref'] = '#/definitions/' . $endpoint['payload']['type'];
32
+        }else {
33
+            $schema['$ref'] = '#/definitions/'.$endpoint['payload']['type'];
34 34
         }
35 35
         $paths[$url][$method]['parameters'][] = [
36 36
             'in' => 'body',
@@ -58,13 +58,13 @@  discard block
 block discarded – undo
58 58
             if (array_key_exists('data', $endpoint['return']) && count(array_keys($object)) === count(array_keys($endpoint['return']['data']))) {
59 59
                 $classDefinition = [
60 60
                     'type' => 'object',
61
-                    '$ref' => '#/definitions/' . $class,
61
+                    '$ref' => '#/definitions/'.$class,
62 62
                 ];
63
-            } else {
63
+            }else {
64 64
                 $classDefinition = [
65 65
                     'type' => 'array',
66 66
                     'items' => [
67
-                        '$ref' => '#/definitions/' . $class,
67
+                        '$ref' => '#/definitions/'.$class,
68 68
                     ],
69 69
                 ];
70 70
             }
Please login to merge, or discard this patch.