1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
|
<?php
/**
* The History:: class provides a method of tracking changes in Horde
* objects, stored in a SQL table.
*
* $Horde: framework/History/History.php,v 1.28.2.14 2006/05/03 21:46:13 jan Exp $
*
* Copyright 2003-2006 Chuck Hagenbuch <chuck@horde.org>
*
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Chuck Hagenbuch <chuck@horde.org>
* @since Horde 2.1
* @package Horde_History
*/
class Horde_History {
/**
* Pointer to a DB instance to manage the history.
*
* @var DB
*/
var $_db;
/**
* Attempts to return a reference to a concrete History instance.
* It will only create a new instance if no History instance
* currently exists.
*
* This method must be invoked as: $var = &History::singleton()
*
* @return Horde_History The concrete History reference, or false on an
* error.
*/
function &singleton()
{
static $history;
if (!isset($history)) {
$history = &new Horde_History();
}
return $history;
}
/**
* Constructor.
*/
function Horde_History()
{
global $conf;
if (empty($conf['sql'])) {
$this->_db = PEAR::raiseError(_("The History system is disabled."));
}
require_once 'DB.php';
$this->_db = &DB::connect($conf['sql']);
/* Set DB portability options. */
if (is_a($this->_db, 'DB_common')) {
switch ($this->_db->phptype) {
case 'mssql':
$this->_db->setOption('portability', DB_PORTABILITY_LOWERCASE | DB_PORTABILITY_ERRORS | DB_PORTABILITY_RTRIM);
break;
default:
$this->_db->setOption('portability', DB_PORTABILITY_LOWERCASE | DB_PORTABILITY_ERRORS);
}
}
}
/**
* Logs an event to an item's history log. The item must be uniquely
* identified by $guid. Any other details about the event are passed in
* $attributes. Standard suggested attributes are:
*
* 'who' => The id of the user that performed the action (will be added
* automatically if not present).
*
* 'ts' => Timestamp of the action (this will be added automatically if
* it is not present).
*
* @param string $guid The unique identifier of the entry to
* add to.
* @param array $attributes The hash of name => value entries that
* describe this event.
* @param boolean $replaceAction If $attributes['action'] is already
* present in the item's history log,
* update that entry instead of creating a
* new one.
*
* @return boolean|PEAR_Error True on success, PEAR_Error on failure.
*/
function log($guid, $attributes = array(), $replaceAction = false)
{
if (is_a($this->_db, 'PEAR_Error')) {
return $this->_db;
}
$history = &$this->getHistory($guid);
if (!$history || is_a($history, 'PEAR_Error')) {
return $history;
}
if (empty($attributes['who'])) {
$attributes['who'] = Auth::getAuth();
}
if (empty($attributes['ts'])) {
$attributes['ts'] = time();
}
/* If we want to replace an entry with the same action, try and find
* one. Track whether or not we succeed in $done, so we know whether
* or not to add the entry later. */
$done = false;
if ($replaceAction && !empty($attributes['action'])) {
$count = count($history->data);
for ($i = 0; $i < $count; $i++) {
if (!empty($history->data[$i]['action']) &&
$history->data[$i]['action'] == $attributes['action']) {
$values = array($attributes['ts'],
$attributes['who'],
isset($attributes['desc']) ? $attributes['desc'] : null);
unset($attributes['ts']);
unset($attributes['who']);
unset($attributes['desc']);
unset($attributes['action']);
if ($attributes) {
$values[] = serialize($attributes);
} else {
$values[] = null;
}
$values[] = $history->data[$i]['id'];
$r = $this->_db->query('UPDATE horde_histories SET history_ts = ?,' .
' history_who = ?,' .
' history_desc = ?,' .
' history_extra = ? WHERE history_id = ?', $values);
if (is_a($r, 'PEAR_Error')) {
return $r;
}
$done = true;
break;
}
}
}
/* If we're not replacing by action, or if we didn't find an entry to
* replace, insert a new row. */
if (!$done) {
$values = array($this->_db->nextId('horde_histories'),
$guid,
$attributes['ts'],
$attributes['who'],
isset($attributes['desc']) ? $attributes['desc'] : null,
isset($attributes['action']) ? $attributes['action'] : null);
unset($attributes['ts']);
unset($attributes['who']);
unset($attributes['desc']);
unset($attributes['action']);
if ($attributes) {
$values[] = serialize($attributes);
} else {
$values[] = null;
}
$r = $this->_db->query('INSERT INTO horde_histories (history_id, object_uid, history_ts, history_who, history_desc, history_action, history_extra)' .
' VALUES (?, ?, ?, ?, ?, ?, ?)', $values);
if (is_a($r, 'PEAR_Error')) {
return $r;
}
}
return true;
}
/**
* Returns a HistoryObject corresponding to the named history
* entry, with the data retrieved appropriately. $autocreate has
* no affect.
*
* @param string $guid The name of the history entry to retrieve.
* @param boolean $autocreate Deprecated.
*/
function &getHistory($guid, $autocreate = null)
{
if (is_a($this->_db, 'PEAR_Error')) {
$false = false;
return $false;
}
$rows = $this->_db->getAll('SELECT * FROM horde_histories WHERE object_uid = ?', array($guid), DB_FETCHMODE_ASSOC);
$history = &new HistoryObject($guid, $rows);
return $history;
}
/**
* Finds history objects by timestamp, and optionally filter on other
* fields as well.
*
* @param string $cmp The comparison operator (<, >, <=, >=, or =) to
* check the timestamps with.
* @param integer $ts The timestamp to compare against.
* @param array $filters An array of additional (ANDed) criteria.
* Each array value should be an array with 3
* entries:
* <pre>
* 'op' - the operator to compare this field
* with.
* 'field' - the history field being compared
* (i.e. 'action').
* 'value' - the value to check for (i.e. 'add').
* </pre>
* @param string $parent The parent history to start searching at. If non-empty,
* will be searched for with a LIKE '$parent:%' clause.
*
* @return array An array of history object ids, or an empty array if
* none matched the criteria.
*/
function getByTimestamp($cmp, $ts, $filters = array(), $parent = null)
{
if (is_a($this->_db, 'PEAR_Error')) {
return false;
}
/* Build the timestamp test. */
$where = array("history_ts $cmp $ts");
/* Add additional filters, if there are any. */
if ($filters) {
foreach ($filters as $filter) {
$where[] = 'history_' . $filter['field'] . ' ' . $filter['op'] . ' ' . $this->_db->quote($filter['value']);
}
}
if ($parent) {
$where[] = 'object_uid LIKE ' . $this->_db->quote($parent . ':%');
}
return $this->_db->getAssoc('SELECT DISTINCT object_uid, history_id FROM horde_histories WHERE ' . implode(' AND ', $where));
}
/**
* Gets the timestamp of the most recent change to $guid.
*
* @param string $guid The name of the history entry to retrieve.
* @param string $action An action: 'add', 'modify', 'delete', etc.
*
* @return integer The timestamp, or 0 if no matching entry is found.
*/
function getActionTimestamp($guid, $action)
{
/* This implementation still works, but we should be able to
* get much faster now with a SELECT MAX(history_ts)
* ... query. */
$history = &$this->getHistory($guid);
if (!$history || is_a($history, 'PEAR_Error')) {
return 0;
}
$last = 0;
if (is_array($history->data)) {
foreach ($history->data as $entry) {
if ($entry['action'] == $action && $entry['ts'] > $last) {
$last = $entry['ts'];
}
}
}
return $last;
}
/**
* Remove one or more history entries by name.
*
* @param array $names The history entries to remove.
*/
function removeByNames($names)
{
if (is_a($this->_db, 'PEAR_Error')) {
return false;
}
$ids = array();
foreach ($names as $name) {
$ids[] = $this->_db->quote($name);
}
return $this->_db->query('DELETE FROM horde_histories WHERE object_uid IN (' . implode(',', $ids) . ')');
}
}
/**
* Class for presenting History information.
*
* @author Chuck Hagenbuch <chuck@horde.org>
* @since Horde 2.1
* @package Horde_History
*/
class HistoryObject {
var $uid;
var $data = array();
function HistoryObject($uid, $data = array())
{
$this->uid = $uid;
if (!$data || is_a($data, 'PEAR_Error')) {
return;
}
foreach ($data as $row) {
$history = array('action' => $row['history_action'],
'desc' => $row['history_desc'],
'who' => $row['history_who'],
'id' => $row['history_id'],
'ts' => $row['history_ts']);
if ($row['history_extra']) {
$extra = @unserialize($row['history_extra']);
if ($extra) {
$history = array_merge($history, $extra);
}
}
$this->data[] = $history;
}
}
function getData()
{
return $this->data;
}
}
|