2005-06-19 21:00:58 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include_once 'Horde/SyncML/Sync.php';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* $Horde: framework/SyncML/SyncML/Sync/RefreshFromServerSync.php,v 1.9 2004/07/03 15:21:15 chuck Exp $
|
|
|
|
*
|
|
|
|
* Copyright 2003-2004 Anthony Mills <amills@pyramid6.com>
|
|
|
|
*
|
|
|
|
* 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 Anthony Mills <amills@pyramid6.com>
|
|
|
|
* @version $Revision$
|
|
|
|
* @since Horde 3.0
|
|
|
|
* @package Horde_SyncML
|
|
|
|
*/
|
2006-10-04 20:16:58 +02:00
|
|
|
class Horde_SyncML_Sync_RefreshFromServerSync extends Horde_SyncML_Sync_TwoWaySync {
|
|
|
|
function handleSync($currentCmdID, $hordeType, $syncType, &$output, $refts) {
|
|
|
|
global $registry;
|
|
|
|
|
|
|
|
$history = $GLOBALS['egw']->contenthistory;
|
|
|
|
$state = &$_SESSION['SyncML.state'];
|
|
|
|
|
2005-06-19 21:00:58 +02:00
|
|
|
$adds = &$state->getAddedItems($hordeType);
|
2006-10-04 20:16:58 +02:00
|
|
|
|
|
|
|
Horde::logMessage("SyncML: ".count($adds). ' added items found for '.$hordeType , __FILE__, __LINE__, PEAR_LOG_DEBUG);
|
2005-06-19 21:00:58 +02:00
|
|
|
|
2006-10-04 20:16:58 +02:00
|
|
|
$serverAnchorNext = $state->getServerAnchorNext($syncType);
|
|
|
|
$counter = 0;
|
2005-06-19 21:00:58 +02:00
|
|
|
|
2006-10-04 20:16:58 +02:00
|
|
|
if(is_array($adds)) {
|
|
|
|
while($guid = array_shift($adds)) {
|
|
|
|
if ($locID = $state->getLocID($syncType, $guid)) {
|
|
|
|
Horde::logMessage("SyncML: RefreshFromServerSync add to client: $guid ignored, already at client($locID)", __FILE__, __LINE__, PEAR_LOG_DEBUG);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$contentType = $state->getPreferedContentTypeClient($this->_sourceLocURI);
|
|
|
|
if(is_a($contentType, 'PEAR_Error')) {
|
|
|
|
// Client did not sent devinfo
|
|
|
|
$contentType = array('ContentType' => $state->getPreferedContentType($this->_targetLocURI));
|
|
|
|
}
|
|
|
|
|
|
|
|
$cmd = &new Horde_SyncML_Command_Sync_ContentSyncElement();
|
|
|
|
$c = $registry->call($hordeType . '/export', array('guid' => $guid, 'contentType' => $contentType));
|
2007-06-25 10:55:20 +02:00
|
|
|
Horde::logMessage("SyncML: slowsync add $guid to client ". print_r($c, true), __FILE__, __LINE__, PEAR_LOG_DEBUG);
|
2006-10-04 20:16:58 +02:00
|
|
|
if (!is_a($c, 'PEAR_Error')) {
|
|
|
|
$cmd->setContent($c);
|
|
|
|
if($hordeType == 'sifcalendar' || $hordeType == 'sifcontacts' || $hordeType == 'siftasks') {
|
|
|
|
$cmd->setContentFormat('b64');
|
|
|
|
}
|
|
|
|
|
|
|
|
$cmd->setContentType($contentType['ContentType']);
|
|
|
|
$cmd->setSourceURI($guid);
|
|
|
|
$currentCmdID = $cmd->outputCommand($currentCmdID, $output, 'Add');
|
|
|
|
$state->log('Server-Add');
|
|
|
|
|
|
|
|
// return if we have to much data
|
|
|
|
if(++$counter >= MAX_ENTRIES && $hordeType != 'sifcalendar' && $hordeType != 'sifcontacts' && $hordeType != 'siftasks') {
|
|
|
|
$state->setSyncStatus(SERVER_SYNC_DATA_PENDING);
|
|
|
|
return $currentCmdID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-06-19 21:00:58 +02:00
|
|
|
}
|
2006-10-04 20:16:58 +02:00
|
|
|
|
|
|
|
#Horde::logMessage("SyncML: handling sync ".$currentCmdID, __FILE__, __LINE__, PEAR_LOG_DEBUG);
|
|
|
|
|
|
|
|
$state->clearSync($syncType);
|
|
|
|
|
|
|
|
return $currentCmdID;
|
|
|
|
}
|
|
|
|
|
|
|
|
function loadData() {
|
|
|
|
global $registry;
|
|
|
|
|
|
|
|
$state = &$_SESSION['SyncML.state'];
|
|
|
|
$syncType = $this->_targetLocURI;
|
|
|
|
$hordeType = str_replace('./','',$syncType);
|
|
|
|
|
|
|
|
Horde::logMessage("SyncML: reading added items from database for $hordeType", __FILE__, __LINE__, PEAR_LOG_DEBUG);
|
|
|
|
$state->setAddedItems($hordeType, $registry->call($hordeType. '/list', array()));
|
|
|
|
$adds = &$state->getAddedItems($hordeType);
|
|
|
|
$this->_syncDataLoaded = TRUE;
|
|
|
|
|
|
|
|
return count($state->getAddedItems($hordeType));
|
2005-06-19 21:00:58 +02:00
|
|
|
}
|
|
|
|
}
|