allow to instanciate the historylog with a given user or 0 for

changes by the system itself (eg. async service). bo_tracking passes on
it's user param of the constructor.
This commit is contained in:
Ralf Becker 2008-05-27 09:25:25 +00:00
parent 25a9f1165d
commit ae044a9a08
2 changed files with 21 additions and 24 deletions

View File

@ -6,7 +6,7 @@
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de> * @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
* @package etemplate * @package etemplate
* @subpackage api * @subpackage api
* @copyright (c) 2007 by Ralf Becker <RalfBecker-AT-outdoor-training.de> * @copyright (c) 2007/8 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @version $Id$ * @version $Id$
*/ */
@ -202,10 +202,9 @@ class bo_tracking
{ {
if ($old[$name] != $data[$name] && !(!$old[$name] && !$data[$name])) if ($old[$name] != $data[$name] && !(!$old[$name] && !$data[$name]))
{ {
if (!is_object($this->historylog)) if (!is_object($this->historylog) || $this->historylog->user != $this->user)
{ {
require_once(EGW_API_INC.'/class.historylog.inc.php'); $this->historylog = new historylog($this->app,$this->user);
$this->historylog =& new historylog($this->app);
} }
$this->historylog->add($status,$data[$this->id_field], $this->historylog->add($status,$data[$this->id_field],
is_array($data[$name]) ? implode(',',$data[$name]) : $data[$name], is_array($data[$name]) ? implode(',',$data[$name]) : $data[$name],
@ -229,7 +228,7 @@ class bo_tracking
{ {
$this->errors = $email_sent = array(); $this->errors = $email_sent = array();
if (!$this->notify_current_user) // should we notify the current user about his own changes if (!$this->notify_current_user && $this->user) // do we have a current user and should we notify the current user about his own changes
{ {
//error_log("do_notificaton() adding user=$this->user to email_sent, to not notify him"); //error_log("do_notificaton() adding user=$this->user to email_sent, to not notify him");
$email_sent[] = $GLOBALS['egw']->accounts->id2name($this->user,'account_email'); $email_sent[] = $GLOBALS['egw']->accounts->id2name($this->user,'account_email');

View File

@ -1,17 +1,17 @@
<?php <?php
/** /**
* API - Record history logging * API - Record history logging
* *
* This class extends a backend class (at them moment SQL or LDAP) and implements some * This class extends a backend class (at them moment SQL or LDAP) and implements some
* caching on to top of the backend functions. The cache is share for all instances of * caching on to top of the backend functions. The cache is share for all instances of
* the accounts class and for LDAP it is persistent through the whole session, for SQL * the accounts class and for LDAP it is persistent through the whole session, for SQL
* it's only on a per request basis. * it's only on a per request basis.
* *
* @link http://www.egroupware.org * @link http://www.egroupware.org
* @author Joseph Engo <jengo@phpgroupware.org> * @author Joseph Engo <jengo@phpgroupware.org>
* @copyright 2001 by Joseph Engo <jengo@phpgroupware.org> * @copyright 2001 by Joseph Engo <jengo@phpgroupware.org>
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de> new DB-methods and search * @author Ralf Becker <RalfBecker-AT-outdoor-training.de> new DB-methods and search
* *
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package api * @package api
* @subpackage db * @subpackage db
@ -42,10 +42,11 @@ class historylog
/** /**
* offset in secconds between user and server-time, * offset in secconds between user and server-time,
* it need to be add to a server-time to get the user-time or substracted from a user-time to get the server-time * it need to be add to a server-time to get the user-time or substracted from a user-time to get the server-time
* *
* @var int * @var int
*/ */
var $tz_offset_s; var $tz_offset_s;
var $user;
var $template; var $template;
var $nextmatchs; var $nextmatchs;
var $types = array( var $types = array(
@ -61,14 +62,11 @@ class historylog
* @param string $appname app name this instance operates on * @param string $appname app name this instance operates on
* @return historylog * @return historylog
*/ */
function historylog($appname='') function historylog($appname='',$user=null)
{ {
if (!$appname) $this->appname = $appname ? $appname : $GLOBALS['egw_info']['flags']['currentapp'];
{ $this->user = !is_null($user) ? $user : $GLOBALS['egw_info']['user']['account_id'];
$appname = $GLOBALS['egw_info']['flags']['currentapp'];
}
$this->appname = $appname;
if (is_object($GLOBALS['egw_setup']->db)) if (is_object($GLOBALS['egw_setup']->db))
{ {
$this->db = $GLOBALS['egw_setup']->db; $this->db = $GLOBALS['egw_setup']->db;
@ -89,7 +87,7 @@ class historylog
function delete($record_id) function delete($record_id)
{ {
$where = array('history_appname' => $this->appname); $where = array('history_appname' => $this->appname);
if (is_array($record_id) || is_numeric($record_id)) if (is_array($record_id) || is_numeric($record_id))
{ {
$where['history_record_id'] = $record_id; $where['history_record_id'] = $record_id;
@ -114,7 +112,7 @@ class historylog
$this->db->insert(self::TABLE,array( $this->db->insert(self::TABLE,array(
'history_record_id' => $record_id, 'history_record_id' => $record_id,
'history_appname' => $this->appname, 'history_appname' => $this->appname,
'history_owner' => $GLOBALS['egw_info']['user']['account_id'], 'history_owner' => $this->user,
'history_status' => $status, 'history_status' => $status,
'history_new_value' => $new_value, 'history_new_value' => $new_value,
'history_old_value' => $old_value, 'history_old_value' => $old_value,
@ -129,13 +127,13 @@ class historylog
* @param array/int $filter array with filters, or int record_id * @param array/int $filter array with filters, or int record_id
* @param string $order='history_id' sorting after history_id is identical to history_timestamp * @param string $order='history_id' sorting after history_id is identical to history_timestamp
* @param string $sort='ASC' * @param string $sort='ASC'
* @return array of arrays with keys id, record_id, appname, owner (account_id), status, new_value, old_value, * @return array of arrays with keys id, record_id, appname, owner (account_id), status, new_value, old_value,
* timestamp (Y-m-d H:i:s in servertime), user_ts (timestamp in user-time) * timestamp (Y-m-d H:i:s in servertime), user_ts (timestamp in user-time)
*/ */
function search($filter,$order='history_id',$sort='DESC') function search($filter,$order='history_id',$sort='DESC')
{ {
if (!is_array($filter)) $filter = (int)$filter ? array('history_record_id' => $filter) : array(); if (!is_array($filter)) $filter = (int)$filter ? array('history_record_id' => $filter) : array();
if (!$_orderby || !preg_match('/^[a-z0-9_]+$/i',$_orderby) || !preg_match('/^(asc|desc)?$/i',$sort)) if (!$_orderby || !preg_match('/^[a-z0-9_]+$/i',$_orderby) || !preg_match('/^(asc|desc)?$/i',$sort))
{ {
$orderby = 'ORDER BY history_id DESC'; $orderby = 'ORDER BY history_id DESC';
@ -176,7 +174,7 @@ class historylog
*/ */
function return_array($filter_out,$only_show,$_orderby,$sort, $record_id) function return_array($filter_out,$only_show,$_orderby,$sort, $record_id)
{ {
if (!$_orderby || !preg_match('/^[a-z0-9_]+$/i',$_orderby) || !preg_match('/^(asc|desc)?$/i',$sort)) if (!$_orderby || !preg_match('/^[a-z0-9_]+$/i',$_orderby) || !preg_match('/^(asc|desc)?$/i',$sort))
{ {
$orderby = 'ORDER BY history_timestamp,history_id'; $orderby = 'ORDER BY history_timestamp,history_id';
@ -206,13 +204,13 @@ class historylog
} }
$where[] = '('.implode(' OR ',$to_or).')'; $where[] = '('.implode(' OR ',$to_or).')';
} }
foreach($this->db->select(self::TABLE,'*',$where,__LINE__,__FILE__,false,$orderby) as $row) foreach($this->db->select(self::TABLE,'*',$where,__LINE__,__FILE__,false,$orderby) as $row)
{ {
$return_values[] = array( $return_values[] = array(
'id' => $row['history_id'], 'id' => $row['history_id'],
'record_id' => $row['history_record_id'], 'record_id' => $row['history_record_id'],
'owner' => $GLOBALS['egw']->accounts->id2name($row['history_owner']), 'owner' => $row['history_owner'] ? $GLOBALS['egw']->accounts->id2name($row['history_owner']) : lang('eGroupWare'),
'status' => str_replace(' ','',$row['history_status']), 'status' => str_replace(' ','',$row['history_status']),
'new_value' => $row['history_new_value'], 'new_value' => $row['history_new_value'],
'old_value' => $row['history_old_value'], 'old_value' => $row['history_old_value'],
@ -221,7 +219,7 @@ class historylog
} }
return $return_values; return $return_values;
} }
/** /**
* Creates html to show the history-log of one record * Creates html to show the history-log of one record
* *