mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:42 +01:00
fix docu and logging as logic for change is in backend
This commit is contained in:
parent
1da38599b2
commit
4121546e85
@ -2070,7 +2070,7 @@ class calendar_bo
|
|||||||
$users = $this->resolve_users($user);
|
$users = $this->resolve_users($user);
|
||||||
$ctag = $users ? $this->so->get_ctag($users, $filter == 'owner', $master_only) : 0; // no rights, return 0 as ctag (otherwise we get SQL error!)
|
$ctag = $users ? $this->so->get_ctag($users, $filter == 'owner', $master_only) : 0; // no rights, return 0 as ctag (otherwise we get SQL error!)
|
||||||
|
|
||||||
if ($this->debug > 1) error_log(__METHOD__. "($user, '$filter') = $ctag = ".date('Y-m-d H:i:s',$ctag)." took ".(microtime(true)-$startime)." secs");
|
if ($this->debug > 1) error_log(__METHOD__. "($user, '$filter', $master_only) = $ctag = ".date('Y-m-d H:i:s',$ctag)." took ".(microtime(true)-$startime)." secs");
|
||||||
return $ctag;
|
return $ctag;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1297,33 +1297,22 @@ class calendar_zpush implements activesync_plugin_write, activesync_plugin_meeti
|
|||||||
* if changes occurr default diff engine computes the actual changes
|
* if changes occurr default diff engine computes the actual changes
|
||||||
*
|
*
|
||||||
* @param string $folderid
|
* @param string $folderid
|
||||||
* @param string &$syncstate on call old syncstate, on return new syncstate
|
* @param string &$syncstate on return new syncstate
|
||||||
* @return array|boolean false if $folderid not found, array() if no changes or array(array("type" => "fakeChange"))
|
|
||||||
*/
|
*/
|
||||||
function AlterPingChanges($folderid, &$syncstate)
|
function AlterPingChanges($folderid, &$syncstate)
|
||||||
{
|
{
|
||||||
$type = $owner = null;
|
$type = $owner = null;
|
||||||
$this->backend->splitID($folderid, $type, $owner);
|
$this->backend->splitID($folderid, $type, $owner);
|
||||||
ZLog::Write(LOGLEVEL_DEBUG, __METHOD__."('$folderid','$syncstate') type='$type', owner=$owner");
|
|
||||||
|
|
||||||
if ($type != 'calendar') return false;
|
if ($type != 'calendar') return false;
|
||||||
|
|
||||||
if (!isset($this->calendar)) $this->calendar = new calendar_boupdate();
|
if (!isset($this->calendar)) $this->calendar = new calendar_boupdate();
|
||||||
//$ctag = $this->calendar->get_ctag($owner,'owner',true); // true only consider recurrence master
|
//$ctag = $this->calendar->get_ctag($owner,'owner',true); // true only consider recurrence master
|
||||||
$ctag = $this->calendar->get_ctag($owner,false,true); // we only want to fetch the owners events, where he is a participant too
|
$syncstate = $this->calendar->get_ctag($owner,false,true); // we only want to fetch the owners events, where he is a participant too
|
||||||
// workaround for syncstate = 0 when calendar is empty causes synctate to not return 0 but array resulting in foldersync loop
|
// workaround for syncstate = 0 when calendar is empty causes synctate to not return 0 but array resulting in foldersync loop
|
||||||
if ($ctag == 0) $ctag = 1;
|
if ($syncstate == 0) $syncstate = 1;
|
||||||
$changes = array(); // no change
|
|
||||||
$syncstate_was = $syncstate;
|
|
||||||
|
|
||||||
if ($ctag !== $syncstate)
|
ZLog::Write(LOGLEVEL_DEBUG, __METHOD__."('$folderid', ...) type='$type', owner=$owner --> syncstate='$syncstate'");
|
||||||
{
|
|
||||||
$syncstate = $ctag;
|
|
||||||
$changes = array(array('type' => 'fakeChange'));
|
|
||||||
}
|
|
||||||
//error_log(__METHOD__."('$folderid','$syncstate_was') syncstate='$syncstate' returning ".array2string($changes));
|
|
||||||
ZLog::Write(LOGLEVEL_DEBUG, __METHOD__."('$folderid','$syncstate_was') syncstate='$syncstate' returning ".array2string($changes));
|
|
||||||
return $changes;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user