@@ -56,10 +56,10 @@ discard block |
||
56 | 56 | if ($module === $requestModule && !preg_match('/^ROOT/i', $module)) { |
57 | 57 | $modules = [ |
58 | 58 | 'name' => $module, |
59 | - 'path' => dirname($info['base'] . DIRECTORY_SEPARATOR . '..'), |
|
59 | + 'path' => dirname($info['base'].DIRECTORY_SEPARATOR.'..'), |
|
60 | 60 | ]; |
61 | 61 | } |
62 | - } catch (\Exception $e) { |
|
62 | + }catch (\Exception $e) { |
|
63 | 63 | $modules[] = $e->getMessage(); |
64 | 64 | } |
65 | 65 | } |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | */ |
78 | 78 | public function extractApiEndpoints(array $module) |
79 | 79 | { |
80 | - $modulePath = $module['path'] . DIRECTORY_SEPARATOR . 'Api'; |
|
80 | + $modulePath = $module['path'].DIRECTORY_SEPARATOR.'Api'; |
|
81 | 81 | $moduleName = $module['name']; |
82 | 82 | $endpoints = []; |
83 | 83 | if (file_exists($modulePath)) { |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | if (count($finder)) { |
87 | 87 | /** @var \SplFileInfo $file */ |
88 | 88 | foreach ($finder as $file) { |
89 | - $namespace = "\\{$moduleName}\\Api\\" . str_replace('.php', '', $file->getFilename()); |
|
89 | + $namespace = "\\{$moduleName}\\Api\\".str_replace('.php', '', $file->getFilename()); |
|
90 | 90 | $info = $this->extractApiInfo($namespace, $moduleName); |
91 | 91 | if (!empty($info)) { |
92 | 92 | $endpoints[$namespace] = $info; |
@@ -109,14 +109,14 @@ discard block |
||
109 | 109 | if (Router::exists($namespace) && !I18nHelper::checkI18Class($namespace)) { |
110 | 110 | $reflection = new \ReflectionClass($namespace); |
111 | 111 | $visible = InjectorHelper::checkIsVisible($reflection->getDocComment()); |
112 | - if($visible) { |
|
112 | + if ($visible) { |
|
113 | 113 | foreach ($reflection->getMethods(\ReflectionMethod::IS_PUBLIC) as $method) { |
114 | 114 | try { |
115 | 115 | $mInfo = $this->extractMethodInfo($namespace, $method, $reflection, $module); |
116 | 116 | if (NULL !== $mInfo) { |
117 | 117 | $info[] = $mInfo; |
118 | 118 | } |
119 | - } catch (\Exception $e) { |
|
119 | + }catch (\Exception $e) { |
|
120 | 120 | Logger::log($e->getMessage(), LOG_ERR); |
121 | 121 | } |
122 | 122 | } |
@@ -249,7 +249,7 @@ discard block |
||
249 | 249 | $payload = $this->extractModelFields($namespace); |
250 | 250 | $reflector = new \ReflectionClass($namespace); |
251 | 251 | $shortName = $reflector->getShortName(); |
252 | - } else { |
|
252 | + }else { |
|
253 | 253 | $namespace = $model; |
254 | 254 | $shortName = $model; |
255 | 255 | } |
@@ -338,10 +338,10 @@ discard block |
||
338 | 338 | "required" => $field->isNotNull(), |
339 | 339 | 'format' => $format, |
340 | 340 | ]; |
341 | - if(count($field->getValueSet())) { |
|
341 | + if (count($field->getValueSet())) { |
|
342 | 342 | $info['enum'] = array_values($field->getValueSet()); |
343 | 343 | } |
344 | - if(null !== $field->getDefaultValue()) { |
|
344 | + if (null !== $field->getDefaultValue()) { |
|
345 | 345 | $info['default'] = $field->getDefaultValue(); |
346 | 346 | } |
347 | 347 | $payload[ApiHelper::getColumnMapName($field)] = $info; |
@@ -349,7 +349,7 @@ discard block |
||
349 | 349 | } elseif (null !== $reflector && $reflector->isSubclassOf(self::DTO_INTERFACE)) { |
350 | 350 | $payload = $this->extractDtoProperties($namespace); |
351 | 351 | } |
352 | - } catch (\Exception $e) { |
|
352 | + }catch (\Exception $e) { |
|
353 | 353 | Logger::log($e->getMessage(), LOG_ERR); |
354 | 354 | } |
355 | 355 | |
@@ -380,7 +380,7 @@ discard block |
||
380 | 380 | $return = $this->extractReturn($modelNamespace, $docComments); |
381 | 381 | $url = array_pop($route); |
382 | 382 | $methodInfo = [ |
383 | - 'url' => str_replace('/' . $module . '/api', '', $url), |
|
383 | + 'url' => str_replace('/'.$module.'/api', '', $url), |
|
384 | 384 | 'method' => $info['http'], |
385 | 385 | 'description' => $info['label'], |
386 | 386 | 'return' => $return, |
@@ -391,7 +391,7 @@ discard block |
||
391 | 391 | $this->setRequestParams($method, $methodInfo, $modelNamespace, $docComments); |
392 | 392 | $this->setQueryParams($method, $methodInfo); |
393 | 393 | $this->setRequestHeaders($reflection, $methodInfo); |
394 | - } catch (\Exception $e) { |
|
394 | + }catch (\Exception $e) { |
|
395 | 395 | Logger::log($e->getMessage(), LOG_ERR); |
396 | 396 | } |
397 | 397 | } |
@@ -460,10 +460,10 @@ discard block |
||
460 | 460 | $formatted = [ |
461 | 461 | "swagger" => "2.0", |
462 | 462 | "host" => preg_replace('/^(http|https)\:\/\/(.*)\/$/i', '$2', Router::getInstance()->getRoute('', true)), |
463 | - "basePath" => '/' . $module['name'] . '/api', |
|
463 | + "basePath" => '/'.$module['name'].'/api', |
|
464 | 464 | "schemes" => [Request::getInstance()->getServer('HTTPS') === 'on' ? 'https' : 'http'], |
465 | 465 | "info" => [ |
466 | - "title" => t('Documentación API módulo ') . $module['name'], |
|
466 | + "title" => t('Documentación API módulo ').$module['name'], |
|
467 | 467 | "version" => Config::getParam('api.version', '1.0.0'), |
468 | 468 | "contact" => [ |
469 | 469 | "name" => Config::getParam("author", "Fran López"), |
@@ -476,7 +476,7 @@ discard block |
||
476 | 476 | foreach ($endpoints as $model) { |
477 | 477 | foreach ($model as $endpoint) { |
478 | 478 | if (!preg_match('/^\/(admin|api)\//i', $endpoint['url']) && strlen($endpoint['url'])) { |
479 | - $url = preg_replace('/\/' . $module['name'] . '\/api/i', '', $endpoint['url']); |
|
479 | + $url = preg_replace('/\/'.$module['name'].'\/api/i', '', $endpoint['url']); |
|
480 | 480 | $description = $endpoint['description']; |
481 | 481 | $method = strtolower($endpoint['method']); |
482 | 482 | $paths[$url][$method] = [ |
@@ -537,7 +537,7 @@ discard block |
||
537 | 537 | protected function extractDtoName($dto, $isArray = false) |
538 | 538 | { |
539 | 539 | $dto = explode('\\', $dto); |
540 | - $modelDto = array_pop($dto) . "Dto"; |
|
540 | + $modelDto = array_pop($dto)."Dto"; |
|
541 | 541 | if ($isArray) { |
542 | 542 | $modelDto .= "List"; |
543 | 543 | } |
@@ -587,10 +587,10 @@ discard block |
||
587 | 587 | { |
588 | 588 | |
589 | 589 | $methodInfo['headers'] = []; |
590 | - foreach($reflection->getProperties() as $property) { |
|
590 | + foreach ($reflection->getProperties() as $property) { |
|
591 | 591 | $doc = $property->getDocComment(); |
592 | 592 | preg_match('/@header\ (.*)\n/i', $doc, $headers); |
593 | - if(count($headers)) { |
|
593 | + if (count($headers)) { |
|
594 | 594 | $header = [ |
595 | 595 | "name" => $headers[1], |
596 | 596 | "in" => "header", |
@@ -635,7 +635,7 @@ discard block |
||
635 | 635 | foreach ($method->getParameters() as $parameter) { |
636 | 636 | $parameterName = $parameter->getName(); |
637 | 637 | $types = []; |
638 | - preg_match_all('/\@param\ (.*)\ \$' . $parameterName . '$/im', $docComments, $types); |
|
638 | + preg_match_all('/\@param\ (.*)\ \$'.$parameterName.'$/im', $docComments, $types); |
|
639 | 639 | if (count($types) > 1 && count($types[1]) > 0) { |
640 | 640 | $methodInfo['parameters'][$parameterName] = $types[1][0]; |
641 | 641 | } |
@@ -657,21 +657,21 @@ discard block |
||
657 | 657 | $modelDto['objects'][$dtoName][$param] = [ |
658 | 658 | 'type' => 'array', |
659 | 659 | 'items' => [ |
660 | - '$ref' => '#/definitions/' . $info['type'], |
|
660 | + '$ref' => '#/definitions/'.$info['type'], |
|
661 | 661 | ] |
662 | 662 | ]; |
663 | - } else { |
|
663 | + }else { |
|
664 | 664 | $modelDto['objects'][$dtoName][$param] = [ |
665 | 665 | 'type' => 'object', |
666 | - '$ref' => '#/definitions/' . $info['type'], |
|
666 | + '$ref' => '#/definitions/'.$info['type'], |
|
667 | 667 | ]; |
668 | 668 | } |
669 | 669 | $modelDto['objects'][$info['class']] = $info['properties']; |
670 | 670 | $paramDto = $this->checkDtoAttributes($info['properties'], $info['properties'], $info['class']); |
671 | - if(array_key_exists('objects', $paramDto)) { |
|
671 | + if (array_key_exists('objects', $paramDto)) { |
|
672 | 672 | $modelDto['objects'] = array_merge($modelDto['objects'], $paramDto['objects']); |
673 | 673 | } |
674 | - } else { |
|
674 | + }else { |
|
675 | 675 | $modelDto['objects'][$dtoName][$param] = $info; |
676 | 676 | } |
677 | 677 | } |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | */ |
23 | 23 | public function __construct() |
24 | 24 | { |
25 | - Logger::log(static::class . ' constructor invoked'); |
|
25 | + Logger::log(static::class.' constructor invoked'); |
|
26 | 26 | $this->init(); |
27 | 27 | } |
28 | 28 | |
@@ -81,14 +81,14 @@ discard block |
||
81 | 81 | $calledClass = static::class; |
82 | 82 | try { |
83 | 83 | $instance = InjectorHelper::constructInyectableInstance($variable, $singleton, $classNameSpace, $calledClass); |
84 | - $setter = 'set' . ucfirst($variable); |
|
84 | + $setter = 'set'.ucfirst($variable); |
|
85 | 85 | if (method_exists($calledClass, $setter)) { |
86 | 86 | $this->$setter($instance); |
87 | - } else { |
|
87 | + }else { |
|
88 | 88 | $this->$variable = $instance; |
89 | 89 | } |
90 | - } catch (\Exception $e) { |
|
91 | - Logger::log($e->getMessage() . ': ' . $e->getFile() . ' [' . $e->getLine() . ']', LOG_ERR); |
|
90 | + }catch (\Exception $e) { |
|
91 | + Logger::log($e->getMessage().': '.$e->getFile().' ['.$e->getLine().']', LOG_ERR); |
|
92 | 92 | throw $e; |
93 | 93 | } |
94 | 94 | return $this; |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | { |
104 | 104 | if (!$this->isLoaded()) { |
105 | 105 | $filename = sha1(get_class($this)); |
106 | - $cacheFilename = 'reflections' . DIRECTORY_SEPARATOR . substr($filename, 0, 2) . DIRECTORY_SEPARATOR . substr($filename, 2, 2) . DIRECTORY_SEPARATOR . $filename . '.json'; |
|
106 | + $cacheFilename = 'reflections'.DIRECTORY_SEPARATOR.substr($filename, 0, 2).DIRECTORY_SEPARATOR.substr($filename, 2, 2).DIRECTORY_SEPARATOR.$filename.'.json'; |
|
107 | 107 | /** @var \PSFS\base\Cache $cacheService */ |
108 | 108 | $cacheService = Cache::getInstance(); |
109 | 109 | /** @var \PSFS\base\config\Config $configService */ |
@@ -121,8 +121,8 @@ discard block |
||
121 | 121 | } |
122 | 122 | } |
123 | 123 | $this->setLoaded(); |
124 | - } else { |
|
125 | - Logger::log(get_class($this) . ' already loaded', LOG_INFO); |
|
124 | + }else { |
|
125 | + Logger::log(get_class($this).' already loaded', LOG_INFO); |
|
126 | 126 | } |
127 | 127 | } |
128 | 128 | } |
@@ -37,20 +37,20 @@ discard block |
||
37 | 37 | $behaviors = $tableMap->getBehaviors(); |
38 | 38 | foreach ($map::getFieldNames() as $field) { |
39 | 39 | $fDto = self::parseFormField($domain, $tableMap, $field, $behaviors); |
40 | - if(null !== $fDto) { |
|
40 | + if (null !== $fDto) { |
|
41 | 41 | $form->addField($fDto); |
42 | 42 | } |
43 | 43 | } |
44 | 44 | |
45 | - if(array_key_exists('i18n', $behaviors)) { |
|
46 | - $relateI18n = $tableMap->getRelation($tableMap->getPhpName() . 'I18n'); |
|
47 | - if(null !== $relateI18n) { |
|
45 | + if (array_key_exists('i18n', $behaviors)) { |
|
46 | + $relateI18n = $tableMap->getRelation($tableMap->getPhpName().'I18n'); |
|
47 | + if (null !== $relateI18n) { |
|
48 | 48 | $i18NTableMap = $relateI18n->getLocalTable(); |
49 | - foreach($i18NTableMap->getColumns() as $columnMap) { |
|
49 | + foreach ($i18NTableMap->getColumns() as $columnMap) { |
|
50 | 50 | $columnName = self::getColumnMapName($columnMap); |
51 | - if(!$form->fieldExists($columnName)) { |
|
51 | + if (!$form->fieldExists($columnName)) { |
|
52 | 52 | $fDto = self::parseFormField($domain, $i18NTableMap, $columnMap->getPhpName(), $i18NTableMap->getBehaviors()); |
53 | - if(null !== $fDto) { |
|
53 | + if (null !== $fDto) { |
|
54 | 54 | $fDto->pk = false; |
55 | 55 | $form->addField($fDto); |
56 | 56 | } |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | $fDto->entity = $relatedModel; |
80 | 80 | $relatedField = $foreignTable->getColumn($mappedColumn->getRelatedColumnName()); |
81 | 81 | $fDto->relatedField = $relatedField->getPhpName(); |
82 | - $fDto->url = Router::getInstance()->getRoute(strtolower($domain) . '-api-' . $relatedModel); |
|
82 | + $fDto->url = Router::getInstance()->getRoute(strtolower($domain).'-api-'.$relatedModel); |
|
83 | 83 | return $fDto; |
84 | 84 | } |
85 | 85 | |
@@ -186,14 +186,14 @@ discard block |
||
186 | 186 | { |
187 | 187 | $column = null; |
188 | 188 | try { |
189 | - foreach($tableMap->getColumns() as $tableMapColumn) { |
|
189 | + foreach ($tableMap->getColumns() as $tableMapColumn) { |
|
190 | 190 | $columnName = $tableMapColumn->getPhpName(); |
191 | - if(preg_match('/^'.$field.'$/i', $columnName)) { |
|
191 | + if (preg_match('/^'.$field.'$/i', $columnName)) { |
|
192 | 192 | $column = $tableMapColumn; |
193 | 193 | break; |
194 | 194 | } |
195 | 195 | } |
196 | - } catch (\Exception $e) { |
|
196 | + }catch (\Exception $e) { |
|
197 | 197 | Logger::log($e->getMessage(), LOG_DEBUG); |
198 | 198 | } |
199 | 199 | return $column; |
@@ -207,18 +207,18 @@ discard block |
||
207 | 207 | private static function addQueryFilter(ColumnMap $column, ModelCriteria &$query, $value = null) |
208 | 208 | { |
209 | 209 | $tableField = $column->getFullyQualifiedName(); |
210 | - if(is_array($value)) { |
|
210 | + if (is_array($value)) { |
|
211 | 211 | $query->add($tableField, $value, Criteria::IN); |
212 | 212 | } elseif (preg_match('/^\[/', $value) && preg_match('/\]$/', $value)) { |
213 | 213 | $query->add($tableField, explode(',', preg_replace('/(\[|\])/', '', $value)), Criteria::IN); |
214 | 214 | } elseif (preg_match('/^(\'|\")(.*)(\'|\")$/', $value)) { |
215 | 215 | $text = preg_replace('/(\'|\")/', '', $value); |
216 | 216 | $text = preg_replace('/\ /', '%', $text); |
217 | - $query->add($tableField, '%' . $text . '%', Criteria::LIKE); |
|
218 | - } else { |
|
219 | - if(null !== $column->getValueSet()) { |
|
217 | + $query->add($tableField, '%'.$text.'%', Criteria::LIKE); |
|
218 | + }else { |
|
219 | + if (null !== $column->getValueSet()) { |
|
220 | 220 | $valueSet = $column->getValueSet(); |
221 | - if(in_array($value, $valueSet)) { |
|
221 | + if (in_array($value, $valueSet)) { |
|
222 | 222 | $value = array_search($value, $valueSet); |
223 | 223 | } |
224 | 224 | } |
@@ -238,31 +238,31 @@ discard block |
||
238 | 238 | $sep = ''; |
239 | 239 | foreach ($tableMap->getColumns() as $column) { |
240 | 240 | if ($column->isText()) { |
241 | - $exp .= $sep . 'IFNULL(' . $column->getFullyQualifiedName() . ',"")'; |
|
241 | + $exp .= $sep.'IFNULL('.$column->getFullyQualifiedName().',"")'; |
|
242 | 242 | $sep = ', " ", '; |
243 | 243 | } |
244 | 244 | } |
245 | - foreach($tableMap->getRelations() as $relation) { |
|
246 | - if(preg_match('/I18n$/i', $relation->getName())) { |
|
245 | + foreach ($tableMap->getRelations() as $relation) { |
|
246 | + if (preg_match('/I18n$/i', $relation->getName())) { |
|
247 | 247 | $localeTableMap = $relation->getLocalTable(); |
248 | 248 | foreach ($localeTableMap->getColumns() as $column) { |
249 | 249 | if ($column->isText()) { |
250 | - $exp .= $sep . 'IFNULL(' . $column->getFullyQualifiedName() . ',"")'; |
|
250 | + $exp .= $sep.'IFNULL('.$column->getFullyQualifiedName().',"")'; |
|
251 | 251 | $sep = ', " ", '; |
252 | 252 | } |
253 | 253 | } |
254 | 254 | } |
255 | 255 | } |
256 | 256 | foreach ($extraColumns as $extra => $name) { |
257 | - if(!preg_match("/(COUNT|DISTINCT|SUM|MAX|MIN|GROUP)/i", $extra)) { |
|
258 | - $exp .= $sep . $extra; |
|
257 | + if (!preg_match("/(COUNT|DISTINCT|SUM|MAX|MIN|GROUP)/i", $extra)) { |
|
258 | + $exp .= $sep.$extra; |
|
259 | 259 | $sep = ', " ", '; |
260 | 260 | } |
261 | 261 | } |
262 | 262 | $exp .= ")"; |
263 | 263 | $text = preg_replace('/(\'|\")/', '', $value); |
264 | 264 | $text = preg_replace('/\ /', '%', $text); |
265 | - $query->where($exp . Criteria::LIKE . '"%' . $text . '%"'); |
|
265 | + $query->where($exp.Criteria::LIKE.'"%'.$text.'%"'); |
|
266 | 266 | } |
267 | 267 | |
268 | 268 | /** |
@@ -287,7 +287,7 @@ discard block |
||
287 | 287 | */ |
288 | 288 | public static function extractQuery($modelNameNamespace, ConnectionInterface $con = null) |
289 | 289 | { |
290 | - $queryReflector = new \ReflectionClass($modelNameNamespace . "Query"); |
|
290 | + $queryReflector = new \ReflectionClass($modelNameNamespace."Query"); |
|
291 | 291 | /** @var \Propel\Runtime\ActiveQuery\ModelCriteria $query */ |
292 | 292 | $query = $queryReflector->getMethod('create')->invoke($con); |
293 | 293 | |
@@ -316,7 +316,7 @@ discard block |
||
316 | 316 | } elseif ($mappedColumn->isText()) { |
317 | 317 | if ($mappedColumn->getSize() > 100) { |
318 | 318 | $fDto = self::createField($field, Field::TEXTAREA_TYPE, $required); |
319 | - } else { |
|
319 | + }else { |
|
320 | 320 | $fDto = self::generateStringField($field, $required); |
321 | 321 | } |
322 | 322 | } elseif ($mappedColumn->getType() === PropelTypes::BOOLEAN) { |
@@ -344,7 +344,7 @@ discard block |
||
344 | 344 | $fDto->pk = true; |
345 | 345 | } |
346 | 346 | } |
347 | - switch(Config::getParam('api.field.case', TableMap::TYPE_PHPNAME)) { |
|
347 | + switch (Config::getParam('api.field.case', TableMap::TYPE_PHPNAME)) { |
|
348 | 348 | default: |
349 | 349 | case TableMap::TYPE_PHPNAME: |
350 | 350 | $fDto->name = $mappedColumn->getPhpName(); |
@@ -368,7 +368,7 @@ discard block |
||
368 | 368 | */ |
369 | 369 | public static function extractPrimaryKeyColumnName(TableMap $tableMap) { |
370 | 370 | $modelPk = null; |
371 | - foreach($tableMap->getPrimaryKeys() as $pk) { |
|
371 | + foreach ($tableMap->getPrimaryKeys() as $pk) { |
|
372 | 372 | $modelPk = $pk; |
373 | 373 | break; |
374 | 374 | } |
@@ -377,15 +377,15 @@ discard block |
||
377 | 377 | |
378 | 378 | private static function mapResult(ActiveRecordInterface $model, array $data = []) { |
379 | 379 | $result = []; |
380 | - foreach($data as $key => $value) { |
|
380 | + foreach ($data as $key => $value) { |
|
381 | 381 | try { |
382 | 382 | $realValue = $model->getByName($key); |
383 | - } catch(\Exception $e) { |
|
383 | + }catch (\Exception $e) { |
|
384 | 384 | $realValue = $value; |
385 | 385 | } |
386 | - if(Api::API_MODEL_KEY_FIELD === $key) { |
|
386 | + if (Api::API_MODEL_KEY_FIELD === $key) { |
|
387 | 387 | $result[$key] = (integer)$realValue; |
388 | - } else { |
|
388 | + }else { |
|
389 | 389 | $result[$key] = $realValue; |
390 | 390 | } |
391 | 391 | } |
@@ -402,14 +402,14 @@ discard block |
||
402 | 402 | $objTableMap = get_class($formatter->getTableMap()); |
403 | 403 | /** @var TableMapTrait $objTableMap */ |
404 | 404 | $objData = $data; |
405 | - foreach($objTableMap::getFieldNames() as $field) { |
|
406 | - if(!array_key_exists($field, $objData)) { |
|
405 | + foreach ($objTableMap::getFieldNames() as $field) { |
|
406 | + if (!array_key_exists($field, $objData)) { |
|
407 | 407 | $objData[$field] = null; |
408 | 408 | } |
409 | 409 | } |
410 | 410 | $obj = @$formatter->getAllObjectsFromRow($objData); |
411 | 411 | $result = self::mapResult($obj, $data); |
412 | - if(!preg_match('/' . $modelPk->getPhpName() . '/i', $query[Api::API_FIELDS_RESULT_FIELD])) { |
|
412 | + if (!preg_match('/'.$modelPk->getPhpName().'/i', $query[Api::API_FIELDS_RESULT_FIELD])) { |
|
413 | 413 | unset($result[$modelPk->getPhpName()]); |
414 | 414 | } |
415 | 415 | return $result; |
@@ -420,7 +420,7 @@ discard block |
||
420 | 420 | */ |
421 | 421 | public static function getFieldTypes() { |
422 | 422 | $configType = Config::getParam('api.field.case'); |
423 | - switch($configType) { |
|
423 | + switch ($configType) { |
|
424 | 424 | case 'UpperCamelCase': |
425 | 425 | case TableMap::TYPE_PHPNAME: |
426 | 426 | $fieldType = TableMap::TYPE_PHPNAME; |
@@ -445,11 +445,11 @@ discard block |
||
445 | 445 | } |
446 | 446 | |
447 | 447 | public static function getColumnMapName(ColumnMap $field) { |
448 | - switch(self::getFieldTypes()) { |
|
448 | + switch (self::getFieldTypes()) { |
|
449 | 449 | default: |
450 | 450 | case 'UpperCamelCase': |
451 | 451 | case TableMap::TYPE_PHPNAME: |
452 | - $columnName =$field->getPhpName(); |
|
452 | + $columnName = $field->getPhpName(); |
|
453 | 453 | break; |
454 | 454 | case 'camelCase': |
455 | 455 | case 'lowerCamelCase': |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | if (count($pks) === 1) { |
81 | 81 | $pks = array_keys($pks); |
82 | 82 | return [ |
83 | - $tableMap::TABLE_NAME . '.' . $pks[0] => Api::API_MODEL_KEY_FIELD |
|
83 | + $tableMap::TABLE_NAME.'.'.$pks[0] => Api::API_MODEL_KEY_FIELD |
|
84 | 84 | ]; |
85 | 85 | } |
86 | 86 | if (count($pks) > 1) { |
@@ -88,9 +88,9 @@ discard block |
||
88 | 88 | $principal = ''; |
89 | 89 | $sep = 'CONCAT('; |
90 | 90 | foreach ($pks as $pk) { |
91 | - $apiPks[$tableMap::TABLE_NAME . '.' . $pk->getName()] = $pk->getPhpName(); |
|
92 | - $principal .= $sep . $tableMap::TABLE_NAME . '.' . $pk->getName(); |
|
93 | - $sep = ', "' . Api::API_PK_SEPARATOR . '", '; |
|
91 | + $apiPks[$tableMap::TABLE_NAME.'.'.$pk->getName()] = $pk->getPhpName(); |
|
92 | + $principal .= $sep.$tableMap::TABLE_NAME.'.'.$pk->getName(); |
|
93 | + $sep = ', "'.Api::API_PK_SEPARATOR.'", '; |
|
94 | 94 | } |
95 | 95 | $principal .= ')'; |
96 | 96 | $apiPks[$principal] = Api::API_MODEL_KEY_FIELD; |
@@ -117,10 +117,10 @@ discard block |
||
117 | 117 | $pks = ''; |
118 | 118 | $sep = ''; |
119 | 119 | foreach ($tableMap->getPrimaryKeys() as $pk) { |
120 | - $pks .= $sep . $pk->getFullyQualifiedName(); |
|
120 | + $pks .= $sep.$pk->getFullyQualifiedName(); |
|
121 | 121 | $sep = ', "|", '; |
122 | 122 | } |
123 | - $this->extraColumns['CONCAT("' . $tableMap->getPhpName() . ' #", ' . $pks . ')'] = Api::API_LIST_NAME_FIELD; |
|
123 | + $this->extraColumns['CONCAT("'.$tableMap->getPhpName().' #", '.$pks.')'] = Api::API_LIST_NAME_FIELD; |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | /** |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | } |
143 | 143 | if (null !== $column) { |
144 | 144 | $this->extraColumns[$column->getFullyQualifiedName()] = Api::API_LIST_NAME_FIELD; |
145 | - } else { |
|
145 | + }else { |
|
146 | 146 | $this->addClassListName($tableMap); |
147 | 147 | } |
148 | 148 | } |
@@ -161,15 +161,15 @@ discard block |
||
161 | 161 | $this->addPkToList(); |
162 | 162 | } |
163 | 163 | if (!empty($this->extraColumns)) { |
164 | - if(Config::getParam('api.extrafields.compat', true)) { |
|
164 | + if (Config::getParam('api.extrafields.compat', true)) { |
|
165 | 165 | $fields = array_values($this->extraColumns); |
166 | - } else { |
|
166 | + }else { |
|
167 | 167 | $returnFields = Request::getInstance()->getQuery(Api::API_FIELDS_RESULT_FIELD); |
168 | 168 | $fields = explode(',', $returnFields ?: ''); |
169 | 169 | $fields[] = self::API_MODEL_KEY_FIELD; |
170 | 170 | } |
171 | 171 | foreach ($this->extraColumns as $expression => $columnName) { |
172 | - if(empty($fields) || in_array($columnName, $fields)) { |
|
172 | + if (empty($fields) || in_array($columnName, $fields)) { |
|
173 | 173 | $query->withColumn($expression, $columnName); |
174 | 174 | } |
175 | 175 | } |
@@ -201,17 +201,17 @@ discard block |
||
201 | 201 | { |
202 | 202 | $this->extractApiLang(); |
203 | 203 | $model = $this->getModelNamespace(); |
204 | - $modelI18n = $model . 'I18n'; |
|
204 | + $modelI18n = $model.'I18n'; |
|
205 | 205 | if (method_exists($query, 'useI18nQuery')) { |
206 | 206 | $query->useI18nQuery($this->lang); |
207 | - $modelI18nTableMapClass = str_replace('\\Models\\', '\\Models\\Map\\', $modelI18n) . 'TableMap'; |
|
207 | + $modelI18nTableMapClass = str_replace('\\Models\\', '\\Models\\Map\\', $modelI18n).'TableMap'; |
|
208 | 208 | /** @var TableMap $modelI18nTableMap */ |
209 | 209 | $modelI18nTableMap = $modelI18nTableMapClass::getTableMap(); |
210 | - foreach($modelI18nTableMap->getColumns() as $columnMap) { |
|
211 | - if(!$columnMap->isPrimaryKey()) { |
|
210 | + foreach ($modelI18nTableMap->getColumns() as $columnMap) { |
|
211 | + if (!$columnMap->isPrimaryKey()) { |
|
212 | 212 | $query->withColumn($columnMap->getFullyQualifiedName(), ApiHelper::getColumnMapName($columnMap)); |
213 | - } elseif(!$columnMap->isForeignKey()) { |
|
214 | - $query->withColumn('IFNULL(' . $columnMap->getFullyQualifiedName() . ', "'.$this->lang.'")', ApiHelper::getColumnMapName($columnMap)); |
|
213 | + } elseif (!$columnMap->isForeignKey()) { |
|
214 | + $query->withColumn('IFNULL('.$columnMap->getFullyQualifiedName().', "'.$this->lang.'")', ApiHelper::getColumnMapName($columnMap)); |
|
215 | 215 | } |
216 | 216 | } |
217 | 217 | } |
@@ -225,21 +225,21 @@ discard block |
||
225 | 225 | $model->fromArray($data, ApiHelper::getFieldTypes()); |
226 | 226 | $tableMap = $this->getTableMap(); |
227 | 227 | try { |
228 | - if($tableMap->hasRelation($tableMap->getPhpName() . 'I18n')) |
|
228 | + if ($tableMap->hasRelation($tableMap->getPhpName().'I18n')) |
|
229 | 229 | { |
230 | - $relateI18n = $tableMap->getRelation($tableMap->getPhpName() . 'I18n'); |
|
230 | + $relateI18n = $tableMap->getRelation($tableMap->getPhpName().'I18n'); |
|
231 | 231 | $i18NTableMap = $relateI18n->getLocalTable(); |
232 | - foreach($i18NTableMap->getColumns() as $columnMap) { |
|
233 | - $method = 'set' . $columnMap->getPhpName(); |
|
232 | + foreach ($i18NTableMap->getColumns() as $columnMap) { |
|
233 | + $method = 'set'.$columnMap->getPhpName(); |
|
234 | 234 | $dtoColumnName = ApiHelper::getColumnMapName($columnMap); |
235 | - if(array_key_exists($dtoColumnName, $data) |
|
235 | + if (array_key_exists($dtoColumnName, $data) |
|
236 | 236 | && method_exists($model, $method) |
237 | 237 | && !($columnMap->isPrimaryKey() && $columnMap->isForeignKey())) { |
238 | 238 | $model->$method($data[$dtoColumnName]); |
239 | 239 | } |
240 | 240 | } |
241 | 241 | } |
242 | - } catch(\Exception $e) { |
|
242 | + }catch (\Exception $e) { |
|
243 | 243 | Logger::log($e->getMessage(), LOG_DEBUG); |
244 | 244 | } |
245 | 245 | } |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | $this->setStatusCode(Template::STATUS_OK); |
122 | 122 | break; |
123 | 123 | default: |
124 | - $this->setStatusCode('HTTP/1.0 ' .($status ?: 200)); |
|
124 | + $this->setStatusCode('HTTP/1.0 '.($status ?: 200)); |
|
125 | 125 | break; |
126 | 126 | } |
127 | 127 | return $this; |
@@ -135,11 +135,11 @@ discard block |
||
135 | 135 | private function setReponseHeaders($contentType = 'text/html', array $cookies = array()) |
136 | 136 | { |
137 | 137 | $powered = Config::getParam('poweredBy', 'PSFS'); |
138 | - header('X-Powered-By: ' . $powered); |
|
138 | + header('X-Powered-By: '.$powered); |
|
139 | 139 | ResponseHelper::setStatusHeader($this->getStatusCode()); |
140 | 140 | ResponseHelper::setAuthHeaders($this->isPublicZone()); |
141 | 141 | ResponseHelper::setCookieHeaders($cookies); |
142 | - header('Content-type: ' . $contentType); |
|
142 | + header('Content-type: '.$contentType); |
|
143 | 143 | |
144 | 144 | } |
145 | 145 | |
@@ -152,20 +152,20 @@ discard block |
||
152 | 152 | */ |
153 | 153 | public function output($output = '', $contentType = 'text/html', array $cookies = array()) |
154 | 154 | { |
155 | - if(!self::isTest()) { |
|
155 | + if (!self::isTest()) { |
|
156 | 156 | Logger::log('Start output response'); |
157 | 157 | ob_start(); |
158 | 158 | $this->setReponseHeaders($contentType, $cookies); |
159 | - header('Content-length: ' . strlen($output)); |
|
160 | - header('CRC: ' . crc32($output)); |
|
159 | + header('Content-length: '.strlen($output)); |
|
160 | + header('CRC: '.crc32($output)); |
|
161 | 161 | |
162 | 162 | $needCache = Cache::needCache(); |
163 | 163 | $cache = Cache::getInstance(); |
164 | 164 | list($path, $cacheDataName) = $cache->getRequestCacheHash(); |
165 | 165 | if (null !== $cacheDataName && false !== $needCache && $this->getStatusCode() === Template::STATUS_OK) { |
166 | 166 | Logger::log('Saving output response into cache'); |
167 | - $cache->storeData('json' . DIRECTORY_SEPARATOR . $path . $cacheDataName, $output); |
|
168 | - $cache->storeData('json' . DIRECTORY_SEPARATOR . $path . $cacheDataName . '.headers', headers_list(), Cache::JSON); |
|
167 | + $cache->storeData('json'.DIRECTORY_SEPARATOR.$path.$cacheDataName, $output); |
|
168 | + $cache->storeData('json'.DIRECTORY_SEPARATOR.$path.$cacheDataName.'.headers', headers_list(), Cache::JSON); |
|
169 | 169 | } elseif (Request::getInstance()->getMethod() !== 'GET') { |
170 | 170 | $cache->flushCache(); |
171 | 171 | } |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | ob_end_clean(); |
176 | 176 | Logger::log('End output response'); |
177 | 177 | $this->closeRender(); |
178 | - } else { |
|
178 | + }else { |
|
179 | 179 | return $output; |
180 | 180 | } |
181 | 181 | } |
@@ -188,11 +188,11 @@ discard block |
||
188 | 188 | Logger::log('Close template render'); |
189 | 189 | $uri = Request::requestUri(); |
190 | 190 | Security::getInstance()->setSessionKey('lastRequest', array( |
191 | - 'url' => Request::getInstance()->getRootUrl() . $uri, |
|
191 | + 'url' => Request::getInstance()->getRootUrl().$uri, |
|
192 | 192 | 'ts' => microtime(true), |
193 | 193 | )); |
194 | 194 | Security::getInstance()->updateSession(); |
195 | - Logger::log('End request: ' . $uri, LOG_INFO); |
|
195 | + Logger::log('End request: '.$uri, LOG_INFO); |
|
196 | 196 | exit; |
197 | 197 | } |
198 | 198 | |
@@ -230,17 +230,17 @@ discard block |
||
230 | 230 | ///////////////////////////////////////////////////////////// |
231 | 231 | // Date in the past sets the value to already have been expired. |
232 | 232 | header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); |
233 | - header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT'); |
|
233 | + header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); |
|
234 | 234 | header('Cache-Control: no-store, no-cache, must-revalidate'); // HTTP/1.1 |
235 | 235 | header('Cache-Control: pre-check=0, post-check=0, max-age=0'); // HTTP/1.1 |
236 | 236 | header('Pragma: no-cache'); |
237 | 237 | header('Expires: 0'); |
238 | 238 | header('Content-Transfer-Encoding: binary'); |
239 | - header('Content-type: ' . $content); |
|
240 | - header('Content-length: ' . strlen($data)); |
|
241 | - header('Content-Disposition: attachment; filename="' . $filename . '"'); |
|
239 | + header('Content-type: '.$content); |
|
240 | + header('Content-length: '.strlen($data)); |
|
241 | + header('Content-Disposition: attachment; filename="'.$filename.'"'); |
|
242 | 242 | header('Access-Control-Expose-Headers: Filename'); |
243 | - header('Filename: ' . $filename); |
|
243 | + header('Filename: '.$filename); |
|
244 | 244 | echo $data; |
245 | 245 | ob_flush(); |
246 | 246 | ob_end_clean(); |
@@ -82,20 +82,20 @@ discard block |
||
82 | 82 | public function init() |
83 | 83 | { |
84 | 84 | parent::init(); |
85 | - Logger::log(static::class . ' init', LOG_DEBUG); |
|
85 | + Logger::log(static::class.' init', LOG_DEBUG); |
|
86 | 86 | $this->domain = $this->getDomain(); |
87 | 87 | $this->hydrateRequestData(); |
88 | 88 | $this->hydrateOrders(); |
89 | - if($this instanceof CustomApi === false) { |
|
89 | + if ($this instanceof CustomApi === false) { |
|
90 | 90 | $this->createConnection($this->getTableMap()); |
91 | 91 | } |
92 | 92 | $this->checkFieldType(); |
93 | 93 | $this->setLoaded(true); |
94 | - Logger::log(static::class . ' loaded', LOG_DEBUG); |
|
94 | + Logger::log(static::class.' loaded', LOG_DEBUG); |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | private function checkActions($method) { |
98 | - switch($method) { |
|
98 | + switch ($method) { |
|
99 | 99 | default: |
100 | 100 | case 'modelList': $this->action = self::API_ACTION_LIST; break; |
101 | 101 | case 'get': $this->action = self::API_ACTION_GET; break; |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | protected function hydrateOrders() |
113 | 113 | { |
114 | 114 | if (count($this->query)) { |
115 | - Logger::log(static::class . ' gathering query string', LOG_DEBUG); |
|
115 | + Logger::log(static::class.' gathering query string', LOG_DEBUG); |
|
116 | 116 | foreach ($this->query as $key => $value) { |
117 | 117 | if ($key === self::API_ORDER_FIELD && is_array($value)) { |
118 | 118 | foreach ($value as $field => $direction) { |
@@ -129,10 +129,10 @@ discard block |
||
129 | 129 | */ |
130 | 130 | protected function extractPagination() |
131 | 131 | { |
132 | - Logger::log(static::class . ' extract pagination start', LOG_DEBUG); |
|
132 | + Logger::log(static::class.' extract pagination start', LOG_DEBUG); |
|
133 | 133 | $page = array_key_exists(self::API_PAGE_FIELD, $this->query) ? $this->query[self::API_PAGE_FIELD] : 1; |
134 | 134 | $limit = array_key_exists(self::API_LIMIT_FIELD, $this->query) ? $this->query[self::API_LIMIT_FIELD] : 100; |
135 | - Logger::log(static::class . ' extract pagination end', LOG_DEBUG); |
|
135 | + Logger::log(static::class.' extract pagination end', LOG_DEBUG); |
|
136 | 136 | return array($page, $limit); |
137 | 137 | } |
138 | 138 | |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | */ |
144 | 144 | private function addOrders(ModelCriteria &$query) |
145 | 145 | { |
146 | - Logger::log(static::class . ' extract orders start ', LOG_DEBUG); |
|
146 | + Logger::log(static::class.' extract orders start ', LOG_DEBUG); |
|
147 | 147 | $orderAdded = FALSE; |
148 | 148 | $tableMap = $this->getTableMap(); |
149 | 149 | foreach ($this->order->getOrders() as $field => $direction) { |
@@ -151,18 +151,18 @@ discard block |
||
151 | 151 | $orderAdded = TRUE; |
152 | 152 | if ($direction === Order::ASC) { |
153 | 153 | $query->addAscendingOrderByColumn($column->getPhpName()); |
154 | - } else { |
|
154 | + }else { |
|
155 | 155 | $query->addDescendingOrderByColumn($column->getPhpName()); |
156 | 156 | } |
157 | 157 | } |
158 | 158 | } |
159 | 159 | if (!$orderAdded) { |
160 | 160 | $pks = $this->getPkDbName(); |
161 | - foreach(array_keys($pks) as $key) { |
|
161 | + foreach (array_keys($pks) as $key) { |
|
162 | 162 | $query->addAscendingOrderByColumn($key); |
163 | 163 | } |
164 | 164 | } |
165 | - Logger::log(static::class . ' extract orders end', LOG_DEBUG); |
|
165 | + Logger::log(static::class.' extract orders end', LOG_DEBUG); |
|
166 | 166 | } |
167 | 167 | |
168 | 168 | /** |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | foreach ($this->query as $field => $value) { |
178 | 178 | if (self::API_COMBO_FIELD === $field) { |
179 | 179 | ApiHelper::composerComboField($tableMap, $query, $this->extraColumns, $value); |
180 | - } elseif(!preg_match('/^__/', $field)) { |
|
180 | + } elseif (!preg_match('/^__/', $field)) { |
|
181 | 181 | ApiHelper::addModelField($tableMap, $query, $field, $value); |
182 | 182 | } |
183 | 183 | } |
@@ -198,10 +198,10 @@ discard block |
||
198 | 198 | list($page, $limit) = $this->extractPagination(); |
199 | 199 | if ($limit === -1) { |
200 | 200 | $this->list = $query->find($this->con); |
201 | - } else { |
|
201 | + }else { |
|
202 | 202 | $this->list = $query->paginate($page, $limit, $this->con); |
203 | 203 | } |
204 | - } catch (\Exception $e) { |
|
204 | + }catch (\Exception $e) { |
|
205 | 205 | Logger::log($e->getMessage(), LOG_ERR); |
206 | 206 | } |
207 | 207 | } |
@@ -220,7 +220,7 @@ discard block |
||
220 | 220 | $code = 200; |
221 | 221 | list($return, $total, $pages) = $this->getList(); |
222 | 222 | $message = null; |
223 | - if(!$total) { |
|
223 | + if (!$total) { |
|
224 | 224 | $message = i18n::_('No se han encontrado elementos para la búsqueda'); |
225 | 225 | } |
226 | 226 | |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | $pages = 1; |
247 | 247 | $message = null; |
248 | 248 | list($code, $return) = $this->getSingleResult($pk); |
249 | - if($code !== 200) { |
|
249 | + if ($code !== 200) { |
|
250 | 250 | $message = i18n::_('No se ha encontrado el elemento solicitado'); |
251 | 251 | } |
252 | 252 | |
@@ -275,13 +275,13 @@ discard block |
||
275 | 275 | $status = 200; |
276 | 276 | $saved = TRUE; |
277 | 277 | $model = $this->model->toArray($this->fieldType ?: TableMap::TYPE_PHPNAME, true, [], true); |
278 | - } else { |
|
278 | + }else { |
|
279 | 279 | $message = i18n::_('No se ha podido guardar el modelo seleccionado'); |
280 | 280 | } |
281 | - } catch (\Exception $e) { |
|
282 | - $message = i18n::_('Ha ocurrido un error intentando guardar el elemento: ') .'<br>'. $e->getMessage(); |
|
281 | + }catch (\Exception $e) { |
|
282 | + $message = i18n::_('Ha ocurrido un error intentando guardar el elemento: ').'<br>'.$e->getMessage(); |
|
283 | 283 | $context = []; |
284 | - if(null !== $e->getPrevious()) { |
|
284 | + if (null !== $e->getPrevious()) { |
|
285 | 285 | $context[] = $e->getPrevious()->getMessage(); |
286 | 286 | } |
287 | 287 | Logger::log($e->getMessage(), LOG_CRIT, $context); |
@@ -317,18 +317,18 @@ discard block |
||
317 | 317 | $updated = TRUE; |
318 | 318 | $status = 200; |
319 | 319 | $model = $this->model->toArray($this->fieldType ?: TableMap::TYPE_PHPNAME, true, [], true); |
320 | - } else { |
|
320 | + }else { |
|
321 | 321 | $message = i18n::_('Ha ocurrido un error intentando actualizar el elemento, por favor revisa los logs'); |
322 | 322 | } |
323 | - } catch (\Exception $e) { |
|
323 | + }catch (\Exception $e) { |
|
324 | 324 | $message = i18n::_('Ha ocurrido un error intentando actualizar el elemento, por favor revisa los logs'); |
325 | 325 | $context = []; |
326 | - if(null !== $e->getPrevious()) { |
|
326 | + if (null !== $e->getPrevious()) { |
|
327 | 327 | $context[] = $e->getPrevious()->getMessage(); |
328 | 328 | } |
329 | 329 | Logger::log($e->getMessage(), LOG_CRIT, $context); |
330 | 330 | } |
331 | - } else { |
|
331 | + }else { |
|
332 | 332 | $message = i18n::_('No se ha encontrado el modelo al que se hace referencia para actualizar'); |
333 | 333 | } |
334 | 334 | |
@@ -356,15 +356,15 @@ discard block |
||
356 | 356 | $this->con->beginTransaction(); |
357 | 357 | $this->hydrateModel($pk); |
358 | 358 | if (NULL !== $this->model) { |
359 | - if(method_exists('clearAllReferences', $this->model)) { |
|
359 | + if (method_exists('clearAllReferences', $this->model)) { |
|
360 | 360 | $this->model->clearAllReferences(true); |
361 | 361 | } |
362 | 362 | $this->model->delete($this->con); |
363 | 363 | $deleted = TRUE; |
364 | 364 | } |
365 | - } catch (\Exception $e) { |
|
365 | + }catch (\Exception $e) { |
|
366 | 366 | $context = []; |
367 | - if(null !== $e->getPrevious()) { |
|
367 | + if (null !== $e->getPrevious()) { |
|
368 | 368 | $context[] = $e->getPrevious()->getMessage(); |
369 | 369 | } |
370 | 370 | Logger::log($e->getMessage(), LOG_CRIT, $context); |
@@ -393,7 +393,7 @@ discard block |
||
393 | 393 | $this->saveBulk(); |
394 | 394 | $saved = true; |
395 | 395 | $status = 200; |
396 | - } catch(\Exception $e) { |
|
396 | + }catch (\Exception $e) { |
|
397 | 397 | Logger::log($e->getMessage(), LOG_CRIT, $this->getRequest()->getData()); |
398 | 398 | $message = i18n::_('Bulk insert rolled back'); |
399 | 399 | } |
@@ -415,7 +415,7 @@ discard block |
||
415 | 415 | |
416 | 416 | /** @var CustomerTableMap $tableMap */ |
417 | 417 | $modelPk = ApiHelper::extractPrimaryKeyColumnName($this->getTableMap()); |
418 | - foreach($this->list->getData() as $data) { |
|
418 | + foreach ($this->list->getData() as $data) { |
|
419 | 419 | $return[] = ApiHelper::mapArrayObject($this->getModelNamespace(), $modelPk, $this->query, $data); |
420 | 420 | } |
421 | 421 | return $return; |
@@ -432,23 +432,23 @@ discard block |
||
432 | 432 | try { |
433 | 433 | $this->paginate(); |
434 | 434 | if (null !== $this->list) { |
435 | - if(array_key_exists(self::API_FIELDS_RESULT_FIELD, $this->query) && Config::getParam('api.field.types')) { |
|
435 | + if (array_key_exists(self::API_FIELDS_RESULT_FIELD, $this->query) && Config::getParam('api.field.types')) { |
|
436 | 436 | $return = $this->extractDataWithFormat(); |
437 | - } else { |
|
437 | + }else { |
|
438 | 438 | $return = $this->list->toArray(null, false, $this->fieldType ?: TableMap::TYPE_PHPNAME, false); |
439 | 439 | } |
440 | 440 | $total = 0; |
441 | 441 | $pages = 0; |
442 | - if($this->list instanceof PropelModelPager) { |
|
442 | + if ($this->list instanceof PropelModelPager) { |
|
443 | 443 | $total = $this->list->getNbResults(); |
444 | 444 | $pages = $this->list->getLastPage(); |
445 | - } elseif($this->list instanceof ArrayCollection) { |
|
445 | + } elseif ($this->list instanceof ArrayCollection) { |
|
446 | 446 | $total = count($return); |
447 | 447 | $pages = 1; |
448 | 448 | } |
449 | 449 | } |
450 | - } catch (\Exception $e) { |
|
451 | - Logger::log(get_class($this) . ': ' . $e->getMessage(), LOG_ERR); |
|
450 | + }catch (\Exception $e) { |
|
451 | + Logger::log(get_class($this).': '.$e->getMessage(), LOG_ERR); |
|
452 | 452 | } |
453 | 453 | |
454 | 454 | return array($return, $total, $pages); |
@@ -466,7 +466,7 @@ discard block |
||
466 | 466 | $return = array(); |
467 | 467 | if (NULL === $model || !method_exists($model, 'toArray')) { |
468 | 468 | $code = 404; |
469 | - } else { |
|
469 | + }else { |
|
470 | 470 | $return = $model->toArray($this->fieldType ?: TableMap::TYPE_PHPNAME, true, [], true); |
471 | 471 | } |
472 | 472 |