@@ -34,7 +34,7 @@ |
||
34 | 34 | "Auth" => _("Requiere autenticación de usuario"), |
35 | 35 | "AuthAdmin" => _("Requiere autenticación de administrador"), |
36 | 36 | ); |
37 | - if(Config::getParam('psfs.auth')) { |
|
37 | + if (Config::getParam('psfs.auth')) { |
|
38 | 38 | $controllerTypes['SessionAuthApi'] = _('Requiere autenticación usando PSFS AUTH'); |
39 | 39 | } |
40 | 40 | $this->add('module', array( |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | { |
32 | 32 | $routes = []; |
33 | 33 | foreach ($systemRoutes as $route => $params) { |
34 | - if(isset($params['http']) && 'GET' === $params['http'] && preg_match('/^\/admin(\/|$)/', $params['default'])) { |
|
34 | + if (isset($params['http']) && 'GET' === $params['http'] && preg_match('/^\/admin(\/|$)/', $params['default'])) { |
|
35 | 35 | $module = strtoupper($params['module']); |
36 | 36 | $mode = $params["visible"] ? 'visible' : 'hidden'; |
37 | 37 | $routes[$module][$mode][] = [ |
@@ -41,11 +41,11 @@ discard block |
||
41 | 41 | ]; |
42 | 42 | } |
43 | 43 | } |
44 | - foreach($routes as $module => &$route) { |
|
45 | - if(array_key_exists('visible', $route)) { |
|
44 | + foreach ($routes as $module => &$route) { |
|
45 | + if (array_key_exists('visible', $route)) { |
|
46 | 46 | uasort($route["visible"], '\PSFS\base\types\helpers\AdminHelper::sortByLabel'); |
47 | 47 | } |
48 | - if(array_key_exists('hidden', $route)) { |
|
48 | + if (array_key_exists('hidden', $route)) { |
|
49 | 49 | uasort($route["hidden"], '\PSFS\base\types\helpers\AdminHelper::sortByLabel'); |
50 | 50 | } |
51 | 51 | } |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | */ |
31 | 31 | public function generateModule() |
32 | 32 | { |
33 | - Logger::log("Arranque generador de módulos al solicitar " . $this->getRequest()->getRequestUri()); |
|
33 | + Logger::log("Arranque generador de módulos al solicitar ".$this->getRequest()->getRequestUri()); |
|
34 | 34 | /* @var $form \PSFS\base\config\ConfigForm */ |
35 | 35 | $form = new ModuleForm(); |
36 | 36 | $form->build(); |
@@ -61,8 +61,8 @@ discard block |
||
61 | 61 | $this->gen->createStructureModule($module, false, $type, $apiClass); |
62 | 62 | Security::getInstance()->setFlash("callback_message", str_replace("%s", $module, _("Módulo %s generado correctamente"))); |
63 | 63 | Security::getInstance()->setFlash("callback_route", $this->getRoute("admin-module", true)); |
64 | - } catch (\Exception $e) { |
|
65 | - Logger::getInstance()->infoLog($e->getMessage() . " [" . $e->getFile() . ":" . $e->getLine() . "]"); |
|
64 | + }catch (\Exception $e) { |
|
65 | + Logger::getInstance()->infoLog($e->getMessage()." [".$e->getFile().":".$e->getLine()."]"); |
|
66 | 66 | Security::getInstance()->setFlash("callback_message", $e->getMessage()); |
67 | 67 | } |
68 | 68 | } |
@@ -19,10 +19,10 @@ discard block |
||
19 | 19 | $objects = scandir($dir); |
20 | 20 | foreach ($objects as $object) { |
21 | 21 | if ($object != "." && $object != "..") { |
22 | - if (filetype($dir . "/" . $object) == "dir") { |
|
23 | - self::deleteDir($dir . "/" . $object); |
|
24 | - } else { |
|
25 | - unlink($dir . "/" . $object); |
|
22 | + if (filetype($dir."/".$object) == "dir") { |
|
23 | + self::deleteDir($dir."/".$object); |
|
24 | + }else { |
|
25 | + unlink($dir."/".$object); |
|
26 | 26 | } |
27 | 27 | } |
28 | 28 | } |
@@ -38,10 +38,10 @@ discard block |
||
38 | 38 | { |
39 | 39 | $rootDirs = array("css", "js", "media", "font"); |
40 | 40 | foreach ($rootDirs as $dir) { |
41 | - if (file_exists(WEB_DIR . DIRECTORY_SEPARATOR . $dir)) { |
|
41 | + if (file_exists(WEB_DIR.DIRECTORY_SEPARATOR.$dir)) { |
|
42 | 42 | try { |
43 | - self::deleteDir(WEB_DIR . DIRECTORY_SEPARATOR . $dir); |
|
44 | - } catch (\Exception $e) { |
|
43 | + self::deleteDir(WEB_DIR.DIRECTORY_SEPARATOR.$dir); |
|
44 | + }catch (\Exception $e) { |
|
45 | 45 | Logger::log($e->getMessage()); |
46 | 46 | } |
47 | 47 | } |
@@ -57,12 +57,12 @@ discard block |
||
57 | 57 | { |
58 | 58 | try { |
59 | 59 | if (!is_dir($dir) && @mkdir($dir, 0775, true) === false) { |
60 | - throw new \Exception(_('Can\'t create directory ') . $dir); |
|
60 | + throw new \Exception(_('Can\'t create directory ').$dir); |
|
61 | 61 | } |
62 | - } catch (\Exception $e) { |
|
62 | + }catch (\Exception $e) { |
|
63 | 63 | Logger::log($e->getMessage(), LOG_WARNING); |
64 | 64 | if (!file_exists(dirname($dir))) { |
65 | - throw new GeneratorException($e->getMessage() . $dir); |
|
65 | + throw new GeneratorException($e->getMessage().$dir); |
|
66 | 66 | } |
67 | 67 | } |
68 | 68 | } |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | */ |
74 | 74 | public static function getTemplatePath() |
75 | 75 | { |
76 | - $path = __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'templates' . DIRECTORY_SEPARATOR; |
|
76 | + $path = __DIR__.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'templates'.DIRECTORY_SEPARATOR; |
|
77 | 77 | return realpath($path); |
78 | 78 | } |
79 | 79 | |
@@ -91,15 +91,15 @@ discard block |
||
91 | 91 | * @throws GeneratorException |
92 | 92 | */ |
93 | 93 | public static function checkCustomNamespaceApi($namespace) { |
94 | - if(!empty($namespace)) { |
|
95 | - if(class_exists($namespace)) { |
|
94 | + if (!empty($namespace)) { |
|
95 | + if (class_exists($namespace)) { |
|
96 | 96 | $reflector = new \ReflectionClass($namespace); |
97 | - if(!$reflector->isSubclassOf(\PSFS\base\types\Api::class)) { |
|
97 | + if (!$reflector->isSubclassOf(\PSFS\base\types\Api::class)) { |
|
98 | 98 | throw new GeneratorException(_('La clase definida debe extender de PSFS\\\base\\\types\\\Api'), 501); |
99 | - } elseif(!$reflector->isAbstract()) { |
|
99 | + } elseif (!$reflector->isAbstract()) { |
|
100 | 100 | throw new GeneratorException(_('La clase definida debe ser abstracta'), 501); |
101 | 101 | } |
102 | - } else { |
|
102 | + }else { |
|
103 | 103 | throw new GeneratorException(_('La clase definida para extender la API no existe'), 501); |
104 | 104 | } |
105 | 105 | } |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | |
147 | 147 | /** |
148 | 148 | * Método que guarda en fichero los datos pasados |
149 | - * @param $path |
|
149 | + * @param string $path |
|
150 | 150 | * @param $data |
151 | 151 | * @param int $transform |
152 | 152 | * @param boolean $absolute |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | |
202 | 202 | /** |
203 | 203 | * Método estático que revisa si se necesita cachear la respuesta de un servicio o no |
204 | - * @return integer|boolean |
|
204 | + * @return integer |
|
205 | 205 | */ |
206 | 206 | public static function needCache() |
207 | 207 | { |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | { |
46 | 46 | GeneratorHelper::createDir(dirname($path)); |
47 | 47 | if (false === FileHelper::writeFile($path, $data)) { |
48 | - throw new ConfigException(_('No se tienen los permisos suficientes para escribir en el fichero ') . $path); |
|
48 | + throw new ConfigException(_('No se tienen los permisos suficientes para escribir en el fichero ').$path); |
|
49 | 49 | } |
50 | 50 | } |
51 | 51 | |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | public function getDataFromFile($path, $transform = Cache::TEXT, $absolute = false) |
60 | 60 | { |
61 | 61 | $data = null; |
62 | - $absolutePath = ($absolute) ? $path : CACHE_DIR . DIRECTORY_SEPARATOR . $path; |
|
62 | + $absolutePath = ($absolute) ? $path : CACHE_DIR.DIRECTORY_SEPARATOR.$path; |
|
63 | 63 | if (file_exists($absolutePath)) { |
64 | 64 | $data = FileHelper::readFile($absolutePath); |
65 | 65 | } |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | */ |
76 | 76 | private function hasExpiredCache($path, $expires = 300, $absolute = false) |
77 | 77 | { |
78 | - $absolutePath = ($absolute) ? $path : CACHE_DIR . DIRECTORY_SEPARATOR . $path; |
|
78 | + $absolutePath = ($absolute) ? $path : CACHE_DIR.DIRECTORY_SEPARATOR.$path; |
|
79 | 79 | $lasModificationDate = filemtime($absolutePath); |
80 | 80 | return ($lasModificationDate + $expires <= time()); |
81 | 81 | } |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | public function storeData($path, $data, $transform = Cache::TEXT, $absolute = false, $expires = 600) |
142 | 142 | { |
143 | 143 | $data = Cache::transformData($data, $transform); |
144 | - $absolutePath = ($absolute) ? $path : CACHE_DIR . DIRECTORY_SEPARATOR . $path; |
|
144 | + $absolutePath = ($absolute) ? $path : CACHE_DIR.DIRECTORY_SEPARATOR.$path; |
|
145 | 145 | $this->saveTextToFile($data, $absolutePath); |
146 | 146 | } |
147 | 147 | |
@@ -156,11 +156,11 @@ discard block |
||
156 | 156 | public function readFromCache($path, $expires = 300, callable $function, $transform = Cache::TEXT) |
157 | 157 | { |
158 | 158 | $data = null; |
159 | - if (file_exists(CACHE_DIR . DIRECTORY_SEPARATOR . $path)) { |
|
159 | + if (file_exists(CACHE_DIR.DIRECTORY_SEPARATOR.$path)) { |
|
160 | 160 | if (null !== $function && $this->hasExpiredCache($path, $expires)) { |
161 | 161 | $data = call_user_func($function); |
162 | 162 | $this->storeData($path, $data, $transform, false, $expires); |
163 | - } else { |
|
163 | + }else { |
|
164 | 164 | $data = $this->getDataFromFile($path, $transform); |
165 | 165 | } |
166 | 166 | } |
@@ -202,9 +202,9 @@ discard block |
||
202 | 202 | $action = Security::getInstance()->getSessionKey("__CACHE__"); |
203 | 203 | if (null !== $action && $action["cache"] > 0) { |
204 | 204 | $class = GeneratorHelper::extractClassFromNamespace($action['class']); |
205 | - $filename = sha1($action["http"] . " " . $action["slug"]); |
|
206 | - $subPath = substr($filename, 0, 2) . DIRECTORY_SEPARATOR . substr($filename, 2, 2); |
|
207 | - $hashPath = $action['module'] . DIRECTORY_SEPARATOR . $class . DIRECTORY_SEPARATOR . $action['method'] . DIRECTORY_SEPARATOR . $subPath . DIRECTORY_SEPARATOR; |
|
205 | + $filename = sha1($action["http"]." ".$action["slug"]); |
|
206 | + $subPath = substr($filename, 0, 2).DIRECTORY_SEPARATOR.substr($filename, 2, 2); |
|
207 | + $hashPath = $action['module'].DIRECTORY_SEPARATOR.$class.DIRECTORY_SEPARATOR.$action['method'].DIRECTORY_SEPARATOR.$subPath.DIRECTORY_SEPARATOR; |
|
208 | 208 | } |
209 | 209 | return [$hashPath, $filename]; |
210 | 210 | } |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | */ |
75 | 75 | protected function init() |
76 | 76 | { |
77 | - if (file_exists(CONFIG_DIR . DIRECTORY_SEPARATOR . self::CONFIG_FILE)) { |
|
77 | + if (file_exists(CONFIG_DIR.DIRECTORY_SEPARATOR.self::CONFIG_FILE)) { |
|
78 | 78 | $this->loadConfigData(); |
79 | 79 | } |
80 | 80 | return $this; |
@@ -182,10 +182,10 @@ discard block |
||
182 | 182 | $final_data = array_filter($final_data, function($key, $value) { |
183 | 183 | return in_array($key, Config::$required) || !empty($value); |
184 | 184 | }, ARRAY_FILTER_USE_BOTH); |
185 | - $saved = (false !== file_put_contents(CONFIG_DIR . DIRECTORY_SEPARATOR . self::CONFIG_FILE, json_encode($final_data, JSON_PRETTY_PRINT))); |
|
185 | + $saved = (false !== file_put_contents(CONFIG_DIR.DIRECTORY_SEPARATOR.self::CONFIG_FILE, json_encode($final_data, JSON_PRETTY_PRINT))); |
|
186 | 186 | Config::getInstance()->loadConfigData(); |
187 | 187 | $saved = true; |
188 | - } catch (ConfigException $e) { |
|
188 | + }catch (ConfigException $e) { |
|
189 | 189 | Logger::log($e->getMessage(), LOG_ERR); |
190 | 190 | } |
191 | 191 | return $saved; |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | */ |
218 | 218 | public function loadConfigData() |
219 | 219 | { |
220 | - $this->config = json_decode(file_get_contents(CONFIG_DIR . DIRECTORY_SEPARATOR . self::CONFIG_FILE), true) ?: []; |
|
220 | + $this->config = json_decode(file_get_contents(CONFIG_DIR.DIRECTORY_SEPARATOR.self::CONFIG_FILE), true) ?: []; |
|
221 | 221 | $this->debug = (array_key_exists('debug', $this->config)) ? (bool)$this->config['debug'] : FALSE; |
222 | 222 | } |
223 | 223 |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | /** |
193 | 193 | * Method that returns a config value |
194 | 194 | * @param string $param |
195 | - * @param mixed $defaultValue |
|
195 | + * @param string $defaultValue |
|
196 | 196 | * |
197 | 197 | * @return mixed|null |
198 | 198 | */ |
@@ -230,7 +230,7 @@ discard block |
||
230 | 230 | /** |
231 | 231 | * Static wrapper for extracting params |
232 | 232 | * @param string $key |
233 | - * @param mixed|null $defaultValue |
|
233 | + * @param string|boolean $defaultValue |
|
234 | 234 | * @return mixed|null |
235 | 235 | */ |
236 | 236 | public static function getParam($key, $defaultValue = null) |
@@ -603,6 +603,9 @@ discard block |
||
603 | 603 | $this->con->useDebug($this->debug); |
604 | 604 | } |
605 | 605 | |
606 | + /** |
|
607 | + * @return string |
|
608 | + */ |
|
606 | 609 | private function getApi() |
607 | 610 | { |
608 | 611 | $model = explode("\\", $this->getModelNamespace()); |
@@ -610,6 +613,9 @@ discard block |
||
610 | 613 | return $model[count($model) - 1]; |
611 | 614 | } |
612 | 615 | |
616 | + /** |
|
617 | + * @return string |
|
618 | + */ |
|
613 | 619 | public function getDomain() |
614 | 620 | { |
615 | 621 | $model = explode("\\", $this->getModelNamespace()); |
@@ -14,12 +14,10 @@ |
||
14 | 14 | use PSFS\base\Request; |
15 | 15 | use PSFS\base\Router; |
16 | 16 | use PSFS\base\Singleton; |
17 | -use PSFS\base\Template; |
|
18 | 17 | use PSFS\base\types\helpers\ApiFormHelper; |
19 | 18 | use PSFS\base\types\helpers\ApiHelper; |
20 | 19 | use PSFS\base\types\traits\JsonTrait; |
21 | 20 | use PSFS\base\types\traits\RouteTrait; |
22 | -use PSFS\base\types\traits\SingletonTrait; |
|
23 | 21 | |
24 | 22 | /** |
25 | 23 | * Class Api |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | * |
187 | 187 | * @param ModelCriteria $query |
188 | 188 | */ |
189 | - private function addOrders(ModelCriteria &$query) |
|
189 | + private function addOrders(ModelCriteria & $query) |
|
190 | 190 | { |
191 | 191 | $orderAdded = FALSE; |
192 | 192 | $tableMap = $this->getTableMap(); |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | $orderAdded = TRUE; |
196 | 196 | if ($direction === Order::ASC) { |
197 | 197 | $query->addAscendingOrderByColumn($column->getPhpName()); |
198 | - } else { |
|
198 | + }else { |
|
199 | 199 | $query->addDescendingOrderByColumn($column->getPhpName()); |
200 | 200 | } |
201 | 201 | } |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | if (count($pks) == 1) { |
216 | 216 | $pks = array_keys($pks); |
217 | 217 | $this->extraColumns[$pks[0]] = self::API_MODEL_KEY_FIELD; |
218 | - } else { |
|
218 | + }else { |
|
219 | 219 | throw new ApiException(_('El modelo de la API no está debidamente mapeado, no hay Primary Key o es compuesta')); |
220 | 220 | } |
221 | 221 | } |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | } |
238 | 238 | if (null !== $column) { |
239 | 239 | $this->extraColumns[$column->getFullyQualifiedName()] = self::API_LIST_NAME_FIELD; |
240 | - } else { |
|
240 | + }else { |
|
241 | 241 | $this->addClassListName($tableMap); |
242 | 242 | } |
243 | 243 | } |
@@ -249,7 +249,7 @@ discard block |
||
249 | 249 | * |
250 | 250 | * @param ModelCriteria $query |
251 | 251 | */ |
252 | - private function addExtraColumns(ModelCriteria &$query) |
|
252 | + private function addExtraColumns(ModelCriteria & $query) |
|
253 | 253 | { |
254 | 254 | if (self::API_ACTION_LIST === $this->action) { |
255 | 255 | $this->addDefaultListField(); |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | * |
268 | 268 | * @param ModelCriteria $query |
269 | 269 | */ |
270 | - protected function joinTables(ModelCriteria &$query) |
|
270 | + protected function joinTables(ModelCriteria & $query) |
|
271 | 271 | { |
272 | 272 | //TODO for specific implementations |
273 | 273 | } |
@@ -289,14 +289,14 @@ discard block |
||
289 | 289 | * |
290 | 290 | * @param ModelCriteria $query |
291 | 291 | */ |
292 | - private function addFilters(ModelCriteria &$query) |
|
292 | + private function addFilters(ModelCriteria & $query) |
|
293 | 293 | { |
294 | 294 | if (count($this->query) > 0) { |
295 | 295 | $tableMap = $this->getTableMap(); |
296 | 296 | foreach ($this->query as $field => $value) { |
297 | 297 | if (self::API_COMBO_FIELD === $field) { |
298 | 298 | ApiHelper::composerComboField($tableMap, $query, $this->extraColumns, $value); |
299 | - } else { |
|
299 | + }else { |
|
300 | 300 | ApiHelper::addModelField($tableMap, $query, $field, $value); |
301 | 301 | } |
302 | 302 | } |
@@ -306,7 +306,7 @@ discard block |
||
306 | 306 | /** |
307 | 307 | * @param ModelCriteria $query |
308 | 308 | */ |
309 | - private function checkReturnFields(ModelCriteria &$query) |
|
309 | + private function checkReturnFields(ModelCriteria & $query) |
|
310 | 310 | { |
311 | 311 | $returnFields = $this->getRequest()->getQuery('__fields'); |
312 | 312 | if (null !== $returnFields) { |
@@ -342,10 +342,10 @@ discard block |
||
342 | 342 | list($page, $limit) = $this->extractPagination(); |
343 | 343 | if ($limit == -1) { |
344 | 344 | $this->list = $query->find($this->con); |
345 | - } else { |
|
345 | + }else { |
|
346 | 346 | $this->list = $query->paginate($page, $limit, $this->con); |
347 | 347 | } |
348 | - } catch (\Exception $e) { |
|
348 | + }catch (\Exception $e) { |
|
349 | 349 | Logger::log($e->getMessage(), LOG_ERR); |
350 | 350 | } |
351 | 351 | } |
@@ -362,7 +362,7 @@ discard block |
||
362 | 362 | $this->joinTables($query); |
363 | 363 | $this->addExtraColumns($query); |
364 | 364 | $this->model = $query->findPk($pk); |
365 | - } catch (\Exception $e) { |
|
365 | + }catch (\Exception $e) { |
|
366 | 366 | Logger::getInstance(get_class($this))->errorLog($e->getMessage()); |
367 | 367 | } |
368 | 368 | } |
@@ -453,8 +453,8 @@ discard block |
||
453 | 453 | $saved = TRUE; |
454 | 454 | $model = $this->model->toArray(); |
455 | 455 | } |
456 | - } catch (\Exception $e) { |
|
457 | - $model = _('Ha ocurrido un error intentando guardar el elemento: ') . $e->getMessage(); |
|
456 | + }catch (\Exception $e) { |
|
457 | + $model = _('Ha ocurrido un error intentando guardar el elemento: ').$e->getMessage(); |
|
458 | 458 | Logger::log($e->getMessage(), LOG_ERR); |
459 | 459 | } |
460 | 460 | |
@@ -484,7 +484,7 @@ discard block |
||
484 | 484 | $this->model->delete($this->con); |
485 | 485 | $deleted = TRUE; |
486 | 486 | } |
487 | - } catch (\Exception $e) { |
|
487 | + }catch (\Exception $e) { |
|
488 | 488 | $message = _('Ha ocurrido un error intentando eliminar el elemento, por favor verifica que no tenga otros elementos relacionados'); |
489 | 489 | Logger::getInstance(get_class($this->model))->errorLog($e->getMessage()); |
490 | 490 | } |
@@ -519,14 +519,14 @@ discard block |
||
519 | 519 | $updated = TRUE; |
520 | 520 | $status = 200; |
521 | 521 | $model = $this->model->toArray(); |
522 | - } else { |
|
522 | + }else { |
|
523 | 523 | $model = _('Ha ocurrido un error intentando actualizar el elemento, por favor revisa los logs'); |
524 | 524 | } |
525 | - } catch (\Exception $e) { |
|
525 | + }catch (\Exception $e) { |
|
526 | 526 | $model = $e->getMessage(); |
527 | 527 | Logger::getInstance(get_class($this->model))->errorLog($e->getMessage()); |
528 | 528 | } |
529 | - } else { |
|
529 | + }else { |
|
530 | 530 | $model = _('Ha ocurrido un error intentando actualizar el elemento, por favor revisa los logs'); |
531 | 531 | } |
532 | 532 | |
@@ -538,7 +538,7 @@ discard block |
||
538 | 538 | */ |
539 | 539 | private function extractQuery() |
540 | 540 | { |
541 | - $queryReflector = new \ReflectionClass($this->getModelNamespace() . "Query"); |
|
541 | + $queryReflector = new \ReflectionClass($this->getModelNamespace()."Query"); |
|
542 | 542 | /** @var \Propel\Runtime\ActiveQuery\ModelCriteria $query */ |
543 | 543 | $query = $queryReflector->getMethod('create')->invoke($this->con); |
544 | 544 | |
@@ -582,7 +582,7 @@ discard block |
||
582 | 582 | if (null !== $this->con && $this->con->inTransaction()) { |
583 | 583 | if ($status === 200) { |
584 | 584 | $this->con->commit(); |
585 | - } else { |
|
585 | + }else { |
|
586 | 586 | $this->con->rollBack(); |
587 | 587 | } |
588 | 588 | } |
@@ -634,8 +634,8 @@ discard block |
||
634 | 634 | "domain" => $this->getDomain(), |
635 | 635 | "listLabel" => self::API_LIST_NAME_FIELD, |
636 | 636 | 'modelId' => self::API_MODEL_KEY_FIELD, |
637 | - 'formUrl' => preg_replace('/\/\{(.*)\}$/i', '', $this->getRoute(strtolower('admin-api-form-' . $this->getDomain() . '-' . $this->getApi()), TRUE)), |
|
638 | - "url" => preg_replace('/\/\{(.*)\}$/i', '', $this->getRoute(strtolower($this->getDomain() . '-' . 'api-' . $this->getApi() . "-pk"), TRUE)), |
|
637 | + 'formUrl' => preg_replace('/\/\{(.*)\}$/i', '', $this->getRoute(strtolower('admin-api-form-'.$this->getDomain().'-'.$this->getApi()), TRUE)), |
|
638 | + "url" => preg_replace('/\/\{(.*)\}$/i', '', $this->getRoute(strtolower($this->getDomain().'-'.'api-'.$this->getApi()."-pk"), TRUE)), |
|
639 | 639 | ), [], ''); |
640 | 640 | } |
641 | 641 | |
@@ -675,7 +675,7 @@ discard block |
||
675 | 675 | $total = $this->list->getNbResults(); |
676 | 676 | $pages = $this->list->getLastPage(); |
677 | 677 | } |
678 | - } catch (\Exception $e) { |
|
678 | + }catch (\Exception $e) { |
|
679 | 679 | Logger::getInstance(get_class($this))->errorLog($e->getMessage()); |
680 | 680 | } |
681 | 681 | |
@@ -694,7 +694,7 @@ discard block |
||
694 | 694 | $return = array(); |
695 | 695 | if (NULL === $model && method_exists($model, 'toArray')) { |
696 | 696 | $code = 404; |
697 | - } else { |
|
697 | + }else { |
|
698 | 698 | $return = $model->toArray(); |
699 | 699 | } |
700 | 700 | |
@@ -709,9 +709,9 @@ discard block |
||
709 | 709 | $pks = ''; |
710 | 710 | $sep = ''; |
711 | 711 | foreach ($tableMap->getPrimaryKeys() as $pk) { |
712 | - $pks .= $sep . $pk->getFullyQualifiedName(); |
|
712 | + $pks .= $sep.$pk->getFullyQualifiedName(); |
|
713 | 713 | $sep = ', "|", '; |
714 | 714 | } |
715 | - $this->extraColumns['CONCAT("' . $tableMap->getPhpName() . ' #", ' . $pks . ')'] = self::API_LIST_NAME_FIELD; |
|
715 | + $this->extraColumns['CONCAT("'.$tableMap->getPhpName().' #", '.$pks.')'] = self::API_LIST_NAME_FIELD; |
|
716 | 716 | } |
717 | 717 | } |
@@ -17,11 +17,11 @@ |
||
17 | 17 | public static function checkApiActions($namespace, $domain, $api) { |
18 | 18 | $actions = []; |
19 | 19 | $reflector = new \ReflectionClass($namespace); |
20 | - if(null !== $reflector) { |
|
21 | - foreach($reflector->getMethods(\ReflectionMethod::IS_PUBLIC) as $apiAction) { |
|
20 | + if (null !== $reflector) { |
|
21 | + foreach ($reflector->getMethods(\ReflectionMethod::IS_PUBLIC) as $apiAction) { |
|
22 | 22 | $docComments = $apiAction->getDocComment(); |
23 | 23 | $action = self::extractAction($docComments); |
24 | - if(null !== $action) { |
|
24 | + if (null !== $action) { |
|
25 | 25 | list($route, $info) = RouterHelper::extractRouteInfo($apiAction, $api, $domain); |
26 | 26 | list($method, $cleanRoute) = RouterHelper::extractHttpRoute($route); |
27 | 27 | $formAction = new FormAction(); |
@@ -26,7 +26,7 @@ |
||
26 | 26 | $array['fields'][] = $field->__toArray(); |
27 | 27 | } |
28 | 28 | $array['actions'] = []; |
29 | - foreach($this->actions as $action) { |
|
29 | + foreach ($this->actions as $action) { |
|
30 | 30 | $array['actions'][] = $action->__toArray(); |
31 | 31 | } |
32 | 32 | return $array; |