1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/lib/Doctrine/AuditLog.php

108 lines
3.8 KiB
PHP
Raw Normal View History

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>.
*/
/**
* Doctrine_AuditLog
*
* @package Doctrine
* @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-06-06 03:58:11 +04:00
);
2007-07-18 00:45:10 +04:00
2007-06-08 00:46:08 +04:00
protected $_auditTable;
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';
// 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();
// remove all sequential and autoincrement definitions
foreach ($columns as $column => $definition) {
unset($columns[$column]['autoincrement']);
unset($columns[$column]['sequence']);
}
2007-07-18 23:31:43 +04:00
// the version column should be part of the primary key definition
$columns[$this->_options['versionColumn']]['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-06-06 03:58:11 +04:00
2007-07-18 00:45:10 +04:00
$builder = new Doctrine_Import_Builder();
2007-06-08 00:46:08 +04:00
2007-07-18 00:45:10 +04:00
$def = $builder->buildDefinition($options, $columns);
2007-06-05 22:38:00 +04:00
2007-07-18 00:45:10 +04:00
if ( ! $this->_options['generateFiles']) {
eval($def);
}
return true;
2007-06-01 02:00:59 +04:00
}
}