forked from propelorm/Propel2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
1,440 additions
and
0 deletions.
There are no files selected for viewing
141 changes: 141 additions & 0 deletions
141
src/Propel/Generator/Behavior/Auditable/AuditableBehavior.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
<?php | ||
|
||
/** | ||
* MIT License. This file is part of the Propel package. | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Propel\Generator\Behavior\Auditable; | ||
|
||
use Propel\Generator\Behavior\SyncedTable\TableSyncer; | ||
use Propel\Generator\Behavior\Util\InsertCodeBehavior; | ||
use Propel\Generator\Builder\Om\ObjectBuilder; | ||
use Propel\Generator\Model\PropelTypes; | ||
use Propel\Generator\Model\Table; | ||
use stdClass; | ||
|
||
class AuditableBehavior extends AuditableBehaviorDeclaration | ||
{ | ||
/** | ||
* @see \Propel\Generator\Model\Behavior::getObjectBuilderModifier() | ||
* | ||
* @return $this|\Propel\Generator\Behavior\Auditable\AuditableObjectModifier|\stdClass | ||
*/ | ||
public function getObjectBuilderModifier() | ||
{ | ||
return ($this->omitOnSkipSql() && $this->table->isSkipSql()) ? new stdClass() : new AuditableObjectModifier($this); | ||
} | ||
|
||
/** | ||
* @return void | ||
*/ | ||
public function modifyTable(): void | ||
{ | ||
parent::modifyTable(); | ||
$this->addAggregationColumn($this->table); | ||
} | ||
|
||
/** | ||
* @param \Propel\Generator\Model\Table $table | ||
* | ||
* @return void | ||
*/ | ||
public function addAggregationColumn(Table $table): void | ||
{ | ||
$columnName = $this->aggregationColumnNameOnSource(); | ||
if (!$columnName) { | ||
return; | ||
} | ||
TableSyncer::addColumnIfNotExists($table, $columnName, [ | ||
'type' => 'INTEGER', | ||
'defaultValue' => 0, | ||
'defaultExpression' => 0, | ||
'required' => true, | ||
]); | ||
} | ||
|
||
/** | ||
* @param \Propel\Generator\Model\Table $syncedTable | ||
* @param bool $tableExistsInSchema | ||
* | ||
* @return void | ||
*/ | ||
public function addTableElements(Table $syncedTable, bool $tableExistsInSchema): void | ||
{ | ||
parent::addTableElements($syncedTable, $tableExistsInSchema); | ||
$auditedAtColumn = TableSyncer::addColumnIfNotExists($syncedTable, $this->getAuditedAtFieldName(), [ | ||
'type' => 'TIMESTAMP', | ||
'defaultExpr' => 'CURRENT_TIMESTAMP', | ||
]); | ||
$auditEventColumn = TableSyncer::addColumnIfNotExists($syncedTable, $this->getAuditEventFieldName(), [ | ||
'type' => PropelTypes::ENUM, | ||
'valueSet' => 'insert, update, delete', | ||
'required' => true, | ||
]); | ||
$changedValuesColumn = TableSyncer::addColumnIfNotExists($syncedTable, $this->getChangedValuesFieldName(), [ | ||
'type' => $this->getChangedValuesFieldType(), | ||
'size' => $this->getChangedValuesFieldSize(), | ||
]); | ||
|
||
$fk = $this->findSyncedRelation($syncedTable->getForeignKeys()); | ||
|
||
InsertCodeBehavior::addToTable($this, $syncedTable, [ | ||
'preInsert' => '$this->' . $auditedAtColumn->getName() . ' ??= (new DateTime())->format(\'Y-m-d H:i:s.u\');', | ||
'objectAttributes' => fn (ObjectBuilder $builder) => $this->renderLocalTemplate('auditObjectAttributes', [ | ||
'auditObjectFullyQualifiedClassName' => $builder->getObjectClassName(true), | ||
'changedValuesColumnPhpName' => $changedValuesColumn->getPhpName(), | ||
]), | ||
'objectMethods' => fn (ObjectBuilder $builder) => $this->renderLocalTemplate('auditObjectMethods', [ | ||
'changedValuesColumnPhpName' => $changedValuesColumn->getPhpName(), | ||
'auditObjectName' => $syncedTable->getPhpName(), | ||
'auditIdColumnName' => $this->addPkAs(), | ||
'auditedAtColumnName' => $auditedAtColumn->getName(), | ||
'syncedPkColumns' => $this->getSyncedPrimaryKeyColumns($syncedTable), | ||
'relationToSourceName' => $builder->getFKPhpNameAffix($fk, false), | ||
'auditEventColumnPhpName' => $auditEventColumn->getPhpName(), | ||
'queryClassName' => $builder->getQueryClassName(), | ||
]), | ||
]); | ||
} | ||
|
||
/** | ||
* @return array<array{column: \Propel\Generator\Model\Column, isOmited: bool}> | ||
*/ | ||
public function selectAuditedFields(): array | ||
{ | ||
$ignoredFields = $this->getIgnoredFieldNames(); | ||
$omitedFields = $this->getOmitValueFields(); | ||
$omitedTypes = $this->getOmitValueFieldTypes(); | ||
$auditedFields = []; | ||
|
||
foreach ($this->table->getColumns() as $column) { | ||
$fieldName = $column->getName(); | ||
if (in_array($fieldName, $ignoredFields)) { | ||
continue; | ||
} | ||
$isOmited = (in_array($fieldName, $omitedFields) || in_array($column->getType(), $omitedTypes)); | ||
$auditedFields[] = [ | ||
'column' => $column, | ||
'isOmited' => $isOmited, | ||
]; | ||
} | ||
|
||
return $auditedFields; | ||
} | ||
|
||
/** | ||
* @see Propel\Generator\Model\Behavior\Behavior::renderTemplate() | ||
* | ||
* @param string $filename | ||
* @param array $vars | ||
* | ||
* @return string | ||
*/ | ||
public function renderLocalTemplate(string $filename, array $vars = []): string | ||
{ | ||
$templatePath = $this->getDirname() . '/templates/'; | ||
|
||
return $this->renderTemplate($filename, $vars, $templatePath); | ||
} | ||
} |
Oops, something went wrong.