2008-05-08 22:31:32 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* eGroupWare: GroupDAV access: calendar handler
|
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package calendar
|
|
|
|
* @subpackage groupdav
|
|
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
|
|
* @copyright (c) 2007/8 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* eGroupWare: GroupDAV access: calendar handler
|
|
|
|
*/
|
|
|
|
class calendar_groupdav extends groupdav_handler
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* bo class of the application
|
|
|
|
*
|
2008-06-07 19:45:33 +02:00
|
|
|
* @var calendar_boupdate
|
2008-05-08 22:31:32 +02:00
|
|
|
*/
|
|
|
|
var $bo;
|
|
|
|
|
|
|
|
var $filter_prop2cal = array(
|
|
|
|
'SUMMARY' => 'cal_title',
|
|
|
|
'UID' => 'cal_uid',
|
|
|
|
'DTSTART' => 'cal_start',
|
|
|
|
'DTEND' => 'cal_end',
|
|
|
|
// 'DURATION'
|
|
|
|
//'RRULE' => 'recur_type',
|
|
|
|
//'RDATE' => 'cal_start',
|
|
|
|
//'EXRULE'
|
|
|
|
//'EXDATE'
|
|
|
|
//'RECURRENCE-ID'
|
|
|
|
);
|
|
|
|
|
2008-05-17 15:00:34 +02:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param string $app 'calendar', 'addressbook' or 'infolog'
|
|
|
|
* @param int $debug=null debug-level to set
|
|
|
|
* @param string $base_uri=null base url of handler
|
|
|
|
*/
|
|
|
|
function __construct($app,$debug=null,$base_uri=null)
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2008-05-17 15:00:34 +02:00
|
|
|
parent::__construct($app,$debug,$base_uri);
|
2008-05-08 22:31:32 +02:00
|
|
|
|
2008-06-07 19:45:33 +02:00
|
|
|
$this->bo =& new calendar_boupdate();
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle propfind in the calendar folder
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @param array $options
|
|
|
|
* @param array &$files
|
|
|
|
* @param int $user account_id
|
|
|
|
* @param string $id=''
|
|
|
|
* @return mixed boolean true on success, false on failure or string with http status (eg. '404 Not Found')
|
|
|
|
*/
|
|
|
|
function propfind($path,$options,&$files,$user,$id='')
|
|
|
|
{
|
2008-05-17 15:00:34 +02:00
|
|
|
if ($this->debug) error_log(__METHOD__."($path,".array2string($options).",,$user,$id)");
|
2008-05-08 22:31:32 +02:00
|
|
|
|
|
|
|
// ToDo: add parameter to only return id & etag
|
|
|
|
$cal_filters = array(
|
|
|
|
'users' => $user,
|
|
|
|
'start' => time()-30*24*3600, // default one month back
|
|
|
|
'end' => time()+365*24*3600, // default one year into the future
|
|
|
|
'enum_recuring' => false,
|
|
|
|
'daywise' => false,
|
|
|
|
'date_format' => 'server',
|
|
|
|
);
|
2008-05-17 15:00:34 +02:00
|
|
|
if ($this->debug > 1) error_log(__METHOD__."($path,,,$user,$id) cal_filters=".array2string($cal_filters));
|
2008-05-08 22:31:32 +02:00
|
|
|
|
|
|
|
// process REPORT filters or multiget href's
|
|
|
|
if (($id || $options['root']['name'] != 'propfind') && !$this->_report_filters($options,$cal_filters,$id))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// check if we have to return the full calendar data or just the etag's
|
2008-06-03 19:22:59 +02:00
|
|
|
if (!($calendar_data = $options['props'] == 'all' && $options['root']['ns'] == groupdav::CALDAV) && is_array($options['props']))
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
|
|
|
foreach($options['props'] as $prop)
|
|
|
|
{
|
|
|
|
if ($prop['name'] == 'calendar-data')
|
|
|
|
{
|
|
|
|
$calendar_data = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (($events = $this->bo->search($cal_filters)))
|
|
|
|
{
|
|
|
|
foreach($events as $event)
|
|
|
|
{
|
2008-06-04 13:07:45 +02:00
|
|
|
//header('X-EGROUPWARE-EVENT-'.$event['id'].': '.$event['title'].': '.date('Y-m-d H:i:s',$event['start']).' - '.date('Y-m-d H:i:s',$event['end']));
|
2008-05-08 22:31:32 +02:00
|
|
|
$props = array(
|
|
|
|
HTTP_WebDAV_Server::mkprop('getetag',$this->get_etag($event)),
|
2008-11-03 10:36:20 +01:00
|
|
|
HTTP_WebDAV_Server::mkprop('getcontenttype', $this->agent != 'kde' ?
|
2008-08-04 21:08:09 +02:00
|
|
|
'text/calendar; charset=utf-8; component=VEVENT' : 'text/calendar'),
|
2008-05-20 11:07:03 +02:00
|
|
|
// getlastmodified and getcontentlength are required by WebDAV and Cadaver eg. reports 404 Not found if not set
|
|
|
|
HTTP_WebDAV_Server::mkprop('getlastmodified', $event['modified']),
|
2008-05-08 22:31:32 +02:00
|
|
|
);
|
|
|
|
if ($calendar_data)
|
|
|
|
{
|
2008-11-03 10:36:20 +01:00
|
|
|
if (is_null($handler)) $handler = $this->_get_handler();
|
|
|
|
$content = $handler->exportVCal(array($event),'2.0','PUBLISH');
|
2008-05-20 11:07:03 +02:00
|
|
|
$props[] = HTTP_WebDAV_Server::mkprop('getcontentlength',bytes($content));
|
|
|
|
$props[] = HTTP_WebDAV_Server::mkprop(groupdav::CALDAV,'calendar-data',$content);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$props[] = HTTP_WebDAV_Server::mkprop('getcontentlength', ''); // expensive to calculate and no CalDAV client uses it
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
$files['files'][] = array(
|
2008-08-04 21:08:09 +02:00
|
|
|
'path' => '/calendar/'.$event['id'].'.ics',
|
2008-05-08 22:31:32 +02:00
|
|
|
'props' => $props,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Process the filters from the CalDAV REPORT request
|
|
|
|
*
|
|
|
|
* @param array $options
|
|
|
|
* @param array &$cal_filters
|
|
|
|
* @param string $id
|
|
|
|
* @return boolean true if filter could be processed, false for requesting not here supported VTODO items
|
|
|
|
*/
|
|
|
|
function _report_filters($options,&$cal_filters,$id)
|
|
|
|
{
|
|
|
|
if ($options['filters'])
|
|
|
|
{
|
|
|
|
// unset default start & end
|
|
|
|
$cal_start = $cal_filters['start']; unset($cal_filters['start']);
|
|
|
|
$cal_end = $cal_filters['end']; unset($cal_filters['end']);
|
|
|
|
$num_filters = count($cal_filters);
|
|
|
|
|
|
|
|
foreach($options['filters'] as $filter)
|
|
|
|
{
|
|
|
|
switch($filter['name'])
|
|
|
|
{
|
|
|
|
case 'comp-filter':
|
2008-05-17 15:00:34 +02:00
|
|
|
if ($this->debug > 1) error_log(__METHOD__."($path,...) comp-filter='{$filter['attrs']['name']}'");
|
2008-05-08 22:31:32 +02:00
|
|
|
switch($filter['attrs']['name'])
|
|
|
|
{
|
|
|
|
case 'VTODO':
|
|
|
|
return false; // return nothing for now, todo: check if we can pass it on to the infolog handler
|
|
|
|
// todos are handled by the infolog handler
|
2008-05-17 15:00:34 +02:00
|
|
|
$infolog_handler = new groupdav_infolog();
|
2008-05-08 22:31:32 +02:00
|
|
|
return $infolog_handler->propfind($path,$options,$files,$user,$method);
|
|
|
|
case 'VCALENDAR':
|
|
|
|
CASE 'VEVENT':
|
|
|
|
break; // that's our default anyway
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'prop-filter':
|
2008-05-17 15:00:34 +02:00
|
|
|
if ($this->debug > 1) error_log(__METHOD__."($path,...) prop-filter='{$filter['attrs']['name']}'");
|
2008-05-08 22:31:32 +02:00
|
|
|
$prop_filter = $filter['attrs']['name'];
|
|
|
|
break;
|
|
|
|
case 'text-match':
|
2008-05-17 15:00:34 +02:00
|
|
|
if ($this->debug > 1) error_log(__METHOD__."($path,...) text-match: $prop_filter='{$filter['data']}'");
|
2008-05-08 22:31:32 +02:00
|
|
|
if (!isset($this->filter_prop2cal[strtoupper($prop_filter)]))
|
|
|
|
{
|
2008-05-17 15:00:34 +02:00
|
|
|
if ($this->debug) error_log(__METHOD__."($path,".array2string($options).",,$user) unknown property '$prop_filter' --> ignored");
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$cal_filters['query'][$this->filter_prop2cal[strtoupper($prop_filter)]] = $filter['data'];
|
|
|
|
}
|
|
|
|
unset($prop_filter);
|
|
|
|
break;
|
|
|
|
case 'param-filter':
|
2008-05-17 15:00:34 +02:00
|
|
|
if ($this->debug) error_log(__METHOD__."($path,...) param-filter='{$filter['attrs']['name']}' not (yet) implemented!");
|
2008-05-08 22:31:32 +02:00
|
|
|
break;
|
|
|
|
case 'time-range':
|
2008-05-17 15:00:34 +02:00
|
|
|
if ($this->debug > 1) error_log(__METHOD__."($path,...) time-range={$filter['attrs']['start']}-{$filter['attrs']['end']}");
|
|
|
|
$cal_filters['start'] = $filter['attrs']['start'];
|
|
|
|
$cal_filters['end'] = $filter['attrs']['end'];
|
2008-05-08 22:31:32 +02:00
|
|
|
break;
|
|
|
|
default:
|
2008-05-17 15:00:34 +02:00
|
|
|
if ($this->debug) error_log(__METHOD__."($path,".array2string($options).",,$user) unknown filter --> ignored");
|
2008-05-08 22:31:32 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2008-06-04 13:07:45 +02:00
|
|
|
if (count($cal_filters) == $num_filters) // no filters set --> restore default start and end time
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
|
|
|
$cal_filters['start'] = $cal_start;
|
|
|
|
$cal_filters['end'] = $cal_end;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// multiget or propfind on a given id
|
|
|
|
if ($options['root']['name'] == 'calendar-multiget' || $id)
|
|
|
|
{
|
|
|
|
// no standard time-range!
|
|
|
|
unset($cal_filters['start']);
|
|
|
|
unset($cal_filters['end']);
|
|
|
|
|
|
|
|
$ids = array();
|
|
|
|
|
|
|
|
if ($id)
|
|
|
|
{
|
|
|
|
if (is_numeric($id))
|
|
|
|
{
|
|
|
|
$ids[] = (int)$id;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-11-14 08:25:09 +01:00
|
|
|
$cal_filters['query']['cal_uid'] = basename($id,'.ics');
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else // fetch all given url's
|
|
|
|
{
|
|
|
|
foreach($options['other'] as $option)
|
|
|
|
{
|
|
|
|
if ($option['name'] == 'href')
|
|
|
|
{
|
|
|
|
$parts = explode('/',$option['data']);
|
|
|
|
if (is_numeric($id = array_pop($parts))) $ids[] = $id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($ids)
|
|
|
|
{
|
|
|
|
$cal_filters['query'][] = 'egw_cal.cal_id IN ('.implode(',',array_map(create_function('$n','return (int)$n;'),$ids)).')';
|
|
|
|
}
|
2008-05-17 15:00:34 +02:00
|
|
|
if ($this->debug) error_log(__METHOD__."($path,,,$user,$id) calendar-multiget: ids=".implode(',',$ids));
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle get request for an event
|
|
|
|
*
|
|
|
|
* @param array &$options
|
|
|
|
* @param int $id
|
|
|
|
* @return mixed boolean true on success, false on failure or string with http status (eg. '404 Not Found')
|
|
|
|
*/
|
|
|
|
function get(&$options,$id)
|
|
|
|
{
|
|
|
|
if (!is_array($event = $this->_common_get_put_delete('GET',$options,$id)))
|
|
|
|
{
|
|
|
|
return $event;
|
|
|
|
}
|
2008-11-03 10:36:20 +01:00
|
|
|
$handler = $this->_get_handler();
|
|
|
|
$options['data'] = $handler->exportVCal(array($event),'2.0','PUBLISH');
|
2008-05-08 22:31:32 +02:00
|
|
|
$options['mimetype'] = 'text/calendar; charset=utf-8';
|
|
|
|
header('Content-Encoding: identity');
|
|
|
|
header('ETag: '.$this->get_etag($event));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle put request for an event
|
|
|
|
*
|
|
|
|
* @param array &$options
|
|
|
|
* @param int $id
|
|
|
|
* @param int $user=null account_id of owner, default null
|
|
|
|
* @return mixed boolean true on success, false on failure or string with http status (eg. '404 Not Found')
|
|
|
|
*/
|
|
|
|
function put(&$options,$id,$user=null)
|
|
|
|
{
|
2008-05-17 15:00:34 +02:00
|
|
|
$return_no_access=true; // as handled by importVCal anyway and allows it to set the status for participants
|
|
|
|
$event = $this->_common_get_put_delete('PUT',$options,$id,$return_no_access);
|
2008-05-08 22:31:32 +02:00
|
|
|
if (!is_null($event) && !is_array($event))
|
|
|
|
{
|
|
|
|
return $event;
|
|
|
|
}
|
2008-11-03 10:36:20 +01:00
|
|
|
$handler = $this->_get_handler();
|
|
|
|
if (!($cal_id = $handler->importVCal($options['content'],is_numeric($id) ? $id : -1,
|
2008-05-08 22:31:32 +02:00
|
|
|
self::etag2value($this->http_if_match))))
|
|
|
|
{
|
2008-05-17 15:00:34 +02:00
|
|
|
if ($this->debug) error_log(__METHOD__."(,$id) importVCal($options[content]) returned false");
|
|
|
|
return '403 Forbidden';
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
header('ETag: '.$this->get_etag($cal_id));
|
2008-05-17 15:00:34 +02:00
|
|
|
if (is_null($event) || !$return_no_access) // let lightning think the event is added
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2008-05-17 15:00:34 +02:00
|
|
|
if ($this->debug) error_log(__METHOD__."(,$id,$user) cal_id=$cal_id, is_null(\$event)=".(int)is_null($event));
|
2008-05-08 22:31:32 +02:00
|
|
|
header('Location: '.$this->base_uri.'/calendar/'.$cal_id);
|
|
|
|
return '201 Created';
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle delete request for an event
|
|
|
|
*
|
2008-05-17 15:00:34 +02:00
|
|
|
* If current user has no right to delete the event, but is an attendee, we reject the event for him.
|
|
|
|
*
|
2008-05-08 22:31:32 +02:00
|
|
|
* @param array &$options
|
|
|
|
* @param int $id
|
|
|
|
* @return mixed boolean true on success, false on failure or string with http status (eg. '404 Not Found')
|
|
|
|
*/
|
|
|
|
function delete(&$options,$id)
|
|
|
|
{
|
2008-05-17 15:00:34 +02:00
|
|
|
$return_no_access=true; // to allow to check if current use is a participant and reject the event for him
|
|
|
|
if (!is_array($event = $this->_common_get_put_delete('DELETE',$options,$id,$return_no_access)) || !$return_no_access)
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2008-05-17 15:00:34 +02:00
|
|
|
if (!$return_no_access)
|
|
|
|
{
|
|
|
|
$ret = isset($event['participants'][$this->bo->user]) &&
|
|
|
|
$this->bo->set_status($event,$this->bo->user,'R') ? true : '403 Forbidden';
|
|
|
|
if ($this->debug) error_log(__METHOD__."(,$id) return_no_access=$return_no_access, event[participants]=".array2string($event['participants']).", user={$this->bo->user} --> return $ret");
|
|
|
|
return $ret;
|
|
|
|
}
|
2008-05-08 22:31:32 +02:00
|
|
|
return $event;
|
|
|
|
}
|
|
|
|
return $this->bo->delete($id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read an entry
|
|
|
|
*
|
|
|
|
* @param string/id $id
|
|
|
|
* @return array/boolean array with entry, false if no read rights, null if $id does not exist
|
|
|
|
*/
|
|
|
|
function read($id)
|
|
|
|
{
|
|
|
|
return $this->bo->read($id,null,false,'server');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the etag for an entry, reimplemented to include the participants and stati in the etag
|
|
|
|
*
|
|
|
|
* @param array/int $event array with event or cal_id
|
|
|
|
* @return string/boolean string with etag or false
|
|
|
|
*/
|
|
|
|
function get_etag($entry)
|
|
|
|
{
|
2008-05-17 15:00:34 +02:00
|
|
|
$e_in = $entry;
|
2008-05-08 22:31:32 +02:00
|
|
|
if (!is_array($entry))
|
|
|
|
{
|
|
|
|
$entry = $this->read($entry);
|
|
|
|
}
|
2008-05-17 15:00:34 +02:00
|
|
|
if (!$entry['id'] || !isset($entry['etag']) || !isset($entry['participants'])) error_log(__METHOD__."($e_in): id=$entry[id], etag=$entry[etag], isset(participants)=".(int)isset($entry['participants']).", title=$entry[title]: id, etag or participants not set!!!");
|
2008-05-08 22:31:32 +02:00
|
|
|
$etag = $entry['id'].':'.$entry['etag'];
|
|
|
|
// add a hash over the participants and their stati
|
|
|
|
ksort($entry['participants']); // create a defined order
|
|
|
|
$etag .= ':'.md5(serialize($entry['participants']));
|
2008-05-10 22:12:20 +02:00
|
|
|
//error_log(__METHOD__."($entry[id] ($entry[etag]): $entry[title] --> etag=$etag");
|
2008-10-20 19:36:03 +02:00
|
|
|
return $etag;
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if user has the neccessary rights on an event
|
|
|
|
*
|
|
|
|
* @param int $acl EGW_ACL_READ, EGW_ACL_EDIT or EGW_ACL_DELETE
|
|
|
|
* @param array/int $event event-array or id
|
|
|
|
* @return boolean null if entry does not exist, false if no access, true if access permitted
|
|
|
|
*/
|
|
|
|
function check_access($acl,$event)
|
|
|
|
{
|
|
|
|
return $this->bo->check_perms($acl,$event,0,'server');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add extra properties for calendar collections
|
|
|
|
*
|
|
|
|
* @param array $props=array() regular props by the groupdav handler
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
static function extra_properties(array $props=array())
|
|
|
|
{
|
|
|
|
// calendaring URL of the current user
|
2008-05-10 22:12:20 +02:00
|
|
|
$props[] = HTTP_WebDAV_Server::mkprop(groupdav::CALDAV,'calendar-home-set',$_SERVER['SCRIPT_NAME'].'/');
|
2008-05-08 22:31:32 +02:00
|
|
|
// email of the current user, see caldav-sheduling draft
|
2008-05-10 22:12:20 +02:00
|
|
|
$props[] = HTTP_WebDAV_Server::mkprop(groupdav::CALDAV,'calendar-user-address-set','MAILTO:'.$GLOBALS['egw_info']['user']['email']);
|
2008-05-08 22:31:32 +02:00
|
|
|
|
|
|
|
return $props;
|
|
|
|
}
|
2008-11-03 10:36:20 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the handler and set the supported fields
|
|
|
|
*
|
|
|
|
* @return calendar_ical
|
|
|
|
*/
|
|
|
|
private function _get_handler()
|
|
|
|
{
|
|
|
|
$handler =& new calendar_ical();
|
|
|
|
$handler->setSupportedFields('GroupDAV',$this->agent);
|
|
|
|
|
|
|
|
return $handler;
|
|
|
|
}
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|