@@ -15,7 +15,7 @@ |
||
15 | 15 | } |
16 | 16 | |
17 | 17 | public static function parseRawData($type, array $params = []) { |
18 | - switch($type) { |
|
18 | + switch ($type) { |
|
19 | 19 | default: |
20 | 20 | case self::TYPE_HTTP: |
21 | 21 | $parsedParams = http_build_query($params); |
@@ -37,19 +37,19 @@ 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) { |
|
50 | - if(!$form->fieldExists($columnMap->getPhpName())) { |
|
49 | + foreach ($i18NTableMap->getColumns() as $columnMap) { |
|
50 | + if (!$form->fieldExists($columnMap->getPhpName())) { |
|
51 | 51 | $fDto = self::parseFormField($domain, $i18NTableMap, $columnMap->getPhpName(), $i18NTableMap->getBehaviors()); |
52 | - if(null !== $fDto) { |
|
52 | + if (null !== $fDto) { |
|
53 | 53 | $fDto->pk = false; |
54 | 54 | $form->addField($fDto); |
55 | 55 | } |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | $fDto->entity = $relatedModel; |
79 | 79 | $relatedField = $foreignTable->getColumn($mappedColumn->getRelatedColumnName()); |
80 | 80 | $fDto->relatedField = $relatedField->getPhpName(); |
81 | - $fDto->url = Router::getInstance()->getRoute(strtolower($domain) . '-api-' . $relatedModel); |
|
81 | + $fDto->url = Router::getInstance()->getRoute(strtolower($domain).'-api-'.$relatedModel); |
|
82 | 82 | return $fDto; |
83 | 83 | } |
84 | 84 | |
@@ -185,14 +185,14 @@ discard block |
||
185 | 185 | { |
186 | 186 | $column = null; |
187 | 187 | try { |
188 | - foreach($tableMap->getColumns() as $tableMapColumn) { |
|
188 | + foreach ($tableMap->getColumns() as $tableMapColumn) { |
|
189 | 189 | $columnName = $tableMapColumn->getPhpName(); |
190 | - if(preg_match('/'.$field.'/i', $columnName)) { |
|
190 | + if (preg_match('/'.$field.'/i', $columnName)) { |
|
191 | 191 | $column = $tableMapColumn; |
192 | 192 | break; |
193 | 193 | } |
194 | 194 | } |
195 | - } catch (\Exception $e) { |
|
195 | + }catch (\Exception $e) { |
|
196 | 196 | Logger::log($e->getMessage(), LOG_DEBUG); |
197 | 197 | } |
198 | 198 | return $column; |
@@ -206,18 +206,18 @@ discard block |
||
206 | 206 | private static function addQueryFilter(ColumnMap $column, ModelCriteria &$query, $value = null) |
207 | 207 | { |
208 | 208 | $tableField = $column->getFullyQualifiedName(); |
209 | - if(is_array($value)) { |
|
209 | + if (is_array($value)) { |
|
210 | 210 | $query->add($tableField, $value, Criteria::IN); |
211 | 211 | } elseif (preg_match('/^\[/', $value) && preg_match('/\]$/', $value)) { |
212 | 212 | $query->add($tableField, explode(',', preg_replace('/(\[|\])/', '', $value)), Criteria::IN); |
213 | 213 | } elseif (preg_match('/^(\'|\")(.*)(\'|\")$/', $value)) { |
214 | 214 | $text = preg_replace('/(\'|\")/', '', $value); |
215 | 215 | $text = preg_replace('/\ /', '%', $text); |
216 | - $query->add($tableField, '%' . $text . '%', Criteria::LIKE); |
|
217 | - } else { |
|
218 | - if(null !== $column->getValueSet()) { |
|
216 | + $query->add($tableField, '%'.$text.'%', Criteria::LIKE); |
|
217 | + }else { |
|
218 | + if (null !== $column->getValueSet()) { |
|
219 | 219 | $valueSet = $column->getValueSet(); |
220 | - if(in_array($value, $valueSet)) { |
|
220 | + if (in_array($value, $valueSet)) { |
|
221 | 221 | $value = array_search($value, $valueSet); |
222 | 222 | } |
223 | 223 | } |
@@ -237,31 +237,31 @@ discard block |
||
237 | 237 | $sep = ''; |
238 | 238 | foreach ($tableMap->getColumns() as $column) { |
239 | 239 | if ($column->isText()) { |
240 | - $exp .= $sep . 'IFNULL(' . $column->getFullyQualifiedName() . ',"")'; |
|
240 | + $exp .= $sep.'IFNULL('.$column->getFullyQualifiedName().',"")'; |
|
241 | 241 | $sep = ', " ", '; |
242 | 242 | } |
243 | 243 | } |
244 | - foreach($tableMap->getRelations() as $relation) { |
|
245 | - if(preg_match('/I18n$/i', $relation->getName())) { |
|
244 | + foreach ($tableMap->getRelations() as $relation) { |
|
245 | + if (preg_match('/I18n$/i', $relation->getName())) { |
|
246 | 246 | $localeTableMap = $relation->getLocalTable(); |
247 | 247 | foreach ($localeTableMap->getColumns() as $column) { |
248 | 248 | if ($column->isText()) { |
249 | - $exp .= $sep . 'IFNULL(' . $column->getFullyQualifiedName() . ',"")'; |
|
249 | + $exp .= $sep.'IFNULL('.$column->getFullyQualifiedName().',"")'; |
|
250 | 250 | $sep = ', " ", '; |
251 | 251 | } |
252 | 252 | } |
253 | 253 | } |
254 | 254 | } |
255 | 255 | foreach ($extraColumns as $extra => $name) { |
256 | - if(!preg_match("/(COUNT|DISTINCT|SUM|MAX|MIN|GROUP)/i", $extra)) { |
|
257 | - $exp .= $sep . $extra; |
|
256 | + if (!preg_match("/(COUNT|DISTINCT|SUM|MAX|MIN|GROUP)/i", $extra)) { |
|
257 | + $exp .= $sep.$extra; |
|
258 | 258 | $sep = ', " ", '; |
259 | 259 | } |
260 | 260 | } |
261 | 261 | $exp .= ")"; |
262 | 262 | $text = preg_replace('/(\'|\")/', '', $value); |
263 | 263 | $text = preg_replace('/\ /', '%', $text); |
264 | - $query->where($exp . Criteria::LIKE . '"%' . $text . '%"'); |
|
264 | + $query->where($exp.Criteria::LIKE.'"%'.$text.'%"'); |
|
265 | 265 | } |
266 | 266 | |
267 | 267 | /** |
@@ -286,7 +286,7 @@ discard block |
||
286 | 286 | */ |
287 | 287 | public static function extractQuery($modelNameNamespace, ConnectionInterface $con = null) |
288 | 288 | { |
289 | - $queryReflector = new \ReflectionClass($modelNameNamespace . "Query"); |
|
289 | + $queryReflector = new \ReflectionClass($modelNameNamespace."Query"); |
|
290 | 290 | /** @var \Propel\Runtime\ActiveQuery\ModelCriteria $query */ |
291 | 291 | $query = $queryReflector->getMethod('create')->invoke($con); |
292 | 292 | |
@@ -315,7 +315,7 @@ discard block |
||
315 | 315 | } elseif ($mappedColumn->isText()) { |
316 | 316 | if ($mappedColumn->getSize() > 100) { |
317 | 317 | $fDto = self::createField($field, Field::TEXTAREA_TYPE, $required); |
318 | - } else { |
|
318 | + }else { |
|
319 | 319 | $fDto = self::generateStringField($field, $required); |
320 | 320 | } |
321 | 321 | } elseif ($mappedColumn->getType() === PropelTypes::BOOLEAN) { |
@@ -343,7 +343,7 @@ discard block |
||
343 | 343 | $fDto->pk = true; |
344 | 344 | } |
345 | 345 | } |
346 | - switch(Config::getParam('api.field.type', TableMap::TYPE_PHPNAME)) { |
|
346 | + switch (Config::getParam('api.field.type', TableMap::TYPE_PHPNAME)) { |
|
347 | 347 | default: |
348 | 348 | case TableMap::TYPE_PHPNAME: |
349 | 349 | $fDto->name = $mappedColumn->getPhpName(); |
@@ -367,7 +367,7 @@ discard block |
||
367 | 367 | */ |
368 | 368 | public static function extractPrimaryKeyColumnName(TableMap $tableMap) { |
369 | 369 | $modelPk = null; |
370 | - foreach($tableMap->getPrimaryKeys() as $pk) { |
|
370 | + foreach ($tableMap->getPrimaryKeys() as $pk) { |
|
371 | 371 | $modelPk = $pk; |
372 | 372 | break; |
373 | 373 | } |
@@ -376,15 +376,15 @@ discard block |
||
376 | 376 | |
377 | 377 | private static function mapResult(ActiveRecordInterface $model, array $data = []) { |
378 | 378 | $result = []; |
379 | - foreach($data as $key => $value) { |
|
379 | + foreach ($data as $key => $value) { |
|
380 | 380 | try { |
381 | 381 | $realValue = $model->getByName($key); |
382 | - } catch(\Exception $e) { |
|
382 | + }catch (\Exception $e) { |
|
383 | 383 | $realValue = $value; |
384 | 384 | } |
385 | - if(Api::API_MODEL_KEY_FIELD === $key) { |
|
385 | + if (Api::API_MODEL_KEY_FIELD === $key) { |
|
386 | 386 | $result[$key] = (integer)$realValue; |
387 | - } else { |
|
387 | + }else { |
|
388 | 388 | $result[$key] = $realValue; |
389 | 389 | } |
390 | 390 | } |
@@ -401,14 +401,14 @@ discard block |
||
401 | 401 | $objTableMap = get_class($formatter->getTableMap()); |
402 | 402 | /** @var TableMapTrait $objTableMap */ |
403 | 403 | $objData = $data; |
404 | - foreach($objTableMap::getFieldNames() as $field) { |
|
405 | - if(!array_key_exists($field, $objData)) { |
|
404 | + foreach ($objTableMap::getFieldNames() as $field) { |
|
405 | + if (!array_key_exists($field, $objData)) { |
|
406 | 406 | $objData[$field] = null; |
407 | 407 | } |
408 | 408 | } |
409 | 409 | $obj = @$formatter->getAllObjectsFromRow($objData); |
410 | 410 | $result = self::mapResult($obj, $data); |
411 | - if(!preg_match('/' . $modelPk->getPhpName() . '/i', $query[Api::API_FIELDS_RESULT_FIELD])) { |
|
411 | + if (!preg_match('/'.$modelPk->getPhpName().'/i', $query[Api::API_FIELDS_RESULT_FIELD])) { |
|
412 | 412 | unset($result[$modelPk->getPhpName()]); |
413 | 413 | } |
414 | 414 | return $result; |
@@ -75,21 +75,21 @@ discard block |
||
75 | 75 | if (count($pks) == 1) { |
76 | 76 | $pks = array_keys($pks); |
77 | 77 | return [ |
78 | - $tableMap::TABLE_NAME . '.' . $pks[0] => Api::API_MODEL_KEY_FIELD |
|
78 | + $tableMap::TABLE_NAME.'.'.$pks[0] => Api::API_MODEL_KEY_FIELD |
|
79 | 79 | ]; |
80 | 80 | } elseif (count($pks) > 1) { |
81 | 81 | $apiPks = []; |
82 | 82 | $principal = ''; |
83 | 83 | $sep = 'CONCAT('; |
84 | 84 | foreach ($pks as $pk) { |
85 | - $apiPks[$tableMap::TABLE_NAME . '.' . $pk->getName()] = $pk->getPhpName(); |
|
86 | - $principal .= $sep . $tableMap::TABLE_NAME . '.' . $pk->getName(); |
|
87 | - $sep = ', "' . Api::API_PK_SEPARATOR . '", '; |
|
85 | + $apiPks[$tableMap::TABLE_NAME.'.'.$pk->getName()] = $pk->getPhpName(); |
|
86 | + $principal .= $sep.$tableMap::TABLE_NAME.'.'.$pk->getName(); |
|
87 | + $sep = ', "'.Api::API_PK_SEPARATOR.'", '; |
|
88 | 88 | } |
89 | 89 | $principal .= ')'; |
90 | 90 | $apiPks[$principal] = Api::API_MODEL_KEY_FIELD; |
91 | 91 | return $apiPks; |
92 | - } else { |
|
92 | + }else { |
|
93 | 93 | throw new ApiException(_('El modelo de la API no está debidamente mapeado, no hay Primary Key o es compuesta')); |
94 | 94 | } |
95 | 95 | } |
@@ -112,10 +112,10 @@ discard block |
||
112 | 112 | $pks = ''; |
113 | 113 | $sep = ''; |
114 | 114 | foreach ($tableMap->getPrimaryKeys() as $pk) { |
115 | - $pks .= $sep . $pk->getFullyQualifiedName(); |
|
115 | + $pks .= $sep.$pk->getFullyQualifiedName(); |
|
116 | 116 | $sep = ', "|", '; |
117 | 117 | } |
118 | - $this->extraColumns['CONCAT("' . $tableMap->getPhpName() . ' #", ' . $pks . ')'] = Api::API_LIST_NAME_FIELD; |
|
118 | + $this->extraColumns['CONCAT("'.$tableMap->getPhpName().' #", '.$pks.')'] = Api::API_LIST_NAME_FIELD; |
|
119 | 119 | } |
120 | 120 | |
121 | 121 | /** |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | } |
138 | 138 | if (null !== $column) { |
139 | 139 | $this->extraColumns[$column->getFullyQualifiedName()] = Api::API_LIST_NAME_FIELD; |
140 | - } else { |
|
140 | + }else { |
|
141 | 141 | $this->addClassListName($tableMap); |
142 | 142 | } |
143 | 143 | } |
@@ -156,15 +156,15 @@ discard block |
||
156 | 156 | $this->addPkToList(); |
157 | 157 | } |
158 | 158 | if (!empty($this->extraColumns)) { |
159 | - if(Config::getParam('api.extrafields.compat', true)) { |
|
159 | + if (Config::getParam('api.extrafields.compat', true)) { |
|
160 | 160 | $fields = array_values($this->extraColumns); |
161 | - } else { |
|
161 | + }else { |
|
162 | 162 | $returnFields = Request::getInstance()->getQuery(Api::API_FIELDS_RESULT_FIELD); |
163 | 163 | $fields = explode(',', $returnFields ?: ''); |
164 | 164 | $fields[] = self::API_MODEL_KEY_FIELD; |
165 | 165 | } |
166 | 166 | foreach ($this->extraColumns as $expression => $columnName) { |
167 | - if(empty($fields) || in_array($columnName, $fields)) { |
|
167 | + if (empty($fields) || in_array($columnName, $fields)) { |
|
168 | 168 | $query->withColumn($expression, $columnName); |
169 | 169 | } |
170 | 170 | } |
@@ -196,17 +196,17 @@ discard block |
||
196 | 196 | { |
197 | 197 | $this->extractApiLang(); |
198 | 198 | $model = $this->getModelNamespace(); |
199 | - $modelI18n = $model . 'I18n'; |
|
199 | + $modelI18n = $model.'I18n'; |
|
200 | 200 | if (method_exists($query, 'useI18nQuery')) { |
201 | 201 | $query->useI18nQuery($this->lang); |
202 | - $modelI18nTableMapClass = str_replace('\\Models\\', '\\Models\\Map\\', $modelI18n) . 'TableMap'; |
|
202 | + $modelI18nTableMapClass = str_replace('\\Models\\', '\\Models\\Map\\', $modelI18n).'TableMap'; |
|
203 | 203 | /** @var TableMap $modelI18nTableMap */ |
204 | 204 | $modelI18nTableMap = $modelI18nTableMapClass::getTableMap(); |
205 | - foreach($modelI18nTableMap->getColumns() as $columnMap) { |
|
206 | - if(!$columnMap->isPrimaryKey()) { |
|
207 | - $query->withColumn($modelI18nTableMapClass::TABLE_NAME . '.' . $columnMap->getName(), $columnMap->getPhpName()); |
|
208 | - } elseif(!$columnMap->isForeignKey()) { |
|
209 | - $query->withColumn('IFNULL(' . $modelI18nTableMapClass::TABLE_NAME . '.' . $columnMap->getName() . ', "'.$this->lang.'")', $columnMap->getPhpName()); |
|
205 | + foreach ($modelI18nTableMap->getColumns() as $columnMap) { |
|
206 | + if (!$columnMap->isPrimaryKey()) { |
|
207 | + $query->withColumn($modelI18nTableMapClass::TABLE_NAME.'.'.$columnMap->getName(), $columnMap->getPhpName()); |
|
208 | + } elseif (!$columnMap->isForeignKey()) { |
|
209 | + $query->withColumn('IFNULL('.$modelI18nTableMapClass::TABLE_NAME.'.'.$columnMap->getName().', "'.$this->lang.'")', $columnMap->getPhpName()); |
|
210 | 210 | } |
211 | 211 | } |
212 | 212 | } |
@@ -220,20 +220,20 @@ discard block |
||
220 | 220 | $model->fromArray($data); |
221 | 221 | $tableMap = $this->getTableMap(); |
222 | 222 | try { |
223 | - if($tableMap->hasRelation($tableMap->getPhpName() . 'I18n')) |
|
223 | + if ($tableMap->hasRelation($tableMap->getPhpName().'I18n')) |
|
224 | 224 | { |
225 | - $relateI18n = $tableMap->getRelation($tableMap->getPhpName() . 'I18n'); |
|
225 | + $relateI18n = $tableMap->getRelation($tableMap->getPhpName().'I18n'); |
|
226 | 226 | $i18NTableMap = $relateI18n->getLocalTable(); |
227 | - foreach($i18NTableMap->getColumns() as $columnMap) { |
|
228 | - $method = 'set' . $columnMap->getPhpName(); |
|
229 | - if(!($columnMap->isPrimaryKey() && $columnMap->isForeignKey()) |
|
227 | + foreach ($i18NTableMap->getColumns() as $columnMap) { |
|
228 | + $method = 'set'.$columnMap->getPhpName(); |
|
229 | + if (!($columnMap->isPrimaryKey() && $columnMap->isForeignKey()) |
|
230 | 230 | &&array_key_exists($columnMap->getPhpName(), $data) |
231 | 231 | && method_exists($model, $method)) { |
232 | 232 | $model->$method($data[$columnMap->getPhpName()]); |
233 | 233 | } |
234 | 234 | } |
235 | 235 | } |
236 | - } catch(\Exception $e) { |
|
236 | + }catch (\Exception $e) { |
|
237 | 237 | Logger::log($e->getMessage(), LOG_DEBUG); |
238 | 238 | } |
239 | 239 | } |
@@ -243,7 +243,7 @@ discard block |
||
243 | 243 | */ |
244 | 244 | protected function checkFieldType() { |
245 | 245 | $configType = Config::getParam('api.field.type'); |
246 | - switch($configType) { |
|
246 | + switch ($configType) { |
|
247 | 247 | case 'UpperCamelCase': |
248 | 248 | case TableMap::TYPE_PHPNAME: |
249 | 249 | $this->fieldType = TableMap::TYPE_PHPNAME; |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | protected $isMultipart = false; |
71 | 71 | |
72 | 72 | private function closeConnection() { |
73 | - if(null !== $this->con) { |
|
73 | + if (null !== $this->con) { |
|
74 | 74 | curl_close($this->con); |
75 | 75 | } |
76 | 76 | } |
@@ -233,7 +233,7 @@ discard block |
||
233 | 233 | */ |
234 | 234 | public function setIsJson($isJson = true) { |
235 | 235 | $this->isJson = $isJson; |
236 | - if($isJson) { |
|
236 | + if ($isJson) { |
|
237 | 237 | $this->setIsMultipart(false); |
238 | 238 | } |
239 | 239 | } |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | */ |
252 | 252 | public function setIsMultipart($isMultipart = true) { |
253 | 253 | $this->isMultipart = $isMultipart; |
254 | - if($isMultipart) { |
|
254 | + if ($isMultipart) { |
|
255 | 255 | $this->setIsJson(false); |
256 | 256 | } |
257 | 257 | } |
@@ -271,7 +271,7 @@ discard block |
||
271 | 271 | $this->url = NULL; |
272 | 272 | $this->params = array(); |
273 | 273 | $this->headers = array(); |
274 | - Logger::log('Context service for ' . static::class . ' cleared!'); |
|
274 | + Logger::log('Context service for '.static::class.' cleared!'); |
|
275 | 275 | $this->closeConnection(); |
276 | 276 | } |
277 | 277 | |
@@ -314,18 +314,18 @@ discard block |
||
314 | 314 | } |
315 | 315 | |
316 | 316 | protected function applyOptions() { |
317 | - if(count($this->options)) { |
|
317 | + if (count($this->options)) { |
|
318 | 318 | curl_setopt_array($this->con, $this->options); |
319 | 319 | } |
320 | 320 | } |
321 | 321 | |
322 | 322 | protected function applyHeaders() { |
323 | 323 | $headers = []; |
324 | - foreach($this->headers as $key => $value) { |
|
325 | - $headers[] = $key . ': ' . $value; |
|
324 | + foreach ($this->headers as $key => $value) { |
|
325 | + $headers[] = $key.': '.$value; |
|
326 | 326 | } |
327 | 327 | $headers[self::PSFS_TRACK_HEADER] = Logger::getUid(); |
328 | - if(count($headers)) { |
|
328 | + if (count($headers)) { |
|
329 | 329 | curl_setopt($this->con, CURLOPT_HTTPHEADER, $headers); |
330 | 330 | } |
331 | 331 | } |
@@ -334,10 +334,10 @@ discard block |
||
334 | 334 | * @return int |
335 | 335 | */ |
336 | 336 | private function parseServiceType() { |
337 | - if($this->getIsJson()) { |
|
337 | + if ($this->getIsJson()) { |
|
338 | 338 | return ServiceHelper::TYPE_JSON; |
339 | 339 | } |
340 | - if($this->getIsMultipart()) { |
|
340 | + if ($this->getIsMultipart()) { |
|
341 | 341 | return ServiceHelper::TYPE_MULTIPART; |
342 | 342 | } |
343 | 343 | return ServiceHelper::TYPE_HTTP; |
@@ -350,9 +350,9 @@ discard block |
||
350 | 350 | case Request::VERB_GET: |
351 | 351 | default: |
352 | 352 | $this->addOption(CURLOPT_CUSTOMREQUEST, Request::VERB_GET); |
353 | - if(!empty($this->params)) { |
|
353 | + if (!empty($this->params)) { |
|
354 | 354 | $sep = false !== strpos($this->getUrl(), '?') ? '?' : ''; |
355 | - $this->url = $this->url . $sep . http_build_query($this->params); |
|
355 | + $this->url = $this->url.$sep.http_build_query($this->params); |
|
356 | 356 | } |
357 | 357 | break; |
358 | 358 | case Request::VERB_POST: |
@@ -384,14 +384,14 @@ discard block |
||
384 | 384 | $this->applyOptions(); |
385 | 385 | $this->applyHeaders(); |
386 | 386 | $verbose = null; |
387 | - if('debug' === Config::getParam('log.level')) { |
|
387 | + if ('debug' === Config::getParam('log.level')) { |
|
388 | 388 | curl_setopt($this->con, CURLOPT_VERBOSE, true); |
389 | 389 | $verbose = fopen('php://temp', 'wb+'); |
390 | 390 | curl_setopt($this->con, CURLOPT_STDERR, $verbose); |
391 | 391 | } |
392 | 392 | $result = curl_exec($this->con); |
393 | 393 | $this->result = $this->isJson ? json_decode($result, true) : $result; |
394 | - if('debug' === Config::getParam('log.level')) { |
|
394 | + if ('debug' === Config::getParam('log.level')) { |
|
395 | 395 | rewind($verbose); |
396 | 396 | $verboseLog = stream_get_contents($verbose); |
397 | 397 | Logger::log($verboseLog, LOG_DEBUG, [ |
@@ -401,7 +401,7 @@ discard block |
||
401 | 401 | ]); |
402 | 402 | $this->info['verbose'] = $verboseLog; |
403 | 403 | } |
404 | - Logger::log($this->url . ' response: ', LOG_DEBUG, is_array($this->result) ? $this->result : [$this->result]); |
|
404 | + Logger::log($this->url.' response: ', LOG_DEBUG, is_array($this->result) ? $this->result : [$this->result]); |
|
405 | 405 | $this->info = array_merge($this->info, curl_getinfo($this->con)); |
406 | 406 | } |
407 | 407 |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | { |
34 | 34 | $platform = trim(Config::getInstance()->get('platform.name')); |
35 | 35 | header('HTTP/1.1 401 Unauthorized'); |
36 | - header('WWW-Authenticate: Basic Realm="' . $platform . '"'); |
|
36 | + header('WWW-Authenticate: Basic Realm="'.$platform.'"'); |
|
37 | 37 | echo t('Zona restringida'); |
38 | 38 | exit(); |
39 | 39 | } |
@@ -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 | } |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | $logs = array(); |
94 | 94 | /** @var \SplFileInfo $file */ |
95 | 95 | foreach ($files as $file) { |
96 | - $size = $file->getSize() / 8 / 1024; |
|
96 | + $size = $file->getSize()/8/1024; |
|
97 | 97 | $time = date('c', $file->getMTime()); |
98 | 98 | $dateTime = new \DateTime($time); |
99 | 99 | if (!isset($logs[$dateTime->format('Y')])) { |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | $files->files()->in(LOG_DIR)->name($selectedLog); |
123 | 123 | $file = null; |
124 | 124 | $log = array(); |
125 | - foreach($files as $match) { |
|
125 | + foreach ($files as $match) { |
|
126 | 126 | $file = $match; |
127 | 127 | break; |
128 | 128 | } |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | $time = date('c', $file->getMTime()); |
132 | 132 | $dateTime = new \DateTime($time); |
133 | 133 | $monthOpen = $dateTime->format('m'); |
134 | - $content = file($file->getPath() . DIRECTORY_SEPARATOR . $file->getFilename()); |
|
134 | + $content = file($file->getPath().DIRECTORY_SEPARATOR.$file->getFilename()); |
|
135 | 135 | krsort($content); |
136 | 136 | $detailLog = array(); |
137 | 137 | foreach ($content as &$line) { |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | break; |
190 | 190 | } |
191 | 191 | |
192 | - } catch (\Exception $e) { |
|
192 | + }catch (\Exception $e) { |
|
193 | 193 | $detail = [ |
194 | 194 | 'type' => 'danger', |
195 | 195 | ]; |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | */ |
146 | 146 | public static function header($name, $default = null) |
147 | 147 | { |
148 | - return self::getInstance()->getHeader($name, $default); |
|
148 | + return self::getInstance()->getHeader($name, $default); |
|
149 | 149 | } |
150 | 150 | |
151 | 151 | /** |
@@ -158,10 +158,10 @@ discard block |
||
158 | 158 | $header = null; |
159 | 159 | if ($this->hasHeader($name)) { |
160 | 160 | $header = $this->header[$name]; |
161 | - } else if(array_key_exists('h_' . strtolower($name), $this->query)) { |
|
162 | - $header = $this->query['h_' . strtolower($name)]; |
|
163 | - } else if(array_key_exists('HTTP_' . strtoupper(str_replace('-', '_', $name)), $this->server)) { |
|
164 | - $header = $this->server['HTTP_' . strtoupper(str_replace('-', '_', $name))]; |
|
161 | + }else if (array_key_exists('h_'.strtolower($name), $this->query)) { |
|
162 | + $header = $this->query['h_'.strtolower($name)]; |
|
163 | + }else if (array_key_exists('HTTP_'.strtoupper(str_replace('-', '_', $name)), $this->server)) { |
|
164 | + $header = $this->server['HTTP_'.strtoupper(str_replace('-', '_', $name))]; |
|
165 | 165 | } |
166 | 166 | return $header ?: $default; |
167 | 167 | } |
@@ -260,7 +260,7 @@ discard block |
||
260 | 260 | $url = $this->getServer('HTTP_ORIGIN'); |
261 | 261 | } |
262 | 262 | ob_start(); |
263 | - header('Location: ' . $url); |
|
263 | + header('Location: '.$url); |
|
264 | 264 | ob_end_clean(); |
265 | 265 | Security::getInstance()->updateSession(); |
266 | 266 | exit(t('Redireccionando...')); |
@@ -305,10 +305,10 @@ discard block |
||
305 | 305 | $url = $this->getServerName(); |
306 | 306 | $protocol = $hasProtocol ? $this->getProtocol() : ''; |
307 | 307 | if (!empty($protocol)) { |
308 | - $url = $protocol . $url; |
|
308 | + $url = $protocol.$url; |
|
309 | 309 | } |
310 | 310 | if (!in_array($this->getServer('SERVER_PORT'), [80, 443], true)) { |
311 | - $url .= ':' . $this->getServer('SERVER_PORT'); |
|
311 | + $url .= ':'.$this->getServer('SERVER_PORT'); |
|
312 | 312 | } |
313 | 313 | return $url; |
314 | 314 | } |
@@ -39,13 +39,13 @@ discard block |
||
39 | 39 | |
40 | 40 | $filePath = ''; |
41 | 41 | if (!file_exists($filePath)) { |
42 | - $filePath = BASE_DIR . $string; |
|
42 | + $filePath = BASE_DIR.$string; |
|
43 | 43 | } |
44 | 44 | $filenamePath = AssetsParser::findDomainPath($string, $filePath); |
45 | 45 | |
46 | 46 | $filePath = self::processAsset($string, $name, $return, $filenamePath); |
47 | 47 | $basePath = Config::getParam('resources.cdn.url', Request::getInstance()->getRootUrl()); |
48 | - $returnPath = empty($name) ? $basePath . '/' . $filePath : $name; |
|
48 | + $returnPath = empty($name) ? $basePath.'/'.$filePath : $name; |
|
49 | 49 | return $return ? $returnPath : ''; |
50 | 50 | } |
51 | 51 | |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | $router = Router::getInstance(); |
63 | 63 | try { |
64 | 64 | return $router->getRoute($path, $absolute, $params); |
65 | - } catch (\Exception $e) { |
|
65 | + }catch (\Exception $e) { |
|
66 | 66 | return $router->getRoute('', $absolute, $params); |
67 | 67 | } |
68 | 68 | } |
@@ -205,9 +205,9 @@ discard block |
||
205 | 205 | { |
206 | 206 | $data = file_get_contents($filenamePath); |
207 | 207 | if (!empty($name)) { |
208 | - file_put_contents(WEB_DIR . DIRECTORY_SEPARATOR . $name, $data); |
|
208 | + file_put_contents(WEB_DIR.DIRECTORY_SEPARATOR.$name, $data); |
|
209 | 209 | }else { |
210 | - file_put_contents($base . $filePath, $data); |
|
210 | + file_put_contents($base.$filePath, $data); |
|
211 | 211 | } |
212 | 212 | } |
213 | 213 | |
@@ -226,9 +226,9 @@ discard block |
||
226 | 226 | if (file_exists($filenamePath)) { |
227 | 227 | list($base, $htmlBase, $filePath) = AssetsParser::calculateAssetPath($string, $name, $return, $filenamePath); |
228 | 228 | //Creamos el directorio si no existe |
229 | - GeneratorHelper::createDir($base . $htmlBase); |
|
229 | + GeneratorHelper::createDir($base.$htmlBase); |
|
230 | 230 | //Si se ha modificado |
231 | - if (!file_exists($base . $filePath) || filemtime($base . $filePath) < filemtime($filenamePath)) { |
|
231 | + if (!file_exists($base.$filePath) || filemtime($base.$filePath) < filemtime($filenamePath)) { |
|
232 | 232 | if ($htmlBase === 'css') { |
233 | 233 | self::processCssLines($filenamePath); |
234 | 234 | } |
@@ -206,7 +206,7 @@ |
||
206 | 206 | $data = file_get_contents($filenamePath); |
207 | 207 | if (!empty($name)) { |
208 | 208 | file_put_contents(WEB_DIR . DIRECTORY_SEPARATOR . $name, $data); |
209 | - }else { |
|
209 | + } else { |
|
210 | 210 | file_put_contents($base . $filePath, $data); |
211 | 211 | } |
212 | 212 | } |
@@ -75,11 +75,11 @@ discard block |
||
75 | 75 | */ |
76 | 76 | public function init() |
77 | 77 | { |
78 | - list($this->routing, $this->slugs) = $this->cache->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'urls.json', $this->cacheType, TRUE); |
|
78 | + list($this->routing, $this->slugs) = $this->cache->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR.'urls.json', $this->cacheType, TRUE); |
|
79 | 79 | if (empty($this->routing) || Config::getInstance()->getDebugMode()) { |
80 | 80 | $this->debugLoad(); |
81 | - } else { |
|
82 | - $this->domains = $this->cache->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'domains.json', $this->cacheType, TRUE); |
|
81 | + }else { |
|
82 | + $this->domains = $this->cache->getDataFromFile(CONFIG_DIR.DIRECTORY_SEPARATOR.'domains.json', $this->cacheType, TRUE); |
|
83 | 83 | } |
84 | 84 | $this->checkExternalModules(false); |
85 | 85 | $this->setLoaded(); |
@@ -117,9 +117,9 @@ discard block |
||
117 | 117 | } |
118 | 118 | |
119 | 119 | $not_found_route = Config::getParam('route.404'); |
120 | - if(null !== $not_found_route) { |
|
120 | + if (null !== $not_found_route) { |
|
121 | 121 | Request::getInstance()->redirect($this->getRoute($not_found_route, true)); |
122 | - } else { |
|
122 | + }else { |
|
123 | 123 | return $template->render('error.html.twig', array( |
124 | 124 | 'exception' => $e, |
125 | 125 | 'trace' => $e->getTraceAsString(), |
@@ -170,12 +170,12 @@ discard block |
||
170 | 170 | try { |
171 | 171 | //Search action and execute |
172 | 172 | $this->searchAction($route); |
173 | - } catch (AccessDeniedException $e) { |
|
174 | - Logger::log(_('Solicitamos credenciales de acceso a zona restringida'), LOG_WARNING, ['file' => $e->getFile() . '[' . $e->getLine() . ']']); |
|
173 | + }catch (AccessDeniedException $e) { |
|
174 | + Logger::log(_('Solicitamos credenciales de acceso a zona restringida'), LOG_WARNING, ['file' => $e->getFile().'['.$e->getLine().']']); |
|
175 | 175 | return Admin::staticAdminLogon($route); |
176 | - } catch (RouterException $r) { |
|
176 | + }catch (RouterException $r) { |
|
177 | 177 | Logger::log($r->getMessage(), LOG_WARNING); |
178 | - } catch (\Exception $e) { |
|
178 | + }catch (\Exception $e) { |
|
179 | 179 | Logger::log($e->getMessage(), LOG_ERR); |
180 | 180 | throw $e; |
181 | 181 | } |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | */ |
193 | 193 | protected function searchAction($route) |
194 | 194 | { |
195 | - Logger::log('Searching action to execute: ' . $route, LOG_INFO); |
|
195 | + Logger::log('Searching action to execute: '.$route, LOG_INFO); |
|
196 | 196 | //Revisamos si tenemos la ruta registrada |
197 | 197 | $parts = parse_url($route); |
198 | 198 | $path = array_key_exists('path', $parts) ? $parts['path'] : $route; |
@@ -207,12 +207,12 @@ discard block |
||
207 | 207 | /** @var $class \PSFS\base\types\Controller */ |
208 | 208 | $class = RouterHelper::getClassToCall($action); |
209 | 209 | try { |
210 | - if($this->checkRequirements($action, $get)) { |
|
210 | + if ($this->checkRequirements($action, $get)) { |
|
211 | 211 | $this->executeCachedRoute($route, $action, $class, $get); |
212 | - } else { |
|
212 | + }else { |
|
213 | 213 | throw new RouterException(_('La ruta no es válida'), 400); |
214 | 214 | } |
215 | - } catch (\Exception $e) { |
|
215 | + }catch (\Exception $e) { |
|
216 | 216 | Logger::log($e->getMessage(), LOG_ERR); |
217 | 217 | throw $e; |
218 | 218 | } |
@@ -227,15 +227,15 @@ discard block |
||
227 | 227 | * @return bool |
228 | 228 | */ |
229 | 229 | private function checkRequirements(array $action, $params = []) { |
230 | - if(!empty($params) && !empty($action['requirements'])) { |
|
230 | + if (!empty($params) && !empty($action['requirements'])) { |
|
231 | 231 | $checked = 0; |
232 | - foreach(array_keys($params) as $key) { |
|
233 | - if(in_array($key, $action['requirements'], true)) { |
|
232 | + foreach (array_keys($params) as $key) { |
|
233 | + if (in_array($key, $action['requirements'], true)) { |
|
234 | 234 | $checked++; |
235 | 235 | } |
236 | 236 | } |
237 | 237 | $valid = count($action['requirements']) === $checked; |
238 | - } else { |
|
238 | + }else { |
|
239 | 239 | $valid = true; |
240 | 240 | } |
241 | 241 | return $valid; |
@@ -285,14 +285,14 @@ discard block |
||
285 | 285 | $this->checkExternalModules(); |
286 | 286 | if (file_exists($modulesPath)) { |
287 | 287 | $modules = $this->finder->directories()->in($modulesPath)->depth(0); |
288 | - if($modules->hasResults()) { |
|
288 | + if ($modules->hasResults()) { |
|
289 | 289 | foreach ($modules->getIterator() as $modulePath) { |
290 | 290 | $module = $modulePath->getBasename(); |
291 | - $this->routing = $this->inspectDir($modulesPath . DIRECTORY_SEPARATOR . $module, $module, $this->routing); |
|
291 | + $this->routing = $this->inspectDir($modulesPath.DIRECTORY_SEPARATOR.$module, $module, $this->routing); |
|
292 | 292 | } |
293 | 293 | } |
294 | 294 | } |
295 | - $this->cache->storeData(CONFIG_DIR . DIRECTORY_SEPARATOR . 'domains.json', $this->domains, Cache::JSON, TRUE); |
|
295 | + $this->cache->storeData(CONFIG_DIR.DIRECTORY_SEPARATOR.'domains.json', $this->domains, Cache::JSON, TRUE); |
|
296 | 296 | } |
297 | 297 | |
298 | 298 | /** |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | $home_params = NULL; |
309 | 309 | foreach ($this->routing as $pattern => $params) { |
310 | 310 | list($method, $route) = RouterHelper::extractHttpRoute($pattern); |
311 | - if (preg_match('/' . preg_quote($route, '/') . '$/i', '/' . $home)) { |
|
311 | + if (preg_match('/'.preg_quote($route, '/').'$/i', '/'.$home)) { |
|
312 | 312 | $home_params = $params; |
313 | 313 | } |
314 | 314 | unset($method); |
@@ -330,14 +330,14 @@ discard block |
||
330 | 330 | private function inspectDir($origen, $namespace = 'PSFS', $routing = []) |
331 | 331 | { |
332 | 332 | $files = $this->finder->files()->in($origen)->path('/(controller|api)/i')->depth(1)->name('*.php'); |
333 | - if($files->hasResults()) { |
|
333 | + if ($files->hasResults()) { |
|
334 | 334 | foreach ($files->getIterator() as $file) { |
335 | - if(method_exists($file, 'getRelativePathname') && $namespace !== 'PSFS') { |
|
336 | - $filename = '\\' . str_replace('/', '\\', str_replace($origen, '', $file->getRelativePathname())); |
|
337 | - } else { |
|
335 | + if (method_exists($file, 'getRelativePathname') && $namespace !== 'PSFS') { |
|
336 | + $filename = '\\'.str_replace('/', '\\', str_replace($origen, '', $file->getRelativePathname())); |
|
337 | + }else { |
|
338 | 338 | $filename = str_replace('/', '\\', str_replace($origen, '', $file->getPathname())); |
339 | 339 | } |
340 | - $routing = $this->addRouting($namespace . str_replace('.php', '', $filename), $routing, $namespace); |
|
340 | + $routing = $this->addRouting($namespace.str_replace('.php', '', $filename), $routing, $namespace); |
|
341 | 341 | } |
342 | 342 | } |
343 | 343 | $this->finder = new Finder(); |
@@ -366,7 +366,7 @@ discard block |
||
366 | 366 | private function addRouting($namespace, &$routing, $module = 'PSFS') |
367 | 367 | { |
368 | 368 | if (self::exists($namespace)) { |
369 | - if(I18nHelper::checkI18Class($namespace)) { |
|
369 | + if (I18nHelper::checkI18Class($namespace)) { |
|
370 | 370 | return $routing; |
371 | 371 | } |
372 | 372 | $reflection = new \ReflectionClass($namespace); |
@@ -408,7 +408,7 @@ discard block |
||
408 | 408 | if (!$this->domains) { |
409 | 409 | $this->domains = []; |
410 | 410 | } |
411 | - $domain = '@' . $class->getConstant('DOMAIN') . '/'; |
|
411 | + $domain = '@'.$class->getConstant('DOMAIN').'/'; |
|
412 | 412 | if (!array_key_exists($domain, $this->domains)) { |
413 | 413 | $this->domains[$domain] = RouterHelper::extractDomainInfo($class, $domain); |
414 | 414 | } |
@@ -424,11 +424,11 @@ discard block |
||
424 | 424 | */ |
425 | 425 | public function simpatize() |
426 | 426 | { |
427 | - $translationFileName = 'translations' . DIRECTORY_SEPARATOR . 'routes_translations.php'; |
|
428 | - $absoluteTranslationFileName = CACHE_DIR . DIRECTORY_SEPARATOR . $translationFileName; |
|
427 | + $translationFileName = 'translations'.DIRECTORY_SEPARATOR.'routes_translations.php'; |
|
428 | + $absoluteTranslationFileName = CACHE_DIR.DIRECTORY_SEPARATOR.$translationFileName; |
|
429 | 429 | $this->generateSlugs($absoluteTranslationFileName); |
430 | 430 | GeneratorHelper::createDir(CONFIG_DIR); |
431 | - Cache::getInstance()->storeData(CONFIG_DIR . DIRECTORY_SEPARATOR . 'urls.json', array($this->routing, $this->slugs), Cache::JSON, TRUE); |
|
431 | + Cache::getInstance()->storeData(CONFIG_DIR.DIRECTORY_SEPARATOR.'urls.json', array($this->routing, $this->slugs), Cache::JSON, TRUE); |
|
432 | 432 | |
433 | 433 | return $this; |
434 | 434 | } |
@@ -444,18 +444,18 @@ discard block |
||
444 | 444 | public function getRoute($slug = '', $absolute = FALSE, array $params = []) |
445 | 445 | { |
446 | 446 | if ('' === $slug) { |
447 | - return $absolute ? Request::getInstance()->getRootUrl() . '/' : '/'; |
|
447 | + return $absolute ? Request::getInstance()->getRootUrl().'/' : '/'; |
|
448 | 448 | } |
449 | 449 | if (!is_array($this->slugs) || !array_key_exists($slug, $this->slugs)) { |
450 | 450 | throw new RouterException(_('No existe la ruta especificada')); |
451 | 451 | } |
452 | - $url = $absolute ? Request::getInstance()->getRootUrl() . $this->slugs[$slug] : $this->slugs[$slug]; |
|
452 | + $url = $absolute ? Request::getInstance()->getRootUrl().$this->slugs[$slug] : $this->slugs[$slug]; |
|
453 | 453 | if (!empty($params)) { |
454 | 454 | foreach ($params as $key => $value) { |
455 | - $url = str_replace('{' . $key . '}', $value, $url); |
|
455 | + $url = str_replace('{'.$key.'}', $value, $url); |
|
456 | 456 | } |
457 | 457 | } elseif (!empty($this->routing[$this->slugs[$slug]]['default'])) { |
458 | - $url = $absolute ? Request::getInstance()->getRootUrl() . $this->routing[$this->slugs[$slug]]['default'] : $this->routing[$this->slugs[$slug]]['default']; |
|
458 | + $url = $absolute ? Request::getInstance()->getRootUrl().$this->routing[$this->slugs[$slug]]['default'] : $this->routing[$this->slugs[$slug]]['default']; |
|
459 | 459 | } |
460 | 460 | |
461 | 461 | return preg_replace('/(GET|POST|PUT|DELETE|ALL)\#\|\#/', '', $url); |
@@ -492,15 +492,15 @@ discard block |
||
492 | 492 | * @param string $method |
493 | 493 | */ |
494 | 494 | private function checkPreActions($class, $method) { |
495 | - $preAction = 'pre' . ucfirst($method); |
|
496 | - if(method_exists($class, $preAction)) { |
|
495 | + $preAction = 'pre'.ucfirst($method); |
|
496 | + if (method_exists($class, $preAction)) { |
|
497 | 497 | Logger::log(_('Pre action invoked')); |
498 | 498 | try { |
499 | - if(false === call_user_func_array([$class, $preAction])) { |
|
499 | + if (false === call_user_func_array([$class, $preAction])) { |
|
500 | 500 | Logger::log(_('Pre action failed'), LOG_ERR, [error_get_last()]); |
501 | 501 | error_clear_last(); |
502 | 502 | } |
503 | - } catch (\Exception $e) { |
|
503 | + }catch (\Exception $e) { |
|
504 | 504 | Logger::log($e->getMessage(), LOG_ERR, [$class, $method]); |
505 | 505 | } |
506 | 506 | } |
@@ -516,16 +516,16 @@ discard block |
||
516 | 516 | */ |
517 | 517 | protected function executeCachedRoute($route, $action, $class, $params = NULL) |
518 | 518 | { |
519 | - Logger::log('Executing route ' . $route, LOG_INFO); |
|
519 | + Logger::log('Executing route '.$route, LOG_INFO); |
|
520 | 520 | $action['params'] = array_merge($action['params'], $params, Request::getInstance()->getQueryParams()); |
521 | 521 | Security::getInstance()->setSessionKey(Cache::CACHE_SESSION_VAR, $action); |
522 | 522 | $cache = Cache::needCache(); |
523 | 523 | $execute = TRUE; |
524 | 524 | if (FALSE !== $cache && $action['http'] === 'GET' && Config::getParam('debug') === FALSE) { |
525 | 525 | list($path, $cacheDataName) = $this->cache->getRequestCacheHash(); |
526 | - $cachedData = $this->cache->readFromCache('json' . DIRECTORY_SEPARATOR . $path . $cacheDataName, $cache); |
|
526 | + $cachedData = $this->cache->readFromCache('json'.DIRECTORY_SEPARATOR.$path.$cacheDataName, $cache); |
|
527 | 527 | if (NULL !== $cachedData) { |
528 | - $headers = $this->cache->readFromCache('json' . DIRECTORY_SEPARATOR . $path . $cacheDataName . '.headers', $cache, null, Cache::JSON); |
|
528 | + $headers = $this->cache->readFromCache('json'.DIRECTORY_SEPARATOR.$path.$cacheDataName.'.headers', $cache, null, Cache::JSON); |
|
529 | 529 | Template::getInstance()->renderCache($cachedData, $headers); |
530 | 530 | $execute = FALSE; |
531 | 531 | } |
@@ -568,11 +568,11 @@ discard block |
||
568 | 568 | private function loadExternalAutoloader($hydrateRoute, SplFileInfo $modulePath, $externalModulePath) |
569 | 569 | { |
570 | 570 | $extModule = $modulePath->getBasename(); |
571 | - $moduleAutoloader = realpath($externalModulePath . DIRECTORY_SEPARATOR . $extModule . DIRECTORY_SEPARATOR . 'autoload.php'); |
|
572 | - if(file_exists($moduleAutoloader)) { |
|
571 | + $moduleAutoloader = realpath($externalModulePath.DIRECTORY_SEPARATOR.$extModule.DIRECTORY_SEPARATOR.'autoload.php'); |
|
572 | + if (file_exists($moduleAutoloader)) { |
|
573 | 573 | include_once $moduleAutoloader; |
574 | 574 | if ($hydrateRoute) { |
575 | - $this->routing = $this->inspectDir($externalModulePath . DIRECTORY_SEPARATOR . $extModule, '\\' . $extModule, $this->routing); |
|
575 | + $this->routing = $this->inspectDir($externalModulePath.DIRECTORY_SEPARATOR.$extModule, '\\'.$extModule, $this->routing); |
|
576 | 576 | } |
577 | 577 | } |
578 | 578 | } |
@@ -586,16 +586,16 @@ discard block |
||
586 | 586 | { |
587 | 587 | try { |
588 | 588 | $module = preg_replace('/(\\\|\/)/', DIRECTORY_SEPARATOR, $module); |
589 | - $externalModulePath = VENDOR_DIR . DIRECTORY_SEPARATOR . $module . DIRECTORY_SEPARATOR . 'src'; |
|
590 | - if(file_exists($externalModulePath)) { |
|
589 | + $externalModulePath = VENDOR_DIR.DIRECTORY_SEPARATOR.$module.DIRECTORY_SEPARATOR.'src'; |
|
590 | + if (file_exists($externalModulePath)) { |
|
591 | 591 | $externalModule = $this->finder->directories()->in($externalModulePath)->depth(0); |
592 | - if($externalModule->hasResults()) { |
|
592 | + if ($externalModule->hasResults()) { |
|
593 | 593 | foreach ($externalModule->getIterator() as $modulePath) { |
594 | 594 | $this->loadExternalAutoloader($hydrateRoute, $modulePath, $externalModulePath); |
595 | 595 | } |
596 | 596 | } |
597 | 597 | } |
598 | - } catch (\Exception $e) { |
|
598 | + }catch (\Exception $e) { |
|
599 | 599 | Logger::log($e->getMessage(), LOG_WARNING); |
600 | 600 | $module = null; |
601 | 601 | } |
@@ -19,11 +19,11 @@ discard block |
||
19 | 19 | public static function getClassToCall(array $action) |
20 | 20 | { |
21 | 21 | Logger::log('Getting class to call for executing the request action', LOG_DEBUG, $action); |
22 | - $actionClass = class_exists($action['class']) ? $action['class'] : "\\" . $action['class']; |
|
22 | + $actionClass = class_exists($action['class']) ? $action['class'] : "\\".$action['class']; |
|
23 | 23 | $reflectionClass = new \ReflectionClass($actionClass); |
24 | - if($reflectionClass->hasMethod('getInstance')) { |
|
24 | + if ($reflectionClass->hasMethod('getInstance')) { |
|
25 | 25 | $class = $reflectionClass->getMethod('getInstance')->invoke(null, $action['method']); |
26 | - } else { |
|
26 | + }else { |
|
27 | 27 | $class = new $actionClass; |
28 | 28 | } |
29 | 29 | return $class; |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | $expr = preg_quote($expr, '/'); |
113 | 113 | $expr = str_replace('###', '(.*)', $expr); |
114 | 114 | $expr2 = preg_replace('/\(\.\*\)$/', '', $expr); |
115 | - $matched = preg_match('/^' . $expr . '\/?$/i', $path) || preg_match('/^' . $expr2 . '?$/i', $path); |
|
115 | + $matched = preg_match('/^'.$expr.'\/?$/i', $path) || preg_match('/^'.$expr2.'?$/i', $path); |
|
116 | 116 | return $matched; |
117 | 117 | } |
118 | 118 | |
@@ -123,8 +123,8 @@ discard block |
||
123 | 123 | */ |
124 | 124 | public static function extractDomainInfo(\ReflectionClass $class, $domain) |
125 | 125 | { |
126 | - $path = dirname($class->getFileName()) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR; |
|
127 | - $path = realpath($path) . DIRECTORY_SEPARATOR; |
|
126 | + $path = dirname($class->getFileName()).DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR; |
|
127 | + $path = realpath($path).DIRECTORY_SEPARATOR; |
|
128 | 128 | $templatesPath = 'templates'; |
129 | 129 | $publicPath = 'public'; |
130 | 130 | $modelsPath = 'models'; |
@@ -134,13 +134,13 @@ discard block |
||
134 | 134 | $modelsPath = ucfirst($modelsPath); |
135 | 135 | } |
136 | 136 | if ($class->hasConstant('TPL')) { |
137 | - $templatesPath .= DIRECTORY_SEPARATOR . $class->getConstant('TPL'); |
|
137 | + $templatesPath .= DIRECTORY_SEPARATOR.$class->getConstant('TPL'); |
|
138 | 138 | } |
139 | 139 | return [ |
140 | 140 | 'base' => $path, |
141 | - 'template' => $path . $templatesPath, |
|
142 | - 'model' => $path . $modelsPath, |
|
143 | - 'public' => $path . $publicPath, |
|
141 | + 'template' => $path.$templatesPath, |
|
142 | + 'model' => $path.$modelsPath, |
|
143 | + 'public' => $path.$publicPath, |
|
144 | 144 | ]; |
145 | 145 | } |
146 | 146 | |
@@ -164,12 +164,12 @@ discard block |
||
164 | 164 | foreach ($parameters as $param) { |
165 | 165 | if ($param->isOptional() && !is_array($param->getDefaultValue())) { |
166 | 166 | $params[$param->getName()] = $param->getDefaultValue(); |
167 | - $default = str_replace('{' . $param->getName() . '}', $param->getDefaultValue(), $regex); |
|
168 | - } elseif(!$param->isOptional()) { |
|
167 | + $default = str_replace('{'.$param->getName().'}', $param->getDefaultValue(), $regex); |
|
168 | + } elseif (!$param->isOptional()) { |
|
169 | 169 | $requirements[] = $param->getName(); |
170 | 170 | } |
171 | 171 | } |
172 | - } else { |
|
172 | + }else { |
|
173 | 173 | $default = $regex; |
174 | 174 | } |
175 | 175 | |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | $default = str_replace('{__DOMAIN__}', $module, $default); |
252 | 252 | $httpMethod = self::extractReflectionHttpMethod($docComments); |
253 | 253 | $label = self::extractReflectionLabel(str_replace('{__API__}', $api, $docComments)); |
254 | - $route = $httpMethod . "#|#" . $regex; |
|
254 | + $route = $httpMethod."#|#".$regex; |
|
255 | 255 | $route = preg_replace('/(\\r|\\f|\\t|\\n)/', '', $route); |
256 | 256 | $info = [ |
257 | 257 | 'method' => $method->getName(), |