@@ -212,7 +212,9 @@ discard block |
||
212 | 212 | */ |
213 | 213 | public function redirect($url = null) |
214 | 214 | { |
215 | - if (null === $url) $url = $this->getServer('HTTP_ORIGIN'); |
|
215 | + if (null === $url) { |
|
216 | + $url = $this->getServer('HTTP_ORIGIN'); |
|
217 | + } |
|
216 | 218 | ob_start(); |
217 | 219 | header('Location: ' . $url); |
218 | 220 | ob_end_clean(); |
@@ -259,7 +261,9 @@ discard block |
||
259 | 261 | $host = $this->getServerName(); |
260 | 262 | $protocol = $protocol ? $this->getProtocol() : ''; |
261 | 263 | $url = ''; |
262 | - if (!empty($host) && !empty($protocol)) $url = $protocol . $host; |
|
264 | + if (!empty($host) && !empty($protocol)) { |
|
265 | + $url = $protocol . $host; |
|
266 | + } |
|
263 | 267 | if (!in_array($this->getServer('SERVER_PORT'), [80, 443])) { |
264 | 268 | $url .= ':' . $this->getServer('SERVER_PORT'); |
265 | 269 | } |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | /** |
56 | 56 | * Método que verifica si existe una cabecera concreta |
57 | - * @param $header |
|
57 | + * @param string $header |
|
58 | 58 | * |
59 | 59 | * @return boolean |
60 | 60 | */ |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | * |
176 | 176 | * @param string $queryParams |
177 | 177 | * |
178 | - * @return mixed |
|
178 | + * @return string |
|
179 | 179 | */ |
180 | 180 | public function getQuery($queryParams) |
181 | 181 | { |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | */ |
113 | 113 | public static function header($name, $default = null) |
114 | 114 | { |
115 | - return self::getInstance()->getHeader($name, $default); |
|
115 | + return self::getInstance()->getHeader($name, $default); |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | /** |
@@ -125,8 +125,8 @@ discard block |
||
125 | 125 | $header = null; |
126 | 126 | if ($this->hasHeader($name)) { |
127 | 127 | $header = $this->header[$name]; |
128 | - } else if(array_key_exists('h_' . strtolower($name), $this->query)) { |
|
129 | - $header = $this->query['h_' . strtolower($name)]; |
|
128 | + }else if (array_key_exists('h_'.strtolower($name), $this->query)) { |
|
129 | + $header = $this->query['h_'.strtolower($name)]; |
|
130 | 130 | } |
131 | 131 | return $header ?: $default; |
132 | 132 | } |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | { |
225 | 225 | if (null === $url) $url = $this->getServer('HTTP_ORIGIN'); |
226 | 226 | ob_start(); |
227 | - header('Location: ' . $url); |
|
227 | + header('Location: '.$url); |
|
228 | 228 | ob_end_clean(); |
229 | 229 | Security::getInstance()->updateSession(); |
230 | 230 | exit(_("Redireccionando...")); |
@@ -269,9 +269,9 @@ discard block |
||
269 | 269 | $host = $this->getServerName(); |
270 | 270 | $protocol = $protocol ? $this->getProtocol() : ''; |
271 | 271 | $url = ''; |
272 | - if (!empty($host) && !empty($protocol)) $url = $protocol . $host; |
|
272 | + if (!empty($host) && !empty($protocol)) $url = $protocol.$host; |
|
273 | 273 | if (!in_array($this->getServer('SERVER_PORT'), [80, 443])) { |
274 | - $url .= ':' . $this->getServer('SERVER_PORT'); |
|
274 | + $url .= ':'.$this->getServer('SERVER_PORT'); |
|
275 | 275 | } |
276 | 276 | return $url; |
277 | 277 | } |
@@ -69,16 +69,16 @@ |
||
69 | 69 | if (!Request::getInstance()->isFile()) { |
70 | 70 | return $this->router->execute($this->actualUri); |
71 | 71 | } |
72 | - } else { |
|
72 | + }else { |
|
73 | 73 | return ConfigController::getInstance()->config(); |
74 | 74 | } |
75 | - } catch (AdminCredentialsException $a) { |
|
75 | + }catch (AdminCredentialsException $a) { |
|
76 | 76 | return UserController::showAdminManager(); |
77 | - } catch (SecurityException $s) { |
|
77 | + }catch (SecurityException $s) { |
|
78 | 78 | return $this->security->notAuthorized($this->actualUri); |
79 | - } catch (RouterException $r) { |
|
79 | + }catch (RouterException $r) { |
|
80 | 80 | return $this->router->httpNotFound($r); |
81 | - } catch (\Exception $e) { |
|
81 | + }catch (\Exception $e) { |
|
82 | 82 | return $this->dumpException($e); |
83 | 83 | } |
84 | 84 | } |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | */ |
8 | 8 | class FileHelper { |
9 | 9 | /** |
10 | - * @param mixed $data |
|
10 | + * @param string $data |
|
11 | 11 | * @param string $path |
12 | 12 | * @return int |
13 | 13 | */ |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | |
18 | 18 | /** |
19 | 19 | * @param string $path |
20 | - * @return mixed|bool |
|
20 | + * @return string|false |
|
21 | 21 | */ |
22 | 22 | public static function readFile($path) { |
23 | 23 | $data = false; |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | */ |
22 | 22 | public static function readFile($path) { |
23 | 23 | $data = false; |
24 | - if(file_exists($path)) { |
|
24 | + if (file_exists($path)) { |
|
25 | 25 | $data = file_get_contents($path); |
26 | 26 | } |
27 | 27 | return $data; |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | * @return string |
35 | 35 | */ |
36 | 36 | public static function generateHashFilename($verb, $slug, array $query = []) { |
37 | - return sha1($verb . " " . $slug . " " . http_build_query($query)); |
|
37 | + return sha1($verb." ".$slug." ".http_build_query($query)); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | /** |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | public static function generateCachePath(array $action, array $query = []) { |
46 | 46 | $class = GeneratorHelper::extractClassFromNamespace($action['class']); |
47 | 47 | $filename = self::generateHashFilename($action["http"], $action["slug"], $query); |
48 | - $subPath = substr($filename, 0, 2) . DIRECTORY_SEPARATOR . substr($filename, 2, 2); |
|
49 | - return $action['module'] . DIRECTORY_SEPARATOR . $class . DIRECTORY_SEPARATOR . $action['method'] . DIRECTORY_SEPARATOR . $subPath . DIRECTORY_SEPARATOR; |
|
48 | + $subPath = substr($filename, 0, 2).DIRECTORY_SEPARATOR.substr($filename, 2, 2); |
|
49 | + return $action['module'].DIRECTORY_SEPARATOR.$class.DIRECTORY_SEPARATOR.$action['method'].DIRECTORY_SEPARATOR.$subPath.DIRECTORY_SEPARATOR; |
|
50 | 50 | } |
51 | 51 | } |
52 | 52 | \ No newline at end of file |
@@ -202,7 +202,7 @@ |
||
202 | 202 | |
203 | 203 | /** |
204 | 204 | * Método que fuerza la descarga de un fichero |
205 | - * @param $data |
|
205 | + * @param string $data |
|
206 | 206 | * @param string $content |
207 | 207 | * @param string $filename |
208 | 208 | * @return mixed |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | $this->setStatusCode(Template::STATUS_OK); |
121 | 121 | break; |
122 | 122 | default: |
123 | - $this->setStatusCode('HTTP/1.0 ' . $status ?: 200); |
|
123 | + $this->setStatusCode('HTTP/1.0 '.$status ?: 200); |
|
124 | 124 | break; |
125 | 125 | } |
126 | 126 | return $this; |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | ResponseHelper::setStatusHeader($this->getStatusCode()); |
139 | 139 | ResponseHelper::setAuthHeaders($this->isPublicZone()); |
140 | 140 | ResponseHelper::setCookieHeaders($cookies); |
141 | - header('Content-type: ' . $contentType); |
|
141 | + header('Content-type: '.$contentType); |
|
142 | 142 | |
143 | 143 | } |
144 | 144 | |
@@ -154,15 +154,15 @@ discard block |
||
154 | 154 | Logger::log('Start output response'); |
155 | 155 | ob_start(); |
156 | 156 | $this->setReponseHeaders($contentType, $cookies); |
157 | - header('Content-length: ' . strlen($output)); |
|
157 | + header('Content-length: '.strlen($output)); |
|
158 | 158 | |
159 | 159 | $needCache = Cache::needCache(); |
160 | 160 | if (false !== $needCache && $this->getStatusCode() === Template::STATUS_OK) { |
161 | 161 | $cache = Cache::getInstance(); |
162 | 162 | Logger::log('Saving output response into cache'); |
163 | 163 | list($path, $cacheDataName) = $cache->getRequestCacheHash(); |
164 | - $cache->storeData("json" . DIRECTORY_SEPARATOR . $path . $cacheDataName, $output); |
|
165 | - $cache->storeData("json" . DIRECTORY_SEPARATOR . $path . $cacheDataName . ".headers", headers_list(), Cache::JSON); |
|
164 | + $cache->storeData("json".DIRECTORY_SEPARATOR.$path.$cacheDataName, $output); |
|
165 | + $cache->storeData("json".DIRECTORY_SEPARATOR.$path.$cacheDataName.".headers", headers_list(), Cache::JSON); |
|
166 | 166 | } |
167 | 167 | echo $output; |
168 | 168 | |
@@ -180,11 +180,11 @@ discard block |
||
180 | 180 | Logger::log('Close template render'); |
181 | 181 | $uri = Request::requestUri(); |
182 | 182 | Security::getInstance()->setSessionKey("lastRequest", array( |
183 | - "url" => Request::getInstance()->getRootUrl() . $uri, |
|
183 | + "url" => Request::getInstance()->getRootUrl().$uri, |
|
184 | 184 | "ts" => microtime(true), |
185 | 185 | )); |
186 | 186 | Security::getInstance()->updateSession(); |
187 | - Logger::log('End request: ' . $uri, LOG_INFO); |
|
187 | + Logger::log('End request: '.$uri, LOG_INFO); |
|
188 | 188 | exit; |
189 | 189 | } |
190 | 190 | |
@@ -222,17 +222,17 @@ discard block |
||
222 | 222 | ///////////////////////////////////////////////////////////// |
223 | 223 | // Date in the past sets the value to already have been expired. |
224 | 224 | header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); |
225 | - header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT'); |
|
225 | + header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); |
|
226 | 226 | header('Cache-Control: no-store, no-cache, must-revalidate'); // HTTP/1.1 |
227 | 227 | header('Cache-Control: pre-check=0, post-check=0, max-age=0'); // HTTP/1.1 |
228 | 228 | header("Pragma: no-cache"); |
229 | 229 | header("Expires: 0"); |
230 | 230 | header('Content-Transfer-Encoding: binary'); |
231 | - header("Content-type: " . $content); |
|
232 | - header("Content-length: " . strlen($data)); |
|
233 | - header('Content-Disposition: attachment; filename="' . $filename . '"'); |
|
231 | + header("Content-type: ".$content); |
|
232 | + header("Content-length: ".strlen($data)); |
|
233 | + header('Content-Disposition: attachment; filename="'.$filename.'"'); |
|
234 | 234 | header("Access-Control-Expose-Headers: Filename"); |
235 | - header("Filename: " . $filename); |
|
235 | + header("Filename: ".$filename); |
|
236 | 236 | echo $data; |
237 | 237 | ob_flush(); |
238 | 238 | ob_end_clean(); |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | $download = $this->getRequest()->get('download') ?: false; |
34 | 34 | |
35 | 35 | $module = $this->srv->getModules($domain); |
36 | - if(empty($module)) { |
|
36 | + if (empty($module)) { |
|
37 | 37 | return Router::getInstance()->httpNotFound(null, true); |
38 | 38 | } |
39 | 39 | switch (strtolower($type)) { |
@@ -53,11 +53,11 @@ discard block |
||
53 | 53 | ini_restore('max_execution_time'); |
54 | 54 | ini_restore('memory_limit'); |
55 | 55 | |
56 | - if($download && $type === ApiController::SWAGGER_DOC) { |
|
56 | + if ($download && $type === ApiController::SWAGGER_DOC) { |
|
57 | 57 | return $this->download(\GuzzleHttp\json_encode($doc), 'application/json', 'swagger.json'); |
58 | - } elseif($type === ApiController::HTML_DOC) { |
|
58 | + } elseif ($type === ApiController::HTML_DOC) { |
|
59 | 59 | return $this->render('documentation.html.twig', ["data" => json_encode($doc)]); |
60 | - } else { |
|
60 | + }else { |
|
61 | 61 | return $this->json($doc, 200); |
62 | 62 | } |
63 | 63 | } |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | $dump = ''; |
112 | 112 | try { |
113 | 113 | $dump = $this->tpl->render($tpl, $vars); |
114 | - } catch (\Exception $e) { |
|
114 | + }catch (\Exception $e) { |
|
115 | 115 | Logger::log($e->getMessage(), LOG_ERR); |
116 | 116 | } |
117 | 117 | return $dump; |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | public function regenerateTemplates() |
139 | 139 | { |
140 | 140 | $this->generateTemplatesCache(); |
141 | - $domains = Cache::getInstance()->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . "domains.json", Cache::JSON, true); |
|
141 | + $domains = Cache::getInstance()->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR."domains.json", Cache::JSON, true); |
|
142 | 142 | $translations = []; |
143 | 143 | if (is_array($domains)) { |
144 | 144 | $translations = $this->parsePathTranslations($domains); |
@@ -160,8 +160,8 @@ discard block |
||
160 | 160 | // force compilation |
161 | 161 | if ($file->isFile()) { |
162 | 162 | try { |
163 | - $this->tpl->load(str_replace($tplDir . '/', '', $file)); |
|
164 | - } catch (\Exception $e) { |
|
163 | + $this->tpl->load(str_replace($tplDir.'/', '', $file)); |
|
164 | + }catch (\Exception $e) { |
|
165 | 165 | Logger::log($e->getMessage(), LOG_ERR, ['file' => $e->getFile(), 'line' => $e->getLine()]); |
166 | 166 | } |
167 | 167 | } |
@@ -221,7 +221,7 @@ discard block |
||
221 | 221 | 'existsFlash' => TemplateFunctions::EXISTS_FLASH_FUNCTION, |
222 | 222 | 'getFlash' => TemplateFunctions::GET_FLASH_FUNCTION, |
223 | 223 | ]; |
224 | - foreach($functions as $name => $function) { |
|
224 | + foreach ($functions as $name => $function) { |
|
225 | 225 | $this->addTemplateFunction($name, $function); |
226 | 226 | } |
227 | 227 | } |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | */ |
241 | 241 | private function loadDomains() |
242 | 242 | { |
243 | - $domains = Cache::getInstance()->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'domains.json', Cache::JSON, true); |
|
243 | + $domains = Cache::getInstance()->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR.'domains.json', Cache::JSON, true); |
|
244 | 244 | if (null !== $domains) { |
245 | 245 | foreach ($domains as $domain => $paths) { |
246 | 246 | $this->addPath($paths['template'], preg_replace('/(@|\/)/', '', $domain)); |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | { |
256 | 256 | $loader = new \Twig_Loader_Filesystem(GeneratorHelper::getTemplatePath()); |
257 | 257 | $this->tpl = new \Twig_Environment($loader, array( |
258 | - 'cache' => CACHE_DIR . DIRECTORY_SEPARATOR . 'twig', |
|
258 | + 'cache' => CACHE_DIR.DIRECTORY_SEPARATOR.'twig', |
|
259 | 259 | 'debug' => (bool)$this->debug, |
260 | 260 | 'auto_reload' => Config::getParam('twig.autoreload', TRUE), |
261 | 261 | )); |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | $translations = array(); |
25 | 25 | if (file_exists($absoluteTranslationFileName)) { |
26 | 26 | @include($absoluteTranslationFileName); |
27 | - } else { |
|
27 | + }else { |
|
28 | 28 | Cache::getInstance()->storeData($absoluteTranslationFileName, "<?php \$translations = array();\n", Cache::TEXT, TRUE); |
29 | 29 | } |
30 | 30 | |
@@ -36,13 +36,13 @@ discard block |
||
36 | 36 | */ |
37 | 37 | public static function setLocale() { |
38 | 38 | $locale = Config::getParam("default.language", 'es_ES'); |
39 | - Logger::log('Set locale to project [' . $locale . ']'); |
|
39 | + Logger::log('Set locale to project ['.$locale.']'); |
|
40 | 40 | // Load translations |
41 | - putenv("LC_ALL=" . $locale); |
|
41 | + putenv("LC_ALL=".$locale); |
|
42 | 42 | setlocale(LC_ALL, $locale); |
43 | 43 | // Load the locale path |
44 | - $locale_path = BASE_DIR . DIRECTORY_SEPARATOR . 'locale'; |
|
45 | - Logger::log('Set locale dir ' . $locale_path); |
|
44 | + $locale_path = BASE_DIR.DIRECTORY_SEPARATOR.'locale'; |
|
45 | + Logger::log('Set locale dir '.$locale_path); |
|
46 | 46 | GeneratorHelper::createDir($locale_path); |
47 | 47 | bindtextdomain('translations', $locale_path); |
48 | 48 | textdomain('translations'); |
@@ -54,17 +54,17 @@ discard block |
||
54 | 54 | * @return string |
55 | 55 | */ |
56 | 56 | public static function utf8Encode($data) { |
57 | - if(is_array($data)) { |
|
58 | - foreach($data as $key => &$field) { |
|
57 | + if (is_array($data)) { |
|
58 | + foreach ($data as $key => &$field) { |
|
59 | 59 | $field = self::utf8Encode($field); |
60 | 60 | } |
61 | - } elseif(is_object($data)) { |
|
61 | + } elseif (is_object($data)) { |
|
62 | 62 | $properties = get_class_vars($data); |
63 | - foreach($properties as $property => $value) { |
|
63 | + foreach ($properties as $property => $value) { |
|
64 | 64 | $data->$property = self::utf8Encode($data->$property); |
65 | 65 | } |
66 | 66 | |
67 | - } elseif(is_string($data)) { |
|
67 | + } elseif (is_string($data)) { |
|
68 | 68 | $data = utf8_encode($data); |
69 | 69 | } |
70 | 70 | return $data; |
@@ -19,12 +19,12 @@ |
||
19 | 19 | */ |
20 | 20 | public function json($response, $statusCode = 200) |
21 | 21 | { |
22 | - if(Config::getParam('json.encodeUTF8', false)) { |
|
22 | + if (Config::getParam('json.encodeUTF8', false)) { |
|
23 | 23 | $response = I18nHelper::utf8Encode($response); |
24 | 24 | } |
25 | 25 | $data = json_encode($response, JSON_UNESCAPED_UNICODE | JSON_NUMERIC_CHECK); |
26 | - if(Config::getParam('angular.protection', false)) { |
|
27 | - $data = ")]}',\n" . $data; |
|
26 | + if (Config::getParam('angular.protection', false)) { |
|
27 | + $data = ")]}',\n".$data; |
|
28 | 28 | } |
29 | 29 | $this->setStatus($statusCode); |
30 | 30 | return $this->output($data, "application/json"); |
@@ -33,7 +33,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 | } |
@@ -432,10 +432,10 @@ discard block |
||
432 | 432 | foreach ($urls as $source) { |
433 | 433 | $orig = self::calculateResourcePathname($filename_path, $source); |
434 | 434 | $orig_part = preg_split("/Public/i", $orig); |
435 | - $dest = WEB_DIR . $orig_part[1]; |
|
435 | + $dest = WEB_DIR.$orig_part[1]; |
|
436 | 436 | GeneratorHelper::createDir(dirname($dest)); |
437 | 437 | if (@copy($orig, $dest) === false) { |
438 | - throw new ConfigException("Can't copy " . $orig . " to " . $dest); |
|
438 | + throw new ConfigException("Can't copy ".$orig." to ".$dest); |
|
439 | 439 | } |
440 | 440 | } |
441 | 441 | } |