Coverage for Doctrine_AuditLog

Back to coverage report

1 <?php
2 /*
3  *  $Id$
4  *
5  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
6  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
7  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
8  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
9  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
10  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
11  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
12  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
13  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
14  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
15  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16  *
17  * This software consists of voluntary contributions made by many individuals
18  * and is licensed under the LGPL. For more information, see
19  * <http://www.phpdoctrine.com>.
20  */
21 /**
22  * Doctrine_AuditLog
23  *
24  * @package     Doctrine
25  * @subpackage  AuditLog
26  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
27  * @link        www.phpdoctrine.com
28  * @since       1.0
29  * @version     $Revision$
30  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
31  */
32 class Doctrine_AuditLog extends Doctrine_Plugin
33 {
34     protected $_options = array(
35                             'className'     => '%CLASS%Version',
36                             'versionColumn' => 'version',
37                             'generateFiles' => false,
38                             'table'         => false,
39                             'pluginTable'   => false,
40                             );
41
42     protected $_auditTable;
43
44     public function __construct($options)
45     {
46         $this->_options = array_merge($this->_options, $options);
47     }
48
49     public function getVersion(Doctrine_Record $record, $version)
50     {           
51         $className = $this->_options['className'];
52
53         $q = new Doctrine_Query();
54
55         $values = array();
56         foreach ((array) $this->_options['table']->getIdentifier() as $id) {
57             $conditions[] = $className . '.' . $id . ' = ?';
58             $values[] = $record->get($id);
59         }
60         $where = implode(' AND ', $conditions) . ' AND ' . $className . '.' . $this->_options['versionColumn'] . ' = ?';
61         
62         $values[] = $version;
63
64         $q->from($className)
65           ->where($where);
66
67         return $q->execute($values, Doctrine::HYDRATE_ARRAY);
68     }
69     public function buildDefinition(Doctrine_Table $table)
70     {
71         $this->_options['className'] = str_replace('%CLASS%', 
72                                                    $this->_options['table']->getComponentName(),
73                                                    $this->_options['className']);
74
75         $name = $table->getComponentName();
76
77         $className = $name . 'Version';
78
79         // check that class doesn't exist (otherwise we cannot create it)
80         if (class_exists($className)) {
81             return false;
82         }
83
84         $columns = $table->getColumns();
85
86         // remove all sequence, autoincrement and unique constraint definitions
87         foreach ($columns as $column => $definition) {
88             unset($columns[$column]['autoincrement']);
89             unset($columns[$column]['sequence']);
90             unset($columns[$column]['unique']);
91         }
92
93         // the version column should be part of the primary key definition
94         $columns[$this->_options['versionColumn']]['primary'] = true;
95
96         $id = $table->getIdentifier();
97
98         $options = array('className' => $className);
99         
100         $relations = array($name => array('local' => $id,
101                                           'foreign' => $id, 
102                                           'onDelete' => 'CASCADE',
103                                           'onUpdate' => 'CASCADE'));
104
105         $this->generateClass($options, $columns, array());
106         
107         $this->_options['pluginTable'] = $table->getConnection()->getTable($this->_options['className']);
108
109         return true;
110     }
111 }