@@ -515,7 +515,7 @@ |
||
| 515 | 515 | /** |
| 516 | 516 | * Returns the tables used in the filter in an array. |
| 517 | 517 | * |
| 518 | - * @return array<string> |
|
| 518 | + * @return integer[] |
|
| 519 | 519 | */ |
| 520 | 520 | public function getUsedTables() { |
| 521 | 521 | return array_keys($this->dbRows); |
@@ -547,23 +547,23 @@ |
||
| 547 | 547 | return $sql_where; |
| 548 | 548 | } |
| 549 | 549 | |
| 550 | - /** |
|
| 551 | - * Override the native php clone function for TDBMObjects |
|
| 552 | - */ |
|
| 553 | - public function __clone(){ |
|
| 554 | - $this->_dbLoadIfNotLoaded(); |
|
| 555 | - //First lets set the status to new (to enter the save function) |
|
| 556 | - $this->status = TDBMObjectStateEnum::STATE_NEW; |
|
| 557 | - |
|
| 558 | - // Add the current TDBMObject to the save object list |
|
| 559 | - $this->tdbmService->_addToToSaveObjectList($this); |
|
| 560 | - |
|
| 561 | - //Now unset the PK from the row |
|
| 562 | - $pk_array = $this->tdbmService->getPrimaryKeyColumns($this->dbTableName); |
|
| 563 | - foreach ($pk_array as $pk) { |
|
| 564 | - $this->dbRow[$pk] = null; |
|
| 565 | - } |
|
| 566 | - } |
|
| 550 | + /** |
|
| 551 | + * Override the native php clone function for TDBMObjects |
|
| 552 | + */ |
|
| 553 | + public function __clone(){ |
|
| 554 | + $this->_dbLoadIfNotLoaded(); |
|
| 555 | + //First lets set the status to new (to enter the save function) |
|
| 556 | + $this->status = TDBMObjectStateEnum::STATE_NEW; |
|
| 557 | + |
|
| 558 | + // Add the current TDBMObject to the save object list |
|
| 559 | + $this->tdbmService->_addToToSaveObjectList($this); |
|
| 560 | + |
|
| 561 | + //Now unset the PK from the row |
|
| 562 | + $pk_array = $this->tdbmService->getPrimaryKeyColumns($this->dbTableName); |
|
| 563 | + foreach ($pk_array as $pk) { |
|
| 564 | + $this->dbRow[$pk] = null; |
|
| 565 | + } |
|
| 566 | + } |
|
| 567 | 567 | |
| 568 | 568 | /** |
| 569 | 569 | * Returns raw database rows. |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | * @throws TDBMException |
| 96 | 96 | * @throws TDBMInvalidOperationException |
| 97 | 97 | */ |
| 98 | - public function __construct($tableName=null, array $primaryKeys=array(), TDBMService $tdbmService=null) { |
|
| 98 | + public function __construct($tableName = null, array $primaryKeys = array(), TDBMService $tdbmService = null) { |
|
| 99 | 99 | // FIXME: lazy loading should be forbidden on tables with inheritance and dynamic type assignation... |
| 100 | 100 | if (!empty($tableName)) { |
| 101 | 101 | $this->dbRows[$tableName] = new DbRow($this, $tableName, $primaryKeys, $tdbmService); |
@@ -199,7 +199,7 @@ discard block |
||
| 199 | 199 | * $status = TDBMObjectStateEnum::STATE_LOADED when the object is cached in memory. |
| 200 | 200 | * @param string $state |
| 201 | 201 | */ |
| 202 | - public function _setStatus($state){ |
|
| 202 | + public function _setStatus($state) { |
|
| 203 | 203 | $this->status = $state; |
| 204 | 204 | |
| 205 | 205 | // TODO: we might ignore the loaded => dirty state here! dirty status comes from the db_row itself. |
@@ -210,7 +210,7 @@ discard block |
||
| 210 | 210 | |
| 211 | 211 | public function get($var, $tableName = null) { |
| 212 | 212 | if ($tableName === null) { |
| 213 | - if (count($this->dbRows) > 1) { |
|
| 213 | + if (count($this->dbRows)>1) { |
|
| 214 | 214 | throw new TDBMException('This object is based on several tables. You must specify which table you are retrieving data from.'); |
| 215 | 215 | } elseif (count($this->dbRows) === 1) { |
| 216 | 216 | $tableName = array_keys($this->dbRows)[0]; |
@@ -236,7 +236,7 @@ discard block |
||
| 236 | 236 | */ |
| 237 | 237 | public function has($var, $tableName = null) { |
| 238 | 238 | if ($tableName === null) { |
| 239 | - if (count($this->dbRows) > 1) { |
|
| 239 | + if (count($this->dbRows)>1) { |
|
| 240 | 240 | throw new TDBMException('This object is based on several tables. You must specify which table you are retrieving data from.'); |
| 241 | 241 | } elseif (count($this->dbRows) === 1) { |
| 242 | 242 | $tableName = array_keys($this->dbRows)[0]; |
@@ -256,7 +256,7 @@ discard block |
||
| 256 | 256 | |
| 257 | 257 | public function set($var, $value, $tableName = null) { |
| 258 | 258 | if ($tableName === null) { |
| 259 | - if (count($this->dbRows) > 1) { |
|
| 259 | + if (count($this->dbRows)>1) { |
|
| 260 | 260 | throw new TDBMException('This object is based on several tables. You must specify which table you are retrieving data from.'); |
| 261 | 261 | } elseif (count($this->dbRows) === 1) { |
| 262 | 262 | $tableName = array_keys($this->dbRows)[0]; |
@@ -281,7 +281,7 @@ discard block |
||
| 281 | 281 | */ |
| 282 | 282 | public function setRef($foreignKeyName, AbstractTDBMObject $bean, $tableName = null) { |
| 283 | 283 | if ($tableName === null) { |
| 284 | - if (count($this->dbRows) > 1) { |
|
| 284 | + if (count($this->dbRows)>1) { |
|
| 285 | 285 | throw new TDBMException('This object is based on several tables. You must specify which table you are retrieving data from.'); |
| 286 | 286 | } elseif (count($this->dbRows) === 1) { |
| 287 | 287 | $tableName = array_keys($this->dbRows)[0]; |
@@ -306,7 +306,7 @@ discard block |
||
| 306 | 306 | */ |
| 307 | 307 | public function getRef($foreignKeyName, $tableName = null) { |
| 308 | 308 | if ($tableName === null) { |
| 309 | - if (count($this->dbRows) > 1) { |
|
| 309 | + if (count($this->dbRows)>1) { |
|
| 310 | 310 | throw new TDBMException('This object is based on several tables. You must specify which table you are retrieving data from.'); |
| 311 | 311 | } elseif (count($this->dbRows) === 1) { |
| 312 | 312 | $tableName = array_keys($this->dbRows)[0]; |
@@ -421,13 +421,13 @@ discard block |
||
| 421 | 421 | */ |
| 422 | 422 | private function setRelationship($pivotTableName, AbstractTDBMObject $remoteBean, $status) { |
| 423 | 423 | $storage = $this->getRelationshipStorage($pivotTableName); |
| 424 | - $storage->attach($remoteBean, [ 'status' => $status, 'reverse' => false ]); |
|
| 424 | + $storage->attach($remoteBean, ['status' => $status, 'reverse' => false]); |
|
| 425 | 425 | if ($this->status === TDBMObjectStateEnum::STATE_LOADED) { |
| 426 | 426 | $this->_setStatus(TDBMObjectStateEnum::STATE_DIRTY); |
| 427 | 427 | } |
| 428 | 428 | |
| 429 | 429 | $remoteStorage = $remoteBean->getRelationshipStorage($pivotTableName); |
| 430 | - $remoteStorage->attach($this, [ 'status' => $status, 'reverse' => true ]); |
|
| 430 | + $remoteStorage->attach($this, ['status' => $status, 'reverse' => true]); |
|
| 431 | 431 | } |
| 432 | 432 | |
| 433 | 433 | /** |
@@ -496,7 +496,7 @@ discard block |
||
| 496 | 496 | * Implement the unique JsonSerializable method |
| 497 | 497 | * @return array |
| 498 | 498 | */ |
| 499 | - public function jsonSerialize(){ |
|
| 499 | + public function jsonSerialize() { |
|
| 500 | 500 | // FIXME |
| 501 | 501 | $this->_dbLoadIfNotLoaded(); |
| 502 | 502 | return $this->dbRow; |
@@ -526,23 +526,23 @@ discard block |
||
| 526 | 526 | * |
| 527 | 527 | * @return string |
| 528 | 528 | */ |
| 529 | - private function getPrimaryKeyWhereStatement () { |
|
| 529 | + private function getPrimaryKeyWhereStatement() { |
|
| 530 | 530 | // Let's first get the primary keys |
| 531 | 531 | $pk_table = $this->tdbmService->getPrimaryKeyColumns($this->dbTableName); |
| 532 | 532 | // Now for the object_id |
| 533 | 533 | $object_id = $this->TDBMObject_id; |
| 534 | 534 | // If there is only one primary key: |
| 535 | - if (count($pk_table)==1) { |
|
| 535 | + if (count($pk_table) == 1) { |
|
| 536 | 536 | $sql_where = $this->db_connection->escapeDBItem($this->dbTableName).'.'.$this->db_connection->escapeDBItem($pk_table[0])."=".$this->db_connection->quoteSmart($this->TDBMObject_id); |
| 537 | 537 | } else { |
| 538 | 538 | $ids = unserialize($object_id); |
| 539 | - $i=0; |
|
| 539 | + $i = 0; |
|
| 540 | 540 | $sql_where_array = array(); |
| 541 | 541 | foreach ($pk_table as $pk) { |
| 542 | 542 | $sql_where_array[] = $this->db_connection->escapeDBItem($this->dbTableName).'.'.$this->db_connection->escapeDBItem($pk)."=".$this->db_connection->quoteSmart($ids[$i]); |
| 543 | 543 | $i++; |
| 544 | 544 | } |
| 545 | - $sql_where = implode(" AND ",$sql_where_array); |
|
| 545 | + $sql_where = implode(" AND ", $sql_where_array); |
|
| 546 | 546 | } |
| 547 | 547 | return $sql_where; |
| 548 | 548 | } |
@@ -550,7 +550,7 @@ discard block |
||
| 550 | 550 | /** |
| 551 | 551 | * Override the native php clone function for TDBMObjects |
| 552 | 552 | */ |
| 553 | - public function __clone(){ |
|
| 553 | + public function __clone() { |
|
| 554 | 554 | $this->_dbLoadIfNotLoaded(); |
| 555 | 555 | //First lets set the status to new (to enter the save function) |
| 556 | 556 | $this->status = TDBMObjectStateEnum::STATE_NEW; |
@@ -577,7 +577,7 @@ discard block |
||
| 577 | 577 | private function registerTable($tableName) { |
| 578 | 578 | $dbRow = new DbRow($this, $tableName); |
| 579 | 579 | |
| 580 | - if (in_array($this->status, [ TDBMObjectStateEnum::STATE_NOT_LOADED, TDBMObjectStateEnum::STATE_LOADED, TDBMObjectStateEnum::STATE_DIRTY ])) { |
|
| 580 | + if (in_array($this->status, [TDBMObjectStateEnum::STATE_NOT_LOADED, TDBMObjectStateEnum::STATE_LOADED, TDBMObjectStateEnum::STATE_DIRTY])) { |
|
| 581 | 581 | // Let's get the primary key for the new table |
| 582 | 582 | $anotherDbRow = array_values($this->dbRows)[0]; |
| 583 | 583 | /* @var $anotherDbRow DbRow */ |
@@ -138,9 +138,7 @@ discard block |
||
| 138 | 138 | * @Action |
| 139 | 139 | * @param string $daonamespace |
| 140 | 140 | * @param string $beannamespace |
| 141 | - * @param int $keepSupport |
|
| 142 | 141 | * @param int $storeInUtc |
| 143 | - * @param int $castDatesToDateTime |
|
| 144 | 142 | * @param string $selfedit |
| 145 | 143 | * @throws \Mouf\MoufException |
| 146 | 144 | */ |
@@ -168,6 +166,9 @@ discard block |
||
| 168 | 166 | |
| 169 | 167 | protected $errorMsg; |
| 170 | 168 | |
| 169 | + /** |
|
| 170 | + * @param string $msg |
|
| 171 | + */ |
|
| 171 | 172 | private function displayErrorMsg($msg) { |
| 172 | 173 | $this->errorMsg = $msg; |
| 173 | 174 | $this->content->addFile(dirname(__FILE__)."/../../../../views/installError.php", $this); |
@@ -109,12 +109,12 @@ discard block |
||
| 109 | 109 | $this->beanNamespace = $this->moufManager->getVariable("tdbmDefaultBeanNamespace_tdbmService"); |
| 110 | 110 | |
| 111 | 111 | if ($this->daoNamespace == null && $this->beanNamespace == null) { |
| 112 | - $classNameMapper = ClassNameMapper::createFromComposerFile(__DIR__.'/../../../../../../../../composer.json'); |
|
| 112 | + $classNameMapper = ClassNameMapper::createFromComposerFile(__DIR__.'/../../../../../../../../composer.json'); |
|
| 113 | 113 | |
| 114 | - $autoloadNamespaces = $classNameMapper->getManagedNamespaces(); |
|
| 114 | + $autoloadNamespaces = $classNameMapper->getManagedNamespaces(); |
|
| 115 | 115 | if ($autoloadNamespaces) { |
| 116 | 116 | $this->autoloadDetected = true; |
| 117 | - $rootNamespace = $autoloadNamespaces[0]; |
|
| 117 | + $rootNamespace = $autoloadNamespaces[0]; |
|
| 118 | 118 | $this->daoNamespace = $rootNamespace."Dao"; |
| 119 | 119 | $this->beanNamespace = $rootNamespace."Dao\\Bean"; |
| 120 | 120 | } else { |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | * @param string $selfedit |
| 145 | 145 | * @throws \Mouf\MoufException |
| 146 | 146 | */ |
| 147 | - public function generate($daonamespace, $beannamespace, $storeInUtc = 0, $selfedit="false") { |
|
| 147 | + public function generate($daonamespace, $beannamespace, $storeInUtc = 0, $selfedit="false") { |
|
| 148 | 148 | $this->selfedit = $selfedit; |
| 149 | 149 | |
| 150 | 150 | if ($selfedit == "true") { |
@@ -144,7 +144,7 @@ |
||
| 144 | 144 | * @param string $selfedit |
| 145 | 145 | * @throws \Mouf\MoufException |
| 146 | 146 | */ |
| 147 | - public function generate($daonamespace, $beannamespace, $storeInUtc = 0, $selfedit="false") { |
|
| 147 | + public function generate($daonamespace, $beannamespace, $storeInUtc = 0, $selfedit = "false") { |
|
| 148 | 148 | $this->selfedit = $selfedit; |
| 149 | 149 | |
| 150 | 150 | if ($selfedit == "true") { |
@@ -328,7 +328,7 @@ |
||
| 328 | 328 | /** |
| 329 | 329 | * Returns the tables used in the filter in an array. |
| 330 | 330 | * |
| 331 | - * @return array<string> |
|
| 331 | + * @return string[] |
|
| 332 | 332 | */ |
| 333 | 333 | public function getUsedTables() { |
| 334 | 334 | return array($this->dbTableName); |
@@ -249,36 +249,36 @@ discard block |
||
| 249 | 249 | public function setRef($foreignKeyName, AbstractTDBMObject $bean = null) { |
| 250 | 250 | $this->references[$foreignKeyName] = $bean; |
| 251 | 251 | |
| 252 | - if ($this->tdbmService !== null && $this->status === TDBMObjectStateEnum::STATE_LOADED) { |
|
| 253 | - $this->status = TDBMObjectStateEnum::STATE_DIRTY; |
|
| 254 | - $this->tdbmService->_addToToSaveObjectList($this); |
|
| 255 | - } |
|
| 252 | + if ($this->tdbmService !== null && $this->status === TDBMObjectStateEnum::STATE_LOADED) { |
|
| 253 | + $this->status = TDBMObjectStateEnum::STATE_DIRTY; |
|
| 254 | + $this->tdbmService->_addToToSaveObjectList($this); |
|
| 255 | + } |
|
| 256 | 256 | } |
| 257 | 257 | |
| 258 | - /** |
|
| 259 | - * @param string $foreignKeyName A unique name for this reference |
|
| 260 | - * @return AbstractTDBMObject|null |
|
| 261 | - */ |
|
| 262 | - public function getRef($foreignKeyName) { |
|
| 258 | + /** |
|
| 259 | + * @param string $foreignKeyName A unique name for this reference |
|
| 260 | + * @return AbstractTDBMObject|null |
|
| 261 | + */ |
|
| 262 | + public function getRef($foreignKeyName) { |
|
| 263 | 263 | if (isset($this->references[$foreignKeyName])) { |
| 264 | 264 | return $this->references[$foreignKeyName]; |
| 265 | 265 | } elseif ($this->status === TDBMObjectStateEnum::STATE_NEW) { |
| 266 | - // If the object is new and has no property, then it has to be empty. |
|
| 267 | - return null; |
|
| 268 | - } else { |
|
| 269 | - $this->_dbLoadIfNotLoaded(); |
|
| 266 | + // If the object is new and has no property, then it has to be empty. |
|
| 267 | + return null; |
|
| 268 | + } else { |
|
| 269 | + $this->_dbLoadIfNotLoaded(); |
|
| 270 | 270 | |
| 271 | - // Let's match the name of the columns to the primary key values |
|
| 272 | - $fk = $this->tdbmService->_getForeignKeyByName($this->dbTableName, $foreignKeyName); |
|
| 271 | + // Let's match the name of the columns to the primary key values |
|
| 272 | + $fk = $this->tdbmService->_getForeignKeyByName($this->dbTableName, $foreignKeyName); |
|
| 273 | 273 | |
| 274 | - $values = []; |
|
| 275 | - foreach ($fk->getLocalColumns() as $column) { |
|
| 276 | - $values[] = $this->dbRow[$column]; |
|
| 277 | - } |
|
| 274 | + $values = []; |
|
| 275 | + foreach ($fk->getLocalColumns() as $column) { |
|
| 276 | + $values[] = $this->dbRow[$column]; |
|
| 277 | + } |
|
| 278 | 278 | |
| 279 | - $filter = array_combine($this->tdbmService->getPrimaryKeyColumns($fk->getForeignTableName()), $values); |
|
| 279 | + $filter = array_combine($this->tdbmService->getPrimaryKeyColumns($fk->getForeignTableName()), $values); |
|
| 280 | 280 | |
| 281 | - return $this->tdbmService->findObjectByPk($fk->getForeignTableName(), $filter, [], true); |
|
| 281 | + return $this->tdbmService->findObjectByPk($fk->getForeignTableName(), $filter, [], true); |
|
| 282 | 282 | } |
| 283 | 283 | } |
| 284 | 284 | |
@@ -334,23 +334,23 @@ discard block |
||
| 334 | 334 | return array($this->dbTableName); |
| 335 | 335 | } |
| 336 | 336 | |
| 337 | - /** |
|
| 338 | - * Override the native php clone function for TDBMObjects |
|
| 339 | - */ |
|
| 340 | - public function __clone(){ |
|
| 341 | - $this->_dbLoadIfNotLoaded(); |
|
| 342 | - //First lets set the status to new (to enter the save function) |
|
| 343 | - $this->status = TDBMObjectStateEnum::STATE_NEW; |
|
| 337 | + /** |
|
| 338 | + * Override the native php clone function for TDBMObjects |
|
| 339 | + */ |
|
| 340 | + public function __clone(){ |
|
| 341 | + $this->_dbLoadIfNotLoaded(); |
|
| 342 | + //First lets set the status to new (to enter the save function) |
|
| 343 | + $this->status = TDBMObjectStateEnum::STATE_NEW; |
|
| 344 | 344 | |
| 345 | - // Add the current TDBMObject to the save object list |
|
| 346 | - $this->tdbmService->_addToToSaveObjectList($this); |
|
| 345 | + // Add the current TDBMObject to the save object list |
|
| 346 | + $this->tdbmService->_addToToSaveObjectList($this); |
|
| 347 | 347 | |
| 348 | - //Now unset the PK from the row |
|
| 349 | - $pk_array = $this->tdbmService->getPrimaryKeyColumns($this->dbTableName); |
|
| 350 | - foreach ($pk_array as $pk) { |
|
| 351 | - $this->dbRow[$pk] = null; |
|
| 352 | - } |
|
| 353 | - } |
|
| 348 | + //Now unset the PK from the row |
|
| 349 | + $pk_array = $this->tdbmService->getPrimaryKeyColumns($this->dbTableName); |
|
| 350 | + foreach ($pk_array as $pk) { |
|
| 351 | + $this->dbRow[$pk] = null; |
|
| 352 | + } |
|
| 353 | + } |
|
| 354 | 354 | |
| 355 | 355 | /** |
| 356 | 356 | * Returns raw database row. |
@@ -358,35 +358,35 @@ discard block |
||
| 358 | 358 | * @return array |
| 359 | 359 | */ |
| 360 | 360 | public function _getDbRow() { |
| 361 | - // Let's merge $dbRow and $references |
|
| 362 | - $dbRow = $this->dbRow; |
|
| 363 | - |
|
| 364 | - foreach ($this->references as $foreignKeyName => $reference) { |
|
| 365 | - // Let's match the name of the columns to the primary key values |
|
| 366 | - $fk = $this->tdbmService->_getForeignKeyByName($this->dbTableName, $foreignKeyName); |
|
| 367 | - $refDbRows = $reference->_getDbRows(); |
|
| 368 | - $firstRefDbRow = reset($refDbRows); |
|
| 369 | - $pkValues = array_values($firstRefDbRow->_getPrimaryKeys()); |
|
| 370 | - $localColumns = $fk->getLocalColumns(); |
|
| 371 | - |
|
| 372 | - for ($i=0, $count=count($localColumns); $i<$count; $i++) { |
|
| 373 | - $dbRow[$localColumns[$i]] = $pkValues[$i]; |
|
| 374 | - } |
|
| 375 | - } |
|
| 361 | + // Let's merge $dbRow and $references |
|
| 362 | + $dbRow = $this->dbRow; |
|
| 363 | + |
|
| 364 | + foreach ($this->references as $foreignKeyName => $reference) { |
|
| 365 | + // Let's match the name of the columns to the primary key values |
|
| 366 | + $fk = $this->tdbmService->_getForeignKeyByName($this->dbTableName, $foreignKeyName); |
|
| 367 | + $refDbRows = $reference->_getDbRows(); |
|
| 368 | + $firstRefDbRow = reset($refDbRows); |
|
| 369 | + $pkValues = array_values($firstRefDbRow->_getPrimaryKeys()); |
|
| 370 | + $localColumns = $fk->getLocalColumns(); |
|
| 371 | + |
|
| 372 | + for ($i=0, $count=count($localColumns); $i<$count; $i++) { |
|
| 373 | + $dbRow[$localColumns[$i]] = $pkValues[$i]; |
|
| 374 | + } |
|
| 375 | + } |
|
| 376 | 376 | |
| 377 | 377 | return $dbRow; |
| 378 | 378 | } |
| 379 | 379 | |
| 380 | - /** |
|
| 381 | - * Returns references array. |
|
| 382 | - * |
|
| 383 | - * @return AbstractTDBMObject[] |
|
| 384 | - */ |
|
| 385 | - public function _getReferences() { |
|
| 386 | - return $this->references; |
|
| 387 | - } |
|
| 380 | + /** |
|
| 381 | + * Returns references array. |
|
| 382 | + * |
|
| 383 | + * @return AbstractTDBMObject[] |
|
| 384 | + */ |
|
| 385 | + public function _getReferences() { |
|
| 386 | + return $this->references; |
|
| 387 | + } |
|
| 388 | 388 | |
| 389 | - /** |
|
| 389 | + /** |
|
| 390 | 390 | * @return array |
| 391 | 391 | */ |
| 392 | 392 | public function _getPrimaryKeys() |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | * @throws TDBMException |
| 95 | 95 | * @throws TDBMInvalidOperationException |
| 96 | 96 | */ |
| 97 | - public function __construct(AbstractTDBMObject $object, $table_name, array $primaryKeys=array(), TDBMService $tdbmService=null, array $dbRow = array()) { |
|
| 97 | + public function __construct(AbstractTDBMObject $object, $table_name, array $primaryKeys = array(), TDBMService $tdbmService = null, array $dbRow = array()) { |
|
| 98 | 98 | $this->object = $object; |
| 99 | 99 | $this->dbTableName = $table_name; |
| 100 | 100 | |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | * $status = TDBMObjectStateEnum::STATE_LOADED when the object is cached in memory. |
| 142 | 142 | * @param string $state |
| 143 | 143 | */ |
| 144 | - public function _setStatus($state){ |
|
| 144 | + public function _setStatus($state) { |
|
| 145 | 145 | $this->status = $state; |
| 146 | 146 | } |
| 147 | 147 | |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | $sql = "SELECT * FROM ".$connection->quoteIdentifier($this->dbTableName)." WHERE ".$sql_where; |
| 164 | 164 | $result = $connection->executeQuery($sql, $parameters); |
| 165 | 165 | |
| 166 | - if ($result->rowCount()==0) |
|
| 166 | + if ($result->rowCount() == 0) |
|
| 167 | 167 | { |
| 168 | 168 | throw new TDBMException("Could not retrieve object from table \"$this->dbTableName\" with ID \"".$this->TDBMObject_id."\"."); |
| 169 | 169 | } |
@@ -310,7 +310,7 @@ discard block |
||
| 310 | 310 | * Implement the unique JsonSerializable method |
| 311 | 311 | * @return array |
| 312 | 312 | */ |
| 313 | - public function jsonSerialize(){ |
|
| 313 | + public function jsonSerialize() { |
|
| 314 | 314 | $this->_dbLoadIfNotLoaded(); |
| 315 | 315 | return $this->dbRow; |
| 316 | 316 | } |
@@ -337,7 +337,7 @@ discard block |
||
| 337 | 337 | /** |
| 338 | 338 | * Override the native php clone function for TDBMObjects |
| 339 | 339 | */ |
| 340 | - public function __clone(){ |
|
| 340 | + public function __clone() { |
|
| 341 | 341 | $this->_dbLoadIfNotLoaded(); |
| 342 | 342 | //First lets set the status to new (to enter the save function) |
| 343 | 343 | $this->status = TDBMObjectStateEnum::STATE_NEW; |
@@ -369,7 +369,7 @@ discard block |
||
| 369 | 369 | $pkValues = array_values($firstRefDbRow->_getPrimaryKeys()); |
| 370 | 370 | $localColumns = $fk->getLocalColumns(); |
| 371 | 371 | |
| 372 | - for ($i=0, $count=count($localColumns); $i<$count; $i++) { |
|
| 372 | + for ($i = 0, $count = count($localColumns); $i<$count; $i++) { |
|
| 373 | 373 | $dbRow[$localColumns[$i]] = $pkValues[$i]; |
| 374 | 374 | } |
| 375 | 375 | } |
@@ -63,6 +63,9 @@ discard block |
||
| 63 | 63 | |
| 64 | 64 | private $innerResultIterator; |
| 65 | 65 | |
| 66 | + /** |
|
| 67 | + * @param integer $offset |
|
| 68 | + */ |
|
| 66 | 69 | public function __construct(ResultIterator $parentResult, $magicSql, array $parameters, $limit, $offset, array $columnDescriptors, $objectStorage, $className, TDBMService $tdbmService, MagicQuery $magicQuery, $mode) |
| 67 | 70 | { |
| 68 | 71 | $this->parentResult = $parentResult; |
@@ -108,7 +111,7 @@ discard block |
||
| 108 | 111 | } |
| 109 | 112 | |
| 110 | 113 | /** |
| 111 | - * @return int |
|
| 114 | + * @return double |
|
| 112 | 115 | */ |
| 113 | 116 | public function getCurrentPage() |
| 114 | 117 | { |
@@ -112,7 +112,7 @@ |
||
| 112 | 112 | */ |
| 113 | 113 | public function getCurrentPage() |
| 114 | 114 | { |
| 115 | - return floor($this->offset / $this->limit) + 1; |
|
| 115 | + return floor($this->offset/$this->limit)+1; |
|
| 116 | 116 | } |
| 117 | 117 | |
| 118 | 118 | /** |
@@ -18,7 +18,6 @@ |
||
| 18 | 18 | along with this program; if not, write to the Free Software |
| 19 | 19 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | 20 | */ |
| 21 | -use Doctrine\DBAL\Driver\Connection; |
|
| 22 | 21 | |
| 23 | 22 | |
| 24 | 23 | /** |
@@ -35,6 +35,9 @@ discard block |
||
| 35 | 35 | class TDBMObject extends AbstractTDBMObject implements \ArrayAccess, \Iterator |
| 36 | 36 | { |
| 37 | 37 | |
| 38 | + /** |
|
| 39 | + * @param string $var |
|
| 40 | + */ |
|
| 38 | 41 | public function __get($var) |
| 39 | 42 | { |
| 40 | 43 | return $this->get($var); |
@@ -51,6 +54,10 @@ discard block |
||
| 51 | 54 | return $this->has($var); |
| 52 | 55 | } |
| 53 | 56 | |
| 57 | + /** |
|
| 58 | + * @param string $var |
|
| 59 | + * @param string|null $value |
|
| 60 | + */ |
|
| 54 | 61 | public function __set($var, $value) |
| 55 | 62 | { |
| 56 | 63 | $this->set($var, $value); |
@@ -18,7 +18,6 @@ |
||
| 18 | 18 | along with this program; if not, write to the Free Software |
| 19 | 19 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | 20 | */ |
| 21 | -use Doctrine\DBAL\Driver\Connection; |
|
| 22 | 21 | |
| 23 | 22 | |
| 24 | 23 | /** |
@@ -35,117 +35,117 @@ |
||
| 35 | 35 | class TDBMObject extends AbstractTDBMObject implements \ArrayAccess, \Iterator |
| 36 | 36 | { |
| 37 | 37 | |
| 38 | - public function __get($var) |
|
| 39 | - { |
|
| 40 | - return $this->get($var); |
|
| 41 | - } |
|
| 42 | - |
|
| 43 | - /** |
|
| 44 | - * Returns true if a column is set, false otherwise. |
|
| 45 | - * |
|
| 46 | - * @param string $var |
|
| 47 | - * @return boolean |
|
| 48 | - */ |
|
| 49 | - public function __isset($var) |
|
| 50 | - { |
|
| 51 | - return $this->has($var); |
|
| 52 | - } |
|
| 53 | - |
|
| 54 | - public function __set($var, $value) |
|
| 55 | - { |
|
| 56 | - $this->set($var, $value); |
|
| 57 | - } |
|
| 58 | - |
|
| 59 | - /** |
|
| 60 | - * Implements array behaviour for our object. |
|
| 61 | - * |
|
| 62 | - * @param string $offset |
|
| 63 | - * @param string $value |
|
| 64 | - */ |
|
| 65 | - public function offsetSet($offset, $value) |
|
| 66 | - { |
|
| 67 | - $this->__set($offset, $value); |
|
| 68 | - } |
|
| 69 | - |
|
| 70 | - /** |
|
| 71 | - * Implements array behaviour for our object. |
|
| 72 | - * |
|
| 73 | - * @param string $offset |
|
| 74 | - * @return bool |
|
| 75 | - */ |
|
| 76 | - public function offsetExists($offset) |
|
| 77 | - { |
|
| 78 | - $this->_dbLoadIfNotLoaded(); |
|
| 79 | - return isset($this->dbRow[$offset]); |
|
| 80 | - } |
|
| 81 | - |
|
| 82 | - /** |
|
| 83 | - * Implements array behaviour for our object. |
|
| 84 | - * |
|
| 85 | - * @param string $offset |
|
| 86 | - */ |
|
| 87 | - public function offsetUnset($offset) |
|
| 88 | - { |
|
| 89 | - $this->__set($offset, null); |
|
| 90 | - } |
|
| 91 | - |
|
| 92 | - /** |
|
| 93 | - * Implements array behaviour for our object. |
|
| 94 | - * |
|
| 95 | - * @param string $offset |
|
| 96 | - * @return mixed|null |
|
| 97 | - */ |
|
| 98 | - public function offsetGet($offset) |
|
| 99 | - { |
|
| 100 | - return $this->__get($offset); |
|
| 101 | - } |
|
| 102 | - |
|
| 103 | - private $_validIterator = false; |
|
| 104 | - |
|
| 105 | - /** |
|
| 106 | - * Implements iterator behaviour for our object (so we can each column). |
|
| 107 | - */ |
|
| 108 | - public function rewind() |
|
| 109 | - { |
|
| 110 | - $this->_dbLoadIfNotLoaded(); |
|
| 111 | - if (count($this->dbRow) > 0) { |
|
| 112 | - $this->_validIterator = true; |
|
| 113 | - } else { |
|
| 114 | - $this->_validIterator = false; |
|
| 115 | - } |
|
| 116 | - reset($this->dbRow); |
|
| 117 | - } |
|
| 118 | - |
|
| 119 | - /** |
|
| 120 | - * Implements iterator behaviour for our object (so we can each column). |
|
| 121 | - */ |
|
| 122 | - public function next() |
|
| 123 | - { |
|
| 124 | - $val = next($this->dbRow); |
|
| 125 | - $this->_validIterator = !($val === false); |
|
| 126 | - } |
|
| 127 | - |
|
| 128 | - /** |
|
| 129 | - * Implements iterator behaviour for our object (so we can each column). |
|
| 130 | - */ |
|
| 131 | - public function key() |
|
| 132 | - { |
|
| 133 | - return key($this->dbRow); |
|
| 134 | - } |
|
| 135 | - |
|
| 136 | - /** |
|
| 137 | - * Implements iterator behaviour for our object (so we can each column). |
|
| 138 | - */ |
|
| 139 | - public function current() |
|
| 140 | - { |
|
| 141 | - return current($this->dbRow); |
|
| 142 | - } |
|
| 143 | - |
|
| 144 | - /** |
|
| 145 | - * Implements iterator behaviour for our object (so we can each column). |
|
| 146 | - */ |
|
| 147 | - public function valid() |
|
| 148 | - { |
|
| 149 | - return $this->_validIterator; |
|
| 150 | - } |
|
| 38 | + public function __get($var) |
|
| 39 | + { |
|
| 40 | + return $this->get($var); |
|
| 41 | + } |
|
| 42 | + |
|
| 43 | + /** |
|
| 44 | + * Returns true if a column is set, false otherwise. |
|
| 45 | + * |
|
| 46 | + * @param string $var |
|
| 47 | + * @return boolean |
|
| 48 | + */ |
|
| 49 | + public function __isset($var) |
|
| 50 | + { |
|
| 51 | + return $this->has($var); |
|
| 52 | + } |
|
| 53 | + |
|
| 54 | + public function __set($var, $value) |
|
| 55 | + { |
|
| 56 | + $this->set($var, $value); |
|
| 57 | + } |
|
| 58 | + |
|
| 59 | + /** |
|
| 60 | + * Implements array behaviour for our object. |
|
| 61 | + * |
|
| 62 | + * @param string $offset |
|
| 63 | + * @param string $value |
|
| 64 | + */ |
|
| 65 | + public function offsetSet($offset, $value) |
|
| 66 | + { |
|
| 67 | + $this->__set($offset, $value); |
|
| 68 | + } |
|
| 69 | + |
|
| 70 | + /** |
|
| 71 | + * Implements array behaviour for our object. |
|
| 72 | + * |
|
| 73 | + * @param string $offset |
|
| 74 | + * @return bool |
|
| 75 | + */ |
|
| 76 | + public function offsetExists($offset) |
|
| 77 | + { |
|
| 78 | + $this->_dbLoadIfNotLoaded(); |
|
| 79 | + return isset($this->dbRow[$offset]); |
|
| 80 | + } |
|
| 81 | + |
|
| 82 | + /** |
|
| 83 | + * Implements array behaviour for our object. |
|
| 84 | + * |
|
| 85 | + * @param string $offset |
|
| 86 | + */ |
|
| 87 | + public function offsetUnset($offset) |
|
| 88 | + { |
|
| 89 | + $this->__set($offset, null); |
|
| 90 | + } |
|
| 91 | + |
|
| 92 | + /** |
|
| 93 | + * Implements array behaviour for our object. |
|
| 94 | + * |
|
| 95 | + * @param string $offset |
|
| 96 | + * @return mixed|null |
|
| 97 | + */ |
|
| 98 | + public function offsetGet($offset) |
|
| 99 | + { |
|
| 100 | + return $this->__get($offset); |
|
| 101 | + } |
|
| 102 | + |
|
| 103 | + private $_validIterator = false; |
|
| 104 | + |
|
| 105 | + /** |
|
| 106 | + * Implements iterator behaviour for our object (so we can each column). |
|
| 107 | + */ |
|
| 108 | + public function rewind() |
|
| 109 | + { |
|
| 110 | + $this->_dbLoadIfNotLoaded(); |
|
| 111 | + if (count($this->dbRow) > 0) { |
|
| 112 | + $this->_validIterator = true; |
|
| 113 | + } else { |
|
| 114 | + $this->_validIterator = false; |
|
| 115 | + } |
|
| 116 | + reset($this->dbRow); |
|
| 117 | + } |
|
| 118 | + |
|
| 119 | + /** |
|
| 120 | + * Implements iterator behaviour for our object (so we can each column). |
|
| 121 | + */ |
|
| 122 | + public function next() |
|
| 123 | + { |
|
| 124 | + $val = next($this->dbRow); |
|
| 125 | + $this->_validIterator = !($val === false); |
|
| 126 | + } |
|
| 127 | + |
|
| 128 | + /** |
|
| 129 | + * Implements iterator behaviour for our object (so we can each column). |
|
| 130 | + */ |
|
| 131 | + public function key() |
|
| 132 | + { |
|
| 133 | + return key($this->dbRow); |
|
| 134 | + } |
|
| 135 | + |
|
| 136 | + /** |
|
| 137 | + * Implements iterator behaviour for our object (so we can each column). |
|
| 138 | + */ |
|
| 139 | + public function current() |
|
| 140 | + { |
|
| 141 | + return current($this->dbRow); |
|
| 142 | + } |
|
| 143 | + |
|
| 144 | + /** |
|
| 145 | + * Implements iterator behaviour for our object (so we can each column). |
|
| 146 | + */ |
|
| 147 | + public function valid() |
|
| 148 | + { |
|
| 149 | + return $this->_validIterator; |
|
| 150 | + } |
|
| 151 | 151 | } |
| 152 | 152 | \ No newline at end of file |
@@ -108,7 +108,7 @@ |
||
| 108 | 108 | public function rewind() |
| 109 | 109 | { |
| 110 | 110 | $this->_dbLoadIfNotLoaded(); |
| 111 | - if (count($this->dbRow) > 0) { |
|
| 111 | + if (count($this->dbRow)>0) { |
|
| 112 | 112 | $this->_validIterator = true; |
| 113 | 113 | } else { |
| 114 | 114 | $this->_validIterator = false; |
@@ -27,8 +27,7 @@ |
||
| 27 | 27 | /** |
| 28 | 28 | * Returns the foreignkey the column is part of, if any. null otherwise. |
| 29 | 29 | * |
| 30 | - * @param Column $column |
|
| 31 | - * @return ForeignKeyConstraint|null |
|
| 30 | + * @return boolean |
|
| 32 | 31 | */ |
| 33 | 32 | public function getForeignKey() { |
| 34 | 33 | return false; |
@@ -12,88 +12,88 @@ discard block |
||
| 12 | 12 | */ |
| 13 | 13 | class ScalarBeanPropertyDescriptor extends AbstractBeanPropertyDescriptor |
| 14 | 14 | { |
| 15 | - /** |
|
| 16 | - * @var Column |
|
| 17 | - */ |
|
| 18 | - private $column; |
|
| 19 | - |
|
| 20 | - |
|
| 21 | - public function __construct(Table $table, Column $column) { |
|
| 22 | - parent::__construct($table); |
|
| 23 | - $this->table = $table; |
|
| 24 | - $this->column = $column; |
|
| 25 | - } |
|
| 26 | - |
|
| 27 | - /** |
|
| 28 | - * Returns the foreignkey the column is part of, if any. null otherwise. |
|
| 29 | - * |
|
| 30 | - * @param Column $column |
|
| 31 | - * @return ForeignKeyConstraint|null |
|
| 32 | - */ |
|
| 33 | - public function getForeignKey() { |
|
| 34 | - return false; |
|
| 35 | - } |
|
| 36 | - |
|
| 37 | - /** |
|
| 38 | - * Returns the param annotation for this property (useful for constructor). |
|
| 39 | - * |
|
| 40 | - * @return string |
|
| 41 | - */ |
|
| 42 | - public function getParamAnnotation() { |
|
| 43 | - $className = $this->getClassName(); |
|
| 44 | - $paramType = $className ?: TDBMDaoGenerator::dbalTypeToPhpType($this->column->getType()); |
|
| 45 | - |
|
| 46 | - $str = " * @param %s %s"; |
|
| 47 | - return sprintf($str, $paramType, $this->getVariableName()); |
|
| 48 | - } |
|
| 49 | - |
|
| 50 | - public function getUpperCamelCaseName() { |
|
| 51 | - return TDBMDaoGenerator::toCamelCase($this->column->getName()); |
|
| 52 | - } |
|
| 53 | - |
|
| 54 | - /** |
|
| 55 | - * Returns the name of the class linked to this property or null if this is not a foreign key |
|
| 56 | - * @return null|string |
|
| 57 | - */ |
|
| 58 | - public function getClassName() { |
|
| 59 | - return null; |
|
| 60 | - } |
|
| 61 | - |
|
| 62 | - /** |
|
| 63 | - * Returns true if the property is compulsory (and therefore should be fetched in the constructor). |
|
| 64 | - * @return bool |
|
| 65 | - */ |
|
| 66 | - public function isCompulsory() { |
|
| 67 | - return $this->column->getNotnull() && !$this->column->getAutoincrement(); |
|
| 68 | - } |
|
| 69 | - |
|
| 70 | - /** |
|
| 71 | - * Returns true if the property is the primary key |
|
| 72 | - * @return bool |
|
| 73 | - */ |
|
| 74 | - public function isPrimaryKey() { |
|
| 75 | - return in_array($this->column->getName(), $this->table->getPrimaryKeyColumns()); |
|
| 76 | - } |
|
| 77 | - |
|
| 78 | - /** |
|
| 79 | - * Returns the PHP code for getters and setters |
|
| 80 | - * @return string |
|
| 81 | - */ |
|
| 82 | - public function getGetterSetterCode() { |
|
| 83 | - |
|
| 84 | - $type = $this->column->getType(); |
|
| 85 | - $normalizedType = TDBMDaoGenerator::dbalTypeToPhpType($type); |
|
| 86 | - |
|
| 87 | - $columnGetterName = $this->getGetterName(); |
|
| 88 | - $columnSetterName = $this->getSetterName(); |
|
| 89 | - |
|
| 90 | - if ($normalizedType == "\\DateTimeInterface") { |
|
| 91 | - $castTo = "\\DateTimeInterface "; |
|
| 92 | - } else { |
|
| 93 | - $castTo = ""; |
|
| 94 | - } |
|
| 95 | - |
|
| 96 | - $getterAndSetterCode = ' /** |
|
| 15 | + /** |
|
| 16 | + * @var Column |
|
| 17 | + */ |
|
| 18 | + private $column; |
|
| 19 | + |
|
| 20 | + |
|
| 21 | + public function __construct(Table $table, Column $column) { |
|
| 22 | + parent::__construct($table); |
|
| 23 | + $this->table = $table; |
|
| 24 | + $this->column = $column; |
|
| 25 | + } |
|
| 26 | + |
|
| 27 | + /** |
|
| 28 | + * Returns the foreignkey the column is part of, if any. null otherwise. |
|
| 29 | + * |
|
| 30 | + * @param Column $column |
|
| 31 | + * @return ForeignKeyConstraint|null |
|
| 32 | + */ |
|
| 33 | + public function getForeignKey() { |
|
| 34 | + return false; |
|
| 35 | + } |
|
| 36 | + |
|
| 37 | + /** |
|
| 38 | + * Returns the param annotation for this property (useful for constructor). |
|
| 39 | + * |
|
| 40 | + * @return string |
|
| 41 | + */ |
|
| 42 | + public function getParamAnnotation() { |
|
| 43 | + $className = $this->getClassName(); |
|
| 44 | + $paramType = $className ?: TDBMDaoGenerator::dbalTypeToPhpType($this->column->getType()); |
|
| 45 | + |
|
| 46 | + $str = " * @param %s %s"; |
|
| 47 | + return sprintf($str, $paramType, $this->getVariableName()); |
|
| 48 | + } |
|
| 49 | + |
|
| 50 | + public function getUpperCamelCaseName() { |
|
| 51 | + return TDBMDaoGenerator::toCamelCase($this->column->getName()); |
|
| 52 | + } |
|
| 53 | + |
|
| 54 | + /** |
|
| 55 | + * Returns the name of the class linked to this property or null if this is not a foreign key |
|
| 56 | + * @return null|string |
|
| 57 | + */ |
|
| 58 | + public function getClassName() { |
|
| 59 | + return null; |
|
| 60 | + } |
|
| 61 | + |
|
| 62 | + /** |
|
| 63 | + * Returns true if the property is compulsory (and therefore should be fetched in the constructor). |
|
| 64 | + * @return bool |
|
| 65 | + */ |
|
| 66 | + public function isCompulsory() { |
|
| 67 | + return $this->column->getNotnull() && !$this->column->getAutoincrement(); |
|
| 68 | + } |
|
| 69 | + |
|
| 70 | + /** |
|
| 71 | + * Returns true if the property is the primary key |
|
| 72 | + * @return bool |
|
| 73 | + */ |
|
| 74 | + public function isPrimaryKey() { |
|
| 75 | + return in_array($this->column->getName(), $this->table->getPrimaryKeyColumns()); |
|
| 76 | + } |
|
| 77 | + |
|
| 78 | + /** |
|
| 79 | + * Returns the PHP code for getters and setters |
|
| 80 | + * @return string |
|
| 81 | + */ |
|
| 82 | + public function getGetterSetterCode() { |
|
| 83 | + |
|
| 84 | + $type = $this->column->getType(); |
|
| 85 | + $normalizedType = TDBMDaoGenerator::dbalTypeToPhpType($type); |
|
| 86 | + |
|
| 87 | + $columnGetterName = $this->getGetterName(); |
|
| 88 | + $columnSetterName = $this->getSetterName(); |
|
| 89 | + |
|
| 90 | + if ($normalizedType == "\\DateTimeInterface") { |
|
| 91 | + $castTo = "\\DateTimeInterface "; |
|
| 92 | + } else { |
|
| 93 | + $castTo = ""; |
|
| 94 | + } |
|
| 95 | + |
|
| 96 | + $getterAndSetterCode = ' /** |
|
| 97 | 97 | * The getter for the "%s" column. |
| 98 | 98 | * |
| 99 | 99 | * @return %s |
@@ -112,23 +112,23 @@ discard block |
||
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | '; |
| 115 | - return sprintf($getterAndSetterCode, |
|
| 116 | - // Getter |
|
| 117 | - $this->column->getName(), |
|
| 118 | - $normalizedType, |
|
| 119 | - $columnGetterName, |
|
| 120 | - var_export($this->column->getName(), true), |
|
| 121 | - var_export($this->table->getName(), true), |
|
| 122 | - // Setter |
|
| 123 | - $this->column->getName(), |
|
| 124 | - $normalizedType, |
|
| 125 | - $this->column->getName(), |
|
| 126 | - $columnSetterName, |
|
| 127 | - $castTo, |
|
| 128 | - $this->column->getName(), |
|
| 129 | - var_export($this->column->getName(), true), |
|
| 130 | - $this->column->getName(), |
|
| 131 | - var_export($this->table->getName(), true) |
|
| 132 | - ); |
|
| 133 | - } |
|
| 115 | + return sprintf($getterAndSetterCode, |
|
| 116 | + // Getter |
|
| 117 | + $this->column->getName(), |
|
| 118 | + $normalizedType, |
|
| 119 | + $columnGetterName, |
|
| 120 | + var_export($this->column->getName(), true), |
|
| 121 | + var_export($this->table->getName(), true), |
|
| 122 | + // Setter |
|
| 123 | + $this->column->getName(), |
|
| 124 | + $normalizedType, |
|
| 125 | + $this->column->getName(), |
|
| 126 | + $columnSetterName, |
|
| 127 | + $castTo, |
|
| 128 | + $this->column->getName(), |
|
| 129 | + var_export($this->column->getName(), true), |
|
| 130 | + $this->column->getName(), |
|
| 131 | + var_export($this->table->getName(), true) |
|
| 132 | + ); |
|
| 133 | + } |
|
| 134 | 134 | } |
@@ -46,7 +46,6 @@ discard block |
||
| 46 | 46 | /** |
| 47 | 47 | * Constructor. |
| 48 | 48 | * |
| 49 | - * @param Connection $dbConnection The connection to the database. |
|
| 50 | 49 | */ |
| 51 | 50 | public function __construct(SchemaAnalyzer $schemaAnalyzer, Schema $schema, TDBMSchemaAnalyzer $tdbmSchemaAnalyzer) { |
| 52 | 51 | $this->schemaAnalyzer = $schemaAnalyzer; |
@@ -99,6 +98,9 @@ discard block |
||
| 99 | 98 | * Generates in one method call the daos and the beans for one table. |
| 100 | 99 | * |
| 101 | 100 | * @param $tableName |
| 101 | + * @param string $daonamespace |
|
| 102 | + * @param string $beannamespace |
|
| 103 | + * @param boolean $storeInUtc |
|
| 102 | 104 | */ |
| 103 | 105 | public function generateDaoAndBean(Table $table, $daonamespace, $beannamespace, ClassNameMapper $classNameMapper, $storeInUtc) { |
| 104 | 106 | $tableName = $table->getName(); |
@@ -134,7 +136,7 @@ discard block |
||
| 134 | 136 | /** |
| 135 | 137 | * Returns the name of the base bean class from the table name. |
| 136 | 138 | * |
| 137 | - * @param $tableName |
|
| 139 | + * @param string $tableName |
|
| 138 | 140 | * @return string |
| 139 | 141 | */ |
| 140 | 142 | public static function getBaseBeanNameFromTableName($tableName) { |
@@ -144,7 +146,7 @@ discard block |
||
| 144 | 146 | /** |
| 145 | 147 | * Returns the name of the base DAO class from the table name. |
| 146 | 148 | * |
| 147 | - * @param $tableName |
|
| 149 | + * @param string $tableName |
|
| 148 | 150 | * @return string |
| 149 | 151 | */ |
| 150 | 152 | public static function getBaseDaoNameFromTableName($tableName) { |
@@ -156,7 +158,7 @@ discard block |
||
| 156 | 158 | * |
| 157 | 159 | * @param string $className The name of the class |
| 158 | 160 | * @param string $baseClassName The name of the base class which will be extended (name only, no directory) |
| 159 | - * @param string $tableName The name of the table |
|
| 161 | + * @param string $table The name of the table |
|
| 160 | 162 | * @param string $beannamespace The namespace of the bean |
| 161 | 163 | * @param ClassNameMapper $classNameMapper |
| 162 | 164 | * @throws TDBMException |
@@ -214,9 +216,10 @@ discard block |
||
| 214 | 216 | /** |
| 215 | 217 | * Writes the PHP bean DAO with simple functions to create/get/save objects. |
| 216 | 218 | * |
| 217 | - * @param string $fileName The file that will be written (without the directory) |
|
| 218 | 219 | * @param string $className The name of the class |
| 219 | - * @param string $tableName The name of the table |
|
| 220 | + * @param string $table The name of the table |
|
| 221 | + * @param string $baseClassName |
|
| 222 | + * @param string $beanClassName |
|
| 220 | 223 | */ |
| 221 | 224 | public function generateDao($className, $baseClassName, $beanClassName, Table $table, $daonamespace, $beannamespace, ClassNameMapper $classNameMapper) { |
| 222 | 225 | $tableName = $table->getName(); |
@@ -458,6 +461,8 @@ discard block |
||
| 458 | 461 | * Generates the factory bean. |
| 459 | 462 | * |
| 460 | 463 | * @param Table[] $tableList |
| 464 | + * @param string $daoFactoryClassName |
|
| 465 | + * @param string $daoNamespace |
|
| 461 | 466 | */ |
| 462 | 467 | private function generateFactory(array $tableList, $daoFactoryClassName, $daoNamespace, ClassNameMapper $classNameMapper) { |
| 463 | 468 | // For each table, let's write a property. |
@@ -2,8 +2,6 @@ |
||
| 2 | 2 | namespace Mouf\Database\TDBM\Utils; |
| 3 | 3 | |
| 4 | 4 | use Doctrine\DBAL\Driver\Connection; |
| 5 | -use Doctrine\DBAL\Schema\Column; |
|
| 6 | -use Doctrine\DBAL\Schema\ForeignKeyConstraint; |
|
| 7 | 5 | use Doctrine\DBAL\Schema\Schema; |
| 8 | 6 | use Doctrine\DBAL\Schema\Table; |
| 9 | 7 | use Doctrine\DBAL\Types\Type; |
@@ -206,7 +206,7 @@ discard block |
||
| 206 | 206 | |
| 207 | 207 | }"; |
| 208 | 208 | $this->ensureDirectoryExist($possibleFileName); |
| 209 | - file_put_contents($possibleFileName ,$str); |
|
| 209 | + file_put_contents($possibleFileName, $str); |
|
| 210 | 210 | @chmod($possibleFileName, 0664); |
| 211 | 211 | } |
| 212 | 212 | } |
@@ -226,11 +226,11 @@ discard block |
||
| 226 | 226 | foreach ($table->getColumns() as $column) { |
| 227 | 227 | $comments = $column->getComment(); |
| 228 | 228 | $matches = array(); |
| 229 | - if (preg_match('/@defaultSort(\((desc|asc)\))*/', $comments, $matches) != 0){ |
|
| 229 | + if (preg_match('/@defaultSort(\((desc|asc)\))*/', $comments, $matches) != 0) { |
|
| 230 | 230 | $defaultSort = $data['column_name']; |
| 231 | - if (count($matches == 3)){ |
|
| 231 | + if (count($matches == 3)) { |
|
| 232 | 232 | $defaultSortDirection = $matches[2]; |
| 233 | - }else{ |
|
| 233 | + } else { |
|
| 234 | 234 | $defaultSortDirection = 'ASC'; |
| 235 | 235 | } |
| 236 | 236 | } |
@@ -416,7 +416,7 @@ discard block |
||
| 416 | 416 | $possibleBaseFileName = $this->rootPath.$possibleBaseFileNames[0]; |
| 417 | 417 | |
| 418 | 418 | $this->ensureDirectoryExist($possibleBaseFileName); |
| 419 | - file_put_contents($possibleBaseFileName ,$str); |
|
| 419 | + file_put_contents($possibleBaseFileName, $str); |
|
| 420 | 420 | @chmod($possibleBaseFileName, 0664); |
| 421 | 421 | |
| 422 | 422 | $possibleFileNames = $classNameMapper->getPossibleFileNames($daonamespace."\\".$className); |
@@ -447,7 +447,7 @@ discard block |
||
| 447 | 447 | } |
| 448 | 448 | "; |
| 449 | 449 | $this->ensureDirectoryExist($possibleFileName); |
| 450 | - file_put_contents($possibleFileName ,$str); |
|
| 450 | + file_put_contents($possibleFileName, $str); |
|
| 451 | 451 | @chmod($possibleFileName, 0664); |
| 452 | 452 | } |
| 453 | 453 | } |
@@ -523,7 +523,7 @@ discard block |
||
| 523 | 523 | $possibleFileName = $this->rootPath.$possibleFileNames[0]; |
| 524 | 524 | |
| 525 | 525 | $this->ensureDirectoryExist($possibleFileName); |
| 526 | - file_put_contents($possibleFileName ,$str); |
|
| 526 | + file_put_contents($possibleFileName, $str); |
|
| 527 | 527 | } |
| 528 | 528 | |
| 529 | 529 | /** |
@@ -534,7 +534,7 @@ discard block |
||
| 534 | 534 | * @return string |
| 535 | 535 | */ |
| 536 | 536 | public static function toCamelCase($str) { |
| 537 | - $str = strtoupper(substr($str,0,1)).substr($str,1); |
|
| 537 | + $str = strtoupper(substr($str, 0, 1)).substr($str, 1); |
|
| 538 | 538 | while (true) { |
| 539 | 539 | if (strpos($str, "_") === false && strpos($str, " ") === false) { |
| 540 | 540 | break; |
@@ -544,9 +544,9 @@ discard block |
||
| 544 | 544 | if ($pos === false) { |
| 545 | 545 | $pos = strpos($str, " "); |
| 546 | 546 | } |
| 547 | - $before = substr($str,0,$pos); |
|
| 548 | - $after = substr($str,$pos+1); |
|
| 549 | - $str = $before.strtoupper(substr($after,0,1)).substr($after,1); |
|
| 547 | + $before = substr($str, 0, $pos); |
|
| 548 | + $after = substr($str, $pos+1); |
|
| 549 | + $str = $before.strtoupper(substr($after, 0, 1)).substr($after, 1); |
|
| 550 | 550 | } |
| 551 | 551 | return $str; |
| 552 | 552 | } |
@@ -627,7 +627,7 @@ discard block |
||
| 627 | 627 | Type::GUID => 'string' |
| 628 | 628 | ]; |
| 629 | 629 | |
| 630 | - return isset($map[$type->getName()])?$map[$type->getName()]:$type->getName(); |
|
| 630 | + return isset($map[$type->getName()]) ? $map[$type->getName()] : $type->getName(); |
|
| 631 | 631 | } |
| 632 | 632 | |
| 633 | 633 | /** |
@@ -642,7 +642,7 @@ discard block |
||
| 642 | 642 | |
| 643 | 643 | foreach ($tables as $table) { |
| 644 | 644 | $tableName = $table->getName(); |
| 645 | - $tableToBeanMap[$tableName] = $beanNamespace . "\\" . self::getBeanNameFromTableName($tableName); |
|
| 645 | + $tableToBeanMap[$tableName] = $beanNamespace."\\".self::getBeanNameFromTableName($tableName); |
|
| 646 | 646 | } |
| 647 | 647 | return $tableToBeanMap; |
| 648 | 648 | } |
@@ -230,7 +230,7 @@ |
||
| 230 | 230 | $defaultSort = $data['column_name']; |
| 231 | 231 | if (count($matches == 3)){ |
| 232 | 232 | $defaultSortDirection = $matches[2]; |
| 233 | - }else{ |
|
| 233 | + } else{ |
|
| 234 | 234 | $defaultSortDirection = 'ASC'; |
| 235 | 235 | } |
| 236 | 236 | } |
@@ -20,178 +20,178 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | class TDBMDaoGenerator { |
| 22 | 22 | |
| 23 | - /** |
|
| 24 | - * |
|
| 25 | - * @var SchemaAnalyzer |
|
| 26 | - */ |
|
| 27 | - private $schemaAnalyzer; |
|
| 28 | - |
|
| 29 | - /** |
|
| 30 | - * |
|
| 31 | - * @var Schema |
|
| 32 | - */ |
|
| 33 | - private $schema; |
|
| 34 | - |
|
| 35 | - /** |
|
| 36 | - * The root directory of the project. |
|
| 37 | - * |
|
| 38 | - * @var string |
|
| 39 | - */ |
|
| 40 | - private $rootPath; |
|
| 41 | - |
|
| 42 | - /** |
|
| 43 | - * @var TDBMSchemaAnalyzer |
|
| 44 | - */ |
|
| 45 | - private $tdbmSchemaAnalyzer; |
|
| 46 | - |
|
| 47 | - /** |
|
| 48 | - * Constructor. |
|
| 49 | - * |
|
| 50 | - * @param Connection $dbConnection The connection to the database. |
|
| 51 | - */ |
|
| 52 | - public function __construct(SchemaAnalyzer $schemaAnalyzer, Schema $schema, TDBMSchemaAnalyzer $tdbmSchemaAnalyzer) { |
|
| 53 | - $this->schemaAnalyzer = $schemaAnalyzer; |
|
| 54 | - $this->schema = $schema; |
|
| 55 | - $this->tdbmSchemaAnalyzer = $tdbmSchemaAnalyzer; |
|
| 56 | - $this->rootPath = __DIR__."/../../../../../../../../"; |
|
| 57 | - } |
|
| 58 | - |
|
| 59 | - /** |
|
| 60 | - * Generates all the daos and beans. |
|
| 61 | - * |
|
| 62 | - * @param string $daoFactoryClassName The classe name of the DAO factory |
|
| 63 | - * @param string $daonamespace The namespace for the DAOs, without trailing \ |
|
| 64 | - * @param string $beannamespace The Namespace for the beans, without trailing \ |
|
| 65 | - * @param bool $storeInUtc If the generated daos should store the date in UTC timezone instead of user's timezone. |
|
| 66 | - * @return \string[] the list of tables |
|
| 67 | - * @throws TDBMException |
|
| 68 | - */ |
|
| 69 | - public function generateAllDaosAndBeans($daoFactoryClassName, $daonamespace, $beannamespace, $storeInUtc) { |
|
| 70 | - // TODO: extract ClassNameMapper in its own package! |
|
| 71 | - $classNameMapper = ClassNameMapper::createFromComposerFile($this->rootPath.'composer.json'); |
|
| 72 | - |
|
| 73 | - // TODO: check that no class name ends with "Base". Otherwise, there will be name clash. |
|
| 74 | - |
|
| 75 | - $tableList = $this->schema->getTables(); |
|
| 76 | - |
|
| 77 | - // Remove all beans and daos from junction tables |
|
| 78 | - $junctionTables = $this->schemaAnalyzer->detectJunctionTables(); |
|
| 79 | - $junctionTableNames = array_map(function(Table $table) { |
|
| 80 | - return $table->getName(); |
|
| 81 | - }, $junctionTables); |
|
| 82 | - |
|
| 83 | - $tableList = array_filter($tableList, function(Table $table) use ($junctionTableNames) { |
|
| 84 | - return !in_array($table->getName(), $junctionTableNames); |
|
| 85 | - }); |
|
| 86 | - |
|
| 87 | - foreach ($tableList as $table) { |
|
| 88 | - $this->generateDaoAndBean($table, $daonamespace, $beannamespace, $classNameMapper, $storeInUtc); |
|
| 89 | - } |
|
| 23 | + /** |
|
| 24 | + * |
|
| 25 | + * @var SchemaAnalyzer |
|
| 26 | + */ |
|
| 27 | + private $schemaAnalyzer; |
|
| 28 | + |
|
| 29 | + /** |
|
| 30 | + * |
|
| 31 | + * @var Schema |
|
| 32 | + */ |
|
| 33 | + private $schema; |
|
| 34 | + |
|
| 35 | + /** |
|
| 36 | + * The root directory of the project. |
|
| 37 | + * |
|
| 38 | + * @var string |
|
| 39 | + */ |
|
| 40 | + private $rootPath; |
|
| 41 | + |
|
| 42 | + /** |
|
| 43 | + * @var TDBMSchemaAnalyzer |
|
| 44 | + */ |
|
| 45 | + private $tdbmSchemaAnalyzer; |
|
| 46 | + |
|
| 47 | + /** |
|
| 48 | + * Constructor. |
|
| 49 | + * |
|
| 50 | + * @param Connection $dbConnection The connection to the database. |
|
| 51 | + */ |
|
| 52 | + public function __construct(SchemaAnalyzer $schemaAnalyzer, Schema $schema, TDBMSchemaAnalyzer $tdbmSchemaAnalyzer) { |
|
| 53 | + $this->schemaAnalyzer = $schemaAnalyzer; |
|
| 54 | + $this->schema = $schema; |
|
| 55 | + $this->tdbmSchemaAnalyzer = $tdbmSchemaAnalyzer; |
|
| 56 | + $this->rootPath = __DIR__."/../../../../../../../../"; |
|
| 57 | + } |
|
| 58 | + |
|
| 59 | + /** |
|
| 60 | + * Generates all the daos and beans. |
|
| 61 | + * |
|
| 62 | + * @param string $daoFactoryClassName The classe name of the DAO factory |
|
| 63 | + * @param string $daonamespace The namespace for the DAOs, without trailing \ |
|
| 64 | + * @param string $beannamespace The Namespace for the beans, without trailing \ |
|
| 65 | + * @param bool $storeInUtc If the generated daos should store the date in UTC timezone instead of user's timezone. |
|
| 66 | + * @return \string[] the list of tables |
|
| 67 | + * @throws TDBMException |
|
| 68 | + */ |
|
| 69 | + public function generateAllDaosAndBeans($daoFactoryClassName, $daonamespace, $beannamespace, $storeInUtc) { |
|
| 70 | + // TODO: extract ClassNameMapper in its own package! |
|
| 71 | + $classNameMapper = ClassNameMapper::createFromComposerFile($this->rootPath.'composer.json'); |
|
| 72 | + |
|
| 73 | + // TODO: check that no class name ends with "Base". Otherwise, there will be name clash. |
|
| 74 | + |
|
| 75 | + $tableList = $this->schema->getTables(); |
|
| 76 | + |
|
| 77 | + // Remove all beans and daos from junction tables |
|
| 78 | + $junctionTables = $this->schemaAnalyzer->detectJunctionTables(); |
|
| 79 | + $junctionTableNames = array_map(function(Table $table) { |
|
| 80 | + return $table->getName(); |
|
| 81 | + }, $junctionTables); |
|
| 82 | + |
|
| 83 | + $tableList = array_filter($tableList, function(Table $table) use ($junctionTableNames) { |
|
| 84 | + return !in_array($table->getName(), $junctionTableNames); |
|
| 85 | + }); |
|
| 86 | + |
|
| 87 | + foreach ($tableList as $table) { |
|
| 88 | + $this->generateDaoAndBean($table, $daonamespace, $beannamespace, $classNameMapper, $storeInUtc); |
|
| 89 | + } |
|
| 90 | 90 | |
| 91 | - $this->generateFactory($tableList, $daoFactoryClassName, $daonamespace, $classNameMapper); |
|
| 91 | + $this->generateFactory($tableList, $daoFactoryClassName, $daonamespace, $classNameMapper); |
|
| 92 | 92 | |
| 93 | - // Ok, let's return the list of all tables. |
|
| 94 | - // These will be used by the calling script to create Mouf instances. |
|
| 93 | + // Ok, let's return the list of all tables. |
|
| 94 | + // These will be used by the calling script to create Mouf instances. |
|
| 95 | 95 | |
| 96 | - return array_map(function(Table $table) { return $table->getName(); },$tableList); |
|
| 97 | - } |
|
| 96 | + return array_map(function(Table $table) { return $table->getName(); },$tableList); |
|
| 97 | + } |
|
| 98 | 98 | |
| 99 | - /** |
|
| 100 | - * Generates in one method call the daos and the beans for one table. |
|
| 101 | - * |
|
| 102 | - * @param $tableName |
|
| 103 | - */ |
|
| 104 | - public function generateDaoAndBean(Table $table, $daonamespace, $beannamespace, ClassNameMapper $classNameMapper, $storeInUtc) { |
|
| 99 | + /** |
|
| 100 | + * Generates in one method call the daos and the beans for one table. |
|
| 101 | + * |
|
| 102 | + * @param $tableName |
|
| 103 | + */ |
|
| 104 | + public function generateDaoAndBean(Table $table, $daonamespace, $beannamespace, ClassNameMapper $classNameMapper, $storeInUtc) { |
|
| 105 | 105 | $tableName = $table->getName(); |
| 106 | - $daoName = $this->getDaoNameFromTableName($tableName); |
|
| 107 | - $beanName = $this->getBeanNameFromTableName($tableName); |
|
| 108 | - $baseBeanName = $this->getBaseBeanNameFromTableName($tableName); |
|
| 109 | - $baseDaoName = $this->getBaseDaoNameFromTableName($tableName); |
|
| 110 | - |
|
| 111 | - $this->generateBean($beanName, $baseBeanName, $table, $beannamespace, $classNameMapper, $storeInUtc); |
|
| 112 | - $this->generateDao($daoName, $baseDaoName, $beanName, $table, $daonamespace, $beannamespace, $classNameMapper); |
|
| 113 | - } |
|
| 106 | + $daoName = $this->getDaoNameFromTableName($tableName); |
|
| 107 | + $beanName = $this->getBeanNameFromTableName($tableName); |
|
| 108 | + $baseBeanName = $this->getBaseBeanNameFromTableName($tableName); |
|
| 109 | + $baseDaoName = $this->getBaseDaoNameFromTableName($tableName); |
|
| 110 | + |
|
| 111 | + $this->generateBean($beanName, $baseBeanName, $table, $beannamespace, $classNameMapper, $storeInUtc); |
|
| 112 | + $this->generateDao($daoName, $baseDaoName, $beanName, $table, $daonamespace, $beannamespace, $classNameMapper); |
|
| 113 | + } |
|
| 114 | 114 | |
| 115 | - /** |
|
| 116 | - * Returns the name of the bean class from the table name. |
|
| 117 | - * |
|
| 118 | - * @param $tableName |
|
| 119 | - * @return string |
|
| 120 | - */ |
|
| 121 | - public static function getBeanNameFromTableName($tableName) { |
|
| 122 | - return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."Bean"; |
|
| 123 | - } |
|
| 115 | + /** |
|
| 116 | + * Returns the name of the bean class from the table name. |
|
| 117 | + * |
|
| 118 | + * @param $tableName |
|
| 119 | + * @return string |
|
| 120 | + */ |
|
| 121 | + public static function getBeanNameFromTableName($tableName) { |
|
| 122 | + return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."Bean"; |
|
| 123 | + } |
|
| 124 | 124 | |
| 125 | - /** |
|
| 126 | - * Returns the name of the DAO class from the table name. |
|
| 127 | - * |
|
| 128 | - * @param $tableName |
|
| 129 | - * @return string |
|
| 130 | - */ |
|
| 131 | - public static function getDaoNameFromTableName($tableName) { |
|
| 132 | - return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."Dao"; |
|
| 133 | - } |
|
| 125 | + /** |
|
| 126 | + * Returns the name of the DAO class from the table name. |
|
| 127 | + * |
|
| 128 | + * @param $tableName |
|
| 129 | + * @return string |
|
| 130 | + */ |
|
| 131 | + public static function getDaoNameFromTableName($tableName) { |
|
| 132 | + return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."Dao"; |
|
| 133 | + } |
|
| 134 | 134 | |
| 135 | - /** |
|
| 136 | - * Returns the name of the base bean class from the table name. |
|
| 137 | - * |
|
| 138 | - * @param $tableName |
|
| 139 | - * @return string |
|
| 140 | - */ |
|
| 141 | - public static function getBaseBeanNameFromTableName($tableName) { |
|
| 142 | - return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."BaseBean"; |
|
| 143 | - } |
|
| 144 | - |
|
| 145 | - /** |
|
| 146 | - * Returns the name of the base DAO class from the table name. |
|
| 147 | - * |
|
| 148 | - * @param $tableName |
|
| 149 | - * @return string |
|
| 150 | - */ |
|
| 151 | - public static function getBaseDaoNameFromTableName($tableName) { |
|
| 152 | - return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."BaseDao"; |
|
| 153 | - } |
|
| 154 | - |
|
| 155 | - /** |
|
| 156 | - * Writes the PHP bean file with all getters and setters from the table passed in parameter. |
|
| 157 | - * |
|
| 158 | - * @param string $className The name of the class |
|
| 159 | - * @param string $baseClassName The name of the base class which will be extended (name only, no directory) |
|
| 160 | - * @param string $tableName The name of the table |
|
| 161 | - * @param string $beannamespace The namespace of the bean |
|
| 162 | - * @param ClassNameMapper $classNameMapper |
|
| 163 | - * @throws TDBMException |
|
| 164 | - */ |
|
| 165 | - public function generateBean($className, $baseClassName, Table $table, $beannamespace, ClassNameMapper $classNameMapper, $storeInUtc) { |
|
| 166 | - |
|
| 167 | - $beanDescriptor = new BeanDescriptor($table, $this->schemaAnalyzer, $this->schema); |
|
| 168 | - |
|
| 169 | - $str = $beanDescriptor->generatePhpCode($beannamespace); |
|
| 170 | - |
|
| 171 | - $possibleBaseFileNames = $classNameMapper->getPossibleFileNames($beannamespace."\\".$baseClassName); |
|
| 172 | - if (!$possibleBaseFileNames) { |
|
| 173 | - throw new TDBMException('Sorry, autoload namespace issue. The class "'.$beannamespace."\\".$baseClassName.'" is not autoloadable.'); |
|
| 174 | - } |
|
| 175 | - $possibleBaseFileName = $this->rootPath.$possibleBaseFileNames[0]; |
|
| 176 | - |
|
| 177 | - $this->ensureDirectoryExist($possibleBaseFileName); |
|
| 178 | - file_put_contents($possibleBaseFileName, $str); |
|
| 179 | - @chmod($possibleBaseFileName, 0664); |
|
| 180 | - |
|
| 181 | - |
|
| 182 | - |
|
| 183 | - $possibleFileNames = $classNameMapper->getPossibleFileNames($beannamespace."\\".$className); |
|
| 184 | - if (!$possibleFileNames) { |
|
| 185 | - // @codeCoverageIgnoreStart |
|
| 186 | - throw new TDBMException('Sorry, autoload namespace issue. The class "'.$beannamespace."\\".$className.'" is not autoloadable.'); |
|
| 187 | - // @codeCoverageIgnoreEnd |
|
| 188 | - } |
|
| 189 | - $possibleFileName = $this->rootPath.$possibleFileNames[0]; |
|
| 190 | - |
|
| 191 | - if (!file_exists($possibleFileName)) { |
|
| 192 | - $tableName = $table->getName(); |
|
| 193 | - |
|
| 194 | - $str = "<?php |
|
| 135 | + /** |
|
| 136 | + * Returns the name of the base bean class from the table name. |
|
| 137 | + * |
|
| 138 | + * @param $tableName |
|
| 139 | + * @return string |
|
| 140 | + */ |
|
| 141 | + public static function getBaseBeanNameFromTableName($tableName) { |
|
| 142 | + return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."BaseBean"; |
|
| 143 | + } |
|
| 144 | + |
|
| 145 | + /** |
|
| 146 | + * Returns the name of the base DAO class from the table name. |
|
| 147 | + * |
|
| 148 | + * @param $tableName |
|
| 149 | + * @return string |
|
| 150 | + */ |
|
| 151 | + public static function getBaseDaoNameFromTableName($tableName) { |
|
| 152 | + return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."BaseDao"; |
|
| 153 | + } |
|
| 154 | + |
|
| 155 | + /** |
|
| 156 | + * Writes the PHP bean file with all getters and setters from the table passed in parameter. |
|
| 157 | + * |
|
| 158 | + * @param string $className The name of the class |
|
| 159 | + * @param string $baseClassName The name of the base class which will be extended (name only, no directory) |
|
| 160 | + * @param string $tableName The name of the table |
|
| 161 | + * @param string $beannamespace The namespace of the bean |
|
| 162 | + * @param ClassNameMapper $classNameMapper |
|
| 163 | + * @throws TDBMException |
|
| 164 | + */ |
|
| 165 | + public function generateBean($className, $baseClassName, Table $table, $beannamespace, ClassNameMapper $classNameMapper, $storeInUtc) { |
|
| 166 | + |
|
| 167 | + $beanDescriptor = new BeanDescriptor($table, $this->schemaAnalyzer, $this->schema); |
|
| 168 | + |
|
| 169 | + $str = $beanDescriptor->generatePhpCode($beannamespace); |
|
| 170 | + |
|
| 171 | + $possibleBaseFileNames = $classNameMapper->getPossibleFileNames($beannamespace."\\".$baseClassName); |
|
| 172 | + if (!$possibleBaseFileNames) { |
|
| 173 | + throw new TDBMException('Sorry, autoload namespace issue. The class "'.$beannamespace."\\".$baseClassName.'" is not autoloadable.'); |
|
| 174 | + } |
|
| 175 | + $possibleBaseFileName = $this->rootPath.$possibleBaseFileNames[0]; |
|
| 176 | + |
|
| 177 | + $this->ensureDirectoryExist($possibleBaseFileName); |
|
| 178 | + file_put_contents($possibleBaseFileName, $str); |
|
| 179 | + @chmod($possibleBaseFileName, 0664); |
|
| 180 | + |
|
| 181 | + |
|
| 182 | + |
|
| 183 | + $possibleFileNames = $classNameMapper->getPossibleFileNames($beannamespace."\\".$className); |
|
| 184 | + if (!$possibleFileNames) { |
|
| 185 | + // @codeCoverageIgnoreStart |
|
| 186 | + throw new TDBMException('Sorry, autoload namespace issue. The class "'.$beannamespace."\\".$className.'" is not autoloadable.'); |
|
| 187 | + // @codeCoverageIgnoreEnd |
|
| 188 | + } |
|
| 189 | + $possibleFileName = $this->rootPath.$possibleFileNames[0]; |
|
| 190 | + |
|
| 191 | + if (!file_exists($possibleFileName)) { |
|
| 192 | + $tableName = $table->getName(); |
|
| 193 | + |
|
| 194 | + $str = "<?php |
|
| 195 | 195 | /* |
| 196 | 196 | * This file has been automatically generated by TDBM. |
| 197 | 197 | * You can edit this file as it will not be overwritten. |
@@ -206,44 +206,44 @@ discard block |
||
| 206 | 206 | { |
| 207 | 207 | |
| 208 | 208 | }"; |
| 209 | - $this->ensureDirectoryExist($possibleFileName); |
|
| 210 | - file_put_contents($possibleFileName ,$str); |
|
| 211 | - @chmod($possibleFileName, 0664); |
|
| 212 | - } |
|
| 213 | - } |
|
| 214 | - |
|
| 215 | - /** |
|
| 216 | - * Writes the PHP bean DAO with simple functions to create/get/save objects. |
|
| 217 | - * |
|
| 218 | - * @param string $fileName The file that will be written (without the directory) |
|
| 219 | - * @param string $className The name of the class |
|
| 220 | - * @param string $tableName The name of the table |
|
| 221 | - */ |
|
| 222 | - public function generateDao($className, $baseClassName, $beanClassName, Table $table, $daonamespace, $beannamespace, ClassNameMapper $classNameMapper) { |
|
| 223 | - $tableName = $table->getName(); |
|
| 224 | - $primaryKeyColumns = $table->getPrimaryKeyColumns(); |
|
| 225 | - |
|
| 226 | - $defaultSort = null; |
|
| 227 | - foreach ($table->getColumns() as $column) { |
|
| 228 | - $comments = $column->getComment(); |
|
| 229 | - $matches = array(); |
|
| 230 | - if (preg_match('/@defaultSort(\((desc|asc)\))*/', $comments, $matches) != 0){ |
|
| 231 | - $defaultSort = $data['column_name']; |
|
| 232 | - if (count($matches == 3)){ |
|
| 233 | - $defaultSortDirection = $matches[2]; |
|
| 234 | - }else{ |
|
| 235 | - $defaultSortDirection = 'ASC'; |
|
| 236 | - } |
|
| 237 | - } |
|
| 238 | - } |
|
| 209 | + $this->ensureDirectoryExist($possibleFileName); |
|
| 210 | + file_put_contents($possibleFileName ,$str); |
|
| 211 | + @chmod($possibleFileName, 0664); |
|
| 212 | + } |
|
| 213 | + } |
|
| 214 | + |
|
| 215 | + /** |
|
| 216 | + * Writes the PHP bean DAO with simple functions to create/get/save objects. |
|
| 217 | + * |
|
| 218 | + * @param string $fileName The file that will be written (without the directory) |
|
| 219 | + * @param string $className The name of the class |
|
| 220 | + * @param string $tableName The name of the table |
|
| 221 | + */ |
|
| 222 | + public function generateDao($className, $baseClassName, $beanClassName, Table $table, $daonamespace, $beannamespace, ClassNameMapper $classNameMapper) { |
|
| 223 | + $tableName = $table->getName(); |
|
| 224 | + $primaryKeyColumns = $table->getPrimaryKeyColumns(); |
|
| 225 | + |
|
| 226 | + $defaultSort = null; |
|
| 227 | + foreach ($table->getColumns() as $column) { |
|
| 228 | + $comments = $column->getComment(); |
|
| 229 | + $matches = array(); |
|
| 230 | + if (preg_match('/@defaultSort(\((desc|asc)\))*/', $comments, $matches) != 0){ |
|
| 231 | + $defaultSort = $data['column_name']; |
|
| 232 | + if (count($matches == 3)){ |
|
| 233 | + $defaultSortDirection = $matches[2]; |
|
| 234 | + }else{ |
|
| 235 | + $defaultSortDirection = 'ASC'; |
|
| 236 | + } |
|
| 237 | + } |
|
| 238 | + } |
|
| 239 | 239 | |
| 240 | - // FIXME: lowercase tables with _ in the name should work! |
|
| 241 | - $tableCamel = self::toSingular(self::toCamelCase($tableName)); |
|
| 240 | + // FIXME: lowercase tables with _ in the name should work! |
|
| 241 | + $tableCamel = self::toSingular(self::toCamelCase($tableName)); |
|
| 242 | 242 | |
| 243 | - $beanClassWithoutNameSpace = $beanClassName; |
|
| 244 | - $beanClassName = $beannamespace."\\".$beanClassName; |
|
| 243 | + $beanClassWithoutNameSpace = $beanClassName; |
|
| 244 | + $beanClassName = $beannamespace."\\".$beanClassName; |
|
| 245 | 245 | |
| 246 | - $str = "<?php |
|
| 246 | + $str = "<?php |
|
| 247 | 247 | |
| 248 | 248 | /* |
| 249 | 249 | * This file has been automatically generated by TDBM. |
@@ -330,9 +330,9 @@ discard block |
||
| 330 | 330 | } |
| 331 | 331 | "; |
| 332 | 332 | |
| 333 | - if (count($primaryKeyColumns) === 1) { |
|
| 334 | - $primaryKeyColumn = $primaryKeyColumns[0]; |
|
| 335 | - $str .= " |
|
| 333 | + if (count($primaryKeyColumns) === 1) { |
|
| 334 | + $primaryKeyColumn = $primaryKeyColumns[0]; |
|
| 335 | + $str .= " |
|
| 336 | 336 | /** |
| 337 | 337 | * Get $beanClassWithoutNameSpace specified by its ID (its primary key) |
| 338 | 338 | * If the primary key does not exist, an exception is thrown. |
@@ -347,8 +347,8 @@ discard block |
||
| 347 | 347 | return \$this->tdbmService->findObjectByPk('$tableName', ['$primaryKeyColumn' => \$id], [], \$lazyLoading); |
| 348 | 348 | } |
| 349 | 349 | "; |
| 350 | - } |
|
| 351 | - $str .= " |
|
| 350 | + } |
|
| 351 | + $str .= " |
|
| 352 | 352 | /** |
| 353 | 353 | * Deletes the $beanClassWithoutNameSpace passed in parameter. |
| 354 | 354 | * |
@@ -410,29 +410,29 @@ discard block |
||
| 410 | 410 | } |
| 411 | 411 | "; |
| 412 | 412 | |
| 413 | - $possibleBaseFileNames = $classNameMapper->getPossibleFileNames($daonamespace."\\".$baseClassName); |
|
| 414 | - if (!$possibleBaseFileNames) { |
|
| 415 | - // @codeCoverageIgnoreStart |
|
| 416 | - throw new TDBMException('Sorry, autoload namespace issue. The class "'.$baseClassName.'" is not autoloadable.'); |
|
| 417 | - // @codeCoverageIgnoreEnd |
|
| 418 | - } |
|
| 419 | - $possibleBaseFileName = $this->rootPath.$possibleBaseFileNames[0]; |
|
| 420 | - |
|
| 421 | - $this->ensureDirectoryExist($possibleBaseFileName); |
|
| 422 | - file_put_contents($possibleBaseFileName ,$str); |
|
| 423 | - @chmod($possibleBaseFileName, 0664); |
|
| 424 | - |
|
| 425 | - $possibleFileNames = $classNameMapper->getPossibleFileNames($daonamespace."\\".$className); |
|
| 426 | - if (!$possibleFileNames) { |
|
| 427 | - // @codeCoverageIgnoreStart |
|
| 428 | - throw new TDBMException('Sorry, autoload namespace issue. The class "'.$className.'" is not autoloadable.'); |
|
| 429 | - // @codeCoverageIgnoreEnd |
|
| 430 | - } |
|
| 431 | - $possibleFileName = $this->rootPath.$possibleFileNames[0]; |
|
| 413 | + $possibleBaseFileNames = $classNameMapper->getPossibleFileNames($daonamespace."\\".$baseClassName); |
|
| 414 | + if (!$possibleBaseFileNames) { |
|
| 415 | + // @codeCoverageIgnoreStart |
|
| 416 | + throw new TDBMException('Sorry, autoload namespace issue. The class "'.$baseClassName.'" is not autoloadable.'); |
|
| 417 | + // @codeCoverageIgnoreEnd |
|
| 418 | + } |
|
| 419 | + $possibleBaseFileName = $this->rootPath.$possibleBaseFileNames[0]; |
|
| 420 | + |
|
| 421 | + $this->ensureDirectoryExist($possibleBaseFileName); |
|
| 422 | + file_put_contents($possibleBaseFileName ,$str); |
|
| 423 | + @chmod($possibleBaseFileName, 0664); |
|
| 424 | + |
|
| 425 | + $possibleFileNames = $classNameMapper->getPossibleFileNames($daonamespace."\\".$className); |
|
| 426 | + if (!$possibleFileNames) { |
|
| 427 | + // @codeCoverageIgnoreStart |
|
| 428 | + throw new TDBMException('Sorry, autoload namespace issue. The class "'.$className.'" is not autoloadable.'); |
|
| 429 | + // @codeCoverageIgnoreEnd |
|
| 430 | + } |
|
| 431 | + $possibleFileName = $this->rootPath.$possibleFileNames[0]; |
|
| 432 | 432 | |
| 433 | - // Now, let's generate the "editable" class |
|
| 434 | - if (!file_exists($possibleFileName)) { |
|
| 435 | - $str = "<?php |
|
| 433 | + // Now, let's generate the "editable" class |
|
| 434 | + if (!file_exists($possibleFileName)) { |
|
| 435 | + $str = "<?php |
|
| 436 | 436 | |
| 437 | 437 | /* |
| 438 | 438 | * This file has been automatically generated by TDBM. |
@@ -449,23 +449,23 @@ discard block |
||
| 449 | 449 | |
| 450 | 450 | } |
| 451 | 451 | "; |
| 452 | - $this->ensureDirectoryExist($possibleFileName); |
|
| 453 | - file_put_contents($possibleFileName ,$str); |
|
| 454 | - @chmod($possibleFileName, 0664); |
|
| 455 | - } |
|
| 456 | - } |
|
| 452 | + $this->ensureDirectoryExist($possibleFileName); |
|
| 453 | + file_put_contents($possibleFileName ,$str); |
|
| 454 | + @chmod($possibleFileName, 0664); |
|
| 455 | + } |
|
| 456 | + } |
|
| 457 | 457 | |
| 458 | 458 | |
| 459 | 459 | |
| 460 | - /** |
|
| 461 | - * Generates the factory bean. |
|
| 462 | - * |
|
| 463 | - * @param Table[] $tableList |
|
| 464 | - */ |
|
| 465 | - private function generateFactory(array $tableList, $daoFactoryClassName, $daoNamespace, ClassNameMapper $classNameMapper) { |
|
| 466 | - // For each table, let's write a property. |
|
| 460 | + /** |
|
| 461 | + * Generates the factory bean. |
|
| 462 | + * |
|
| 463 | + * @param Table[] $tableList |
|
| 464 | + */ |
|
| 465 | + private function generateFactory(array $tableList, $daoFactoryClassName, $daoNamespace, ClassNameMapper $classNameMapper) { |
|
| 466 | + // For each table, let's write a property. |
|
| 467 | 467 | |
| 468 | - $str = "<?php |
|
| 468 | + $str = "<?php |
|
| 469 | 469 | |
| 470 | 470 | /* |
| 471 | 471 | * This file has been automatically generated by TDBM. |
@@ -482,12 +482,12 @@ discard block |
||
| 482 | 482 | { |
| 483 | 483 | "; |
| 484 | 484 | |
| 485 | - foreach ($tableList as $table) { |
|
| 486 | - $tableName = $table->getName(); |
|
| 487 | - $daoClassName = $this->getDaoNameFromTableName($tableName); |
|
| 488 | - $daoInstanceName = self::toVariableName($daoClassName); |
|
| 485 | + foreach ($tableList as $table) { |
|
| 486 | + $tableName = $table->getName(); |
|
| 487 | + $daoClassName = $this->getDaoNameFromTableName($tableName); |
|
| 488 | + $daoInstanceName = self::toVariableName($daoClassName); |
|
| 489 | 489 | |
| 490 | - $str .= ' /** |
|
| 490 | + $str .= ' /** |
|
| 491 | 491 | * @var '.$daoClassName.' |
| 492 | 492 | */ |
| 493 | 493 | private $'.$daoInstanceName.'; |
@@ -512,141 +512,141 @@ discard block |
||
| 512 | 512 | } |
| 513 | 513 | |
| 514 | 514 | '; |
| 515 | - } |
|
| 515 | + } |
|
| 516 | 516 | |
| 517 | 517 | |
| 518 | - $str .= ' |
|
| 518 | + $str .= ' |
|
| 519 | 519 | } |
| 520 | 520 | '; |
| 521 | 521 | |
| 522 | - $possibleFileNames = $classNameMapper->getPossibleFileNames($daoNamespace."\\".$daoFactoryClassName); |
|
| 523 | - if (!$possibleFileNames) { |
|
| 524 | - throw new TDBMException('Sorry, autoload namespace issue. The class "'.$daoNamespace."\\".$daoFactoryClassName.'" is not autoloadable.'); |
|
| 525 | - } |
|
| 526 | - $possibleFileName = $this->rootPath.$possibleFileNames[0]; |
|
| 527 | - |
|
| 528 | - $this->ensureDirectoryExist($possibleFileName); |
|
| 529 | - file_put_contents($possibleFileName ,$str); |
|
| 530 | - } |
|
| 531 | - |
|
| 532 | - /** |
|
| 533 | - * Transforms a string to camelCase (except the first letter will be uppercase too). |
|
| 534 | - * Underscores and spaces are removed and the first letter after the underscore is uppercased. |
|
| 535 | - * |
|
| 536 | - * @param $str string |
|
| 537 | - * @return string |
|
| 538 | - */ |
|
| 539 | - public static function toCamelCase($str) { |
|
| 540 | - $str = strtoupper(substr($str,0,1)).substr($str,1); |
|
| 541 | - while (true) { |
|
| 542 | - if (strpos($str, "_") === false && strpos($str, " ") === false) { |
|
| 543 | - break; |
|
| 522 | + $possibleFileNames = $classNameMapper->getPossibleFileNames($daoNamespace."\\".$daoFactoryClassName); |
|
| 523 | + if (!$possibleFileNames) { |
|
| 524 | + throw new TDBMException('Sorry, autoload namespace issue. The class "'.$daoNamespace."\\".$daoFactoryClassName.'" is not autoloadable.'); |
|
| 525 | + } |
|
| 526 | + $possibleFileName = $this->rootPath.$possibleFileNames[0]; |
|
| 527 | + |
|
| 528 | + $this->ensureDirectoryExist($possibleFileName); |
|
| 529 | + file_put_contents($possibleFileName ,$str); |
|
| 530 | + } |
|
| 531 | + |
|
| 532 | + /** |
|
| 533 | + * Transforms a string to camelCase (except the first letter will be uppercase too). |
|
| 534 | + * Underscores and spaces are removed and the first letter after the underscore is uppercased. |
|
| 535 | + * |
|
| 536 | + * @param $str string |
|
| 537 | + * @return string |
|
| 538 | + */ |
|
| 539 | + public static function toCamelCase($str) { |
|
| 540 | + $str = strtoupper(substr($str,0,1)).substr($str,1); |
|
| 541 | + while (true) { |
|
| 542 | + if (strpos($str, "_") === false && strpos($str, " ") === false) { |
|
| 543 | + break; |
|
| 544 | 544 | } |
| 545 | 545 | |
| 546 | - $pos = strpos($str, "_"); |
|
| 547 | - if ($pos === false) { |
|
| 548 | - $pos = strpos($str, " "); |
|
| 549 | - } |
|
| 550 | - $before = substr($str,0,$pos); |
|
| 551 | - $after = substr($str,$pos+1); |
|
| 552 | - $str = $before.strtoupper(substr($after,0,1)).substr($after,1); |
|
| 553 | - } |
|
| 554 | - return $str; |
|
| 555 | - } |
|
| 546 | + $pos = strpos($str, "_"); |
|
| 547 | + if ($pos === false) { |
|
| 548 | + $pos = strpos($str, " "); |
|
| 549 | + } |
|
| 550 | + $before = substr($str,0,$pos); |
|
| 551 | + $after = substr($str,$pos+1); |
|
| 552 | + $str = $before.strtoupper(substr($after,0,1)).substr($after,1); |
|
| 553 | + } |
|
| 554 | + return $str; |
|
| 555 | + } |
|
| 556 | 556 | |
| 557 | - /** |
|
| 558 | - * Tries to put string to the singular form (if it is plural). |
|
| 559 | - * We assume the table names are in english. |
|
| 560 | - * |
|
| 561 | - * @param $str string |
|
| 562 | - * @return string |
|
| 563 | - */ |
|
| 564 | - public static function toSingular($str) { |
|
| 565 | - return Inflector::get('en')->singularize($str); |
|
| 566 | - } |
|
| 557 | + /** |
|
| 558 | + * Tries to put string to the singular form (if it is plural). |
|
| 559 | + * We assume the table names are in english. |
|
| 560 | + * |
|
| 561 | + * @param $str string |
|
| 562 | + * @return string |
|
| 563 | + */ |
|
| 564 | + public static function toSingular($str) { |
|
| 565 | + return Inflector::get('en')->singularize($str); |
|
| 566 | + } |
|
| 567 | 567 | |
| 568 | - /** |
|
| 569 | - * Put the first letter of the string in lower case. |
|
| 570 | - * Very useful to transform a class name into a variable name. |
|
| 571 | - * |
|
| 572 | - * @param $str string |
|
| 573 | - * @return string |
|
| 574 | - */ |
|
| 575 | - public static function toVariableName($str) { |
|
| 576 | - return strtolower(substr($str, 0, 1)).substr($str, 1); |
|
| 577 | - } |
|
| 578 | - |
|
| 579 | - /** |
|
| 580 | - * Ensures the file passed in parameter can be written in its directory. |
|
| 581 | - * @param string $fileName |
|
| 582 | - * @throws TDBMException |
|
| 583 | - */ |
|
| 584 | - private function ensureDirectoryExist($fileName) { |
|
| 585 | - $dirName = dirname($fileName); |
|
| 586 | - if (!file_exists($dirName)) { |
|
| 587 | - $old = umask(0); |
|
| 588 | - $result = mkdir($dirName, 0775, true); |
|
| 589 | - umask($old); |
|
| 590 | - if ($result === false) { |
|
| 591 | - throw new TDBMException("Unable to create directory: '".$dirName."'."); |
|
| 592 | - } |
|
| 593 | - } |
|
| 594 | - } |
|
| 595 | - |
|
| 596 | - /** |
|
| 597 | - * @param string $rootPath |
|
| 598 | - */ |
|
| 599 | - public function setRootPath($rootPath) |
|
| 600 | - { |
|
| 601 | - $this->rootPath = $rootPath; |
|
| 602 | - } |
|
| 603 | - |
|
| 604 | - /** |
|
| 605 | - * Transforms a DBAL type into a PHP type (for PHPDoc purpose) |
|
| 606 | - * |
|
| 607 | - * @param Type $type The DBAL type |
|
| 608 | - * @return string The PHP type |
|
| 609 | - */ |
|
| 610 | - public static function dbalTypeToPhpType(Type $type) { |
|
| 611 | - $map = [ |
|
| 612 | - Type::TARRAY => 'array', |
|
| 613 | - Type::SIMPLE_ARRAY => 'array', |
|
| 614 | - Type::JSON_ARRAY => 'array', |
|
| 615 | - Type::BIGINT => 'string', |
|
| 616 | - Type::BOOLEAN => 'bool', |
|
| 617 | - Type::DATETIME => '\DateTimeInterface', |
|
| 618 | - Type::DATETIMETZ => '\DateTimeInterface', |
|
| 619 | - Type::DATE => '\DateTimeInterface', |
|
| 620 | - Type::TIME => '\DateTimeInterface', |
|
| 621 | - Type::DECIMAL => 'float', |
|
| 622 | - Type::INTEGER => 'int', |
|
| 623 | - Type::OBJECT => 'string', |
|
| 624 | - Type::SMALLINT => 'int', |
|
| 625 | - Type::STRING => 'string', |
|
| 626 | - Type::TEXT => 'string', |
|
| 627 | - Type::BINARY => 'string', |
|
| 628 | - Type::BLOB => 'string', |
|
| 629 | - Type::FLOAT => 'float', |
|
| 630 | - Type::GUID => 'string' |
|
| 631 | - ]; |
|
| 632 | - |
|
| 633 | - return isset($map[$type->getName()])?$map[$type->getName()]:$type->getName(); |
|
| 634 | - } |
|
| 635 | - |
|
| 636 | - /** |
|
| 637 | - * |
|
| 638 | - * @param string $beanNamespace |
|
| 639 | - * @return \string[] Returns a map mapping table name to beans name |
|
| 640 | - */ |
|
| 641 | - public function buildTableToBeanMap($beanNamespace) { |
|
| 642 | - $tableToBeanMap = []; |
|
| 643 | - |
|
| 644 | - $tables = $this->schema->getTables(); |
|
| 645 | - |
|
| 646 | - foreach ($tables as $table) { |
|
| 647 | - $tableName = $table->getName(); |
|
| 648 | - $tableToBeanMap[$tableName] = $beanNamespace . "\\" . self::getBeanNameFromTableName($tableName); |
|
| 649 | - } |
|
| 650 | - return $tableToBeanMap; |
|
| 651 | - } |
|
| 568 | + /** |
|
| 569 | + * Put the first letter of the string in lower case. |
|
| 570 | + * Very useful to transform a class name into a variable name. |
|
| 571 | + * |
|
| 572 | + * @param $str string |
|
| 573 | + * @return string |
|
| 574 | + */ |
|
| 575 | + public static function toVariableName($str) { |
|
| 576 | + return strtolower(substr($str, 0, 1)).substr($str, 1); |
|
| 577 | + } |
|
| 578 | + |
|
| 579 | + /** |
|
| 580 | + * Ensures the file passed in parameter can be written in its directory. |
|
| 581 | + * @param string $fileName |
|
| 582 | + * @throws TDBMException |
|
| 583 | + */ |
|
| 584 | + private function ensureDirectoryExist($fileName) { |
|
| 585 | + $dirName = dirname($fileName); |
|
| 586 | + if (!file_exists($dirName)) { |
|
| 587 | + $old = umask(0); |
|
| 588 | + $result = mkdir($dirName, 0775, true); |
|
| 589 | + umask($old); |
|
| 590 | + if ($result === false) { |
|
| 591 | + throw new TDBMException("Unable to create directory: '".$dirName."'."); |
|
| 592 | + } |
|
| 593 | + } |
|
| 594 | + } |
|
| 595 | + |
|
| 596 | + /** |
|
| 597 | + * @param string $rootPath |
|
| 598 | + */ |
|
| 599 | + public function setRootPath($rootPath) |
|
| 600 | + { |
|
| 601 | + $this->rootPath = $rootPath; |
|
| 602 | + } |
|
| 603 | + |
|
| 604 | + /** |
|
| 605 | + * Transforms a DBAL type into a PHP type (for PHPDoc purpose) |
|
| 606 | + * |
|
| 607 | + * @param Type $type The DBAL type |
|
| 608 | + * @return string The PHP type |
|
| 609 | + */ |
|
| 610 | + public static function dbalTypeToPhpType(Type $type) { |
|
| 611 | + $map = [ |
|
| 612 | + Type::TARRAY => 'array', |
|
| 613 | + Type::SIMPLE_ARRAY => 'array', |
|
| 614 | + Type::JSON_ARRAY => 'array', |
|
| 615 | + Type::BIGINT => 'string', |
|
| 616 | + Type::BOOLEAN => 'bool', |
|
| 617 | + Type::DATETIME => '\DateTimeInterface', |
|
| 618 | + Type::DATETIMETZ => '\DateTimeInterface', |
|
| 619 | + Type::DATE => '\DateTimeInterface', |
|
| 620 | + Type::TIME => '\DateTimeInterface', |
|
| 621 | + Type::DECIMAL => 'float', |
|
| 622 | + Type::INTEGER => 'int', |
|
| 623 | + Type::OBJECT => 'string', |
|
| 624 | + Type::SMALLINT => 'int', |
|
| 625 | + Type::STRING => 'string', |
|
| 626 | + Type::TEXT => 'string', |
|
| 627 | + Type::BINARY => 'string', |
|
| 628 | + Type::BLOB => 'string', |
|
| 629 | + Type::FLOAT => 'float', |
|
| 630 | + Type::GUID => 'string' |
|
| 631 | + ]; |
|
| 632 | + |
|
| 633 | + return isset($map[$type->getName()])?$map[$type->getName()]:$type->getName(); |
|
| 634 | + } |
|
| 635 | + |
|
| 636 | + /** |
|
| 637 | + * |
|
| 638 | + * @param string $beanNamespace |
|
| 639 | + * @return \string[] Returns a map mapping table name to beans name |
|
| 640 | + */ |
|
| 641 | + public function buildTableToBeanMap($beanNamespace) { |
|
| 642 | + $tableToBeanMap = []; |
|
| 643 | + |
|
| 644 | + $tables = $this->schema->getTables(); |
|
| 645 | + |
|
| 646 | + foreach ($tables as $table) { |
|
| 647 | + $tableName = $table->getName(); |
|
| 648 | + $tableToBeanMap[$tableName] = $beanNamespace . "\\" . self::getBeanNameFromTableName($tableName); |
|
| 649 | + } |
|
| 650 | + return $tableToBeanMap; |
|
| 651 | + } |
|
| 652 | 652 | } |
@@ -29,7 +29,7 @@ |
||
| 29 | 29 | <div class="control-group"> |
| 30 | 30 | <label class="control-label">Store dates / timestamps in UTC:</label> |
| 31 | 31 | <div class="controls"> |
| 32 | - <input type="checkbox" name="storeInUtc" value="1" <?php echo $this->storeInUtc?'checked="checked"':"" ?>></input> |
|
| 32 | + <input type="checkbox" name="storeInUtc" value="1" <?php echo $this->storeInUtc ? 'checked="checked"' : "" ?>></input> |
|
| 33 | 33 | <span class="help-block">Select this option if you want timestamps to be stored in UTC. |
| 34 | 34 | If your application supports several time zones, you should select this option to store all dates in |
| 35 | 35 | the same time zone.</span> |
@@ -510,7 +510,7 @@ discard block |
||
| 510 | 510 | case TDBMObjectStateEnum::STATE_DETACHED: |
| 511 | 511 | throw new TDBMInvalidOperationException('Cannot delete a detached object'); |
| 512 | 512 | case TDBMObjectStateEnum::STATE_NEW: |
| 513 | - $this->deleteManyToManyRelationships($object); |
|
| 513 | + $this->deleteManyToManyRelationships($object); |
|
| 514 | 514 | foreach ($object->_getDbRows() as $dbRow) { |
| 515 | 515 | $this->removeFromToSaveObjectList($dbRow); |
| 516 | 516 | } |
@@ -521,7 +521,7 @@ discard block |
||
| 521 | 521 | } |
| 522 | 522 | case TDBMObjectStateEnum::STATE_NOT_LOADED: |
| 523 | 523 | case TDBMObjectStateEnum::STATE_LOADED: |
| 524 | - $this->deleteManyToManyRelationships($object); |
|
| 524 | + $this->deleteManyToManyRelationships($object); |
|
| 525 | 525 | // Let's delete db rows, in reverse order. |
| 526 | 526 | foreach (array_reverse($object->_getDbRows()) as $dbRow) { |
| 527 | 527 | $tableName = $dbRow->_getDbTableName(); |
@@ -541,63 +541,63 @@ discard block |
||
| 541 | 541 | $object->_setStatus(TDBMObjectStateEnum::STATE_DELETED); |
| 542 | 542 | } |
| 543 | 543 | |
| 544 | - /** |
|
| 545 | - * Removes all many to many relationships for this object. |
|
| 546 | - * @param AbstractTDBMObject $object |
|
| 547 | - */ |
|
| 548 | - private function deleteManyToManyRelationships(AbstractTDBMObject $object) { |
|
| 549 | - foreach ($object->_getDbRows() as $tableName => $dbRow) { |
|
| 550 | - $pivotTables = $this->tdbmSchemaAnalyzer->getPivotTableLinkedToTable($tableName); |
|
| 551 | - foreach ($pivotTables as $pivotTable) { |
|
| 552 | - $remoteBeans = $object->_getRelationships($pivotTable); |
|
| 553 | - foreach ($remoteBeans as $remoteBean) { |
|
| 554 | - $object->_removeRelationship($pivotTable, $remoteBean); |
|
| 555 | - } |
|
| 556 | - } |
|
| 557 | - } |
|
| 558 | - $this->persistManyToManyRelationships($object); |
|
| 559 | - } |
|
| 560 | - |
|
| 561 | - |
|
| 562 | - /** |
|
| 563 | - * This function removes the given object from the database. It will also remove all objects relied to the one given |
|
| 564 | - * by parameter before all. |
|
| 565 | - * |
|
| 566 | - * Notice: if the object has a multiple primary key, the function will not work. |
|
| 567 | - * |
|
| 568 | - * @param AbstractTDBMObject $objToDelete |
|
| 569 | - */ |
|
| 570 | - public function deleteCascade(AbstractTDBMObject $objToDelete) { |
|
| 571 | - $this->deleteAllConstraintWithThisObject($objToDelete); |
|
| 572 | - $this->delete($objToDelete); |
|
| 573 | - } |
|
| 574 | - |
|
| 575 | - /** |
|
| 576 | - * This function is used only in TDBMService (private function) |
|
| 577 | - * It will call deleteCascade function foreach object relied with a foreign key to the object given by parameter |
|
| 578 | - * |
|
| 579 | - * @param TDBMObject $obj |
|
| 580 | - * @return TDBMObjectArray |
|
| 581 | - */ |
|
| 582 | - private function deleteAllConstraintWithThisObject(TDBMObject $obj) { |
|
| 583 | - $tableFrom = $this->connection->escapeDBItem($obj->_getDbTableName()); |
|
| 584 | - $constraints = $this->connection->getConstraintsFromTable($tableFrom); |
|
| 585 | - foreach ($constraints as $constraint) { |
|
| 586 | - $tableTo = $this->connection->escapeDBItem($constraint["table1"]); |
|
| 587 | - $colFrom = $this->connection->escapeDBItem($constraint["col2"]); |
|
| 588 | - $colTo = $this->connection->escapeDBItem($constraint["col1"]); |
|
| 589 | - $idVarName = $this->connection->escapeDBItem($obj->getPrimaryKey()[0]); |
|
| 590 | - $idValue = $this->connection->quoteSmart($obj->TDBMObject_id); |
|
| 591 | - $sql = "SELECT DISTINCT ".$tableTo.".*" |
|
| 592 | - ." FROM ".$tableFrom |
|
| 593 | - ." LEFT JOIN ".$tableTo." ON ".$tableFrom.".".$colFrom." = ".$tableTo.".".$colTo |
|
| 594 | - ." WHERE ".$tableFrom.".".$idVarName."=".$idValue; |
|
| 595 | - $result = $this->getObjectsFromSQL($constraint["table1"], $sql); |
|
| 596 | - foreach ($result as $tdbmObj) { |
|
| 597 | - $this->deleteCascade($tdbmObj); |
|
| 598 | - } |
|
| 599 | - } |
|
| 600 | - } |
|
| 544 | + /** |
|
| 545 | + * Removes all many to many relationships for this object. |
|
| 546 | + * @param AbstractTDBMObject $object |
|
| 547 | + */ |
|
| 548 | + private function deleteManyToManyRelationships(AbstractTDBMObject $object) { |
|
| 549 | + foreach ($object->_getDbRows() as $tableName => $dbRow) { |
|
| 550 | + $pivotTables = $this->tdbmSchemaAnalyzer->getPivotTableLinkedToTable($tableName); |
|
| 551 | + foreach ($pivotTables as $pivotTable) { |
|
| 552 | + $remoteBeans = $object->_getRelationships($pivotTable); |
|
| 553 | + foreach ($remoteBeans as $remoteBean) { |
|
| 554 | + $object->_removeRelationship($pivotTable, $remoteBean); |
|
| 555 | + } |
|
| 556 | + } |
|
| 557 | + } |
|
| 558 | + $this->persistManyToManyRelationships($object); |
|
| 559 | + } |
|
| 560 | + |
|
| 561 | + |
|
| 562 | + /** |
|
| 563 | + * This function removes the given object from the database. It will also remove all objects relied to the one given |
|
| 564 | + * by parameter before all. |
|
| 565 | + * |
|
| 566 | + * Notice: if the object has a multiple primary key, the function will not work. |
|
| 567 | + * |
|
| 568 | + * @param AbstractTDBMObject $objToDelete |
|
| 569 | + */ |
|
| 570 | + public function deleteCascade(AbstractTDBMObject $objToDelete) { |
|
| 571 | + $this->deleteAllConstraintWithThisObject($objToDelete); |
|
| 572 | + $this->delete($objToDelete); |
|
| 573 | + } |
|
| 574 | + |
|
| 575 | + /** |
|
| 576 | + * This function is used only in TDBMService (private function) |
|
| 577 | + * It will call deleteCascade function foreach object relied with a foreign key to the object given by parameter |
|
| 578 | + * |
|
| 579 | + * @param TDBMObject $obj |
|
| 580 | + * @return TDBMObjectArray |
|
| 581 | + */ |
|
| 582 | + private function deleteAllConstraintWithThisObject(TDBMObject $obj) { |
|
| 583 | + $tableFrom = $this->connection->escapeDBItem($obj->_getDbTableName()); |
|
| 584 | + $constraints = $this->connection->getConstraintsFromTable($tableFrom); |
|
| 585 | + foreach ($constraints as $constraint) { |
|
| 586 | + $tableTo = $this->connection->escapeDBItem($constraint["table1"]); |
|
| 587 | + $colFrom = $this->connection->escapeDBItem($constraint["col2"]); |
|
| 588 | + $colTo = $this->connection->escapeDBItem($constraint["col1"]); |
|
| 589 | + $idVarName = $this->connection->escapeDBItem($obj->getPrimaryKey()[0]); |
|
| 590 | + $idValue = $this->connection->quoteSmart($obj->TDBMObject_id); |
|
| 591 | + $sql = "SELECT DISTINCT ".$tableTo.".*" |
|
| 592 | + ." FROM ".$tableFrom |
|
| 593 | + ." LEFT JOIN ".$tableTo." ON ".$tableFrom.".".$colFrom." = ".$tableTo.".".$colTo |
|
| 594 | + ." WHERE ".$tableFrom.".".$idVarName."=".$idValue; |
|
| 595 | + $result = $this->getObjectsFromSQL($constraint["table1"], $sql); |
|
| 596 | + foreach ($result as $tdbmObj) { |
|
| 597 | + $this->deleteCascade($tdbmObj); |
|
| 598 | + } |
|
| 599 | + } |
|
| 600 | + } |
|
| 601 | 601 | |
| 602 | 602 | /** |
| 603 | 603 | * This function performs a save() of all the objects that have been modified. |
@@ -997,8 +997,8 @@ discard block |
||
| 997 | 997 | } |
| 998 | 998 | |
| 999 | 999 | /** |
| 1000 | - * @param array<string, string> $tableToBeanMap |
|
| 1001 | - */ |
|
| 1000 | + * @param array<string, string> $tableToBeanMap |
|
| 1001 | + */ |
|
| 1002 | 1002 | public function setTableToBeanMap(array $tableToBeanMap) { |
| 1003 | 1003 | $this->tableToBeanMap = $tableToBeanMap; |
| 1004 | 1004 | } |
@@ -1045,7 +1045,7 @@ discard block |
||
| 1045 | 1045 | |
| 1046 | 1046 | // Let's save all references in NEW or DETACHED state (we need their primary key) |
| 1047 | 1047 | foreach ($references as $fkName => $reference) { |
| 1048 | - $refStatus = $reference->_getStatus(); |
|
| 1048 | + $refStatus = $reference->_getStatus(); |
|
| 1049 | 1049 | if ($refStatus === TDBMObjectStateEnum::STATE_NEW || $refStatus === TDBMObjectStateEnum::STATE_DETACHED) { |
| 1050 | 1050 | $this->save($reference); |
| 1051 | 1051 | } |
@@ -1204,94 +1204,94 @@ discard block |
||
| 1204 | 1204 | throw new TDBMInvalidOperationException("This object has been deleted. It cannot be saved."); |
| 1205 | 1205 | } |
| 1206 | 1206 | |
| 1207 | - // Finally, let's save all the many to many relationships to this bean. |
|
| 1208 | - $this->persistManyToManyRelationships($object); |
|
| 1207 | + // Finally, let's save all the many to many relationships to this bean. |
|
| 1208 | + $this->persistManyToManyRelationships($object); |
|
| 1209 | 1209 | } |
| 1210 | 1210 | |
| 1211 | - private function persistManyToManyRelationships(AbstractTDBMObject $object) { |
|
| 1212 | - foreach ($object->_getCachedRelationships() as $pivotTableName => $storage) { |
|
| 1213 | - $tableDescriptor = $this->tdbmSchemaAnalyzer->getSchema()->getTable($pivotTableName); |
|
| 1214 | - list($localFk, $remoteFk) = $this->getPivotTableForeignKeys($pivotTableName, $object); |
|
| 1215 | - |
|
| 1216 | - foreach ($storage as $remoteBean) { |
|
| 1217 | - /* @var $remoteBean AbstractTDBMObject */ |
|
| 1218 | - $statusArr = $storage[$remoteBean]; |
|
| 1219 | - $status = $statusArr['status']; |
|
| 1220 | - $reverse = $statusArr['reverse']; |
|
| 1221 | - if ($reverse) { |
|
| 1222 | - continue; |
|
| 1223 | - } |
|
| 1224 | - |
|
| 1225 | - if ($status === 'new') { |
|
| 1226 | - $remoteBeanStatus = $remoteBean->_getStatus(); |
|
| 1227 | - if ($remoteBeanStatus === TDBMObjectStateEnum::STATE_NEW || $remoteBeanStatus === TDBMObjectStateEnum::STATE_DETACHED) { |
|
| 1228 | - // Let's save remote bean if needed. |
|
| 1229 | - $this->save($remoteBean); |
|
| 1230 | - } |
|
| 1211 | + private function persistManyToManyRelationships(AbstractTDBMObject $object) { |
|
| 1212 | + foreach ($object->_getCachedRelationships() as $pivotTableName => $storage) { |
|
| 1213 | + $tableDescriptor = $this->tdbmSchemaAnalyzer->getSchema()->getTable($pivotTableName); |
|
| 1214 | + list($localFk, $remoteFk) = $this->getPivotTableForeignKeys($pivotTableName, $object); |
|
| 1215 | + |
|
| 1216 | + foreach ($storage as $remoteBean) { |
|
| 1217 | + /* @var $remoteBean AbstractTDBMObject */ |
|
| 1218 | + $statusArr = $storage[$remoteBean]; |
|
| 1219 | + $status = $statusArr['status']; |
|
| 1220 | + $reverse = $statusArr['reverse']; |
|
| 1221 | + if ($reverse) { |
|
| 1222 | + continue; |
|
| 1223 | + } |
|
| 1231 | 1224 | |
| 1232 | - $filters = $this->getPivotFilters($object, $remoteBean, $localFk, $remoteFk); |
|
| 1225 | + if ($status === 'new') { |
|
| 1226 | + $remoteBeanStatus = $remoteBean->_getStatus(); |
|
| 1227 | + if ($remoteBeanStatus === TDBMObjectStateEnum::STATE_NEW || $remoteBeanStatus === TDBMObjectStateEnum::STATE_DETACHED) { |
|
| 1228 | + // Let's save remote bean if needed. |
|
| 1229 | + $this->save($remoteBean); |
|
| 1230 | + } |
|
| 1233 | 1231 | |
| 1234 | - $types = []; |
|
| 1232 | + $filters = $this->getPivotFilters($object, $remoteBean, $localFk, $remoteFk); |
|
| 1235 | 1233 | |
| 1236 | - foreach ($filters as $columnName => $value) { |
|
| 1237 | - $columnDescriptor = $tableDescriptor->getColumn($columnName); |
|
| 1238 | - $types[] = $columnDescriptor->getType(); |
|
| 1239 | - } |
|
| 1234 | + $types = []; |
|
| 1235 | + |
|
| 1236 | + foreach ($filters as $columnName => $value) { |
|
| 1237 | + $columnDescriptor = $tableDescriptor->getColumn($columnName); |
|
| 1238 | + $types[] = $columnDescriptor->getType(); |
|
| 1239 | + } |
|
| 1240 | 1240 | |
| 1241 | - $this->connection->insert($pivotTableName, $filters, $types); |
|
| 1241 | + $this->connection->insert($pivotTableName, $filters, $types); |
|
| 1242 | 1242 | |
| 1243 | - // Finally, let's mark relationships as saved. |
|
| 1244 | - $statusArr['status'] = 'loaded'; |
|
| 1245 | - $storage[$remoteBean] = $statusArr; |
|
| 1246 | - $remoteStorage = $remoteBean->_getCachedRelationships()[$pivotTableName]; |
|
| 1247 | - $remoteStatusArr = $remoteStorage[$object]; |
|
| 1248 | - $remoteStatusArr['status'] = 'loaded'; |
|
| 1249 | - $remoteStorage[$object] = $remoteStatusArr; |
|
| 1243 | + // Finally, let's mark relationships as saved. |
|
| 1244 | + $statusArr['status'] = 'loaded'; |
|
| 1245 | + $storage[$remoteBean] = $statusArr; |
|
| 1246 | + $remoteStorage = $remoteBean->_getCachedRelationships()[$pivotTableName]; |
|
| 1247 | + $remoteStatusArr = $remoteStorage[$object]; |
|
| 1248 | + $remoteStatusArr['status'] = 'loaded'; |
|
| 1249 | + $remoteStorage[$object] = $remoteStatusArr; |
|
| 1250 | 1250 | |
| 1251 | - } elseif ($status === 'delete') { |
|
| 1252 | - $filters = $this->getPivotFilters($object, $remoteBean, $localFk, $remoteFk); |
|
| 1251 | + } elseif ($status === 'delete') { |
|
| 1252 | + $filters = $this->getPivotFilters($object, $remoteBean, $localFk, $remoteFk); |
|
| 1253 | 1253 | |
| 1254 | - $types = []; |
|
| 1254 | + $types = []; |
|
| 1255 | 1255 | |
| 1256 | - foreach ($filters as $columnName => $value) { |
|
| 1257 | - $columnDescriptor = $tableDescriptor->getColumn($columnName); |
|
| 1258 | - $types[] = $columnDescriptor->getType(); |
|
| 1259 | - } |
|
| 1256 | + foreach ($filters as $columnName => $value) { |
|
| 1257 | + $columnDescriptor = $tableDescriptor->getColumn($columnName); |
|
| 1258 | + $types[] = $columnDescriptor->getType(); |
|
| 1259 | + } |
|
| 1260 | + |
|
| 1261 | + $this->connection->delete($pivotTableName, $filters, $types); |
|
| 1262 | + |
|
| 1263 | + // Finally, let's remove relationships completely from bean. |
|
| 1264 | + $storage->detach($remoteBean); |
|
| 1265 | + $remoteBean->_getCachedRelationships()[$pivotTableName]->detach($object); |
|
| 1266 | + } |
|
| 1267 | + } |
|
| 1268 | + } |
|
| 1269 | + } |
|
| 1260 | 1270 | |
| 1261 | - $this->connection->delete($pivotTableName, $filters, $types); |
|
| 1262 | - |
|
| 1263 | - // Finally, let's remove relationships completely from bean. |
|
| 1264 | - $storage->detach($remoteBean); |
|
| 1265 | - $remoteBean->_getCachedRelationships()[$pivotTableName]->detach($object); |
|
| 1266 | - } |
|
| 1267 | - } |
|
| 1268 | - } |
|
| 1269 | - } |
|
| 1270 | - |
|
| 1271 | - private function getPivotFilters(AbstractTDBMObject $localBean, AbstractTDBMObject $remoteBean, ForeignKeyConstraint $localFk, ForeignKeyConstraint $remoteFk) { |
|
| 1272 | - $localBeanPk = $this->getPrimaryKeyValues($localBean); |
|
| 1273 | - $remoteBeanPk = $this->getPrimaryKeyValues($remoteBean); |
|
| 1274 | - $localColumns = $localFk->getLocalColumns(); |
|
| 1275 | - $remoteColumns = $remoteFk->getLocalColumns(); |
|
| 1276 | - |
|
| 1277 | - $localFilters = array_combine($localColumns, $localBeanPk); |
|
| 1278 | - $remoteFilters = array_combine($remoteColumns, $remoteBeanPk); |
|
| 1279 | - |
|
| 1280 | - return array_merge($localFilters, $remoteFilters); |
|
| 1281 | - } |
|
| 1282 | - |
|
| 1283 | - /** |
|
| 1284 | - * Returns the "values" of the primary key. |
|
| 1285 | - * This returns the primary key from the $primaryKey attribute, not the one stored in the columns. |
|
| 1286 | - * |
|
| 1287 | - * @param AbstractTDBMObject $bean |
|
| 1288 | - * @return array numerically indexed array of values. |
|
| 1289 | - */ |
|
| 1290 | - private function getPrimaryKeyValues(AbstractTDBMObject $bean) { |
|
| 1291 | - $dbRows = $bean->_getDbRows(); |
|
| 1292 | - $dbRow = reset($dbRows); |
|
| 1293 | - return array_values($dbRow->_getPrimaryKeys()); |
|
| 1294 | - } |
|
| 1271 | + private function getPivotFilters(AbstractTDBMObject $localBean, AbstractTDBMObject $remoteBean, ForeignKeyConstraint $localFk, ForeignKeyConstraint $remoteFk) { |
|
| 1272 | + $localBeanPk = $this->getPrimaryKeyValues($localBean); |
|
| 1273 | + $remoteBeanPk = $this->getPrimaryKeyValues($remoteBean); |
|
| 1274 | + $localColumns = $localFk->getLocalColumns(); |
|
| 1275 | + $remoteColumns = $remoteFk->getLocalColumns(); |
|
| 1276 | + |
|
| 1277 | + $localFilters = array_combine($localColumns, $localBeanPk); |
|
| 1278 | + $remoteFilters = array_combine($remoteColumns, $remoteBeanPk); |
|
| 1279 | + |
|
| 1280 | + return array_merge($localFilters, $remoteFilters); |
|
| 1281 | + } |
|
| 1282 | + |
|
| 1283 | + /** |
|
| 1284 | + * Returns the "values" of the primary key. |
|
| 1285 | + * This returns the primary key from the $primaryKey attribute, not the one stored in the columns. |
|
| 1286 | + * |
|
| 1287 | + * @param AbstractTDBMObject $bean |
|
| 1288 | + * @return array numerically indexed array of values. |
|
| 1289 | + */ |
|
| 1290 | + private function getPrimaryKeyValues(AbstractTDBMObject $bean) { |
|
| 1291 | + $dbRows = $bean->_getDbRows(); |
|
| 1292 | + $dbRow = reset($dbRows); |
|
| 1293 | + return array_values($dbRow->_getPrimaryKeys()); |
|
| 1294 | + } |
|
| 1295 | 1295 | |
| 1296 | 1296 | /** |
| 1297 | 1297 | * Returns a unique hash used to store the object based on its primary key. |
@@ -1774,39 +1774,39 @@ discard block |
||
| 1774 | 1774 | */ |
| 1775 | 1775 | public function _getRelatedBeans($pivotTableName, AbstractTDBMObject $bean) { |
| 1776 | 1776 | |
| 1777 | - list($localFk, $remoteFk) = $this->getPivotTableForeignKeys($pivotTableName, $bean); |
|
| 1778 | - /* @var $localFk ForeignKeyConstraint */ |
|
| 1779 | - /* @var $remoteFk ForeignKeyConstraint */ |
|
| 1780 | - $remoteTable = $remoteFk->getForeignTableName(); |
|
| 1777 | + list($localFk, $remoteFk) = $this->getPivotTableForeignKeys($pivotTableName, $bean); |
|
| 1778 | + /* @var $localFk ForeignKeyConstraint */ |
|
| 1779 | + /* @var $remoteFk ForeignKeyConstraint */ |
|
| 1780 | + $remoteTable = $remoteFk->getForeignTableName(); |
|
| 1781 | 1781 | |
| 1782 | 1782 | |
| 1783 | - $primaryKeys = $this->getPrimaryKeyValues($bean); |
|
| 1784 | - $columnNames = array_map(function($name) use ($pivotTableName) { return $pivotTableName.'.'.$name; }, $localFk->getLocalColumns()); |
|
| 1783 | + $primaryKeys = $this->getPrimaryKeyValues($bean); |
|
| 1784 | + $columnNames = array_map(function($name) use ($pivotTableName) { return $pivotTableName.'.'.$name; }, $localFk->getLocalColumns()); |
|
| 1785 | 1785 | |
| 1786 | - $filter = array_combine($columnNames, $primaryKeys); |
|
| 1786 | + $filter = array_combine($columnNames, $primaryKeys); |
|
| 1787 | 1787 | |
| 1788 | - return $this->findObjects($remoteTable, $filter); |
|
| 1788 | + return $this->findObjects($remoteTable, $filter); |
|
| 1789 | 1789 | } |
| 1790 | 1790 | |
| 1791 | - /** |
|
| 1792 | - * @param $pivotTableName |
|
| 1793 | - * @param AbstractTDBMObject $bean The LOCAL bean |
|
| 1794 | - * @return ForeignKeyConstraint[] First item: the LOCAL bean, second item: the REMOTE bean. |
|
| 1795 | - * @throws TDBMException |
|
| 1796 | - */ |
|
| 1797 | - private function getPivotTableForeignKeys($pivotTableName, AbstractTDBMObject $bean) { |
|
| 1798 | - $fks = array_values($this->tdbmSchemaAnalyzer->getSchema()->getTable($pivotTableName)->getForeignKeys()); |
|
| 1799 | - $table1 = $fks[0]->getForeignTableName(); |
|
| 1800 | - $table2 = $fks[1]->getForeignTableName(); |
|
| 1801 | - |
|
| 1802 | - $beanTables = array_map(function(DbRow $dbRow) { return $dbRow->_getDbTableName(); }, $bean->_getDbRows()); |
|
| 1803 | - |
|
| 1804 | - if (in_array($table1, $beanTables)) { |
|
| 1805 | - return [$fks[0], $fks[1]]; |
|
| 1806 | - } elseif (in_array($table2, $beanTables)) { |
|
| 1807 | - return [$fks[1], $fks[0]]; |
|
| 1808 | - } else { |
|
| 1809 | - throw new TDBMException("Unexpected bean type in getPivotTableForeignKeys. Awaiting beans from table {$table1} and {$table2}"); |
|
| 1810 | - } |
|
| 1811 | - } |
|
| 1791 | + /** |
|
| 1792 | + * @param $pivotTableName |
|
| 1793 | + * @param AbstractTDBMObject $bean The LOCAL bean |
|
| 1794 | + * @return ForeignKeyConstraint[] First item: the LOCAL bean, second item: the REMOTE bean. |
|
| 1795 | + * @throws TDBMException |
|
| 1796 | + */ |
|
| 1797 | + private function getPivotTableForeignKeys($pivotTableName, AbstractTDBMObject $bean) { |
|
| 1798 | + $fks = array_values($this->tdbmSchemaAnalyzer->getSchema()->getTable($pivotTableName)->getForeignKeys()); |
|
| 1799 | + $table1 = $fks[0]->getForeignTableName(); |
|
| 1800 | + $table2 = $fks[1]->getForeignTableName(); |
|
| 1801 | + |
|
| 1802 | + $beanTables = array_map(function(DbRow $dbRow) { return $dbRow->_getDbTableName(); }, $bean->_getDbRows()); |
|
| 1803 | + |
|
| 1804 | + if (in_array($table1, $beanTables)) { |
|
| 1805 | + return [$fks[0], $fks[1]]; |
|
| 1806 | + } elseif (in_array($table2, $beanTables)) { |
|
| 1807 | + return [$fks[1], $fks[0]]; |
|
| 1808 | + } else { |
|
| 1809 | + throw new TDBMException("Unexpected bean type in getPivotTableForeignKeys. Awaiting beans from table {$table1} and {$table2}"); |
|
| 1810 | + } |
|
| 1811 | + } |
|
| 1812 | 1812 | } |
@@ -985,7 +985,7 @@ discard block |
||
| 985 | 985 | * This is used internally by TDBM to add an object to the list of objects that have been |
| 986 | 986 | * created/updated but not saved yet. |
| 987 | 987 | * |
| 988 | - * @param AbstractTDBMObject $myObject |
|
| 988 | + * @param DbRow $myObject |
|
| 989 | 989 | */ |
| 990 | 990 | public function _addToToSaveObjectList(DbRow $myObject) { |
| 991 | 991 | $this->toSaveObjects[] = $myObject; |
@@ -1621,7 +1621,7 @@ discard block |
||
| 1621 | 1621 | } |
| 1622 | 1622 | |
| 1623 | 1623 | /** |
| 1624 | - * @param $table |
|
| 1624 | + * @param string $table |
|
| 1625 | 1625 | * @param array $primaryKeys |
| 1626 | 1626 | * @param array $additionalTablesFetch |
| 1627 | 1627 | * @param bool $lazy Whether to perform lazy loading on this object or not. |
@@ -1778,7 +1778,7 @@ discard block |
||
| 1778 | 1778 | /** |
| 1779 | 1779 | * @param $pivotTableName |
| 1780 | 1780 | * @param AbstractTDBMObject $bean |
| 1781 | - * @return AbstractTDBMObject[] |
|
| 1781 | + * @return ResultIterator |
|
| 1782 | 1782 | */ |
| 1783 | 1783 | public function _getRelatedBeans($pivotTableName, AbstractTDBMObject $bean) { |
| 1784 | 1784 | |
@@ -22,16 +22,11 @@ |
||
| 22 | 22 | use Doctrine\Common\Cache\Cache; |
| 23 | 23 | use Doctrine\Common\Cache\VoidCache; |
| 24 | 24 | use Doctrine\DBAL\Connection; |
| 25 | -use Doctrine\DBAL\DBALException; |
|
| 26 | -use Doctrine\DBAL\Schema\Column; |
|
| 27 | 25 | use Doctrine\DBAL\Schema\ForeignKeyConstraint; |
| 28 | -use Doctrine\DBAL\Schema\Schema; |
|
| 29 | 26 | use Mouf\Database\MagicQuery; |
| 30 | 27 | use Mouf\Database\SchemaAnalyzer\SchemaAnalyzer; |
| 31 | 28 | use Mouf\Database\TDBM\Filters\OrderBySQLString; |
| 32 | 29 | use Mouf\Database\TDBM\Utils\TDBMDaoGenerator; |
| 33 | -use Mouf\Utils\Cache\CacheInterface; |
|
| 34 | -use SQLParser\Node\ColRef; |
|
| 35 | 30 | |
| 36 | 31 | /** |
| 37 | 32 | * The TDBMService class is the main TDBM class. It provides methods to retrieve TDBMObject instances |
@@ -699,9 +699,9 @@ discard block |
||
| 699 | 699 | // 4-2, let's take all the objects out of the orderby bag, and let's make objects from them |
| 700 | 700 | $orderby_bag2 = array(); |
| 701 | 701 | foreach ($orderby_bag as $thing) { |
| 702 | - if (is_a($thing,'Mouf\\Database\\TDBM\\Filters\\OrderBySQLString')) { |
|
| 702 | + if (is_a($thing, 'Mouf\\Database\\TDBM\\Filters\\OrderBySQLString')) { |
|
| 703 | 703 | $orderby_bag2[] = $thing; |
| 704 | - } elseif (is_a($thing,'Mouf\\Database\\TDBM\\Filters\\OrderByColumn')) { |
|
| 704 | + } elseif (is_a($thing, 'Mouf\\Database\\TDBM\\Filters\\OrderByColumn')) { |
|
| 705 | 705 | $orderby_bag2[] = $thing; |
| 706 | 706 | } elseif (is_string($thing)) { |
| 707 | 707 | $orderby_bag2[] = new OrderBySQLString($thing); |
@@ -1204,7 +1204,7 @@ discard block |
||
| 1204 | 1204 | $schemaAnalyzer = $this->schemaAnalyzer; |
| 1205 | 1205 | |
| 1206 | 1206 | foreach ($tables as $currentTable) { |
| 1207 | - $allParents = [ $currentTable ]; |
|
| 1207 | + $allParents = [$currentTable]; |
|
| 1208 | 1208 | $currentFk = null; |
| 1209 | 1209 | while ($currentFk = $schemaAnalyzer->getParentRelationship($currentTable)) { |
| 1210 | 1210 | $currentTable = $currentFk->getForeignTableName(); |
@@ -1246,7 +1246,7 @@ discard block |
||
| 1246 | 1246 | // Let's scan the parent tables |
| 1247 | 1247 | $currentTable = $table; |
| 1248 | 1248 | |
| 1249 | - $parentTables = [ ]; |
|
| 1249 | + $parentTables = []; |
|
| 1250 | 1250 | |
| 1251 | 1251 | // Get parent relationship |
| 1252 | 1252 | while ($currentFk = $schemaAnalyzer->getParentRelationship($currentTable)) { |
@@ -1336,7 +1336,7 @@ discard block |
||
| 1336 | 1336 | * @return ResultIterator An object representing an array of results. |
| 1337 | 1337 | * @throws TDBMException |
| 1338 | 1338 | */ |
| 1339 | - public function findObjects($mainTable, $filter=null, array $parameters = array(), $orderString=null, array $additionalTablesFetch = array(), $mode = null, $className=null) { |
|
| 1339 | + public function findObjects($mainTable, $filter = null, array $parameters = array(), $orderString = null, array $additionalTablesFetch = array(), $mode = null, $className = null) { |
|
| 1340 | 1340 | // $mainTable is not secured in MagicJoin, let's add a bit of security to avoid SQL injection. |
| 1341 | 1341 | if (!preg_match('/^[a-zA-Z_][a-zA-Z0-9_]*$/', $mainTable)) { |
| 1342 | 1342 | throw new TDBMException(sprintf("Invalid table name: '%s'", $mainTable)); |
@@ -1405,7 +1405,7 @@ discard block |
||
| 1405 | 1405 | throw new TDBMException("Unknown fetch mode: '".$this->mode."'"); |
| 1406 | 1406 | } |
| 1407 | 1407 | |
| 1408 | - $mode = $mode?:$this->mode; |
|
| 1408 | + $mode = $mode ?: $this->mode; |
|
| 1409 | 1409 | |
| 1410 | 1410 | return new ResultIterator($sql, $countSql, $parameters, $columnDescList, $this->objectStorage, $className, $this, $this->magicQuery, $mode); |
| 1411 | 1411 | } |
@@ -1419,7 +1419,7 @@ discard block |
||
| 1419 | 1419 | * @return AbstractTDBMObject |
| 1420 | 1420 | * @throws TDBMException |
| 1421 | 1421 | */ |
| 1422 | - public function findObjectByPk($table, array $primaryKeys, array $additionalTablesFetch = array(), $lazy = false, $className=null) { |
|
| 1422 | + public function findObjectByPk($table, array $primaryKeys, array $additionalTablesFetch = array(), $lazy = false, $className = null) { |
|
| 1423 | 1423 | $primaryKeys = $this->_getPrimaryKeysFromObjectData($table, $primaryKeys); |
| 1424 | 1424 | $hash = $this->getObjectHash($primaryKeys); |
| 1425 | 1425 | |
@@ -1439,7 +1439,7 @@ discard block |
||
| 1439 | 1439 | // Only allowed if no inheritance. |
| 1440 | 1440 | if (count($tables) === 1) { |
| 1441 | 1441 | if ($className === null) { |
| 1442 | - $className = isset($this->tableToBeanMap[$table])?$this->tableToBeanMap[$table]:"Mouf\\Database\\TDBM\\TDBMObject"; |
|
| 1442 | + $className = isset($this->tableToBeanMap[$table]) ? $this->tableToBeanMap[$table] : "Mouf\\Database\\TDBM\\TDBMObject"; |
|
| 1443 | 1443 | } |
| 1444 | 1444 | |
| 1445 | 1445 | // Let's construct the bean |
@@ -1468,11 +1468,11 @@ discard block |
||
| 1468 | 1468 | * @return AbstractTDBMObject|null The object we want, or null if no object matches the filters. |
| 1469 | 1469 | * @throws TDBMException |
| 1470 | 1470 | */ |
| 1471 | - public function findObject($mainTable, $filterString=null, array $parameters = array(), array $additionalTablesFetch = array(), $className = null) { |
|
| 1471 | + public function findObject($mainTable, $filterString = null, array $parameters = array(), array $additionalTablesFetch = array(), $className = null) { |
|
| 1472 | 1472 | $objects = $this->findObjects($mainTable, $filterString, $parameters, null, $additionalTablesFetch, self::MODE_ARRAY, $className); |
| 1473 | 1473 | $page = $objects->take(0, 2); |
| 1474 | 1474 | $count = $page->count(); |
| 1475 | - if ($count > 1) { |
|
| 1475 | + if ($count>1) { |
|
| 1476 | 1476 | throw new DuplicateRowException("Error while querying an object for table '$mainTable': More than 1 row have been returned, but we should have received at most one."); |
| 1477 | 1477 | } elseif ($count === 0) { |
| 1478 | 1478 | return null; |
@@ -1492,7 +1492,7 @@ discard block |
||
| 1492 | 1492 | * @return AbstractTDBMObject The object we want |
| 1493 | 1493 | * @throws TDBMException |
| 1494 | 1494 | */ |
| 1495 | - public function findObjectOrFail($mainTable, $filterString=null, array $parameters = array(), array $additionalTablesFetch = array(), $className = null) { |
|
| 1495 | + public function findObjectOrFail($mainTable, $filterString = null, array $parameters = array(), array $additionalTablesFetch = array(), $className = null) { |
|
| 1496 | 1496 | $bean = $this->findObject($mainTable, $filterString, $parameters, $additionalTablesFetch, $className); |
| 1497 | 1497 | if ($bean === null) { |
| 1498 | 1498 | throw new NoBeanFoundException("No result found for query on table '".$mainTable."'"); |
@@ -693,8 +693,9 @@ |
||
| 693 | 693 | // Fourth, let's apply the same steps to the orderby_bag |
| 694 | 694 | // 4-1 orderby_bag should be an array, if it is a singleton, let's put it in an array. |
| 695 | 695 | |
| 696 | - if (!is_array($orderby_bag)) |
|
| 697 | - $orderby_bag = array($orderby_bag); |
|
| 696 | + if (!is_array($orderby_bag)) { |
|
| 697 | + $orderby_bag = array($orderby_bag); |
|
| 698 | + } |
|
| 698 | 699 | |
| 699 | 700 | // 4-2, let's take all the objects out of the orderby bag, and let's make objects from them |
| 700 | 701 | $orderby_bag2 = array(); |