@@ -48,10 +48,10 @@ discard block |
||
48 | 48 | */ |
49 | 49 | public static function staticAdminLogon($route = null) |
50 | 50 | { |
51 | - if (file_exists(CONFIG_DIR . DIRECTORY_SEPARATOR . 'admins.json')) { |
|
51 | + if (file_exists(CONFIG_DIR.DIRECTORY_SEPARATOR.'admins.json')) { |
|
52 | 52 | if ('login' !== Config::getInstance()->get('admin_login')) { |
53 | 53 | return AdminServices::getInstance()->setAdminHeaders(); |
54 | - } else { |
|
54 | + }else { |
|
55 | 55 | $form = new LoginForm(); |
56 | 56 | $form->setData(array("route" => $route)); |
57 | 57 | $form->build(); |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | 'form' => $form, |
62 | 62 | )); |
63 | 63 | } |
64 | - } else { |
|
64 | + }else { |
|
65 | 65 | return UserController::showAdminManager(); |
66 | 66 | } |
67 | 67 | } |
@@ -4,7 +4,6 @@ |
||
4 | 4 | |
5 | 5 | use PSFS\base\config\Config; |
6 | 6 | use PSFS\base\config\LoginForm; |
7 | -use PSFS\base\Router; |
|
8 | 7 | use PSFS\base\Template; |
9 | 8 | use PSFS\base\types\AuthAdminController; |
10 | 9 | use PSFS\controller\UserController; |
@@ -144,7 +144,7 @@ |
||
144 | 144 | * @param string $path |
145 | 145 | * @param $domains |
146 | 146 | * |
147 | - * @return mixed |
|
147 | + * @return string |
|
148 | 148 | */ |
149 | 149 | private static function extractPathname($path, $domains) |
150 | 150 | { |
@@ -39,12 +39,12 @@ discard block |
||
39 | 39 | |
40 | 40 | $file_path = ""; |
41 | 41 | if (!file_exists($file_path)) { |
42 | - $file_path = BASE_DIR . $string; |
|
42 | + $file_path = BASE_DIR.$string; |
|
43 | 43 | } |
44 | 44 | $filename_path = AssetsParser::findDomainPath($string, $file_path); |
45 | 45 | |
46 | 46 | $file_path = self::processAsset($string, $name, $return, $filename_path); |
47 | - $return_path = (empty($name)) ? Request::getInstance()->getRootUrl() . '/' . $file_path : $name; |
|
47 | + $return_path = (empty($name)) ? Request::getInstance()->getRootUrl().'/'.$file_path : $name; |
|
48 | 48 | return ($return) ? $return_path : ''; |
49 | 49 | } |
50 | 50 | |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | $router = Router::getInstance(); |
62 | 62 | try { |
63 | 63 | return $router->getRoute($path, $absolute, $params); |
64 | - } catch (\Exception $e) { |
|
64 | + }catch (\Exception $e) { |
|
65 | 65 | return $router->getRoute('', $absolute, $params); |
66 | 66 | } |
67 | 67 | } |
@@ -187,8 +187,8 @@ discard block |
||
187 | 187 | private static function putResourceContent($name, $filename_path, $base, $file_path) |
188 | 188 | { |
189 | 189 | $data = file_get_contents($filename_path); |
190 | - if (!empty($name)) file_put_contents(WEB_DIR . DIRECTORY_SEPARATOR . $name, $data); |
|
191 | - else file_put_contents($base . $file_path, $data); |
|
190 | + if (!empty($name)) file_put_contents(WEB_DIR.DIRECTORY_SEPARATOR.$name, $data); |
|
191 | + else file_put_contents($base.$file_path, $data); |
|
192 | 192 | } |
193 | 193 | |
194 | 194 | /** |
@@ -206,9 +206,9 @@ discard block |
||
206 | 206 | if (file_exists($filename_path)) { |
207 | 207 | list($base, $html_base, $file_path) = AssetsParser::calculateAssetPath($string, $name, $return, $filename_path); |
208 | 208 | //Creamos el directorio si no existe |
209 | - GeneratorHelper::createDir($base . $html_base); |
|
209 | + GeneratorHelper::createDir($base.$html_base); |
|
210 | 210 | //Si se ha modificado |
211 | - if (!file_exists($base . $file_path) || filemtime($base . $file_path) < filemtime($filename_path)) { |
|
211 | + if (!file_exists($base.$file_path) || filemtime($base.$file_path) < filemtime($filename_path)) { |
|
212 | 212 | if ($html_base == 'css') { |
213 | 213 | self::processCssLines($filename_path); |
214 | 214 | } |
@@ -187,8 +187,11 @@ |
||
187 | 187 | private static function putResourceContent($name, $filename_path, $base, $file_path) |
188 | 188 | { |
189 | 189 | $data = file_get_contents($filename_path); |
190 | - if (!empty($name)) file_put_contents(WEB_DIR . DIRECTORY_SEPARATOR . $name, $data); |
|
191 | - else file_put_contents($base . $file_path, $data); |
|
190 | + if (!empty($name)) { |
|
191 | + file_put_contents(WEB_DIR . DIRECTORY_SEPARATOR . $name, $data); |
|
192 | + } else { |
|
193 | + file_put_contents($base . $file_path, $data); |
|
194 | + } |
|
192 | 195 | } |
193 | 196 | |
194 | 197 | /** |
@@ -48,6 +48,9 @@ discard block |
||
48 | 48 | return $this; |
49 | 49 | } |
50 | 50 | |
51 | + /** |
|
52 | + * @param string|null $action |
|
53 | + */ |
|
51 | 54 | public function setAction($action) |
52 | 55 | { |
53 | 56 | $this->action = $action; |
@@ -562,7 +565,7 @@ discard block |
||
562 | 565 | } |
563 | 566 | |
564 | 567 | /** |
565 | - * @param $token_field |
|
568 | + * @param string $token_field |
|
566 | 569 | * @return bool |
567 | 570 | */ |
568 | 571 | protected function existsFormToken($token_field) |
@@ -594,7 +597,7 @@ discard block |
||
594 | 597 | /** |
595 | 598 | * Método que extrae el valor de un campo del formulario del modelo |
596 | 599 | * @param $field |
597 | - * @param $value |
|
600 | + * @param ObjectCollection $value |
|
598 | 601 | * @param $type |
599 | 602 | * @return mixed |
600 | 603 | */ |
@@ -69,8 +69,8 @@ discard block |
||
69 | 69 | public function add($name, array $value = array()) |
70 | 70 | { |
71 | 71 | $this->fields[$name] = $value; |
72 | - $this->fields[$name]['name'] = $this->getName() . "[{$name}]"; |
|
73 | - $this->fields[$name]['id'] = $this->getName() . '_' . $name; |
|
72 | + $this->fields[$name]['name'] = $this->getName()."[{$name}]"; |
|
73 | + $this->fields[$name]['id'] = $this->getName().'_'.$name; |
|
74 | 74 | $this->fields[$name]['placeholder'] = (array_key_exists('placeholder', $value)) ? $value['placeholder'] : $name; |
75 | 75 | $this->fields[$name]['hasLabel'] = (array_key_exists('hasLabel', $value)) ? $value['hasLabel'] : true; |
76 | 76 | return $this; |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | } |
134 | 134 | if ('' !== $hash_orig) { |
135 | 135 | $this->crfs = sha1($hash_orig); |
136 | - $this->add($this->getName() . '_token', array( |
|
136 | + $this->add($this->getName().'_token', array( |
|
137 | 137 | "type" => "hidden", |
138 | 138 | "value" => $this->crfs, |
139 | 139 | )); |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | public function isValid() |
203 | 203 | { |
204 | 204 | $valid = true; |
205 | - $token_field = $this->getName() . '_token'; |
|
205 | + $token_field = $this->getName().'_token'; |
|
206 | 206 | //Controlamos CSRF token |
207 | 207 | if (!$this->existsFormToken($token_field)) { |
208 | 208 | $this->errors[$token_field] = _('Formulario no válido'); |
@@ -274,7 +274,7 @@ discard block |
||
274 | 274 | $data = array(); |
275 | 275 | if (count($this->fields) > 0) { |
276 | 276 | foreach ($this->fields as $key => $field) { |
277 | - if (self::SEPARATOR !== $key && $key !== ($this->getName() . "_token")) { |
|
277 | + if (self::SEPARATOR !== $key && $key !== ($this->getName()."_token")) { |
|
278 | 278 | $data[$key] = (array_key_exists('value', $field)) ? $field["value"] : null; |
279 | 279 | } |
280 | 280 | } |
@@ -389,8 +389,8 @@ discard block |
||
389 | 389 | $model = $this->getHydratedModel(); |
390 | 390 | $model->save(); |
391 | 391 | $save = true; |
392 | - Logger::getInstance()->infoLog(get_class($this->model) . " guardado con id " . $this->model->getPrimaryKey()); |
|
393 | - } catch (\Exception $e) { |
|
392 | + Logger::getInstance()->infoLog(get_class($this->model)." guardado con id ".$this->model->getPrimaryKey()); |
|
393 | + }catch (\Exception $e) { |
|
394 | 394 | Logger::getInstance()->errorLog($e->getMessage()); |
395 | 395 | throw new FormException($e->getMessage(), $e->getCode(), $e); |
396 | 396 | } |
@@ -409,10 +409,10 @@ discard block |
||
409 | 409 | if (null === $value) { |
410 | 410 | $isEmpty = true; |
411 | 411 | // Empty Array check |
412 | - } else if (is_array($value) && 0 === count($value)) { |
|
412 | + }else if (is_array($value) && 0 === count($value)) { |
|
413 | 413 | $isEmpty = true; |
414 | 414 | // Empty string check |
415 | - } else if (0 === strlen(preg_replace('/(\ |\r|\n)/m', '', $value))) { |
|
415 | + }else if (0 === strlen(preg_replace('/(\ |\r|\n)/m', '', $value))) { |
|
416 | 416 | $isEmpty = true; |
417 | 417 | } |
418 | 418 | |
@@ -439,7 +439,7 @@ discard block |
||
439 | 439 | && array_key_exists($key, $field) |
440 | 440 | && !array_key_exists('error', $field[$key]) |
441 | 441 | && !empty($field["value"]) |
442 | - && preg_match('/' . $field['pattern'] . '/', $field['value']) === 0 |
|
442 | + && preg_match('/'.$field['pattern'].'/', $field['value']) === 0 |
|
443 | 443 | ) { |
444 | 444 | $this->setError($key, str_replace('%s', "<strong>{$key}</strong>", _("El campo %s no tiene un formato válido"))); |
445 | 445 | $field["error"] = $this->getError($key); |
@@ -461,10 +461,10 @@ discard block |
||
461 | 461 | if (array_key_exists($key, $data[$form_name])) { |
462 | 462 | if (preg_match("/id/i", $key) && ($data[$form_name][$key] === 0 || $data[$form_name][$key] === "%" || $data[$form_name][$key] === "")) { |
463 | 463 | $field["value"] = null; |
464 | - } else { |
|
464 | + }else { |
|
465 | 465 | $field["value"] = $data[$form_name][$key]; |
466 | 466 | } |
467 | - } else { |
|
467 | + }else { |
|
468 | 468 | unset($field["value"]); |
469 | 469 | } |
470 | 470 | return array($data, $field); |
@@ -478,8 +478,8 @@ discard block |
||
478 | 478 | */ |
479 | 479 | private function hydrateModelField($key, $value) |
480 | 480 | { |
481 | - $setter = "set" . ucfirst($key); |
|
482 | - $getter = "get" . ucfirst($key); |
|
481 | + $setter = "set".ucfirst($key); |
|
482 | + $getter = "get".ucfirst($key); |
|
483 | 483 | if (method_exists($this->model, $setter)) { |
484 | 484 | if (method_exists($this->model, $getter)) { |
485 | 485 | $tmp = $this->model->$getter(); |
@@ -504,16 +504,16 @@ discard block |
||
504 | 504 | { |
505 | 505 | //Extraemos el dato del modelo relacionado si existe el getter |
506 | 506 | $method = null; |
507 | - if (array_key_exists('class_data', $field) && method_exists($val, "get" . $field["class_data"])) { |
|
508 | - $class_method = "get" . $field["class_data"]; |
|
507 | + if (array_key_exists('class_data', $field) && method_exists($val, "get".$field["class_data"])) { |
|
508 | + $class_method = "get".$field["class_data"]; |
|
509 | 509 | $class = $val->$class_method(); |
510 | - if (array_key_exists('class_id', $field) && method_exists($class, "get" . $field["class_id"])) { |
|
511 | - $method = "get" . $field["class_id"]; |
|
510 | + if (array_key_exists('class_id', $field) && method_exists($class, "get".$field["class_id"])) { |
|
511 | + $method = "get".$field["class_id"]; |
|
512 | 512 | $data[] = $class->$method(); |
513 | - } else { |
|
513 | + }else { |
|
514 | 514 | $data[] = $class->getPrimaryKey(); |
515 | 515 | } |
516 | - } else { |
|
516 | + }else { |
|
517 | 517 | $data[] = $val; |
518 | 518 | } |
519 | 519 | |
@@ -529,7 +529,7 @@ discard block |
||
529 | 529 | private function extractModelFieldValue($key, $field) |
530 | 530 | { |
531 | 531 | //Extraemos el valor del campo del modelo |
532 | - $method = "get" . ucfirst($key); |
|
532 | + $method = "get".ucfirst($key); |
|
533 | 533 | $type = (array_key_exists('type', $field)) ? $field["type"] : "text"; |
534 | 534 | //Extraemos los campos del modelo |
535 | 535 | if (method_exists($this->model, $method)) { |
@@ -539,16 +539,16 @@ discard block |
||
539 | 539 | //Si es una relación múltiple |
540 | 540 | if ($value instanceof ObjectCollection) { |
541 | 541 | $field = $this->computeModelFieldValue($field, $value, $type); |
542 | - } else { //O una relación unitaria |
|
542 | + }else { //O una relación unitaria |
|
543 | 543 | if (method_exists($value, "__toString")) { |
544 | 544 | $field["value"] = $value; |
545 | 545 | } elseif ($value instanceof \DateTime) { |
546 | 546 | $field["value"] = $value->format("Y-m-d H:i:s"); |
547 | - } else { |
|
547 | + }else { |
|
548 | 548 | $field["value"] = $value->getPrimaryKey(); |
549 | 549 | } |
550 | 550 | } |
551 | - } else { |
|
551 | + }else { |
|
552 | 552 | $field["value"] = $value; |
553 | 553 | } |
554 | 554 | } |
@@ -212,7 +212,9 @@ |
||
212 | 212 | //Validamos los campos del formulario |
213 | 213 | if ($valid && count($this->fields) > 0) { |
214 | 214 | foreach ($this->fields as $key => &$field) { |
215 | - if ($key === $token_field || $key === self::SEPARATOR) continue; |
|
215 | + if ($key === $token_field || $key === self::SEPARATOR) { |
|
216 | + continue; |
|
217 | + } |
|
216 | 218 | list($field, $valid) = $this->checkFieldValidation($field, $key); |
217 | 219 | } |
218 | 220 | } |
@@ -8,7 +8,13 @@ |
||
8 | 8 | */ |
9 | 9 | interface ControllerInterface |
10 | 10 | { |
11 | + /** |
|
12 | + * @return string|null |
|
13 | + */ |
|
11 | 14 | public function render($template, array $vars = [], $cookies = []); |
12 | 15 | |
16 | + /** |
|
17 | + * @return void |
|
18 | + */ |
|
13 | 19 | public function response($response, $type = 'text/html'); |
14 | 20 | } |
@@ -4,7 +4,6 @@ |
||
4 | 4 | use PSFS\base\config\Config; |
5 | 5 | use PSFS\base\Security; |
6 | 6 | use PSFS\base\Service; |
7 | -use PSFS\controller\Admin; |
|
8 | 7 | use Symfony\Component\Finder\Finder; |
9 | 8 | |
10 | 9 | class AdminServices extends Service |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | { |
35 | 35 | $platform = trim(Config::getInstance()->get("platform_name")); |
36 | 36 | header('HTTP/1.1 401 Unauthorized'); |
37 | - header('WWW-Authenticate: Basic Realm="' . $platform . '"'); |
|
37 | + header('WWW-Authenticate: Basic Realm="'.$platform.'"'); |
|
38 | 38 | echo _("Zona restringida"); |
39 | 39 | exit(); |
40 | 40 | } |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | $admin['class'] = 'primary'; |
76 | 76 | break; |
77 | 77 | } |
78 | - } else { |
|
78 | + }else { |
|
79 | 79 | $admin["class"] = "primary"; |
80 | 80 | } |
81 | 81 | } |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | $logs = array(); |
93 | 93 | /** @var \SplFileInfo $file */ |
94 | 94 | foreach ($files as $file) { |
95 | - $size = $file->getSize() / 8 / 1024; |
|
95 | + $size = $file->getSize()/8/1024; |
|
96 | 96 | $time = date("c", $file->getMTime()); |
97 | 97 | $dateTime = new \DateTime($time); |
98 | 98 | if (!isset($logs[$dateTime->format("Y")])) $logs[$dateTime->format("Y")] = array(); |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | $time = date("c", $file->getMTime()); |
129 | 129 | $dateTime = new \DateTime($time); |
130 | 130 | $monthOpen = $dateTime->format("m"); |
131 | - $content = file($file->getPath() . DIRECTORY_SEPARATOR . $file->getFilename()); |
|
131 | + $content = file($file->getPath().DIRECTORY_SEPARATOR.$file->getFilename()); |
|
132 | 132 | krsort($content); |
133 | 133 | $detailLog = array(); |
134 | 134 | foreach ($content as &$line) { |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | break; |
182 | 182 | } |
183 | 183 | |
184 | - } catch (\Exception $e) { |
|
184 | + }catch (\Exception $e) { |
|
185 | 185 | $detail = array( |
186 | 186 | "type" => "danger", |
187 | 187 | ); |
@@ -61,11 +61,13 @@ discard block |
||
61 | 61 | */ |
62 | 62 | private function parseAdmins(&$admins) |
63 | 63 | { |
64 | - if (!empty($admins)) foreach ($admins as &$admin) { |
|
64 | + if (!empty($admins)) { |
|
65 | + foreach ($admins as &$admin) { |
|
65 | 66 | if (isset($admin["profile"])) { |
66 | 67 | switch ($admin["profile"]) { |
67 | 68 | case Security::MANAGER_ID_TOKEN: |
68 | 69 | $admin['class'] = 'warning'; |
70 | + } |
|
69 | 71 | break; |
70 | 72 | case Security::ADMIN_ID_TOKEN: |
71 | 73 | $admin['class'] = 'info'; |
@@ -95,7 +97,9 @@ discard block |
||
95 | 97 | $size = $file->getSize() / 8 / 1024; |
96 | 98 | $time = date("c", $file->getMTime()); |
97 | 99 | $dateTime = new \DateTime($time); |
98 | - if (!isset($logs[$dateTime->format("Y")])) $logs[$dateTime->format("Y")] = array(); |
|
100 | + if (!isset($logs[$dateTime->format("Y")])) { |
|
101 | + $logs[$dateTime->format("Y")] = array(); |
|
102 | + } |
|
99 | 103 | $logs[$dateTime->format("Y")][$dateTime->format("m")][$time] = array( |
100 | 104 | "filename" => $file->getFilename(), |
101 | 105 | "size" => round($size, 3) |
@@ -136,7 +140,9 @@ discard block |
||
136 | 140 | $detailLog[] = array_merge(array( |
137 | 141 | "log" => $line, |
138 | 142 | ), $detail); |
139 | - if (count($detailLog) >= 1000) break; |
|
143 | + if (count($detailLog) >= 1000) { |
|
144 | + break; |
|
145 | + } |
|
140 | 146 | } |
141 | 147 | $log = $detailLog; |
142 | 148 | } |
@@ -160,7 +166,9 @@ discard block |
||
160 | 166 | |
161 | 167 | $detail = json_decode($match[0][0], TRUE); |
162 | 168 | } |
163 | - if (empty($detail)) $detail = array(); |
|
169 | + if (empty($detail)) { |
|
170 | + $detail = array(); |
|
171 | + } |
|
164 | 172 | preg_match_all('/\>\ (.*):/i', $line, $match); |
165 | 173 | |
166 | 174 | $type = (isset($match[1][0])) ? $match[1][0] : ''; |
@@ -360,7 +360,7 @@ |
||
360 | 360 | * Translator from php types to swagger types |
361 | 361 | * @param string $format |
362 | 362 | * |
363 | - * @return array |
|
363 | + * @return string[] |
|
364 | 364 | */ |
365 | 365 | public static function translateSwaggerFormats($format) |
366 | 366 | { |
@@ -55,10 +55,10 @@ discard block |
||
55 | 55 | if (!preg_match('/^ROOT/i', $module) && $module == $requestModule) { |
56 | 56 | $modules = [ |
57 | 57 | 'name' => $module, |
58 | - 'path' => realpath($info['template'] . DIRECTORY_SEPARATOR . '..'), |
|
58 | + 'path' => realpath($info['template'].DIRECTORY_SEPARATOR.'..'), |
|
59 | 59 | ]; |
60 | 60 | } |
61 | - } catch (\Exception $e) { |
|
61 | + }catch (\Exception $e) { |
|
62 | 62 | $modules[] = $e->getMessage(); |
63 | 63 | } |
64 | 64 | } |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | */ |
77 | 77 | public function extractApiEndpoints(array $module) |
78 | 78 | { |
79 | - $module_path = $module['path'] . DIRECTORY_SEPARATOR . 'Api'; |
|
79 | + $module_path = $module['path'].DIRECTORY_SEPARATOR.'Api'; |
|
80 | 80 | $module_name = $module['name']; |
81 | 81 | $endpoints = []; |
82 | 82 | if (file_exists($module_path)) { |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | if (count($finder)) { |
86 | 86 | /** @var \SplFileInfo $file */ |
87 | 87 | foreach ($finder as $file) { |
88 | - $namespace = "\\{$module_name}\\Api\\" . str_replace('.php', '', $file->getFilename()); |
|
88 | + $namespace = "\\{$module_name}\\Api\\".str_replace('.php', '', $file->getFilename()); |
|
89 | 89 | $info = $this->extractApiInfo($namespace, $module_name); |
90 | 90 | if (!empty($info)) { |
91 | 91 | $endpoints[$namespace] = $info; |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | if (NULL !== $mInfo) { |
115 | 115 | $info[] = $mInfo; |
116 | 116 | } |
117 | - } catch (\Exception $e) { |
|
117 | + }catch (\Exception $e) { |
|
118 | 118 | Logger::getInstance()->errorLog($e->getMessage()); |
119 | 119 | } |
120 | 120 | } |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | $payload = $this->extractModelFields($namespace); |
242 | 242 | $reflector = new \ReflectionClass($namespace); |
243 | 243 | $namespace = $reflector->getShortName(); |
244 | - } else { |
|
244 | + }else { |
|
245 | 245 | $namespace = $model; |
246 | 246 | } |
247 | 247 | |
@@ -333,7 +333,7 @@ discard block |
||
333 | 333 | } elseif (null !== $reflector && $reflector->isSubclassOf(self::DTO_INTERFACE)) { |
334 | 334 | $payload = $this->extractDtoProperties($namespace); |
335 | 335 | } |
336 | - } catch (\Exception $e) { |
|
336 | + }catch (\Exception $e) { |
|
337 | 337 | Logger::getInstance()->errorLog($e->getMessage()); |
338 | 338 | } |
339 | 339 | |
@@ -364,7 +364,7 @@ discard block |
||
364 | 364 | $return = $this->extractReturn($modelNamespace, $docComments); |
365 | 365 | $url = array_pop($route); |
366 | 366 | $methodInfo = [ |
367 | - 'url' => str_replace("/" . $module . "/api", '', $url), |
|
367 | + 'url' => str_replace("/".$module."/api", '', $url), |
|
368 | 368 | 'method' => $info['http'], |
369 | 369 | 'description' => $info['label'], |
370 | 370 | 'return' => $return, |
@@ -375,7 +375,7 @@ discard block |
||
375 | 375 | $this->setRequestParams($method, $methodInfo, $modelNamespace, $docComments); |
376 | 376 | $this->setQueryParams($method, $methodInfo); |
377 | 377 | $this->setRequestHeaders($reflection, $methodInfo); |
378 | - } catch (\Exception $e) { |
|
378 | + }catch (\Exception $e) { |
|
379 | 379 | Logger::getInstance()->errorLog($e->getMessage()); |
380 | 380 | } |
381 | 381 | } |
@@ -524,10 +524,10 @@ discard block |
||
524 | 524 | $formatted = [ |
525 | 525 | "swagger" => "2.0", |
526 | 526 | "host" => preg_replace('/^(http|https)\:\/\/(.*)\/$/i', '$2', Router::getInstance()->getRoute('', true)), |
527 | - "basePath" => '/' . $module['name'] . '/api', |
|
527 | + "basePath" => '/'.$module['name'].'/api', |
|
528 | 528 | "schemes" => [Request::getInstance()->getServer('HTTPS') == 'on' ? "https" : "http"], |
529 | 529 | "info" => [ |
530 | - "title" => _('Documentación API módulo ') . $module['name'], |
|
530 | + "title" => _('Documentación API módulo ').$module['name'], |
|
531 | 531 | "version" => Config::getParam('api.version', '1.0'), |
532 | 532 | "contact" => [ |
533 | 533 | "name" => Config::getParam("author", "Fran López"), |
@@ -540,7 +540,7 @@ discard block |
||
540 | 540 | foreach ($endpoints as $model) { |
541 | 541 | foreach ($model as $endpoint) { |
542 | 542 | if (!preg_match('/^\/(admin|api)\//i', $endpoint['url']) && strlen($endpoint['url'])) { |
543 | - $url = preg_replace('/\/' . $module['name'] . '\/api/i', '', $endpoint['url']); |
|
543 | + $url = preg_replace('/\/'.$module['name'].'\/api/i', '', $endpoint['url']); |
|
544 | 544 | $description = $endpoint['description']; |
545 | 545 | $method = strtolower($endpoint['method']); |
546 | 546 | $paths[$url][$method] = [ |
@@ -575,16 +575,16 @@ discard block |
||
575 | 575 | foreach ($endpoint['objects'] as $name => $object) { |
576 | 576 | if (class_exists($name)) { |
577 | 577 | $class = GeneratorHelper::extractClassFromNamespace($name); |
578 | - if(array_key_exists('data', $endpoint['return']) && count(array_keys($object)) === count(array_keys($endpoint['return']['data']))) { |
|
578 | + if (array_key_exists('data', $endpoint['return']) && count(array_keys($object)) === count(array_keys($endpoint['return']['data']))) { |
|
579 | 579 | $classDefinition = [ |
580 | 580 | 'type' => 'object', |
581 | - '$ref' => '#/definitions/' . $class, |
|
581 | + '$ref' => '#/definitions/'.$class, |
|
582 | 582 | ]; |
583 | - } else { |
|
583 | + }else { |
|
584 | 584 | $classDefinition = [ |
585 | 585 | 'type' => 'array', |
586 | 586 | 'items' => [ |
587 | - '$ref' => '#/definitions/' . $class, |
|
587 | + '$ref' => '#/definitions/'.$class, |
|
588 | 588 | ], |
589 | 589 | ]; |
590 | 590 | } |
@@ -602,7 +602,7 @@ discard block |
||
602 | 602 | 'required' => true, |
603 | 603 | 'schema' => [ |
604 | 604 | 'type' => 'object', |
605 | - '$ref' => '#/definitions/' . $endpoint['payload']['type'], |
|
605 | + '$ref' => '#/definitions/'.$endpoint['payload']['type'], |
|
606 | 606 | ], |
607 | 607 | ]; |
608 | 608 | } |
@@ -629,7 +629,7 @@ discard block |
||
629 | 629 | protected function extractDtoName($dto, $isArray = false) |
630 | 630 | { |
631 | 631 | $dto = explode('\\', $dto); |
632 | - $modelDto = array_pop($dto) . "Dto"; |
|
632 | + $modelDto = array_pop($dto)."Dto"; |
|
633 | 633 | if ($isArray) { |
634 | 634 | $modelDto .= "List"; |
635 | 635 | } |
@@ -679,10 +679,10 @@ discard block |
||
679 | 679 | { |
680 | 680 | |
681 | 681 | $methodInfo['headers'] = []; |
682 | - foreach($reflection->getProperties() as $property) { |
|
682 | + foreach ($reflection->getProperties() as $property) { |
|
683 | 683 | $doc = $property->getDocComment(); |
684 | 684 | preg_match('/@header\ (.*)\n/i', $doc, $headers); |
685 | - if(count($headers)) { |
|
685 | + if (count($headers)) { |
|
686 | 686 | $header = [ |
687 | 687 | "name" => $headers[1], |
688 | 688 | "in" => "header", |
@@ -694,13 +694,13 @@ discard block |
||
694 | 694 | |
695 | 695 | // Extract description |
696 | 696 | preg_match('/@label\ (.*)\n/i', $doc, $label); |
697 | - if(count($label)) { |
|
697 | + if (count($label)) { |
|
698 | 698 | $header['description'] = _($label[1]); |
699 | 699 | } |
700 | 700 | |
701 | 701 | // Extract default value |
702 | 702 | preg_match('/@default\ (.*)\n/i', $doc, $default); |
703 | - if(count($default)) { |
|
703 | + if (count($default)) { |
|
704 | 704 | $header['default'] = $default[1]; |
705 | 705 | } |
706 | 706 | $methodInfo['headers'][] = $header; |
@@ -730,7 +730,7 @@ discard block |
||
730 | 730 | foreach ($method->getParameters() as $parameter) { |
731 | 731 | $parameterName = $parameter->getName(); |
732 | 732 | $types = []; |
733 | - preg_match_all('/\@param\ (.*)\ \$' . $parameterName . '$/im', $docComments, $types); |
|
733 | + preg_match_all('/\@param\ (.*)\ \$'.$parameterName.'$/im', $docComments, $types); |
|
734 | 734 | if (count($types) > 1) { |
735 | 735 | $methodInfo['parameters'][$parameterName] = $types[1][0]; |
736 | 736 | } |
@@ -37,7 +37,7 @@ |
||
37 | 37 | )) |
38 | 38 | ->addButton('submit', _("Acceder como {{username}}")) |
39 | 39 | ->addButton("cancel", _("Cancelar"), "button", array( |
40 | - "onclick" => "javacript:location.href = \"" . Router::getInstance()->getRoute('') . "\";", |
|
40 | + "onclick" => "javacript:location.href = \"".Router::getInstance()->getRoute('')."\";", |
|
41 | 41 | "class" => "btn-link", |
42 | 42 | )); |
43 | 43 | } |
@@ -62,7 +62,7 @@ |
||
62 | 62 | { |
63 | 63 | if (preg_match('/^asc$/i', $direction)) { |
64 | 64 | return Order::ASC; |
65 | - } else { |
|
65 | + }else { |
|
66 | 66 | return Order::DESC; |
67 | 67 | } |
68 | 68 | } |
@@ -26,13 +26,13 @@ |
||
26 | 26 | { |
27 | 27 | $namespace = explode('\\', $this->getModelTableMap()); |
28 | 28 | $module = strtolower($namespace[0]); |
29 | - $secret = Config::getInstance()->get($module . '.api.secret'); |
|
29 | + $secret = Config::getInstance()->get($module.'.api.secret'); |
|
30 | 30 | if (NULL === $secret) { |
31 | 31 | $secret = Config::getInstance()->get("api.secret"); |
32 | 32 | } |
33 | 33 | if (NULL === $secret) { |
34 | 34 | $auth = TRUE; |
35 | - } else { |
|
35 | + }else { |
|
36 | 36 | $token = Request::getInstance()->getHeader('X-API-SEC-TOKEN'); |
37 | 37 | if (array_key_exists('API_TOKEN', $this->query)) { |
38 | 38 | $token = $this->query['API_TOKEN']; |