49b078e3ff
(cherry picked from commit 2daa59c7ddbf367d010668f65a45278b8e16b869)
379 lines
13 KiB
PHP
379 lines
13 KiB
PHP
<?php
|
|
|
|
/**
|
|
* CalDAV Client
|
|
*
|
|
* @version @package_version@
|
|
* @author Daniel Morlock <daniel.morlock@awesome-it.de>
|
|
*
|
|
* Copyright (C) Awesome IT GbR <info@awesome-it.de>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
require_once (dirname(__FILE__).'/SabreDAV/vendor/autoload.php');
|
|
|
|
|
|
class caldav_client extends OldSabre\DAV\Client
|
|
{
|
|
const CLARK_GETCTAG = '{http://calendarserver.org/ns/}getctag';
|
|
const CLARK_GETETAG = '{DAV:}getetag';
|
|
const CLARK_CALDATA = '{urn:ietf:params:xml:ns:caldav}calendar-data';
|
|
|
|
private $base_uri;
|
|
private $path;
|
|
private $libvcal;
|
|
|
|
/**
|
|
* Default constructor for CalDAV client.
|
|
*
|
|
* @param string Caldav URI to appropriate calendar.
|
|
* @param string Username for HTTP basic auth.
|
|
* @param string Password for HTTP basic auth.
|
|
*/
|
|
public function __construct($uri, $user = null, $pass = null)
|
|
{
|
|
|
|
// Include libvcalendar on demand ...
|
|
if(!class_exists("libvcalendar"))
|
|
require_once (dirname(__FILE__).'/../../libcalendaring/libvcalendar.php');
|
|
|
|
$this->libvcal = new libvcalendar();
|
|
|
|
$tokens = parse_url($uri);
|
|
$this->base_uri = $tokens['scheme']."://".$tokens['host'].($tokens['port'] ? ":".$tokens['port'] : null);
|
|
$this->path = $tokens['path'].($tokens['query'] ? "?".$tokens['query'] : null);
|
|
|
|
$settings = array(
|
|
'baseUri' => $this->base_uri,
|
|
'authType' => OldSabre\DAV\Client::AUTH_BASIC
|
|
);
|
|
|
|
// Forward SSL certificate setting to Sabre\DAV an onwards to CURL
|
|
$this->rc = rcmail::get_instance();
|
|
parent::setVerifyPeer($this->rc->config->get('calendar_curl_secure_ssl', true));
|
|
|
|
if ($user) $settings['userName'] = $user;
|
|
if ($pass) $settings['password'] = $pass;
|
|
|
|
parent::__construct($settings);
|
|
}
|
|
|
|
/**
|
|
* Fetches calendar ctag.
|
|
*
|
|
* @see http://code.google.com/p/sabredav/wiki/BuildingACalDAVClient#Retrieving_calendar_information
|
|
* @return Calendar ctag or null on error.
|
|
*/
|
|
public function get_ctag()
|
|
{
|
|
try
|
|
{
|
|
$arr = $this->propFind($this->path, array(self::CLARK_GETCTAG));
|
|
|
|
if (isset($arr[self::CLARK_GETCTAG]))
|
|
return $arr[self::CLARK_GETCTAG];
|
|
}
|
|
catch(OldSabre\DAV\Exception $err)
|
|
{
|
|
rcube::raise_error(array(
|
|
'code' => $err->getHTTPCode(),
|
|
'type' => 'DAV',
|
|
'file' => $err->getFile(),
|
|
'line' => $err->getLine(),
|
|
'message' => $err->getMessage()
|
|
), true, false);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Fetches event etags and urls.
|
|
*
|
|
* @see http://code.google.com/p/sabredav/wiki/BuildingACalDAVClient#Finding_out_if_anything_changed
|
|
*
|
|
* @param array Optional list of relative event URL's to retrieve specific etags. If not specified, all etags of the current calendar are returned.
|
|
* @return array List of etag properties with keys:
|
|
* url: Event ical path relative to the calendar URL.
|
|
* etag: Current event etag.
|
|
*/
|
|
public function get_etags(array $event_urls = array())
|
|
{
|
|
$etags = array();
|
|
|
|
try
|
|
{
|
|
$arr = $this->prop_report($this->path, array(self::CLARK_GETETAG), $event_urls);
|
|
foreach ($arr as $path => $data)
|
|
{
|
|
// Some caldav server return an empty calendar as event where etag is missing. Skip this!
|
|
if($data[self::CLARK_GETETAG])
|
|
{
|
|
array_push($etags, array(
|
|
"url" => $path,
|
|
"etag" => str_replace('"', null, $data[self::CLARK_GETETAG])
|
|
));
|
|
}
|
|
}
|
|
}
|
|
catch(OldSabre\DAV\Exception $err)
|
|
{
|
|
rcube::raise_error(array(
|
|
'code' => $err->getHTTPCode(),
|
|
'type' => 'DAV',
|
|
'file' => $err->getFile(),
|
|
'line' => $err->getLine(),
|
|
'message' => $err->getMessage()
|
|
), true, false);
|
|
}
|
|
|
|
return $etags;
|
|
}
|
|
|
|
/**
|
|
* Fetches calendar events.
|
|
*
|
|
* @see http://code.google.com/p/sabredav/wiki/BuildingACalDAVClient#Downloading_objects
|
|
* @param array $urls = array() Optional list of event URL's to fetch. If non is specified, all
|
|
* events from the appropriate calendar will be fetched.
|
|
* @return Array hash list that maps the events URL to the appropriate event properties.
|
|
*/
|
|
public function get_events($urls = array())
|
|
{
|
|
$events = array();
|
|
|
|
try
|
|
{
|
|
$vcals = $this->prop_report($this->path, array(
|
|
self::CLARK_GETETAG,
|
|
self::CLARK_CALDATA
|
|
), $urls);
|
|
|
|
foreach ($vcals as $path => $response)
|
|
{
|
|
$vcal = $response[self::CLARK_CALDATA];
|
|
foreach ($this->libvcal->import($vcal) as $event) {
|
|
$events[$path] = $event;
|
|
}
|
|
}
|
|
}
|
|
catch(OldSabre\DAV\Exception $err)
|
|
{
|
|
rcube::raise_error(array(
|
|
'code' => $err->getHTTPCode(),
|
|
'type' => 'DAV',
|
|
'file' => $err->getFile(),
|
|
'line' => $err->getLine(),
|
|
'message' => $err->getMessage()
|
|
), true, false);
|
|
}
|
|
return $events;
|
|
}
|
|
|
|
/**
|
|
* Does a REPORT request
|
|
*
|
|
* @param string $url
|
|
* @param array $properties List of requested properties must be specified as an array, in clark
|
|
* notation.
|
|
* @param array $event_urls If specified, a multiget report request will be initiated with the
|
|
* specified event urls.
|
|
* @param int $depth = 1 Depth should be either 0 or 1. A depth of 1 will cause a request to be
|
|
* made to the server to also return all child resources.
|
|
* @return array Hash with ics event path as key and a hash array with properties and appropriate values.
|
|
*/
|
|
public function prop_report($url, array $properties, array $event_urls = array(), $depth = 1)
|
|
{
|
|
$parent_tag = sizeof($event_urls) > 0 ? "c:calendar-multiget" : "d:propfind";
|
|
$method = sizeof($event_urls) > 0 ? 'REPORT' : 'PROPFIND';
|
|
|
|
$body = '<?xml version="1.0"?>'."\n".'<'.$parent_tag.' xmlns:d="DAV:" xmlns:c="urn:ietf:params:xml:ns:caldav">'."\n";
|
|
|
|
$body .= ' <d:prop>'."\n";
|
|
foreach ($properties as $property)
|
|
{
|
|
|
|
list($namespace, $elementName) = OldSabre\DAV\XMLUtil::parseClarkNotation($property);
|
|
|
|
if ($namespace === 'DAV:')
|
|
{
|
|
$body .= ' <d:'.$elementName.' />'."\n";
|
|
}
|
|
else
|
|
{
|
|
$body .= ' <x:'.$elementName.' xmlns:x="'.$namespace.'"/>'."\n";
|
|
}
|
|
}
|
|
$body .= ' </d:prop>'."\n";
|
|
|
|
// http://tools.ietf.org/html/rfc4791#page-90
|
|
// http://www.bedework.org/trac/bedework/wiki/Bedework/DevDocs/Filters
|
|
/*
|
|
if($start && $end)
|
|
{
|
|
$body.= ' <c:filter>'."\n".
|
|
' <c:comp-filter name="VCALENDAR">'."\n".
|
|
' <c:comp-filter name="VEVENT">'."\n".
|
|
' <c:time-range start="'.$start.'" end="'.$end.'" />'."\n".
|
|
' </c:comp-filter>'."\n".
|
|
' </c:comp-filter>'."\n".
|
|
' </c:filter>' . "\n";
|
|
}
|
|
*/
|
|
|
|
foreach ($event_urls as $event_url)
|
|
{
|
|
$body .= '<d:href>'.$event_url.'</d:href>'."\n";
|
|
}
|
|
|
|
$body .= '</'.$parent_tag.'>';
|
|
|
|
$response = $this->request($method, $url, $body, array(
|
|
'Depth' => $depth,
|
|
'Content-Type' => 'application/xml'
|
|
));
|
|
|
|
$result = $this->parseMultiStatus($response['body']);
|
|
|
|
// If depth was 0, we only return the top item
|
|
if ($depth === 0)
|
|
{
|
|
reset($result);
|
|
$result = current($result);
|
|
return isset($result[200]) ? $result[200] : array();
|
|
}
|
|
|
|
$new_result = array();
|
|
foreach ($result as $href => $status_list)
|
|
{
|
|
$new_result[$href] = isset($status_list[200]) ? $status_list[200] : array();
|
|
}
|
|
|
|
return $new_result;
|
|
}
|
|
|
|
/**
|
|
* Updates or creates a calendar event.
|
|
*
|
|
* @see http://code.google.com/p/sabredav/wiki/BuildingACalDAVClient#Updating_a_calendar_object
|
|
* @param string Event ics path for the event.
|
|
* @param array Hash array with event properties.
|
|
* @param string Current event etag to match against server data. Pass null for new events.
|
|
* @return True on success, -1 if precondition failed i.e. local etag is not up to date, false on error.
|
|
*/
|
|
public function put_event($path, $event, $etag = null)
|
|
{
|
|
try
|
|
{
|
|
$headers = array("Content-Type" => "text/calendar; charset=utf-8");
|
|
if ($etag) $headers["If-Match"] = '"'.$etag.'"';
|
|
|
|
// Temporarily disable error reporting since libvcal seems not checking array key properly.
|
|
// TODO: Remove this todo if we could ensure that those errors come not from incomplete event properties.
|
|
$err_rep = error_reporting(E_ERROR);
|
|
$vcal = $this->libvcal->export(array($event));
|
|
if (is_array($vcal))
|
|
$vcal = array_shift($vcal);
|
|
error_reporting($err_rep);
|
|
|
|
$response = $this->request('PUT', $path, $vcal, $headers);
|
|
|
|
// Following http://code.google.com/p/sabredav/wiki/BuildingACalDAVClient#Creating_a_calendar_object, the
|
|
// caldav server must not always return the new etag.
|
|
|
|
return $response["statusCode"] == 201 || // 201 (created, successfully created)
|
|
$response["statusCode"] == 204; // 204 (no content, successfully updated)
|
|
}
|
|
catch(OldSabre\DAV\Exception\PreconditionFailed $err)
|
|
{
|
|
// Event tag not up to date, must be updated first ...
|
|
return -1;
|
|
}
|
|
catch(OldSabre\DAV\Exception $err)
|
|
{
|
|
rcube::raise_error(array(
|
|
'code' => $err->getHTTPCode(),
|
|
'type' => 'DAV',
|
|
'file' => $err->getFile(),
|
|
'line' => $err->getLine(),
|
|
'message' => $err->getMessage()
|
|
), true, false);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Removes event of given URL.
|
|
*
|
|
* @see http://code.google.com/p/sabredav/wiki/BuildingACalDAVClient#Deleting_a_calendar_object
|
|
* @param string Event ics path for the event.
|
|
* @param string Current event etag to match against server data. Pass null to force removing the event.
|
|
* @return True on success, -1 if precondition failed i.e. local etag is not up to date, false on error.
|
|
**/
|
|
public function remove_event($path, $etag = null)
|
|
{
|
|
try
|
|
{
|
|
$headers = array("Content-Type" => "text/calendar; charset=utf-8");
|
|
if ($etag) $headers["If-Match"] = '"'.$etag.'"';
|
|
|
|
$response = $this->request('DELETE', $path, null, $headers);
|
|
return $response["statusCode"] == 204 || // 204 (no content, successfully deleted)
|
|
$response["statusCode"] == 200; // 200 (OK, successfully deleted)
|
|
}
|
|
catch(OldSabre\DAV\Exception\PreconditionFailed $err)
|
|
{
|
|
// Event tag not up to date, must be updated first ...
|
|
return -1;
|
|
}
|
|
catch(OldSabre\DAV\Exception $err)
|
|
{
|
|
rcube::raise_error(array(
|
|
'code' => $err->getHTTPCode(),
|
|
'type' => 'DAV',
|
|
'file' => $err->getFile(),
|
|
'line' => $err->getLine(),
|
|
'message' => $err->getMessage()
|
|
), true, false);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Make a propFind query to caldav server
|
|
* @param string $path absolute or relative URL to Resource
|
|
* @param array $props list of properties to use for the query. Properties must have clark-notation.
|
|
* @param int $depth 0 means no recurse while 1 means recurse
|
|
* @return array
|
|
*/
|
|
public function prop_find($path, $props, $depth)
|
|
{
|
|
try {
|
|
$response = $this->propFind($path, $props, $depth);
|
|
}
|
|
catch(OldSabre\DAV\Exception $err)
|
|
{
|
|
rcube::raise_error(array(
|
|
'code' => $err->getHTTPCode(),
|
|
'type' => 'DAV',
|
|
'file' => $err->getFile(),
|
|
'line' => $err->getLine(),
|
|
'message' => $err->getMessage()
|
|
), true, false);
|
|
}
|
|
return $response;
|
|
}
|
|
};
|
|
?>
|