2007-06-01 02:00:59 +04:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This software consists of voluntary contributions made by many individuals
|
|
|
|
* and is licensed under the LGPL. For more information, see
|
|
|
|
* <http://www.phpdoctrine.com>.
|
|
|
|
*/
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-06-01 02:00:59 +04:00
|
|
|
/**
|
|
|
|
* Doctrine_AuditLog
|
|
|
|
*
|
|
|
|
* @package Doctrine
|
2007-10-04 01:43:22 +04:00
|
|
|
* @subpackage AuditLog
|
2007-06-01 02:00:59 +04:00
|
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
|
|
* @link www.phpdoctrine.com
|
|
|
|
* @since 1.0
|
|
|
|
* @version $Revision$
|
|
|
|
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
|
|
|
*/
|
2007-09-02 15:29:14 +04:00
|
|
|
class Doctrine_AuditLog extends Doctrine_Plugin
|
2007-06-01 02:00:59 +04:00
|
|
|
{
|
2007-06-06 03:58:11 +04:00
|
|
|
protected $_options = array(
|
|
|
|
'className' => '%CLASS%Version',
|
2007-07-18 00:45:10 +04:00
|
|
|
'versionColumn' => 'version',
|
|
|
|
'generateFiles' => false,
|
2007-07-18 01:10:18 +04:00
|
|
|
'table' => false,
|
2007-10-13 13:01:03 +04:00
|
|
|
'pluginTable' => false,
|
2007-06-06 03:58:11 +04:00
|
|
|
);
|
2007-07-18 00:45:10 +04:00
|
|
|
|
|
|
|
public function __construct($options)
|
2007-06-06 03:58:11 +04:00
|
|
|
{
|
2007-07-18 00:45:10 +04:00
|
|
|
$this->_options = array_merge($this->_options, $options);
|
2007-06-06 03:58:11 +04:00
|
|
|
}
|
|
|
|
|
2007-06-08 00:46:08 +04:00
|
|
|
public function getVersion(Doctrine_Record $record, $version)
|
2007-07-18 01:10:18 +04:00
|
|
|
{
|
|
|
|
$className = $this->_options['className'];
|
|
|
|
|
2007-06-08 00:46:08 +04:00
|
|
|
$q = new Doctrine_Query();
|
2007-07-18 01:10:18 +04:00
|
|
|
|
2007-06-08 00:46:08 +04:00
|
|
|
$values = array();
|
2007-07-18 01:10:18 +04:00
|
|
|
foreach ((array) $this->_options['table']->getIdentifier() as $id) {
|
2007-06-08 00:46:08 +04:00
|
|
|
$conditions[] = $className . '.' . $id . ' = ?';
|
|
|
|
$values[] = $record->get($id);
|
|
|
|
}
|
|
|
|
$where = implode(' AND ', $conditions) . ' AND ' . $className . '.' . $this->_options['versionColumn'] . ' = ?';
|
|
|
|
|
|
|
|
$values[] = $version;
|
2007-06-06 03:58:11 +04:00
|
|
|
|
2007-07-18 01:10:18 +04:00
|
|
|
$q->from($className)
|
|
|
|
->where($where);
|
|
|
|
|
2007-10-09 02:45:34 +04:00
|
|
|
return $q->execute($values, Doctrine::HYDRATE_ARRAY);
|
2007-06-08 00:46:08 +04:00
|
|
|
}
|
2007-07-18 00:45:10 +04:00
|
|
|
public function buildDefinition(Doctrine_Table $table)
|
2007-07-18 23:31:43 +04:00
|
|
|
{
|
2007-07-18 23:18:30 +04:00
|
|
|
$this->_options['className'] = str_replace('%CLASS%',
|
|
|
|
$this->_options['table']->getComponentName(),
|
|
|
|
$this->_options['className']);
|
|
|
|
|
2007-07-18 00:45:10 +04:00
|
|
|
$name = $table->getComponentName();
|
2007-06-06 03:58:11 +04:00
|
|
|
|
2007-07-18 00:45:10 +04:00
|
|
|
$className = $name . 'Version';
|
2007-10-09 02:58:53 +04:00
|
|
|
|
|
|
|
// check that class doesn't exist (otherwise we cannot create it)
|
2007-07-18 00:45:10 +04:00
|
|
|
if (class_exists($className)) {
|
|
|
|
return false;
|
2007-06-06 03:58:11 +04:00
|
|
|
}
|
2007-06-06 04:12:44 +04:00
|
|
|
|
2007-07-18 00:45:10 +04:00
|
|
|
$columns = $table->getColumns();
|
2007-10-09 02:58:53 +04:00
|
|
|
|
2007-10-09 03:03:59 +04:00
|
|
|
// remove all sequence, autoincrement and unique constraint definitions
|
2007-10-09 02:58:53 +04:00
|
|
|
foreach ($columns as $column => $definition) {
|
|
|
|
unset($columns[$column]['autoincrement']);
|
|
|
|
unset($columns[$column]['sequence']);
|
2007-10-09 03:03:59 +04:00
|
|
|
unset($columns[$column]['unique']);
|
2007-10-09 02:58:53 +04:00
|
|
|
}
|
|
|
|
|
2007-07-18 23:31:43 +04:00
|
|
|
// the version column should be part of the primary key definition
|
2007-10-18 23:39:19 +04:00
|
|
|
$columns[$this->_options['versionColumn']] = array('type' => 'integer',
|
|
|
|
'length' => 8,
|
|
|
|
'primary' => true);
|
2007-06-06 04:12:44 +04:00
|
|
|
|
2007-07-18 00:45:10 +04:00
|
|
|
$id = $table->getIdentifier();
|
2007-06-07 22:21:07 +04:00
|
|
|
|
2007-07-18 00:45:10 +04:00
|
|
|
$options = array('className' => $className);
|
2007-10-13 20:49:42 +04:00
|
|
|
|
2007-10-14 01:40:43 +04:00
|
|
|
$relations = array($name => array('local' => $id,
|
2007-10-13 20:49:42 +04:00
|
|
|
'foreign' => $id,
|
|
|
|
'onDelete' => 'CASCADE',
|
2007-10-14 01:40:43 +04:00
|
|
|
'onUpdate' => 'CASCADE'));
|
2007-06-06 03:58:11 +04:00
|
|
|
|
2007-10-13 13:01:42 +04:00
|
|
|
$this->generateClass($options, $columns, array());
|
2007-10-13 13:01:03 +04:00
|
|
|
|
|
|
|
$this->_options['pluginTable'] = $table->getConnection()->getTable($this->_options['className']);
|
2007-06-05 22:38:00 +04:00
|
|
|
|
2007-07-18 00:45:10 +04:00
|
|
|
return true;
|
2007-06-01 02:00:59 +04:00
|
|
|
}
|
|
|
|
}
|