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
|
2008-01-23 01:52:53 +03:00
|
|
|
* <http://www.phpdoctrine.org>.
|
2007-06-01 02:00:59 +04:00
|
|
|
*/
|
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-11-29 01:56:45 +03:00
|
|
|
class Doctrine_AuditLog extends Doctrine_Record_Generator
|
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-11-26 00:10:49 +03:00
|
|
|
'children' => array(),
|
2007-06-06 03:58:11 +04:00
|
|
|
);
|
2007-07-18 00:45:10 +04:00
|
|
|
|
2007-11-18 23:37:44 +03:00
|
|
|
/**
|
|
|
|
* Create a new auditlog_
|
|
|
|
*
|
|
|
|
* @param array $options An array of options
|
|
|
|
* @return void
|
|
|
|
*/
|
2007-11-25 15:34:37 +03:00
|
|
|
public function __construct(array $options = array())
|
2007-06-06 03:58:11 +04:00
|
|
|
{
|
2007-11-28 05:21:42 +03:00
|
|
|
$this->_options = Doctrine_Lib::arrayDeepMerge($this->_options, $options);
|
2007-06-06 03:58:11 +04:00
|
|
|
}
|
|
|
|
|
2007-11-18 23:37:44 +03:00
|
|
|
/**
|
|
|
|
* Get the version
|
|
|
|
*
|
|
|
|
* @param Doctrine_Record $record
|
|
|
|
* @param mixed $version
|
|
|
|
* @return array An array with version information
|
|
|
|
*/
|
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-11-18 23:37:44 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* buildDefinition for a table
|
|
|
|
*
|
|
|
|
* @param Doctrine_Table $table
|
|
|
|
* @return boolean true on success otherwise false.
|
|
|
|
*/
|
2007-11-28 02:59:18 +03:00
|
|
|
public function setTableDefinition()
|
2007-07-18 23:31:43 +04:00
|
|
|
{
|
2007-11-25 15:34:37 +03:00
|
|
|
$name = $this->_options['table']->getComponentName();
|
2007-07-18 23:18:30 +04:00
|
|
|
|
2007-11-25 15:34:37 +03:00
|
|
|
$columns = $this->_options['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-11-28 02:59:18 +03:00
|
|
|
$this->hasColumns($columns);
|
2007-06-07 22:21:07 +04:00
|
|
|
|
2007-11-28 02:59:18 +03:00
|
|
|
// the version column should be part of the primary key definition
|
|
|
|
$this->hasColumn($this->_options['versionColumn'], 'integer', 8, array('primary' => true));
|
2007-06-01 02:00:59 +04:00
|
|
|
}
|
2007-11-29 01:56:45 +03:00
|
|
|
}
|