2008-06-07 19:45:33 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* eGroupWare calendar - SIF Parser for SyncML
|
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Lars Kneschke <lkneschke@egroupware.org>
|
2009-07-15 22:35:56 +02:00
|
|
|
* @author Joerg Lehrke <jlehrke@noc.de>
|
2008-06-07 19:45:33 +02:00
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package calendar
|
|
|
|
* @subpackage export
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
2009-07-30 22:52:13 +02:00
|
|
|
require_once EGW_SERVER_ROOT.'/phpgwapi/inc/horde/lib/core.php';
|
2008-06-07 19:45:33 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SIF Parser for SyncML
|
|
|
|
*/
|
2008-06-07 19:49:16 +02:00
|
|
|
class calendar_sif extends calendar_boupdate
|
2008-06-07 19:45:33 +02:00
|
|
|
{
|
|
|
|
var $sifMapping = array(
|
|
|
|
'Start' => 'start',
|
|
|
|
'End' => 'end',
|
2010-01-13 21:48:39 +01:00
|
|
|
'AllDayEvent' => 'alldayevent',
|
2009-07-15 22:35:56 +02:00
|
|
|
'Attendees' => '',
|
2008-06-07 19:45:33 +02:00
|
|
|
'BillingInformation' => '',
|
|
|
|
'Body' => 'description',
|
2010-01-13 21:48:39 +01:00
|
|
|
'BusyStatus' => '',
|
|
|
|
'Categories' => 'category',
|
2008-06-07 19:45:33 +02:00
|
|
|
'Companies' => '',
|
2010-01-13 21:48:39 +01:00
|
|
|
'Importance' => 'priority',
|
|
|
|
'IsRecurring' => 'isrecurring',
|
2008-06-07 19:45:33 +02:00
|
|
|
'Location' => 'location',
|
2010-01-13 21:48:39 +01:00
|
|
|
'MeetingStatus' => '',
|
2008-06-07 19:45:33 +02:00
|
|
|
'Mileage' => '',
|
|
|
|
'ReminderMinutesBeforeStart' => 'reminderstart',
|
2010-01-13 21:48:39 +01:00
|
|
|
'ReminderSet' => 'reminderset',
|
|
|
|
'ReminderSoundFile' => '',
|
|
|
|
'ReminderOptions' => '',
|
|
|
|
'ReminderInterval' => '',
|
2009-07-15 22:35:56 +02:00
|
|
|
'ReminderRepeatCount' => '',
|
2010-01-13 21:48:39 +01:00
|
|
|
'Exceptions' => '',
|
2008-06-07 19:45:33 +02:00
|
|
|
'ReplyTime' => '',
|
2010-01-13 21:48:39 +01:00
|
|
|
'Sensitivity' => 'public',
|
2008-06-07 19:45:33 +02:00
|
|
|
'Subject' => 'title',
|
2010-01-13 21:48:39 +01:00
|
|
|
'RecurrenceType' => 'recur_type',
|
2008-06-07 19:45:33 +02:00
|
|
|
'Interval' => 'recur_interval',
|
2010-01-13 21:48:39 +01:00
|
|
|
'MonthOfYear' => '',
|
|
|
|
'DayOfMonth' => '',
|
|
|
|
'DayOfWeekMask' => 'recur_weekmask',
|
2008-06-07 19:45:33 +02:00
|
|
|
'Instance' => '',
|
2010-01-13 21:48:39 +01:00
|
|
|
'PatternStartDate' => '',
|
2008-06-07 19:45:33 +02:00
|
|
|
'NoEndDate' => 'recur_noenddate',
|
2010-01-13 21:48:39 +01:00
|
|
|
'PatternEndDate' => 'recur_enddate',
|
|
|
|
'Occurrences' => '',
|
2008-06-07 19:45:33 +02:00
|
|
|
);
|
|
|
|
|
2010-01-13 21:48:39 +01:00
|
|
|
/**
|
|
|
|
* the calendar event array for the XML Parser
|
|
|
|
*/
|
2008-06-07 19:45:33 +02:00
|
|
|
var $event;
|
|
|
|
|
2010-01-13 21:48:39 +01:00
|
|
|
/**
|
|
|
|
* name and sorftware version of the Funambol client
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2009-07-15 22:35:56 +02:00
|
|
|
var $productName = 'mozilla plugin';
|
|
|
|
var $productSoftwareVersion = '0.3';
|
2010-01-13 21:48:39 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* user preference: import all-day events as non blocking
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
*/
|
|
|
|
var $nonBlockingAllday = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* user preference: attach UID entries to the DESCRIPTION
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
*/
|
2009-07-15 22:35:56 +02:00
|
|
|
var $uidExtension = false;
|
|
|
|
|
2010-01-13 21:48:39 +01:00
|
|
|
/**
|
|
|
|
* user preference: calendar to synchronize with
|
|
|
|
*
|
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
var $calendarOwner = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* user preference: Use this timezone for import from and export to device
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
var $tzid = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Device CTCap Properties
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
var $clientProperties;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* vCalendar Instance for parsing
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
var $vCalendar;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set Logging
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
*/
|
|
|
|
var $log = false;
|
|
|
|
var $logfile="/tmp/log-sifcal";
|
|
|
|
|
|
|
|
|
2008-06-07 19:45:33 +02:00
|
|
|
// constants for recurence type
|
2010-01-13 21:48:39 +01:00
|
|
|
const olRecursDaily = 0;
|
2008-06-07 19:45:33 +02:00
|
|
|
const olRecursWeekly = 1;
|
|
|
|
const olRecursMonthly = 2;
|
|
|
|
const olRecursMonthNth = 3;
|
|
|
|
const olRecursYearly = 5;
|
|
|
|
const olRecursYearNth = 6;
|
|
|
|
|
|
|
|
// constants for weekdays
|
2010-01-13 21:48:39 +01:00
|
|
|
const olSunday = 1;
|
|
|
|
const olMonday = 2;
|
|
|
|
const olTuesday = 4;
|
|
|
|
const olWednesday = 8;
|
|
|
|
const olThursday = 16;
|
|
|
|
const olFriday = 32;
|
|
|
|
const olSaturday = 64;
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2009-07-15 22:35:56 +02:00
|
|
|
// standard headers
|
|
|
|
const xml_decl = '<?xml version="1.0" encoding="UTF-8"?>';
|
|
|
|
const SIF_decl = '<SIFVersion>1.1</SIFVersion>';
|
|
|
|
|
2010-01-13 21:48:39 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param array $_clientProperties client properties
|
|
|
|
*/
|
|
|
|
function __construct(&$_clientProperties = array())
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
if ($this->log) $this->logfile = $GLOBALS['egw_info']['server']['temp_dir']."/log-sifcal";
|
|
|
|
$this->clientProperties = $_clientProperties;
|
|
|
|
$this->vCalendar = new Horde_iCalendar;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-30 22:52:13 +02:00
|
|
|
function startElement($_parser, $_tag, $_attributes)
|
|
|
|
{
|
2008-06-07 19:45:33 +02:00
|
|
|
}
|
|
|
|
|
2009-07-30 22:52:13 +02:00
|
|
|
function endElement($_parser, $_tag)
|
|
|
|
{
|
2010-01-13 21:48:39 +01:00
|
|
|
switch (strtolower($_tag))
|
2009-07-30 22:52:13 +02:00
|
|
|
{
|
2010-01-13 21:48:39 +01:00
|
|
|
case 'excludedate':
|
|
|
|
$this->event['recur_exception'][] = trim($this->sifData);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if(!empty($this->sifMapping[$_tag]))
|
|
|
|
{
|
|
|
|
$this->event[$this->sifMapping[$_tag]] = trim($this->sifData);
|
|
|
|
}
|
2008-06-07 19:45:33 +02:00
|
|
|
}
|
|
|
|
unset($this->sifData);
|
|
|
|
}
|
|
|
|
|
2009-07-30 22:52:13 +02:00
|
|
|
function characterData($_parser, $_data)
|
|
|
|
{
|
2008-06-07 19:45:33 +02:00
|
|
|
$this->sifData .= $_data;
|
|
|
|
}
|
|
|
|
|
2010-01-13 21:48:39 +01:00
|
|
|
/**
|
|
|
|
* Get DateTime value for a given time and timezone
|
|
|
|
*
|
|
|
|
* @param int|string|DateTime $time in server-time as returned by calendar_bo for $data_format='server'
|
|
|
|
* @param string $tzid TZID of event or 'UTC' or NULL for palmos timestamps in usertime
|
|
|
|
* @return mixed attribute value to set: integer timestamp if $tzid == 'UTC' otherwise Ymd\THis string IN $tzid
|
|
|
|
*/
|
2010-01-29 22:42:54 +01:00
|
|
|
function getDateTime($time, $tzid)
|
2010-01-13 21:48:39 +01:00
|
|
|
{
|
|
|
|
if (empty($tzid) || $tzid == 'UTC')
|
|
|
|
{
|
|
|
|
return $this->vCalendar->_exportDateTime(egw_time::to($time,'ts'));
|
|
|
|
}
|
|
|
|
if (!is_a($time,'DateTime'))
|
|
|
|
{
|
|
|
|
$time = new egw_time($time,egw_time::$server_timezone);
|
|
|
|
}
|
|
|
|
if (!isset(self::$tz_cache[$tzid]))
|
|
|
|
{
|
|
|
|
self::$tz_cache[$tzid] = calendar_timezones::DateTimeZone($tzid);
|
|
|
|
}
|
|
|
|
$time->setTimezone(self::$tz_cache[$tzid]);
|
|
|
|
|
2010-02-09 22:56:39 +01:00
|
|
|
return $time->format('Ymd\THis');
|
2010-01-13 21:48:39 +01:00
|
|
|
}
|
|
|
|
|
2009-11-19 16:30:53 +01:00
|
|
|
function siftoegw($sifData, $_calID=-1)
|
2009-07-30 22:52:13 +02:00
|
|
|
{
|
2008-06-07 19:45:33 +02:00
|
|
|
$finalEvent = array();
|
2010-01-13 21:48:39 +01:00
|
|
|
$this->event = array();
|
2008-06-07 19:45:33 +02:00
|
|
|
$sysCharSet = $GLOBALS['egw']->translation->charset();
|
2010-01-13 21:48:39 +01:00
|
|
|
|
2010-02-09 22:56:39 +01:00
|
|
|
|
2010-01-13 21:48:39 +01:00
|
|
|
if ($this->tzid)
|
|
|
|
{
|
2010-02-09 22:56:39 +01:00
|
|
|
$tzid = $this->tzid;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$tzid = egw_time::$user_timezone->getName();
|
2010-01-13 21:48:39 +01:00
|
|
|
}
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2010-02-09 22:56:39 +01:00
|
|
|
date_default_timezone_set($tzid);
|
|
|
|
$finalEvent['tzid'] = $tzid;
|
2008-06-07 19:45:33 +02:00
|
|
|
|
|
|
|
$this->xml_parser = xml_parser_create('UTF-8');
|
|
|
|
xml_set_object($this->xml_parser, $this);
|
|
|
|
xml_parser_set_option($this->xml_parser, XML_OPTION_CASE_FOLDING, false);
|
|
|
|
xml_set_element_handler($this->xml_parser, "startElement", "endElement");
|
|
|
|
xml_set_character_data_handler($this->xml_parser, "characterData");
|
|
|
|
$this->strXmlData = xml_parse($this->xml_parser, $sifData);
|
2009-07-30 22:52:13 +02:00
|
|
|
if (!$this->strXmlData)
|
|
|
|
{
|
2008-06-07 19:45:33 +02:00
|
|
|
error_log(sprintf("XML error: %s at line %d",
|
|
|
|
xml_error_string(xml_get_error_code($this->xml_parser)),
|
|
|
|
xml_get_current_line_number($this->xml_parser)));
|
2010-02-09 22:56:39 +01:00
|
|
|
date_default_timezone_set($GLOBALS['egw_info']['server']['server_timezone']);
|
2008-06-07 19:45:33 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-07-30 22:52:13 +02:00
|
|
|
foreach ($this->event as $key => $value)
|
|
|
|
{
|
2009-07-15 22:35:56 +02:00
|
|
|
$value = preg_replace('/<\!\[CDATA\[(.+)\]\]>/Usim', '$1', $value);
|
2008-06-07 19:45:33 +02:00
|
|
|
$value = $GLOBALS['egw']->translation->convert($value, 'utf-8', $sysCharSet);
|
2010-01-29 22:42:54 +01:00
|
|
|
/*
|
2010-01-13 21:48:39 +01:00
|
|
|
if ($this->log)
|
|
|
|
{
|
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__.
|
|
|
|
"() $key => $value\n",3,$this->logfile);
|
|
|
|
}
|
2010-01-29 22:42:54 +01:00
|
|
|
*/
|
2009-07-30 22:52:13 +02:00
|
|
|
switch ($key)
|
|
|
|
{
|
2008-06-07 19:45:33 +02:00
|
|
|
case 'alldayevent':
|
2009-07-30 22:52:13 +02:00
|
|
|
if ($value == 1)
|
|
|
|
{
|
2009-07-15 22:35:56 +02:00
|
|
|
$finalEvent['whole_day'] = true;
|
2008-06-07 19:45:33 +02:00
|
|
|
$startParts = explode('-',$this->event['start']);
|
2010-01-29 22:42:54 +01:00
|
|
|
$finalEvent['startdate']['hour'] = $finalEvent['startdate']['minute'] = $finalEvent['startdate']['second'] = 0;
|
|
|
|
$finalEvent['startdate']['year'] = $startParts[0];
|
|
|
|
$finalEvent['startdate']['month'] = $startParts[1];
|
|
|
|
$finalEvent['startdate']['day'] = $startParts[2];
|
|
|
|
$finalEvent['start'] = $this->date2ts($finalEvent['startdate']);
|
2008-06-07 19:45:33 +02:00
|
|
|
$endParts = explode('-',$this->event['end']);
|
2010-01-29 22:42:54 +01:00
|
|
|
$finalEvent['enddate']['hour'] = 23; $finalEvent['enddate']['minute'] = $finalEvent['enddate']['second'] = 59;
|
|
|
|
$finalEvent['enddate']['year'] = $endParts[0];
|
|
|
|
$finalEvent['enddate']['month'] = $endParts[1];
|
|
|
|
$finalEvent['enddate']['day'] = $endParts[2];
|
|
|
|
$finalEvent['end'] = $this->date2ts($finalEvent['enddate']);
|
2008-06-07 19:45:33 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'public':
|
|
|
|
$finalEvent[$key] = ((int)$value > 0) ? 0 : 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'category':
|
2009-07-30 22:52:13 +02:00
|
|
|
if (!empty($value))
|
|
|
|
{
|
2009-11-22 18:48:51 +01:00
|
|
|
$categories1 = explode(',', $value);
|
|
|
|
$categories2 = explode(';', $value);
|
|
|
|
$categories = count($categories1) > count($categories2) ? $categories1 : $categories2;
|
2010-01-29 22:42:54 +01:00
|
|
|
$finalEvent[$key] = $this->find_or_add_categories($categories, $_calID);
|
2008-06-07 19:45:33 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'end':
|
|
|
|
case 'start':
|
2009-07-30 22:52:13 +02:00
|
|
|
if ($this->event['alldayevent'] < 1)
|
|
|
|
{
|
2010-01-13 21:48:39 +01:00
|
|
|
$finalEvent[$key] = $this->vCalendar->_parseDateTime($value);
|
2008-06-07 19:45:33 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'isrecurring':
|
2009-07-30 22:52:13 +02:00
|
|
|
if ($value == 1)
|
|
|
|
{
|
2010-02-03 11:41:44 +01:00
|
|
|
$finalEvent['recur_exception'] = array();
|
2010-01-13 21:48:39 +01:00
|
|
|
if (is_array($this->event['recur_exception']))
|
|
|
|
{
|
|
|
|
foreach ($this->event['recur_exception'] as $day)
|
|
|
|
{
|
|
|
|
$finalEvent['recur_exception'][] = $this->vCalendar->_parseDateTime($day);
|
|
|
|
}
|
|
|
|
array_unique($finalEvent['recur_exception']);
|
|
|
|
}
|
2008-06-07 19:45:33 +02:00
|
|
|
$finalEvent['recur_interval'] = $this->event['recur_interval'];
|
2010-01-13 21:48:39 +01:00
|
|
|
$finalEvent['recur_data'] = 0;
|
2009-07-30 22:52:13 +02:00
|
|
|
if ($this->event['recur_noenddate'] == 0)
|
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
$recur_enddate = $this->vCalendar->_parseDateTime($this->event['recur_enddate']);
|
2010-02-23 19:19:12 +01:00
|
|
|
$finalEvent['recur_enddate'] = mktime(0, 0, 0,
|
2010-01-29 22:42:54 +01:00
|
|
|
date('m', $recur_enddate),
|
|
|
|
date('d', $recur_enddate),
|
|
|
|
date('Y', $recur_enddate));
|
2008-06-07 19:45:33 +02:00
|
|
|
}
|
2009-07-30 22:52:13 +02:00
|
|
|
switch ($this->event['recur_type'])
|
|
|
|
{
|
2008-06-07 19:45:33 +02:00
|
|
|
case self::olRecursDaily:
|
|
|
|
$finalEvent['recur_type'] = MCAL_RECUR_DAILY;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case self::olRecursWeekly:
|
|
|
|
$finalEvent['recur_type'] = MCAL_RECUR_WEEKLY;
|
|
|
|
$finalEvent['recur_data'] = $this->event['recur_weekmask'];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case self::olRecursMonthly:
|
|
|
|
$finalEvent['recur_type'] = MCAL_RECUR_MONTHLY_MDAY;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case self::olRecursMonthNth:
|
|
|
|
$finalEvent['recur_type'] = MCAL_RECUR_MONTHLY_WDAY;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case self::olRecursYearly:
|
|
|
|
$finalEvent['recur_type'] = MCAL_RECUR_YEARLY;
|
|
|
|
$finalEvent['recur_interval'] = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'priority':
|
2009-07-30 22:52:13 +02:00
|
|
|
$finalEvent[$key] = $value + 1;
|
2008-06-07 19:45:33 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'reminderset':
|
2009-07-30 22:52:13 +02:00
|
|
|
if ($value == 1)
|
|
|
|
{
|
2008-06-07 19:45:33 +02:00
|
|
|
$finalEvent['alarm'] = $this->event['reminderstart'];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'recur_type':
|
|
|
|
case 'recur_enddate':
|
|
|
|
case 'recur_interval':
|
|
|
|
case 'recur_weekmask':
|
|
|
|
case 'reminderstart':
|
2010-01-13 21:48:39 +01:00
|
|
|
case 'recur_exception':
|
2008-06-07 19:45:33 +02:00
|
|
|
// do nothing, get's handled in isrecuring clause
|
|
|
|
break;
|
|
|
|
|
2009-07-15 22:35:56 +02:00
|
|
|
case 'description':
|
2009-07-30 22:52:13 +02:00
|
|
|
if (preg_match('/\s*\[UID:(.+)?\]/Usm', $value, $matches))
|
|
|
|
{
|
2009-07-15 22:35:56 +02:00
|
|
|
$finalEvent['uid'] = $matches[1];
|
|
|
|
}
|
|
|
|
|
2008-06-07 19:45:33 +02:00
|
|
|
default:
|
2010-02-09 22:56:39 +01:00
|
|
|
$finalEvent[$key] = str_replace("\r\n", "\n", $value);
|
2008-06-07 19:45:33 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
if ($this->calendarOwner) $finalEvent['owner'] = $this->calendarOwner;
|
|
|
|
|
2010-02-09 22:56:39 +01:00
|
|
|
date_default_timezone_set($GLOBALS['egw_info']['server']['server_timezone']);
|
2010-01-29 22:42:54 +01:00
|
|
|
|
|
|
|
if ($_calID > 0) $finalEvent['id'] = $_calID;
|
|
|
|
|
2010-01-13 21:48:39 +01:00
|
|
|
if ($this->log)
|
|
|
|
{
|
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__."()\n" .
|
|
|
|
array2string($finalEvent)."\n",3,$this->logfile);
|
|
|
|
}
|
2008-06-07 19:45:33 +02:00
|
|
|
|
|
|
|
return $finalEvent;
|
|
|
|
}
|
|
|
|
|
2009-07-15 22:35:56 +02:00
|
|
|
function search($_sifdata, $contentID=null, $relax=false)
|
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
$result = array();
|
|
|
|
$filter = $relax ? 'relax' : 'exact';
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2009-11-19 16:30:53 +01:00
|
|
|
if ($event = $this->siftoegw($_sifdata, $contentID))
|
2009-07-15 22:35:56 +02:00
|
|
|
{
|
|
|
|
if ($contentID) {
|
|
|
|
$event['id'] = $contentID;
|
2008-06-07 19:45:33 +02:00
|
|
|
}
|
2010-01-29 22:42:54 +01:00
|
|
|
$result = $this->find_event($event, $filter);
|
2008-06-07 19:45:33 +02:00
|
|
|
}
|
2009-07-15 22:35:56 +02:00
|
|
|
return $result;
|
2008-06-07 19:45:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-11-22 18:48:51 +01:00
|
|
|
* @return int event id
|
|
|
|
* @param string $_sifdata the SIFE data
|
|
|
|
* @param int $_calID=-1 the internal addressbook id
|
2009-07-15 22:35:56 +02:00
|
|
|
* @param boolean $merge=false merge data with existing entry
|
2010-01-29 22:42:54 +01:00
|
|
|
* @param int $recur_date=0 if set, import the recurrence at this timestamp,
|
|
|
|
* default 0 => import whole series (or events, if not recurring)
|
2009-11-22 18:48:51 +01:00
|
|
|
* @desc import a SIFE into the calendar
|
2008-06-07 19:45:33 +02:00
|
|
|
*/
|
2010-01-29 22:42:54 +01:00
|
|
|
function addSIF($_sifdata, $_calID=-1, $merge=false, $recur_date=0)
|
2008-06-07 19:45:33 +02:00
|
|
|
{
|
2010-01-13 21:48:39 +01:00
|
|
|
if ($this->log)
|
|
|
|
{
|
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__."()\n" .
|
|
|
|
array2string($_sifdata)."\n",3,$this->logfile);
|
|
|
|
}
|
2009-11-19 16:30:53 +01:00
|
|
|
if (!$event = $this->siftoegw($_sifdata, $_calID))
|
2009-07-30 22:52:13 +02:00
|
|
|
{
|
2008-06-07 19:45:33 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-02-17 14:29:28 +01:00
|
|
|
/*
|
2010-01-29 22:42:54 +01:00
|
|
|
if ($event['recur_type'] != MCAL_RECUR_NONE)
|
2009-07-30 22:52:13 +02:00
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
// Adjust the event start -- no exceptions before and at the start
|
|
|
|
$length = $event['end'] - $event['start'];
|
|
|
|
$rriter = calendar_rrule::event2rrule($event, false);
|
|
|
|
$rriter->rewind();
|
|
|
|
if (!$rriter->valid()) continue; // completely disolved into exceptions
|
|
|
|
|
|
|
|
$newstart = egw_time::to($rriter->current, 'server');
|
|
|
|
if ($newstart != $event['start'])
|
|
|
|
{
|
|
|
|
// leading exceptions skiped
|
|
|
|
$event['start'] = $newstart;
|
|
|
|
$event['end'] = $newstart + $length;
|
|
|
|
}
|
|
|
|
|
|
|
|
$exceptions = $event['recur_exception'];
|
|
|
|
foreach($exceptions as $key => $day)
|
|
|
|
{
|
|
|
|
// remove leading exceptions
|
|
|
|
if ($day <= $event['start'])
|
|
|
|
{
|
|
|
|
if ($this->log)
|
|
|
|
{
|
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__.
|
|
|
|
'(): event SERIES-MASTER skip leading exception ' .
|
|
|
|
$day . "\n",3,$this->logfile);
|
|
|
|
}
|
|
|
|
unset($exceptions[$key]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$event['recur_exception'] = $exceptions;
|
2010-02-17 14:29:28 +01:00
|
|
|
} */
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
if ($recur_date) $event['recurrence'] = $recur_date;
|
|
|
|
$event_info = $this->get_event_info($event);
|
|
|
|
|
|
|
|
// common adjustments for existing events
|
|
|
|
if (is_array($event_info['stored_event']))
|
2009-07-30 22:52:13 +02:00
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
if (empty($event['uid']))
|
|
|
|
{
|
|
|
|
$event['uid'] = $event_info['stored_event']['uid']; // restore the UID if it was not delivered
|
|
|
|
}
|
|
|
|
if ($merge)
|
2010-01-13 21:48:39 +01:00
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
// overwrite with server data for merge
|
|
|
|
foreach ($event_info['stored_event'] as $key => $value)
|
2010-01-13 21:48:39 +01:00
|
|
|
{
|
2010-02-24 16:05:00 +01:00
|
|
|
if ($key == 'participants')
|
2010-02-23 19:19:12 +01:00
|
|
|
{
|
|
|
|
unset($event[$key]);
|
|
|
|
continue;
|
|
|
|
}
|
2010-01-29 22:42:54 +01:00
|
|
|
if (!empty($value)) $event[$key] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// not merge
|
|
|
|
// SIF clients do not support participants => add them back
|
2010-02-23 19:19:12 +01:00
|
|
|
unset($event['participants']);
|
2010-04-23 17:15:22 +02:00
|
|
|
if (!empty($event['whole_day']) && $event['tzid'] != $event_info['stored_event']['tzid'])
|
2010-01-29 22:42:54 +01:00
|
|
|
{
|
|
|
|
if (!isset(self::$tz_cache[$event_info['stored_event']['tzid']]))
|
2010-01-13 21:48:39 +01:00
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
self::$tz_cache[$event_info['stored_event']['tzid']] =
|
|
|
|
calendar_timezones::DateTimeZone($event_info['stored_event']['tzid']);
|
|
|
|
}
|
|
|
|
// Adjust dates to original TZ
|
|
|
|
$time = new egw_time($event['startdate'],self::$tz_cache[$event_info['stored_event']['tzid']]);
|
|
|
|
$event['start'] = egw_time::to($time, 'server');
|
|
|
|
$time = new egw_time($event['enddate'],self::$tz_cache[$event_info['stored_event']['tzid']]);
|
|
|
|
$event['end'] = egw_time::to($time, 'server');
|
|
|
|
if ($event['recur_type'] != MCAL_RECUR_NONE)
|
|
|
|
{
|
|
|
|
foreach ($event['recur_exception'] as $key => $day)
|
|
|
|
{
|
|
|
|
$time = new egw_time($day,egw_time::$server_timezone);
|
|
|
|
$time =& $this->so->startOfDay($time, $event_info['stored_event']['tzid']);
|
|
|
|
$event['recur_exception'][$key] = egw_time::to($time,'server');
|
|
|
|
}
|
2010-01-13 21:48:39 +01:00
|
|
|
}
|
|
|
|
}
|
2010-01-29 22:42:54 +01:00
|
|
|
|
|
|
|
calendar_rrule::rrule2tz($event, $event_info['stored_event']['start'],
|
|
|
|
$event_info['stored_event']['tzid']);
|
|
|
|
|
|
|
|
$event['tzid'] = $event_info['stored_event']['tzid'];
|
|
|
|
// avoid that iCal changes the organizer, which is not allowed
|
|
|
|
$event['owner'] = $event_info['stored_event']['owner'];
|
2010-01-13 21:48:39 +01:00
|
|
|
}
|
2009-07-30 22:52:13 +02:00
|
|
|
}
|
2010-01-29 22:42:54 +01:00
|
|
|
else // common adjustments for new events
|
2009-07-30 22:52:13 +02:00
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
// set non blocking all day depending on the user setting
|
2010-04-23 17:15:22 +02:00
|
|
|
if (!empty($event['whole_day']) && $this->nonBlockingAllday)
|
2009-07-30 22:52:13 +02:00
|
|
|
{
|
2010-01-13 21:48:39 +01:00
|
|
|
$event['non_blocking'] = 1;
|
2009-07-15 22:35:56 +02:00
|
|
|
}
|
2010-01-29 22:42:54 +01:00
|
|
|
|
|
|
|
// check if an owner is set and the current user has add rights
|
|
|
|
// for that owners calendar; if not set the current user
|
|
|
|
if (!isset($event['owner'])
|
|
|
|
|| !$this->check_perms(EGW_ACL_ADD, 0, $event['owner']))
|
|
|
|
{
|
|
|
|
$event['owner'] = $this->user;
|
|
|
|
}
|
|
|
|
|
|
|
|
$status = $event['owner'] == $this->user ? 'A' : 'U';
|
|
|
|
$status = calendar_so::combine_status($status, 1, 'CHAIR');
|
|
|
|
$event['participants'] = array($event['owner'] => $status);
|
|
|
|
}
|
|
|
|
|
|
|
|
unset($event['startdate']);
|
|
|
|
unset($event['enddate']);
|
|
|
|
|
|
|
|
$alarmData = array();
|
|
|
|
if (isset($event['alarm']))
|
|
|
|
{
|
|
|
|
$alarmData['offset'] = $event['alarm'] * 60;
|
|
|
|
$alarmData['time'] = $event['start'] - $alarmData['offset'];
|
|
|
|
$alarmData['owner'] = $this->user;
|
|
|
|
$alarmData['all'] = false;
|
2008-06-07 19:45:33 +02:00
|
|
|
}
|
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
// update alarms depending on the given event type
|
|
|
|
if (!empty($alarmData) || isset($this->supportedFields['alarm']))
|
|
|
|
{
|
|
|
|
switch ($event_info['type'])
|
|
|
|
{
|
|
|
|
case 'SINGLE':
|
|
|
|
case 'SERIES-MASTER':
|
|
|
|
case 'SERIES-EXCEPTION':
|
|
|
|
case 'SERIES-EXCEPTION-PROPAGATE':
|
|
|
|
if (isset($event['alarm']))
|
|
|
|
{
|
|
|
|
if (is_array($event_info['stored_event'])
|
|
|
|
&& count($event_info['stored_event']['alarm']) > 0)
|
|
|
|
{
|
|
|
|
foreach ($event_info['stored_event']['alarm'] as $alarm_id => $alarm_data)
|
|
|
|
{
|
|
|
|
if ($alarmData['time'] == $alarm_data['time'] &&
|
|
|
|
($alarm_data['all'] || $alarm_data['owner'] == $this->user))
|
|
|
|
{
|
|
|
|
unset($alarmData);
|
|
|
|
unset($event_info['stored_event']['alarm'][$alarm_id]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-07-13 13:48:06 +02:00
|
|
|
if (isset($alarmData)&&is_array($alarmData)) $event['alarm'][] = $alarmData;
|
2010-01-29 22:42:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'SERIES-PSEUDO-EXCEPTION':
|
|
|
|
// nothing to do here
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (is_array($event_info['stored_event'])
|
|
|
|
&& count($event_info['stored_event']['alarm']) > 0)
|
|
|
|
{
|
|
|
|
foreach ($event_info['stored_event']['alarm'] as $alarm_id => $alarm_data)
|
|
|
|
{
|
|
|
|
// only touch own alarms
|
|
|
|
if ($alarm_data['all'] == false && $alarm_data['owner'] == $this->user)
|
|
|
|
{
|
|
|
|
$this->delete_alarm($alarm_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
// save event depending on the given event type
|
|
|
|
switch ($event_info['type'])
|
2010-01-13 21:48:39 +01:00
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
case 'SINGLE':
|
|
|
|
if ($this->log)
|
|
|
|
{
|
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__.
|
|
|
|
"(): event SINGLE\n",3,$this->logfile);
|
|
|
|
}
|
|
|
|
|
|
|
|
// update the event
|
|
|
|
if ($event_info['acl_edit'])
|
|
|
|
{
|
|
|
|
// Force SINGLE
|
|
|
|
unset($event['recurrence']);
|
|
|
|
$event['reference'] = 0;
|
|
|
|
$event_to_store = $event; // prevent $event from being changed by the update method
|
|
|
|
$updated_id = $this->update($event_to_store, true);
|
|
|
|
unset($event_to_store);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'SERIES-MASTER':
|
|
|
|
if ($this->log)
|
|
|
|
{
|
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__.
|
|
|
|
"(): event SERIES-MASTER\n",3,$this->logfile);
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove all known pseudo exceptions and update the event
|
|
|
|
if ($event_info['acl_edit'])
|
|
|
|
{
|
|
|
|
$days = $this->so->get_recurrence_exceptions($event_info['stored_event'], $this->tzid, 0, 0, 'tz_map');
|
|
|
|
if ($this->log)
|
|
|
|
{
|
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__."(EXCEPTIONS MAPPING):\n" .
|
|
|
|
array2string($days)."\n",3,$this->logfile);
|
|
|
|
}
|
|
|
|
if (is_array($days))
|
|
|
|
{
|
|
|
|
$exceptions = array();
|
|
|
|
foreach ($event['recur_exception'] as $recur_exception)
|
|
|
|
{
|
|
|
|
if (isset($days[$recur_exception]))
|
|
|
|
{
|
|
|
|
$exceptions[] = $days[$recur_exception];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$event['recur_exception'] = $exceptions;
|
|
|
|
}
|
|
|
|
|
|
|
|
$event_to_store = $event; // prevent $event from being changed by the update method
|
|
|
|
$updated_id = $this->update($event_to_store, true);
|
|
|
|
unset($event_to_store);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'SERIES-EXCEPTION':
|
|
|
|
case 'SERIES-EXCEPTION-PROPAGATE':
|
|
|
|
if ($this->log)
|
|
|
|
{
|
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__.
|
|
|
|
"(): event SERIES-EXCEPTION\n",3,$this->logfile);
|
|
|
|
}
|
|
|
|
|
|
|
|
// update event
|
|
|
|
if ($event_info['acl_edit'])
|
|
|
|
{
|
|
|
|
if (isset($event_info['stored_event']['id']))
|
|
|
|
{
|
|
|
|
// We update an existing exception
|
|
|
|
$event['id'] = $event_info['stored_event']['id'];
|
|
|
|
$event['category'] = $event_info['stored_event']['category'];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// We create a new exception
|
|
|
|
unset($event['id']);
|
|
|
|
unset($event_info['stored_event']);
|
|
|
|
$event['recur_type'] = MCAL_RECUR_NONE;
|
|
|
|
$event_info['master_event']['recur_exception'] =
|
|
|
|
array_unique(array_merge($event_info['master_event']['recur_exception'],
|
|
|
|
array($event['recurrence'])));
|
2010-02-17 14:29:28 +01:00
|
|
|
/*
|
2010-01-29 22:42:54 +01:00
|
|
|
// Adjust the event start -- must not be an exception
|
|
|
|
$length = $event_info['master_event']['end'] - $event_info['master_event']['start'];
|
|
|
|
$rriter = calendar_rrule::event2rrule($event_info['master_event'], false);
|
|
|
|
$rriter->rewind();
|
|
|
|
if ($rriter->valid())
|
|
|
|
{
|
|
|
|
$newstart = egw_time::to($rriter->current, 'server');
|
|
|
|
foreach($event_info['master_event']['recur_exception'] as $key => $day)
|
|
|
|
{
|
|
|
|
// remove leading exceptions
|
|
|
|
if ($day < $newstart)
|
|
|
|
{
|
|
|
|
unset($event_info['master_event']['recur_exception'][$key]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($event_info['master_event']['start'] < $newstart)
|
|
|
|
{
|
|
|
|
$event_info['master_event']['start'] = $newstart;
|
|
|
|
$event_info['master_event']['end'] = $newstart + $length;
|
|
|
|
$event_to_store = $event_info['master_event']; // prevent the master_event from being changed by the update method
|
|
|
|
$this->server2usertime($event_to_store);
|
|
|
|
$this->update($event_to_store, true);
|
|
|
|
unset($event_to_store);
|
2010-02-17 14:29:28 +01:00
|
|
|
} */
|
2010-01-29 22:42:54 +01:00
|
|
|
$event['reference'] = $event_info['master_event']['id'];
|
|
|
|
$event['category'] = $event_info['master_event']['category'];
|
|
|
|
$event['owner'] = $event_info['master_event']['owner'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$event_to_store = $event; // prevent $event from being changed by update method
|
|
|
|
$updated_id = $this->update($event_to_store, true);
|
|
|
|
unset($event_to_store);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'SERIES-PSEUDO-EXCEPTION':
|
|
|
|
if ($this->log)
|
|
|
|
{
|
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__.
|
|
|
|
"(): event SERIES-PSEUDO-EXCEPTION\n",3,$this->logfile);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($event_info['acl_edit'])
|
|
|
|
{
|
|
|
|
// truncate the status only exception from the series master
|
|
|
|
$recur_exceptions = array();
|
|
|
|
foreach ($event_info['master_event']['recur_exception'] as $recur_exception)
|
|
|
|
{
|
|
|
|
if ($recur_exception != $event['recurrence'])
|
|
|
|
{
|
|
|
|
$recur_exceptions[] = $recur_exception;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$event_info['master_event']['recur_exception'] = $recur_exceptions;
|
|
|
|
|
|
|
|
// save the series master with the adjusted exceptions
|
|
|
|
$event_to_store = $event_info['master_event']; // prevent the master_event from being changed by the update method
|
|
|
|
$updated_id = $this->update($event_to_store, true, true, false, false);
|
|
|
|
unset($event_to_store);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// read stored event into info array for fresh stored (new) events
|
|
|
|
if (!is_array($event_info['stored_event']) && $updated_id > 0)
|
|
|
|
{
|
|
|
|
$event_info['stored_event'] = $this->read($updated_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
// choose which id to return to the client
|
|
|
|
switch ($event_info['type'])
|
|
|
|
{
|
|
|
|
case 'SINGLE':
|
|
|
|
case 'SERIES-MASTER':
|
|
|
|
case 'SERIES-EXCEPTION':
|
|
|
|
$return_id = $updated_id;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'SERIES-PSEUDO-EXCEPTION':
|
|
|
|
$return_id = is_array($event_info['master_event']) ? $event_info['master_event']['id'] . ':' . $event['recurrence'] : false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'SERIES-EXCEPTION-PROPAGATE':
|
|
|
|
if ($event_info['acl_edit'] && is_array($event_info['stored_event']))
|
|
|
|
{
|
|
|
|
// we had sufficient rights to propagate the status only exception to a real one
|
|
|
|
$return_id = $event_info['stored_event']['id'];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// we did not have sufficient rights to propagate the status only exception to a real one
|
|
|
|
// we have to keep the SERIES-PSEUDO-EXCEPTION id and keep the event untouched
|
|
|
|
$return_id = $event_info['master_event']['id'] . ':' . $event['recurrence'];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->log)
|
|
|
|
{
|
|
|
|
$recur_date = $this->date2usertime($event_info['stored_event']['start']);
|
|
|
|
$event_info['stored_event'] = $this->read($event_info['stored_event']['id'], $recur_date);
|
2010-01-13 21:48:39 +01:00
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__."()\n" .
|
2010-01-29 22:42:54 +01:00
|
|
|
array2string($event_info['stored_event'])."\n",3,$this->logfile);
|
2008-06-07 19:45:33 +02:00
|
|
|
}
|
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
return $return_id;
|
2008-06-07 19:45:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-07-15 22:35:56 +02:00
|
|
|
* return a sife
|
2008-06-07 19:45:33 +02:00
|
|
|
*
|
2009-07-15 22:35:56 +02:00
|
|
|
* @param int $_id the id of the event
|
2010-01-29 22:42:54 +01:00
|
|
|
* @param int $recur_date=0 if set export the next recurrence at or after the timestamp,
|
|
|
|
* default 0 => export whole series (or events, if not recurring)
|
2009-11-22 18:48:51 +01:00
|
|
|
* @return string containing the SIFE
|
2008-06-07 19:45:33 +02:00
|
|
|
*/
|
2010-01-29 22:42:54 +01:00
|
|
|
function getSIF($_id, $recur_date=0)
|
2008-06-07 19:45:33 +02:00
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
if ($this->log)
|
|
|
|
{
|
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__.
|
|
|
|
"($_id, $recur_date)\n",3,$this->logfile);
|
|
|
|
}
|
2009-07-15 22:35:56 +02:00
|
|
|
$sysCharSet = $GLOBALS['egw']->translation->charset();
|
|
|
|
|
2008-06-07 19:45:33 +02:00
|
|
|
$fields = array_unique(array_values($this->sifMapping));
|
|
|
|
sort($fields);
|
2010-01-29 22:42:54 +01:00
|
|
|
$tzid = null;
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
if (!($event = $this->read($_id, $recur_date, false, 'server')))
|
2009-07-30 22:52:13 +02:00
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
if ($this->read($_id, $recur_date, true, 'server'))
|
2010-01-13 21:48:39 +01:00
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
$retval = -1; // Permission denied
|
|
|
|
if($this->xmlrpc)
|
|
|
|
{
|
|
|
|
$GLOBALS['server']->xmlrpc_error($GLOBALS['xmlrpcerr']['no_access'],
|
|
|
|
$GLOBALS['xmlrpcstr']['no_access']);
|
|
|
|
}
|
|
|
|
if ($this->log)
|
|
|
|
{
|
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__.
|
|
|
|
"() User does not have the permission to read event $_id.\n",
|
|
|
|
3,$this->logfile);
|
|
|
|
}
|
2010-01-13 21:48:39 +01:00
|
|
|
}
|
2010-01-29 22:42:54 +01:00
|
|
|
else
|
2009-07-30 22:52:13 +02:00
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
$retval = false; // Entry does not exist
|
|
|
|
if ($this->log)
|
2009-07-30 22:52:13 +02:00
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__.
|
|
|
|
"() Event $_id not found.\n",3,$this->logfile);
|
2009-07-15 22:35:56 +02:00
|
|
|
}
|
|
|
|
}
|
2010-01-29 22:42:54 +01:00
|
|
|
return $retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->log)
|
|
|
|
{
|
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__."()\n" .
|
|
|
|
array2string($event)."\n",3,$this->logfile);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->tzid)
|
|
|
|
{
|
|
|
|
// explicit device timezone
|
|
|
|
$tzid = $this->tzid;
|
|
|
|
}
|
2010-02-09 22:56:39 +01:00
|
|
|
elseif ($this->tzid === false)
|
2010-01-29 22:42:54 +01:00
|
|
|
{
|
|
|
|
// use event's timezone
|
|
|
|
$tzid = $event['tzid'];
|
|
|
|
}
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
if ($this->so->isWholeDay($event)) $event['whole_day'] = true;
|
|
|
|
|
|
|
|
if ($tzid)
|
|
|
|
{
|
|
|
|
if (!isset(self::$tz_cache[$tzid]))
|
2010-01-13 21:48:39 +01:00
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
self::$tz_cache[$tzid] = calendar_timezones::DateTimeZone($tzid);
|
2010-01-13 21:48:39 +01:00
|
|
|
}
|
2010-01-29 22:42:54 +01:00
|
|
|
}
|
|
|
|
if (!isset(self::$tz_cache[$event['tzid']]))
|
|
|
|
{
|
|
|
|
self::$tz_cache[$event['tzid']] = calendar_timezones::DateTimeZone($event['tzid']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($recur_date && ($master = $this->read($_id, 0, true, 'server')))
|
|
|
|
{
|
|
|
|
$days = $this->so->get_recurrence_exceptions($master, $tzid, 0, 0, 'tz_rrule');
|
|
|
|
if (isset($days[$recur_date]))
|
2010-01-13 21:48:39 +01:00
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
$recur_date = $days[$recur_date]; // use remote representation
|
2010-01-13 21:48:39 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
if ($this->log)
|
2010-01-13 21:48:39 +01:00
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__.
|
|
|
|
"($_id, $recur_date) Unsupported status only exception, skipped ...\n",
|
2010-02-03 16:57:44 +01:00
|
|
|
3, $this->logfile);
|
2010-01-13 21:48:39 +01:00
|
|
|
}
|
2010-01-29 22:42:54 +01:00
|
|
|
return false; // unsupported pseudo exception
|
2010-01-13 21:48:39 +01:00
|
|
|
}
|
2010-01-29 22:42:54 +01:00
|
|
|
/*
|
|
|
|
$time = new egw_time($master['start'], egw_time::$server_timezone);
|
|
|
|
$time->setTimezone(self::$tz_cache[$tzid]);
|
|
|
|
$first_start = $time->format('His');
|
|
|
|
$time = new egw_time($event['start'], egw_time::$server_timezone);
|
|
|
|
$time->setTimezone(self::$tz_cache[$tzid]);
|
|
|
|
$recur_start = $time->format('His');
|
|
|
|
if ($first_start == $recur_start) return false; // Nothing to export
|
|
|
|
*/
|
|
|
|
$event['recur_type'] = MCAL_RECUR_NONE;
|
|
|
|
}
|
|
|
|
elseif (!$recur_date &&
|
|
|
|
$event['recur_type'] != MCAL_RECUR_NONE &&
|
2010-04-23 17:15:22 +02:00
|
|
|
empty($event['whole_day'])) // whole-day events are not shifted
|
2010-01-29 22:42:54 +01:00
|
|
|
{
|
|
|
|
// Add the timezone transition related pseudo exceptions
|
|
|
|
$exceptions = $this->so->get_recurrence_exceptions($event, $tzid, 0, 0, 'tz_rrule');
|
|
|
|
if ($this->log)
|
2010-01-13 21:48:39 +01:00
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__."(EXCEPTIONS)\n" .
|
|
|
|
array2string($exceptions)."\n",3,$this->logfile);
|
2010-01-13 21:48:39 +01:00
|
|
|
}
|
2010-01-29 22:42:54 +01:00
|
|
|
$event['recur_exception'] = $exceptions;
|
2010-02-17 14:29:28 +01:00
|
|
|
/*
|
2010-01-29 22:42:54 +01:00
|
|
|
// Adjust the event start -- must not be an exception
|
|
|
|
$length = $event['end'] - $event['start'];
|
|
|
|
$rriter = calendar_rrule::event2rrule($event, false, $tzid);
|
|
|
|
$rriter->rewind();
|
|
|
|
if (!$rriter->valid()) return false; // completely disolved into exceptions
|
|
|
|
|
|
|
|
$event['start'] = egw_time::to($rriter->current, 'server');
|
|
|
|
$event['end'] = $event['start'] + $length;
|
|
|
|
foreach($exceptions as $key => $day)
|
|
|
|
{
|
|
|
|
// remove leading exceptions
|
|
|
|
if ($day <= $event['start']) unset($exceptions[$key]);
|
|
|
|
}
|
2010-02-17 14:29:28 +01:00
|
|
|
$event['recur_exception'] = $exceptions; */
|
2010-01-29 22:42:54 +01:00
|
|
|
}
|
2009-07-15 22:35:56 +02:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
if ($this->uidExtension)
|
|
|
|
{
|
|
|
|
if (!preg_match('/\[UID:.+\]/m', $event['description']))
|
2008-06-07 19:45:33 +02:00
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
$event['description'] .= "\n[UID:" . $event['uid'] . "]";
|
|
|
|
}
|
|
|
|
}
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
$sifEvent = self::xml_decl . "<appointment>" . self::SIF_decl;
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
foreach ($this->sifMapping as $sifField => $egwField)
|
|
|
|
{
|
|
|
|
if (empty($egwField)) continue;
|
|
|
|
|
|
|
|
$value = $GLOBALS['egw']->translation->convert($event[$egwField], $sysCharSet, 'utf-8');
|
|
|
|
|
|
|
|
switch ($sifField)
|
|
|
|
{
|
|
|
|
case 'Importance':
|
|
|
|
$value = $value-1;
|
|
|
|
$sifEvent .= "<$sifField>$value</$sifField>";
|
|
|
|
break;
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
case 'RecurrenceType':
|
|
|
|
case 'Interval':
|
|
|
|
case 'PatternStartDate':
|
|
|
|
case 'NoEndDate':
|
|
|
|
case 'DayOfWeekMask':
|
|
|
|
case 'PatternEndDate':
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'IsRecurring':
|
|
|
|
if ($event['recur_type'] == MCAL_RECUR_NONE)
|
|
|
|
{
|
|
|
|
$sifEvent .= "<$sifField>0</$sifField>";
|
2008-06-07 19:45:33 +02:00
|
|
|
break;
|
2010-01-29 22:42:54 +01:00
|
|
|
}
|
2010-02-03 11:41:44 +01:00
|
|
|
$occurrences = 0;
|
2010-01-29 22:42:54 +01:00
|
|
|
if ($event['recur_enddate'] == 0)
|
|
|
|
{
|
|
|
|
$sifEvent .= '<NoEndDate>1</NoEndDate>';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-02-03 11:41:44 +01:00
|
|
|
$rriter = calendar_rrule::event2rrule($event, false, $tzid);
|
|
|
|
$rriter->rewind();
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2010-02-03 11:41:44 +01:00
|
|
|
while ($rriter->valid())
|
2009-07-30 22:52:13 +02:00
|
|
|
{
|
2010-02-03 11:41:44 +01:00
|
|
|
$occurrences++;
|
|
|
|
$recur_date = $rriter->current();
|
2010-02-03 16:57:44 +01:00
|
|
|
if ($this->log)
|
|
|
|
{
|
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__.
|
|
|
|
"() Client Recurrence[$occurrences] $recur_date\n", 3, $this->logfile);
|
|
|
|
}
|
2010-02-03 11:41:44 +01:00
|
|
|
if (!$rriter->exceptions || !in_array($recur_date->format('Ymd'),$rriter->exceptions))
|
|
|
|
{
|
|
|
|
$recur_end = $recur_date;
|
|
|
|
}
|
|
|
|
$rriter->next_no_exception();
|
2009-07-30 22:52:13 +02:00
|
|
|
}
|
2010-02-03 11:41:44 +01:00
|
|
|
$recurEndDate = egw_time::to($recur_end, 'server');
|
2010-01-29 22:42:54 +01:00
|
|
|
$sifEvent .= '<NoEndDate>0</NoEndDate>';
|
2010-02-03 11:41:44 +01:00
|
|
|
$sifEvent .= '<PatternEndDate>'. self::getDateTime($recurEndDate,$tzid) .'</PatternEndDate>';
|
2010-01-29 22:42:54 +01:00
|
|
|
}
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2010-02-03 16:57:44 +01:00
|
|
|
calendar_rrule::rrule2tz($event, $event['start'], $tzid);
|
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
$eventInterval = ($event['recur_interval'] > 1 ? $event['recur_interval'] : 1);
|
|
|
|
|
|
|
|
switch ($event['recur_type'])
|
|
|
|
{
|
|
|
|
|
|
|
|
case MCAL_RECUR_DAILY:
|
|
|
|
$sifEvent .= "<$sifField>1</$sifField>";
|
|
|
|
$sifEvent .= '<RecurrenceType>'. self::olRecursDaily .'</RecurrenceType>';
|
|
|
|
$sifEvent .= '<Interval>'. $eventInterval .'</Interval>';
|
2010-02-03 11:41:44 +01:00
|
|
|
$sifEvent .= '<PatternStartDate>'. self::getDateTime($event['start'],$tzid) .'</PatternStartDate>';
|
2010-01-29 22:42:54 +01:00
|
|
|
if ($event['recur_enddate'])
|
|
|
|
{
|
|
|
|
$sifEvent .= '<Occurrences>'. $occurrences .'</Occurrences>';
|
|
|
|
}
|
|
|
|
break;
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
case MCAL_RECUR_WEEKLY:
|
|
|
|
$sifEvent .= "<$sifField>1</$sifField>";
|
|
|
|
$sifEvent .= '<RecurrenceType>'. self::olRecursWeekly .'</RecurrenceType>';
|
|
|
|
$sifEvent .= '<Interval>'. $eventInterval .'</Interval>';
|
2010-02-03 11:41:44 +01:00
|
|
|
$sifEvent .= '<PatternStartDate>'. self::getDateTime($event['start'],$tzid) .'</PatternStartDate>';
|
2010-01-29 22:42:54 +01:00
|
|
|
$sifEvent .= '<DayOfWeekMask>'. $event['recur_data'] .'</DayOfWeekMask>';
|
|
|
|
if ($event['recur_enddate'])
|
|
|
|
{
|
|
|
|
$sifEvent .= '<Occurrences>'. $occurrences .'</Occurrences>';
|
|
|
|
}
|
|
|
|
break;
|
2009-07-30 22:52:13 +02:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
case MCAL_RECUR_MONTHLY_MDAY:
|
|
|
|
$sifEvent .= "<$sifField>1</$sifField>";
|
|
|
|
$sifEvent .= '<RecurrenceType>'. self::olRecursMonthly .'</RecurrenceType>';
|
|
|
|
$sifEvent .= '<Interval>'. $eventInterval .'</Interval>';
|
2010-02-03 11:41:44 +01:00
|
|
|
$sifEvent .= '<PatternStartDate>'. self::getDateTime($event['start'],$tzid) .'</PatternStartDate>';
|
2010-01-29 22:42:54 +01:00
|
|
|
break;
|
2009-07-30 22:52:13 +02:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
case MCAL_RECUR_MONTHLY_WDAY:
|
|
|
|
$weekMaskMap = array('Sun' => self::olSunday, 'Mon' => self::olMonday, 'Tue' => self::olTuesday,
|
|
|
|
'Wed' => self::olWednesday, 'Thu' => self::olThursday, 'Fri' => self::olFriday,
|
|
|
|
'Sat' => self::olSaturday);
|
|
|
|
$sifEvent .= "<$sifField>1</$sifField>";
|
|
|
|
$sifEvent .= '<RecurrenceType>'. self::olRecursMonthNth .'</RecurrenceType>';
|
|
|
|
$sifEvent .= '<Interval>'. $eventInterval .'</Interval>';
|
2010-02-03 11:41:44 +01:00
|
|
|
$sifEvent .= '<PatternStartDate>'. self::getDateTime($event['start'],$tzid) .'</PatternStartDate>';
|
2010-01-29 22:42:54 +01:00
|
|
|
$sifEvent .= '<Instance>' . (1 + (int) ((date('d',$event['start'])-1) / 7)) . '</Instance>';
|
|
|
|
$sifEvent .= '<DayOfWeekMask>' . $weekMaskMap[date('D',$event['start'])] . '</DayOfWeekMask>';
|
|
|
|
break;
|
2009-07-30 22:52:13 +02:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
case MCAL_RECUR_YEARLY:
|
|
|
|
$sifEvent .= "<$sifField>1</$sifField>";
|
|
|
|
$sifEvent .= '<RecurrenceType>'. self::olRecursYearly .'</RecurrenceType>';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (is_array($event['recur_exception']))
|
|
|
|
{
|
|
|
|
$sifEvent .= '<Exceptions>';
|
|
|
|
foreach ($event['recur_exception'] as $day)
|
2010-01-13 21:48:39 +01:00
|
|
|
{
|
2010-04-23 17:15:22 +02:00
|
|
|
if (empty($event['whole_day']))
|
2010-01-29 22:42:54 +01:00
|
|
|
{
|
|
|
|
if ($this->log && is_a($day,'DateTime'))
|
2010-01-13 21:48:39 +01:00
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__.
|
|
|
|
'() exception[' . $day->getTimezone()->getName() . ']: ' .
|
|
|
|
$day->format('Ymd\THis') . "\n",3,$this->logfile);
|
2010-01-13 21:48:39 +01:00
|
|
|
}
|
2010-01-29 22:42:54 +01:00
|
|
|
$sifEvent .= '<ExcludeDate>' . self::getDateTime($day,$tzid) . '</ExcludeDate>';
|
2010-01-13 21:48:39 +01:00
|
|
|
}
|
2010-04-23 17:15:22 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!is_a($day,'DateTime'))
|
|
|
|
{
|
|
|
|
$day = new egw_time($day,egw_time::$server_timezone);
|
|
|
|
$day->setTimezone(self::$tz_cache[$event['tzid']]);
|
|
|
|
}
|
|
|
|
$sifEvent .= '<ExcludeDate>' . $day->format('Y-m-d') . '</ExcludeDate>';
|
|
|
|
}
|
2010-01-13 21:48:39 +01:00
|
|
|
}
|
2010-01-29 22:42:54 +01:00
|
|
|
$sifEvent .= '</Exceptions>';
|
|
|
|
}
|
|
|
|
break;
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
case 'Sensitivity':
|
|
|
|
$value = (!$value ? '2' : '0');
|
|
|
|
$sifEvent .= "<$sifField>$value</$sifField>";
|
|
|
|
break;
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
case 'Folder':
|
|
|
|
# skip currently. This is the folder where Outlook stores the contact.
|
|
|
|
#$sifEvent .= "<$sifField>/</$sifField>";
|
|
|
|
break;
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
case 'AllDayEvent':
|
|
|
|
case 'End':
|
|
|
|
// get's handled by Start clause
|
|
|
|
break;
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
case 'Start':
|
2010-04-23 17:15:22 +02:00
|
|
|
if (empty($event['whole_day']))
|
|
|
|
{
|
|
|
|
$sifEvent .= '<Start>' . self::getDateTime($event['start'],$tzid) . '</Start>';
|
|
|
|
$sifEvent .= '<End>' . self::getDateTime($event['end'],$tzid) . '</End>';
|
|
|
|
$sifEvent .= "<AllDayEvent>0</AllDayEvent>";
|
|
|
|
}
|
|
|
|
else
|
2010-01-29 22:42:54 +01:00
|
|
|
{
|
|
|
|
// for whole-day events we use the date in event timezone
|
|
|
|
$time = new egw_time($event['start'],egw_time::$server_timezone);
|
|
|
|
$time->setTimezone(self::$tz_cache[$event['tzid']]);
|
|
|
|
$sifEvent .= '<Start>' . $time->format('Y-m-d') . '</Start>';
|
|
|
|
$time = new egw_time($event['end'],egw_time::$server_timezone);
|
|
|
|
$time->setTimezone(self::$tz_cache[$event['tzid']]);
|
|
|
|
$sifEvent .= '<End>' . $time->format('Y-m-d') . '</End>';
|
|
|
|
$sifEvent .= "<AllDayEvent>1</AllDayEvent>";
|
|
|
|
}
|
|
|
|
break;
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
case 'ReminderMinutesBeforeStart':
|
|
|
|
break;
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
case 'ReminderSet':
|
|
|
|
if (count((array)$event['alarm']) > 0)
|
|
|
|
{
|
|
|
|
$sifEvent .= "<$sifField>1</$sifField>";
|
|
|
|
foreach ($event['alarm'] as $alarmID => $alarmData)
|
2009-07-30 22:52:13 +02:00
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
$sifEvent .= '<ReminderMinutesBeforeStart>'. $alarmData['offset']/60 .'</ReminderMinutesBeforeStart>';
|
|
|
|
// lets take only the first alarm
|
2009-07-15 22:35:56 +02:00
|
|
|
break;
|
|
|
|
}
|
2010-01-29 22:42:54 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$sifEvent .= "<$sifField>0</$sifField>";
|
|
|
|
}
|
|
|
|
break;
|
2009-07-15 22:35:56 +02:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
case 'Categories':
|
|
|
|
if (!empty($value) && ($values = $this->get_categories($value)))
|
|
|
|
{
|
|
|
|
$value = implode(', ', $values);
|
|
|
|
$value = $GLOBALS['egw']->translation->convert($value, $sysCharSet, 'utf-8');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-06-07 19:45:33 +02:00
|
|
|
break;
|
2010-01-29 22:42:54 +01:00
|
|
|
}
|
2010-01-13 21:48:39 +01:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
default:
|
2010-03-15 18:17:42 +01:00
|
|
|
$value = @htmlspecialchars($value, ENT_NOQUOTES, 'utf-8');
|
2010-01-29 22:42:54 +01:00
|
|
|
$sifEvent .= "<$sifField>$value</$sifField>";
|
2010-01-13 21:48:39 +01:00
|
|
|
}
|
2008-06-07 19:45:33 +02:00
|
|
|
}
|
2010-01-29 22:42:54 +01:00
|
|
|
$sifEvent .= "</appointment>";
|
2008-06-07 19:45:33 +02:00
|
|
|
|
2010-01-29 22:42:54 +01:00
|
|
|
if ($this->log)
|
2008-06-07 19:45:33 +02:00
|
|
|
{
|
2010-01-29 22:42:54 +01:00
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__ .
|
|
|
|
"() '$this->productName','$this->productSoftwareVersion'\n",3,$this->logfile);
|
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__ .
|
|
|
|
"()\n".array2string($sifEvent)."\n",3,$this->logfile);
|
2008-06-07 19:45:33 +02:00
|
|
|
}
|
2010-01-29 22:42:54 +01:00
|
|
|
|
|
|
|
return $sifEvent;
|
2008-06-07 19:45:33 +02:00
|
|
|
}
|
|
|
|
|
2009-07-15 22:35:56 +02:00
|
|
|
/**
|
|
|
|
* Set the supported fields
|
|
|
|
*
|
|
|
|
* Currently we only store name and version, manucfacturer is always Funambol
|
|
|
|
*
|
|
|
|
* @param string $_productName
|
|
|
|
* @param string $_productSoftwareVersion
|
|
|
|
*/
|
|
|
|
function setSupportedFields($_productName='', $_productSoftwareVersion='')
|
|
|
|
{
|
2010-01-13 21:48:39 +01:00
|
|
|
$state =& $_SESSION['SyncML.state'];
|
|
|
|
if (isset($state))
|
|
|
|
{
|
|
|
|
$deviceInfo = $state->getClientDeviceInfo();
|
|
|
|
}
|
2009-07-15 22:35:56 +02:00
|
|
|
|
2009-07-30 22:52:13 +02:00
|
|
|
if (isset($deviceInfo) && is_array($deviceInfo))
|
|
|
|
{
|
|
|
|
if (isset($deviceInfo['uidExtension']) &&
|
2010-01-13 21:48:39 +01:00
|
|
|
$deviceInfo['uidExtension'])
|
|
|
|
{
|
|
|
|
$this->uidExtension = true;
|
|
|
|
}
|
|
|
|
if (isset($deviceInfo['nonBlockingAllday']) &&
|
|
|
|
$deviceInfo['nonBlockingAllday'])
|
|
|
|
{
|
|
|
|
$this->nonBlockingAllday = true;
|
|
|
|
}
|
|
|
|
if (isset($deviceInfo['tzid']) &&
|
|
|
|
$deviceInfo['tzid'])
|
|
|
|
{
|
2010-02-09 22:56:39 +01:00
|
|
|
switch ($deviceInfo['tzid'])
|
|
|
|
{
|
2010-06-17 09:38:27 +02:00
|
|
|
case -1:
|
2010-02-09 22:56:39 +01:00
|
|
|
$this->tzid = false;
|
|
|
|
break;
|
2010-06-17 09:38:27 +02:00
|
|
|
case -2:
|
2010-02-09 22:56:39 +01:00
|
|
|
$this->tzid = null;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$this->tzid = $deviceInfo['tzid'];
|
|
|
|
}
|
2010-01-13 21:48:39 +01:00
|
|
|
}
|
|
|
|
if (isset($GLOBALS['egw_info']['user']['preferences']['syncml']['calendar_owner']))
|
|
|
|
{
|
|
|
|
$owner = $GLOBALS['egw_info']['user']['preferences']['syncml']['calendar_owner'];
|
2010-03-24 12:37:22 +01:00
|
|
|
switch ($owner)
|
2010-02-09 22:56:39 +01:00
|
|
|
{
|
2010-03-24 12:37:22 +01:00
|
|
|
case 'G':
|
|
|
|
case 'P':
|
2010-04-14 18:40:54 +02:00
|
|
|
case 0:
|
2010-04-16 09:04:53 +02:00
|
|
|
case -1:
|
2010-03-24 12:37:22 +01:00
|
|
|
$owner = $this->user;
|
2010-04-14 18:40:54 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if ((int)$owner && $this->check_perms(EGW_ACL_EDIT, 0, $owner))
|
|
|
|
{
|
|
|
|
$this->calendarOwner = $owner;
|
|
|
|
}
|
2009-07-15 22:35:56 +02:00
|
|
|
}
|
2010-01-13 21:48:39 +01:00
|
|
|
}
|
2009-07-15 22:35:56 +02:00
|
|
|
}
|
2010-01-13 21:48:39 +01:00
|
|
|
// store product name and software version for futher usage
|
2009-07-30 22:52:13 +02:00
|
|
|
if ($_productName)
|
|
|
|
{
|
2009-07-15 22:35:56 +02:00
|
|
|
$this->productName = strtolower($_productName);
|
2009-07-30 22:52:13 +02:00
|
|
|
if (preg_match('/^[^\d]*(\d+\.?\d*)[\.|\d]*$/', $_productSoftwareVersion, $matches))
|
|
|
|
{
|
2009-07-15 22:35:56 +02:00
|
|
|
$this->productSoftwareVersion = $matches[1];
|
|
|
|
}
|
|
|
|
}
|
2010-01-13 21:48:39 +01:00
|
|
|
if ($this->log)
|
|
|
|
{
|
|
|
|
error_log(__FILE__.'['.__LINE__.'] '.__METHOD__.
|
|
|
|
'(' . $this->productName .
|
|
|
|
', '. $this->productSoftwareVersion . ")\n",3,$this->logfile);
|
|
|
|
}
|
2009-07-15 22:35:56 +02:00
|
|
|
}
|
2008-06-07 19:45:33 +02:00
|
|
|
}
|