mirror of
https://github.com/atlanticbiomedical/portal-legacy.git
synced 2025-07-02 01:47:28 -04:00
initial commit
This commit is contained in:
341
lib/symfony/addon/propel/builder/SfObjectBuilder.php
Executable file
341
lib/symfony/addon/propel/builder/SfObjectBuilder.php
Executable file
@ -0,0 +1,341 @@
|
||||
<?php
|
||||
|
||||
require_once 'propel/engine/builder/om/php5/PHP5ComplexObjectBuilder.php';
|
||||
|
||||
/*
|
||||
* This file is part of the symfony package.
|
||||
* (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @package symfony
|
||||
* @subpackage addon
|
||||
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
|
||||
* @version SVN: $Id: SfObjectBuilder.php 3493 2007-02-18 09:23:10Z fabien $
|
||||
*/
|
||||
class SfObjectBuilder extends PHP5ComplexObjectBuilder
|
||||
{
|
||||
public function build()
|
||||
{
|
||||
if (!DataModelBuilder::getBuildProperty('builderAddComments'))
|
||||
{
|
||||
return sfToolkit::stripComments(parent::build());
|
||||
}
|
||||
|
||||
return parent::build();
|
||||
}
|
||||
|
||||
protected function addIncludes(&$script)
|
||||
{
|
||||
if (!DataModelBuilder::getBuildProperty('builderAddIncludes'))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
parent::addIncludes($script);
|
||||
|
||||
// include the i18n classes if needed
|
||||
if ($this->getTable()->getAttribute('isI18N'))
|
||||
{
|
||||
$relatedTable = $this->getDatabase()->getTable($this->getTable()->getAttribute('i18nTable'));
|
||||
|
||||
$script .= '
|
||||
require_once \''.$this->getFilePath($this->getStubObjectBuilder()->getPackage().'.'.$relatedTable->getPhpName().'Peer').'\';
|
||||
require_once \''.$this->getFilePath($this->getStubObjectBuilder()->getPackage().'.'.$relatedTable->getPhpName()).'\';
|
||||
';
|
||||
}
|
||||
}
|
||||
|
||||
protected function addClassBody(&$script)
|
||||
{
|
||||
parent::addClassBody($script);
|
||||
|
||||
if ($this->getTable()->getAttribute('isI18N'))
|
||||
{
|
||||
if (count($this->getTable()->getPrimaryKey()) > 1)
|
||||
{
|
||||
throw new Exception('i18n support only works with a single primary key');
|
||||
}
|
||||
|
||||
$this->addCultureAccessorMethod($script);
|
||||
$this->addCultureMutatorMethod($script);
|
||||
|
||||
$this->addI18nMethods($script);
|
||||
}
|
||||
|
||||
if (DataModelBuilder::getBuildProperty('builderAddBehaviors'))
|
||||
{
|
||||
$this->addCall($script);
|
||||
}
|
||||
}
|
||||
|
||||
protected function addCall(&$script)
|
||||
{
|
||||
$script .= "
|
||||
|
||||
public function __call(\$method, \$arguments)
|
||||
{
|
||||
if (!\$callable = sfMixer::getCallable('{$this->getClassname()}:'.\$method))
|
||||
{
|
||||
throw new sfException(sprintf('Call to undefined method {$this->getClassname()}::%s', \$method));
|
||||
}
|
||||
|
||||
array_unshift(\$arguments, \$this);
|
||||
|
||||
return call_user_func_array(\$callable, \$arguments);
|
||||
}
|
||||
|
||||
";
|
||||
}
|
||||
|
||||
protected function addAttributes(&$script)
|
||||
{
|
||||
parent::addAttributes($script);
|
||||
|
||||
if ($this->getTable()->getAttribute('isI18N'))
|
||||
{
|
||||
$script .= '
|
||||
/**
|
||||
* The value for the culture field.
|
||||
* @var string
|
||||
*/
|
||||
protected $culture;
|
||||
';
|
||||
}
|
||||
}
|
||||
|
||||
protected function addCultureAccessorMethod(&$script)
|
||||
{
|
||||
$script .= '
|
||||
public function getCulture()
|
||||
{
|
||||
return $this->culture;
|
||||
}
|
||||
';
|
||||
}
|
||||
|
||||
protected function addCultureMutatorMethod(&$script)
|
||||
{
|
||||
$script .= '
|
||||
public function setCulture($culture)
|
||||
{
|
||||
$this->culture = $culture;
|
||||
}
|
||||
';
|
||||
}
|
||||
|
||||
protected function addI18nMethods(&$script)
|
||||
{
|
||||
$table = $this->getTable();
|
||||
$pks = $table->getPrimaryKey();
|
||||
$pk = $pks[0]->getPhpName();
|
||||
|
||||
foreach ($table->getReferrers() as $fk)
|
||||
{
|
||||
$tblFK = $fk->getTable();
|
||||
if ($tblFK->getName() == $table->getAttribute('i18nTable'))
|
||||
{
|
||||
$className = $tblFK->getPhpName();
|
||||
$culture = '';
|
||||
$culture_peername = '';
|
||||
foreach ($tblFK->getColumns() as $col)
|
||||
{
|
||||
if (("true" === strtolower($col->getAttribute('isCulture'))))
|
||||
{
|
||||
$culture = $col->getPhpName();
|
||||
$culture_peername = PeerBuilder::getColumnName($col, $className);
|
||||
}
|
||||
}
|
||||
|
||||
foreach ($tblFK->getColumns() as $col)
|
||||
{
|
||||
if ($col->isPrimaryKey()) continue;
|
||||
|
||||
$script .= '
|
||||
public function get'.$col->getPhpName().'()
|
||||
{
|
||||
$obj = $this->getCurrent'.$className.'();
|
||||
|
||||
return ($obj ? $obj->get'.$col->getPhpName().'() : null);
|
||||
}
|
||||
|
||||
public function set'.$col->getPhpName().'($value)
|
||||
{
|
||||
$this->getCurrent'.$className.'()->set'.$col->getPhpName().'($value);
|
||||
}
|
||||
';
|
||||
}
|
||||
|
||||
$script .= '
|
||||
protected $current_i18n = array();
|
||||
|
||||
public function getCurrent'.$className.'()
|
||||
{
|
||||
if (!isset($this->current_i18n[$this->culture]))
|
||||
{
|
||||
$obj = '.$className.'Peer::retrieveByPK($this->get'.$pk.'(), $this->culture);
|
||||
if ($obj)
|
||||
{
|
||||
$this->set'.$className.'ForCulture($obj, $this->culture);
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->set'.$className.'ForCulture(new '.$className.'(), $this->culture);
|
||||
$this->current_i18n[$this->culture]->set'.$culture.'($this->culture);
|
||||
}
|
||||
}
|
||||
|
||||
return $this->current_i18n[$this->culture];
|
||||
}
|
||||
|
||||
public function set'.$className.'ForCulture($object, $culture)
|
||||
{
|
||||
$this->current_i18n[$culture] = $object;
|
||||
$this->add'.$className.'($object);
|
||||
}
|
||||
';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
protected function addDoSave(&$script)
|
||||
{
|
||||
$tmp = '';
|
||||
parent::addDoSave($tmp);
|
||||
// add autosave to i18n object even if the base object is not changed
|
||||
$tmp = preg_replace_callback('#(\$this\->(.+?)\->isModified\(\))#', array($this, 'i18nDoSaveCallback'), $tmp);
|
||||
|
||||
$script .= $tmp;
|
||||
}
|
||||
|
||||
private function i18nDoSaveCallback($matches)
|
||||
{
|
||||
$value = $matches[1];
|
||||
|
||||
// get the related class to see if it is a i18n one
|
||||
$table = $this->getTable();
|
||||
$column = null;
|
||||
foreach ($table->getForeignKeys() as $fk)
|
||||
{
|
||||
if ($matches[2] == $this->getFKVarName($fk))
|
||||
{
|
||||
$column = $fk;
|
||||
break;
|
||||
}
|
||||
}
|
||||
$foreign_table = $this->getDatabase()->getTable($fk->getForeignTableName());
|
||||
if ($foreign_table->getAttribute('isI18N'))
|
||||
{
|
||||
$foreign_tables_i18n_table = $this->getDatabase()->getTable($foreign_table->getAttribute('i18nTable'));
|
||||
$value .= ' || $this->'.$matches[2].'->getCurrent'.$foreign_tables_i18n_table->getPhpName().'()->isModified()';
|
||||
}
|
||||
|
||||
return $value;
|
||||
}
|
||||
|
||||
protected function addDelete(&$script)
|
||||
{
|
||||
$tmp = '';
|
||||
parent::addDelete($tmp);
|
||||
|
||||
if (DataModelBuilder::getBuildProperty('builderAddBehaviors'))
|
||||
{
|
||||
// add sfMixer call
|
||||
$pre_mixer_script = "
|
||||
|
||||
foreach (sfMixer::getCallables('{$this->getClassname()}:delete:pre') as \$callable)
|
||||
{
|
||||
\$ret = call_user_func(\$callable, \$this, \$con);
|
||||
if (\$ret)
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
";
|
||||
$post_mixer_script = "
|
||||
|
||||
foreach (sfMixer::getCallables('{$this->getClassname()}:delete:post') as \$callable)
|
||||
{
|
||||
call_user_func(\$callable, \$this, \$con);
|
||||
}
|
||||
|
||||
";
|
||||
$tmp = preg_replace('/{/', '{'.$pre_mixer_script, $tmp, 1);
|
||||
$tmp = preg_replace('/}\s*$/', $post_mixer_script.' }', $tmp);
|
||||
}
|
||||
|
||||
// update current script
|
||||
$script .= $tmp;
|
||||
}
|
||||
|
||||
protected function addSave(&$script)
|
||||
{
|
||||
$tmp = '';
|
||||
parent::addSave($tmp);
|
||||
|
||||
// add support for created_(at|on) and updated_(at|on) columns
|
||||
$date_script = '';
|
||||
$updated = false;
|
||||
$created = false;
|
||||
foreach ($this->getTable()->getColumns() as $col)
|
||||
{
|
||||
$clo = strtolower($col->getName());
|
||||
|
||||
if (!$updated && in_array($clo, array('updated_at', 'updated_on')))
|
||||
{
|
||||
$updated = true;
|
||||
$date_script .= "
|
||||
if (\$this->isModified() && !\$this->isColumnModified(".$this->getColumnConstant($col)."))
|
||||
{
|
||||
\$this->set".$col->getPhpName()."(time());
|
||||
}
|
||||
";
|
||||
}
|
||||
else if (!$created && in_array($clo, array('created_at', 'created_on')))
|
||||
{
|
||||
$created = true;
|
||||
$date_script .= "
|
||||
if (\$this->isNew() && !\$this->isColumnModified(".$this->getColumnConstant($col)."))
|
||||
{
|
||||
\$this->set".$col->getPhpName()."(time());
|
||||
}
|
||||
";
|
||||
}
|
||||
}
|
||||
$tmp = preg_replace('/{/', '{'.$date_script, $tmp, 1);
|
||||
|
||||
if (DataModelBuilder::getBuildProperty('builderAddBehaviors'))
|
||||
{
|
||||
// add sfMixer call
|
||||
$pre_mixer_script = "
|
||||
|
||||
foreach (sfMixer::getCallables('{$this->getClassname()}:save:pre') as \$callable)
|
||||
{
|
||||
\$affectedRows = call_user_func(\$callable, \$this, \$con);
|
||||
if (is_int(\$affectedRows))
|
||||
{
|
||||
return \$affectedRows;
|
||||
}
|
||||
}
|
||||
|
||||
";
|
||||
$post_mixer_script = <<<EOF
|
||||
|
||||
foreach (sfMixer::getCallables('{$this->getClassname()}:save:post') as \$callable)
|
||||
{
|
||||
call_user_func(\$callable, \$this, \$con, \$affectedRows);
|
||||
}
|
||||
|
||||
EOF;
|
||||
$tmp = preg_replace('/{/', '{'.$pre_mixer_script, $tmp, 1);
|
||||
$tmp = preg_replace('/(\$con\->commit\(\);)/', '$1'.$post_mixer_script, $tmp);
|
||||
}
|
||||
|
||||
// update current script
|
||||
$script .= $tmp;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user