mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
219 lines
5.3 KiB
PHP
219 lines
5.3 KiB
PHP
<?php
|
|
/**
|
|
* eGW API - content history class
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @author Lars Kneschke [lkneschke@linux-at-work.de]
|
|
* @copyright Lars Kneschke 2005
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package api
|
|
* @version $Id$
|
|
*/
|
|
|
|
/**
|
|
* class to maintain history of content
|
|
*
|
|
* This class contains all logic of the egw content history.
|
|
*/
|
|
class contenthistory
|
|
{
|
|
/**
|
|
* Name of the content-history table
|
|
*/
|
|
const TABLE = 'egw_api_content_history';
|
|
/**
|
|
* @var egw_db
|
|
*/
|
|
private $db;
|
|
|
|
function __construct()
|
|
{
|
|
$this->db = $GLOBALS['egw']->db;
|
|
}
|
|
|
|
/**
|
|
* mark mapping as expired
|
|
*
|
|
* mark a mapping from externel to internal id as expired, when
|
|
* a egw entry gets deleted
|
|
*
|
|
* @param string $_appName the appname example: infolog_notes
|
|
* @param int $_id the internal egwapp content id
|
|
* @return boolean
|
|
*/
|
|
function expireMapping($_appName, $_id)
|
|
{
|
|
return !!$this->db->update('egw_contentmap',array (
|
|
'map_expired' => 1,
|
|
),array (
|
|
'map_guid' => $GLOBALS['egw']->common->generate_uid($_appName, $_id),
|
|
),__LINE__,__FILE__,'syncml');
|
|
}
|
|
|
|
/**
|
|
* get the timestamp for action
|
|
*
|
|
* find which content changed since $_ts for application $_appName
|
|
*
|
|
* @param string$_appName the appname example: infolog_notes
|
|
* @param string $_action can be modify, add or delete
|
|
* @param string $_ts timestamp where to start searching from
|
|
* @param array $readableItems (optional) readable items of current user
|
|
* @return array containing contentIds with changes
|
|
*/
|
|
function getHistory($_appName, $_action, $_ts, $readableItems = false)
|
|
{
|
|
$where = array('sync_appname' => $_appName);
|
|
$ts = $this->db->to_timestamp($_ts);
|
|
$idList = array();
|
|
|
|
switch($_action)
|
|
{
|
|
case 'modify':
|
|
$where[] = "sync_modified > '".$ts."' AND sync_deleted IS NULL";
|
|
break;
|
|
case 'delete':
|
|
$where[] = "sync_deleted > '".$ts."'";
|
|
break;
|
|
case 'add':
|
|
$where[] = "sync_added > '".$ts."' AND sync_deleted IS NULL AND sync_modified IS NULL";
|
|
break;
|
|
default:
|
|
// no valid $_action set
|
|
return array();
|
|
}
|
|
|
|
if (is_array($readableItems))
|
|
{
|
|
foreach ($readableItems as $id)
|
|
{
|
|
$where['sync_contentid'] = $id;
|
|
if ($this->db->select(self::TABLE,'sync_contentid',$where,__LINE__,__FILE__)->fetchColumn())
|
|
{
|
|
$idList[] = $id;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
foreach ($this->db->select(self::TABLE,'sync_contentid',$where,__LINE__,__FILE__) as $row)
|
|
{
|
|
$idList[] = $row['sync_contentid'];
|
|
}
|
|
}
|
|
|
|
return $idList;
|
|
}
|
|
|
|
/**
|
|
* when got a entry last added/modified/deleted
|
|
*
|
|
* @param $_guid string the global uid of the entry
|
|
* @param $_action string can be add, delete or modify
|
|
* @return string the last timestamp
|
|
*/
|
|
function getTSforAction($_appName, $_id, $_action)
|
|
{
|
|
switch($_action)
|
|
{
|
|
case 'add':
|
|
$col = 'sync_added';
|
|
break;
|
|
case 'delete':
|
|
$col = 'sync_deleted';
|
|
break;
|
|
case 'modify':
|
|
$col = 'sync_modified';
|
|
break;
|
|
default:
|
|
return false;
|
|
}
|
|
$where = array (
|
|
'sync_appname' => $_appName,
|
|
'sync_contentid' => $_id,
|
|
);
|
|
|
|
if (($ts = $this->db->select(self::TABLE,$col,$where,__LINE__,__FILE__)->fetchColumn()))
|
|
{
|
|
$ts = $this->db->from_timestamp($ts);
|
|
}
|
|
return $ts;
|
|
}
|
|
|
|
/**
|
|
* update a timestamp for action
|
|
*
|
|
* @param string $_appName the appname example: infolog_notes
|
|
* @param int $_id the app internal content id
|
|
* @param string $_action can be modify, add or delete
|
|
* @param string $_ts timestamp where to start searching from
|
|
* @return boolean returns allways true
|
|
*/
|
|
function updateTimeStamp($_appName, $_id, $_action, $_ts)
|
|
{
|
|
$newData = array (
|
|
'sync_appname' => $_appName,
|
|
'sync_contentid' => $_id,
|
|
'sync_added' => $this->db->to_timestamp($_ts),
|
|
'sync_changedby' => $GLOBALS['egw_info']['user']['account_id'],
|
|
);
|
|
|
|
switch($_action)
|
|
{
|
|
case 'add':
|
|
$this->db->insert(self::TABLE,$newData,array(),__LINE__,__FILE__);
|
|
break;
|
|
|
|
case 'modify':
|
|
case 'delete':
|
|
// first check that this entry got ever added to database already
|
|
$where = array (
|
|
'sync_appname' => $_appName,
|
|
'sync_contentid' => $_id,
|
|
);
|
|
|
|
if (!$this->db->select(self::TABLE,'sync_contentid',$where,__LINE__,__FILE__)->fetchColumn())
|
|
{
|
|
$this->db->insert(self::TABLE,$newData,array(),__LINE__,__FILE__);
|
|
}
|
|
|
|
// now update the time stamp
|
|
$newData = array (
|
|
'sync_changedby' => $GLOBALS['egw_info']['user']['account_id'],
|
|
$_action == 'delete' ? 'sync_deleted' : 'sync_modified' => $this->db->to_timestamp($_ts),
|
|
);
|
|
$this->db->update(self::TABLE, $newData, $where,__LINE__,__FILE__);
|
|
break;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* get the timestamp of last change for appname
|
|
*
|
|
* find which content changed since $_ts for application $_appName
|
|
*
|
|
* @param string$_appName the appname example: infolog_notes
|
|
*
|
|
* @return timestamp of last change for this application
|
|
*/
|
|
function getLastChange($_appName)
|
|
{
|
|
$max = 0;
|
|
|
|
$where = array('sync_appname' => $_appName);
|
|
|
|
foreach (array('modified','deleted','added') as $action)
|
|
{
|
|
if (($ts = $this->db->select(self::TABLE,'MAX(sync_'.$action.')',$where,__LINE__,__FILE__)->fetchColumn()))
|
|
{
|
|
$ts = $this->db->from_timestamp($ts);
|
|
if ($ts > $max) $max = $ts;
|
|
}
|
|
}
|
|
|
|
return $max;
|
|
}
|
|
|
|
}
|