2008-05-08 22:31:32 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2009-10-17 11:13:36 +02:00
|
|
|
* EGroupware: GroupDAV access: abstract baseclass for groupdav/caldav/carddav handlers
|
2008-05-08 22:31:32 +02:00
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package api
|
|
|
|
* @subpackage groupdav
|
|
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
2011-04-05 22:39:13 +02:00
|
|
|
* @copyright (c) 2007-11 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
2008-05-08 22:31:32 +02:00
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2009-10-17 11:13:36 +02:00
|
|
|
* EGroupware: GroupDAV access: abstract baseclass for groupdav/caldav/carddav handlers
|
2008-05-08 22:31:32 +02:00
|
|
|
*/
|
|
|
|
abstract class groupdav_handler
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Debug level: 0 = nothing, 1 = function calls, 2 = more info, eg. complete $_SERVER array
|
|
|
|
*
|
|
|
|
* The debug messages are send to the apache error_log
|
|
|
|
*
|
|
|
|
* @var integer
|
|
|
|
*/
|
2011-04-10 17:05:47 +02:00
|
|
|
var $debug = 0;
|
2008-05-08 22:31:32 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* eGW's charset
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
var $egw_charset;
|
2010-03-07 00:06:43 +01:00
|
|
|
/**
|
|
|
|
* Reference to the accounts class
|
|
|
|
*
|
|
|
|
* @var accounts
|
|
|
|
*/
|
|
|
|
var $accounts;
|
2011-09-21 22:08:21 +02:00
|
|
|
/**
|
|
|
|
* Reference to the ACL class
|
|
|
|
*
|
|
|
|
* @var acl
|
|
|
|
*/
|
|
|
|
var $acl;
|
2008-05-08 22:31:32 +02:00
|
|
|
/**
|
|
|
|
* Translates method names into ACL bits
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
var $method2acl = array(
|
|
|
|
'GET' => EGW_ACL_READ,
|
|
|
|
'PUT' => EGW_ACL_EDIT,
|
|
|
|
'DELETE' => EGW_ACL_DELETE,
|
|
|
|
);
|
|
|
|
/**
|
|
|
|
* eGW application responsible for the handler
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
var $app;
|
2008-05-17 14:54:26 +02:00
|
|
|
/**
|
2011-09-18 12:56:56 +02:00
|
|
|
* Calling groupdav object
|
2008-05-17 14:54:26 +02:00
|
|
|
*
|
2011-09-18 12:56:56 +02:00
|
|
|
* @var groupdav
|
2008-05-17 14:54:26 +02:00
|
|
|
*/
|
2011-09-18 12:56:56 +02:00
|
|
|
var $groupdav;
|
2010-03-07 00:06:43 +01:00
|
|
|
/**
|
2011-09-18 12:56:56 +02:00
|
|
|
* Base url of handler, need to prefix all pathes not automatic handled by HTTP_WebDAV_Server
|
2010-03-07 00:06:43 +01:00
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2011-09-18 12:56:56 +02:00
|
|
|
var $base_uri;
|
2008-05-08 22:31:32 +02:00
|
|
|
/**
|
|
|
|
* HTTP_IF_MATCH / etag of current request / last call to _common_get_put_delete() method
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
var $http_if_match;
|
2008-11-03 10:36:20 +01:00
|
|
|
/**
|
|
|
|
* Identified user agent
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
var $agent;
|
2008-05-08 22:31:32 +02:00
|
|
|
|
2011-04-05 22:39:13 +02:00
|
|
|
/**
|
|
|
|
* Extension to append to url/path
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
static $path_extension = '.ics';
|
|
|
|
|
2011-09-21 22:08:21 +02:00
|
|
|
/**
|
|
|
|
* Which attribute to use to contruct name part of url/path
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
static $path_attr = 'id';
|
|
|
|
|
2008-05-10 22:15:02 +02:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
2008-05-17 14:54:26 +02:00
|
|
|
* @param string $app 'calendar', 'addressbook' or 'infolog'
|
2011-09-18 12:56:56 +02:00
|
|
|
* @param groupdav $groupdav calling class
|
2008-05-10 22:15:02 +02:00
|
|
|
*/
|
2011-09-18 12:56:56 +02:00
|
|
|
function __construct($app, groupdav $groupdav)
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
|
|
|
$this->app = $app;
|
2011-09-18 12:56:56 +02:00
|
|
|
if (!is_null($parent->debug)) $this->debug = $groupdav->debug;
|
|
|
|
$this->base_uri = $groupdav->base_uri;
|
|
|
|
$this->groupdav = $groupdav;
|
2010-03-07 00:06:43 +01:00
|
|
|
|
2008-11-03 10:36:20 +01:00
|
|
|
$this->agent = self::get_agent();
|
2009-10-17 11:13:36 +02:00
|
|
|
|
2010-09-25 11:08:37 +02:00
|
|
|
$this->egw_charset = translation::charset();
|
2011-09-21 22:08:21 +02:00
|
|
|
|
|
|
|
$this->accounts = $GLOBALS['egw']->accounts;
|
|
|
|
$this->acl = $GLOBALS['egw']->acl;
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle propfind request for an application folder
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @param array $options
|
|
|
|
* @param array &$files
|
|
|
|
* @param int $user account_id
|
|
|
|
* @return mixed boolean true on success, false on failure or string with http status (eg. '404 Not Found')
|
|
|
|
*/
|
|
|
|
abstract function propfind($path,$options,&$files,$user);
|
|
|
|
|
2009-10-17 11:13:36 +02:00
|
|
|
/**
|
|
|
|
* Propfind callback, if interator is used
|
|
|
|
*
|
2010-03-07 00:06:43 +01:00
|
|
|
* @param string $path
|
2009-10-17 11:13:36 +02:00
|
|
|
* @param array $filter
|
|
|
|
* @param array|boolean $start false=return all or array(start,num)
|
|
|
|
* @param int &$total
|
|
|
|
* @return array with "files" array with values for keys path and props
|
|
|
|
*/
|
2010-03-07 00:06:43 +01:00
|
|
|
function &propfind_callback($path, array $filter,$start,&$total) { }
|
2009-10-17 11:13:36 +02:00
|
|
|
|
2008-05-08 22:31:32 +02:00
|
|
|
/**
|
|
|
|
* Handle get request for an applications entry
|
|
|
|
*
|
|
|
|
* @param array &$options
|
|
|
|
* @param int $id
|
2011-03-05 11:21:32 +01:00
|
|
|
* @param int $user=null account_id
|
2008-05-08 22:31:32 +02:00
|
|
|
* @return mixed boolean true on success, false on failure or string with http status (eg. '404 Not Found')
|
|
|
|
*/
|
2011-03-05 11:21:32 +01:00
|
|
|
abstract function get(&$options,$id,$user=null);
|
2008-05-08 22:31:32 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle get request for an applications entry
|
|
|
|
*
|
|
|
|
* @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')
|
|
|
|
*/
|
|
|
|
abstract function put(&$options,$id,$user=null);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle get request for an applications entry
|
|
|
|
*
|
|
|
|
* @param array &$options
|
|
|
|
* @param int $id
|
|
|
|
* @return mixed boolean true on success, false on failure or string with http status (eg. '404 Not Found')
|
|
|
|
*/
|
|
|
|
abstract function delete(&$options,$id);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read an entry
|
|
|
|
*
|
|
|
|
* @param string/int $id
|
|
|
|
* @return array/boolean array with entry, false if no read rights, null if $id does not exist
|
|
|
|
*/
|
|
|
|
abstract function read($id);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if user has the neccessary rights on an entry
|
|
|
|
*
|
|
|
|
* @param int $acl EGW_ACL_READ, EGW_ACL_EDIT or EGW_ACL_DELETE
|
|
|
|
* @param array/int $entry entry-array or id
|
|
|
|
* @return boolean null if entry does not exist, false if no access, true if access permitted
|
|
|
|
*/
|
|
|
|
abstract function check_access($acl,$entry);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add extra properties for collections
|
|
|
|
*
|
|
|
|
* @param array $props=array() regular props by the groupdav handler
|
2010-03-07 00:06:43 +01:00
|
|
|
* @param string $displayname
|
|
|
|
* @param string $base_uri=null base url of handler
|
2011-10-20 15:35:01 +02:00
|
|
|
* @param int $user=null account_id of owner of collection
|
2008-05-08 22:31:32 +02:00
|
|
|
* @return array
|
|
|
|
*/
|
2011-10-20 15:35:01 +02:00
|
|
|
public function extra_properties(array $props=array(), $displayname, $base_uri=null, $user=null)
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
|
|
|
return $props;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the etag for an entry, can be reimplemented for other algorithm or field names
|
|
|
|
*
|
|
|
|
* @param array/int $event array with event or cal_id
|
|
|
|
* @return string/boolean string with etag or false
|
|
|
|
*/
|
|
|
|
function get_etag($entry)
|
|
|
|
{
|
|
|
|
if (!is_array($entry))
|
|
|
|
{
|
|
|
|
$entry = $this->read($entry);
|
|
|
|
}
|
|
|
|
if (!is_array($entry) || !isset($entry['id']) || !(isset($entry['modified']) || isset($entry['etag'])))
|
|
|
|
{
|
2009-04-02 14:39:52 +02:00
|
|
|
// error_log(__METHOD__."(".array2string($entry).") Cant create etag!");
|
2008-05-08 22:31:32 +02:00
|
|
|
return false;
|
|
|
|
}
|
2011-10-08 13:34:55 +02:00
|
|
|
return $entry['id'].':'.(isset($entry['etag']) ? $entry['etag'] : $entry['modified']);
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert etag to the raw etag column value (without quotes, double colon and id)
|
|
|
|
*
|
|
|
|
* @param string $etag
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
static function etag2value($etag)
|
|
|
|
{
|
2011-11-08 22:02:47 +01:00
|
|
|
list(,$val) = explode(':',$etag,2);
|
2008-05-08 22:31:32 +02:00
|
|
|
|
|
|
|
return $val;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle common stuff for get, put and delete requests:
|
|
|
|
* - application rights
|
|
|
|
* - entry level acl, incl. edit and delete rights
|
|
|
|
* - etag handling for precondition failed and not modified
|
|
|
|
*
|
|
|
|
* @param string $method GET, PUT, DELETE
|
|
|
|
* @param array &$options
|
2011-04-05 22:39:13 +02:00
|
|
|
* @param int|string &$id on return self::$path_extension got removed
|
2008-05-17 14:54:26 +02:00
|
|
|
* @param boolean &$return_no_access=false if set to true on call, instead of '403 Forbidden' the entry is returned and $return_no_access===false
|
2011-10-20 22:10:04 +02:00
|
|
|
* @param boolean $ignore_if_match=false if true, ignore If-Match precondition
|
2010-03-07 00:06:43 +01:00
|
|
|
* @return array|string entry on success, string with http-error-code on failure, null for PUT on an unknown id
|
2008-05-08 22:31:32 +02:00
|
|
|
*/
|
2011-10-20 22:10:04 +02:00
|
|
|
function _common_get_put_delete($method,&$options,&$id,&$return_no_access=false,$ignore_if_match=false)
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2011-04-05 22:39:13 +02:00
|
|
|
if (self::$path_extension) $id = basename($id,self::$path_extension);
|
|
|
|
|
2010-10-20 01:30:16 +02:00
|
|
|
if ($this->app != 'principals' && !$GLOBALS['egw_info']['user']['apps'][$this->app])
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2008-05-10 22:15:02 +02:00
|
|
|
if ($this->debug) error_log(__METHOD__."($method,,$id) 403 Forbidden: no app rights for '$this->app'");
|
|
|
|
return '403 Forbidden'; // no app rights
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
$extra_acl = $this->method2acl[$method];
|
2008-05-20 06:59:26 +02:00
|
|
|
if (!($entry = $this->read($id)) && ($method != 'PUT' || $entry === false) ||
|
2008-05-08 22:31:32 +02:00
|
|
|
($extra_acl != EGW_ACL_READ && $this->check_access($extra_acl,$entry) === false))
|
|
|
|
{
|
2008-05-17 14:54:26 +02:00
|
|
|
if ($return_no_access && !is_null($entry))
|
|
|
|
{
|
2010-10-31 08:56:29 +01:00
|
|
|
if ($this->debug) error_log(__METHOD__."($method,,$id,$return_no_access) \$entry=".array2string($entry).", \$return_no_access set to false");
|
2008-05-17 14:54:26 +02:00
|
|
|
$return_no_access = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ($this->debug) error_log(__METHOD__."($method,,$id) 403 Forbidden/404 Not Found: read($id)==".($entry===false?'false':'null'));
|
|
|
|
return !is_null($entry) ? '403 Forbidden' : '404 Not Found';
|
|
|
|
}
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
if ($entry)
|
|
|
|
{
|
|
|
|
$etag = $this->get_etag($entry);
|
|
|
|
// If the clients sends an "If-Match" header ($_SERVER['HTTP_IF_MATCH']) we check with the current etag
|
|
|
|
// of the calendar --> on failure we return 412 Precondition failed, to not overwrite the modifications
|
2011-10-20 22:10:04 +02:00
|
|
|
if (isset($_SERVER['HTTP_IF_MATCH']) && !$ignore_if_match)
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2011-10-05 10:15:24 +02:00
|
|
|
$this->http_if_match = $_SERVER['HTTP_IF_MATCH'];
|
|
|
|
// strip of quotes around etag, if they exist, that way we allow etag with and without quotes
|
|
|
|
if ($this->http_if_match[0] == '"') $this->http_if_match = substr($this->http_if_match, 1, -1);
|
|
|
|
|
|
|
|
if ($this->http_if_match !== $etag)
|
2010-06-14 09:38:41 +02:00
|
|
|
{
|
|
|
|
if ($this->debug) error_log(__METHOD__."($method,,$id) HTTP_IF_MATCH='$_SERVER[HTTP_IF_MATCH]', etag='$etag': 412 Precondition failed");
|
|
|
|
return '412 Precondition Failed';
|
|
|
|
}
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
2010-06-14 09:38:41 +02:00
|
|
|
if (isset($_SERVER['HTTP_IF_NONE_MATCH']))
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2011-10-08 20:27:02 +02:00
|
|
|
$if_none_match = $_SERVER['HTTP_IF_NONE_MATCH'];
|
|
|
|
// strip of quotes around etag, if they exist, that way we allow etag with and without quotes
|
|
|
|
if ($if_none_match[0] == '"') $if_none_match = substr($if_none_match, 1, -1);
|
|
|
|
|
|
|
|
// if an IF_NONE_MATCH is given, check if we need to send a new export, or the current one is still up-to-date
|
|
|
|
if (in_array($method, array('GET','HEAD')) && $etag === $if_none_match)
|
|
|
|
{
|
|
|
|
if ($this->debug) error_log(__METHOD__."($method,,$id) HTTP_IF_NONE_MATCH='$_SERVER[HTTP_IF_NONE_MATCH]', etag='$etag': 304 Not Modified");
|
|
|
|
return '304 Not Modified';
|
|
|
|
}
|
|
|
|
if ($method == 'PUT' && ($if_none_match == '*' || $if_none_match == $etag))
|
|
|
|
{
|
|
|
|
if ($this->debug) error_log(__METHOD__."($method,,$id) HTTP_IF_NONE_MATCH='$_SERVER[HTTP_IF_NONE_MATCH]', etag='$etag': 412 Precondition failed");
|
|
|
|
return '412 Precondition Failed';
|
|
|
|
}
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the handler for the given app
|
|
|
|
*
|
|
|
|
* @static
|
|
|
|
* @param string $app 'calendar', 'addressbook' or 'infolog'
|
2011-09-18 12:56:56 +02:00
|
|
|
* @param groupdav $groupdav calling class
|
2008-05-08 22:31:32 +02:00
|
|
|
* @return groupdav_handler
|
|
|
|
*/
|
2011-09-18 12:56:56 +02:00
|
|
|
static function app_handler($app, $groupdav)
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
|
|
|
static $handler_cache = array();
|
|
|
|
|
|
|
|
if (!array_key_exists($app,$handler_cache))
|
|
|
|
{
|
|
|
|
$class = $app.'_groupdav';
|
2008-05-10 22:15:02 +02:00
|
|
|
if (!class_exists($class) && !class_exists($class = 'groupdav_'.$app)) return null;
|
2008-05-08 22:31:32 +02:00
|
|
|
|
2011-09-18 12:56:56 +02:00
|
|
|
$handler_cache[$app] = new $class($app, $groupdav);
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
2010-03-07 00:06:43 +01:00
|
|
|
|
2011-09-18 12:56:56 +02:00
|
|
|
if ($debug) error_log(__METHOD__."('$app')");
|
2010-03-07 00:06:43 +01:00
|
|
|
|
2008-05-08 22:31:32 +02:00
|
|
|
return $handler_cache[$app];
|
|
|
|
}
|
2008-11-03 10:36:20 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Identify know GroupDAV agents by HTTP_USER_AGENT header
|
|
|
|
*
|
|
|
|
* @return string|boolean agent name or false
|
|
|
|
*/
|
|
|
|
static function get_agent()
|
|
|
|
{
|
|
|
|
static $agent;
|
|
|
|
|
|
|
|
if (is_null($agent))
|
|
|
|
{
|
|
|
|
$agent = false;
|
|
|
|
// identify the agent (GroupDAV client) from the HTTP_USER_AGENT header
|
|
|
|
$user_agent = strtolower($_SERVER['HTTP_USER_AGENT']);
|
|
|
|
foreach(array(
|
2010-09-25 11:08:37 +02:00
|
|
|
'iphone' => 'iphone', // Apple iPhone iCal
|
2011-08-02 14:59:23 +02:00
|
|
|
'davkit' => 'davkit', // Apple iCal 10.6
|
|
|
|
'coredav' => 'coredav', // Apple iCal 10.7
|
2011-11-08 22:02:47 +01:00
|
|
|
'calendarstore' => 'calendarstore', // Apple iCal 5.0.1 under OS X 10.7.2
|
2010-09-25 11:08:37 +02:00
|
|
|
'dataaccess' => 'dataaccess', // Apple addressbook iPhone
|
2011-08-02 14:59:23 +02:00
|
|
|
'cfnetwork' => 'cfnetwork', // Apple Addressbook 10.6/7
|
2008-11-03 10:36:20 +01:00
|
|
|
'bionicmessage.net' => 'funambol', // funambol GroupDAV connector from bionicmessage.net
|
|
|
|
'zideone' => 'zideone', // zideone outlook plugin
|
|
|
|
'lightning' => 'lightning', // Lighting (SOGo connector for addressbook)
|
2010-10-31 08:56:29 +01:00
|
|
|
'webkit' => 'webkit', // Webkit Browser (also reports KHTML!)
|
2011-09-26 12:20:27 +02:00
|
|
|
'akonadi' => 'akonadi', // new KDE PIM framework (also reports KHTML!)
|
2008-11-03 10:36:20 +01:00
|
|
|
'khtml' => 'kde', // KDE clients
|
2010-10-31 08:56:29 +01:00
|
|
|
'neon' => 'neon',
|
|
|
|
'ical4ol' => 'ical4ol', // iCal4OL client
|
2011-03-07 15:00:37 +01:00
|
|
|
'evolution' => 'evolution', // Evolution
|
2008-11-03 10:36:20 +01:00
|
|
|
) as $pattern => $name)
|
|
|
|
{
|
|
|
|
if (strpos($user_agent,$pattern) !== false)
|
|
|
|
{
|
|
|
|
$agent = $name;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!$agent)
|
|
|
|
{
|
2010-07-08 11:41:06 +02:00
|
|
|
//error_log("Unrecogniced GroupDAV client: HTTP_USER_AGENT='$_SERVER[HTTP_USER_AGENT]'!");
|
2008-11-03 10:36:20 +01:00
|
|
|
}
|
2010-04-21 19:44:36 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
switch ($agent)
|
|
|
|
{
|
|
|
|
case 'cfnetwork':
|
|
|
|
if (preg_match('/address%20book\/([0-9.]+)/', $user_agent, $matches))
|
|
|
|
{
|
|
|
|
if ((int)$matches[1] < 868) $agent .= '_old';
|
|
|
|
}
|
2010-10-31 08:56:29 +01:00
|
|
|
break;
|
2011-09-26 12:20:27 +02:00
|
|
|
case 'kde':
|
|
|
|
// Akonadi (new KDE Pim framework) unfortunately has same user-agent as old kde
|
|
|
|
// we can only assume KDE 4.7+ uses Akonadi native resource, while below this was not available
|
|
|
|
// Unfortunately the old pre-Akonadi GroupDAV resource can still be used, but we have no way of detecting it
|
|
|
|
if (preg_match('/KHTML\/([0-9.]+)/', $_SERVER['HTTP_USER_AGENT'], $matches) && (float)$matches[1] >= 4.7)
|
|
|
|
{
|
|
|
|
$agent = 'akonadi';
|
|
|
|
}
|
|
|
|
break;
|
2010-04-21 19:44:36 +02:00
|
|
|
}
|
|
|
|
}
|
2008-11-03 10:36:20 +01:00
|
|
|
}
|
2010-10-31 08:56:29 +01:00
|
|
|
|
2010-08-15 08:42:05 +02:00
|
|
|
if ($debug) error_log(__METHOD__."GroupDAV client: $agent");
|
2010-10-31 08:56:29 +01:00
|
|
|
|
2008-11-03 10:36:20 +01:00
|
|
|
return $agent;
|
|
|
|
}
|
2011-09-21 22:08:21 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return priviledges for current user, default is read and read-current-user-privilege-set
|
|
|
|
*
|
|
|
|
* Priviledges are for the collection, not the resources / entries!
|
|
|
|
*
|
2011-09-22 20:46:16 +02:00
|
|
|
* @param string $path path of collection
|
2011-09-21 22:08:21 +02:00
|
|
|
* @param int $user=null owner of the collection, default current user
|
|
|
|
* @return array with privileges
|
|
|
|
*/
|
2011-09-22 20:46:16 +02:00
|
|
|
public function current_user_privileges($path, $user=null)
|
2011-09-21 22:08:21 +02:00
|
|
|
{
|
|
|
|
static $grants;
|
|
|
|
if (is_null($grants))
|
|
|
|
{
|
|
|
|
$grants = $this->acl->get_grants($this->app, $this->app != 'addressbook');
|
|
|
|
}
|
2011-09-22 20:46:16 +02:00
|
|
|
$priviledes = array('read-current-user-privilege-set' => 'read-current-user-privilege-set');
|
2011-09-21 22:08:21 +02:00
|
|
|
|
|
|
|
if (!$user || $grants[$user] & EGW_ACL_READ)
|
|
|
|
{
|
2011-09-22 20:46:16 +02:00
|
|
|
$priviledes['read'] = 'read';
|
2011-09-21 22:08:21 +02:00
|
|
|
}
|
|
|
|
if (!$user || $grants[$user] & EGW_ACL_ADD)
|
|
|
|
{
|
2011-09-22 20:46:16 +02:00
|
|
|
$priviledes['bind'] = 'bind'; // PUT for new resources
|
2011-09-21 22:08:21 +02:00
|
|
|
}
|
|
|
|
if (!$user || $grants[$user] & EGW_ACL_EDIT)
|
2011-09-22 17:22:52 +02:00
|
|
|
{
|
2011-09-22 20:46:16 +02:00
|
|
|
$priviledes['write-content'] = 'write-content'; // otherwise iOS calendar does not allow to add events
|
2011-09-22 17:22:52 +02:00
|
|
|
}
|
|
|
|
if (!$user || $grants[$user] & EGW_ACL_DELETE)
|
2011-09-21 22:08:21 +02:00
|
|
|
{
|
2011-09-22 20:46:16 +02:00
|
|
|
$priviledes['unbind'] = 'unbind'; // DELETE
|
2011-09-21 22:08:21 +02:00
|
|
|
}
|
|
|
|
// copy/move of existing resources might require write-properties, thought we do not support an explicit PROPATCH
|
|
|
|
return $priviledes;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create the path/name for an entry
|
|
|
|
*
|
|
|
|
* @param array $entry
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function get_path($entry)
|
|
|
|
{
|
|
|
|
return $entry[self::$path_attr].self::$path_extension;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a resource
|
|
|
|
*
|
|
|
|
* @param string $path path of collection, NOT entry!
|
|
|
|
* @param array $entry
|
|
|
|
* @param array $props
|
|
|
|
* @return array with values for keys 'path' and 'props'
|
|
|
|
*/
|
|
|
|
public function add_resource($path, array $entry, array $props)
|
|
|
|
{
|
|
|
|
foreach(array(
|
|
|
|
'getetag' => $this->get_etag($entry),
|
|
|
|
'getcontenttype' => 'text/calendar',
|
|
|
|
'getlastmodified' => $entry['modified'],
|
|
|
|
'displayname' => $entry['title'],
|
|
|
|
) as $name => $value)
|
|
|
|
{
|
|
|
|
if (!isset($props[$name]))
|
|
|
|
{
|
|
|
|
$props[$name] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// if requested add privileges
|
|
|
|
$privileges = array('read', 'read-current-user-privilege-set');
|
|
|
|
if ($this->groupdav->prop_requested('current-user-privilege-set') === true && !isset($props['current-user-privilege-set']))
|
|
|
|
{
|
|
|
|
if ($this->check_access(EGW_ACL_EDIT, $entry))
|
|
|
|
{
|
|
|
|
$privileges[] = 'write-content';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($this->groupdav->prop_requested('owner') === true && !isset($props['owner']) &&
|
|
|
|
($account_lid = $this->accounts->name2id($entry['owner'])))
|
|
|
|
{
|
|
|
|
$type = $this->accounts->get_type($entry['owner']) == 'u' ? 'users' : 'groups';
|
|
|
|
$props['owner'] = HTTP_WebDAV_Server::mkprop('href', $this->base_uri.'/principals/'.$type.'/'.$account_lid.'/');
|
|
|
|
}
|
2011-10-06 09:51:24 +02:00
|
|
|
// we urldecode here, as HTTP_WebDAV_Server uses a minimal (#?%) urlencoding for incomming pathes and urlencodes pathes in propfind
|
|
|
|
return $this->groupdav->add_resource($path.urldecode($this->get_path($entry)), $props, $privileges);
|
2011-09-21 22:08:21 +02:00
|
|
|
}
|
2009-04-02 14:39:52 +02:00
|
|
|
}
|
|
|
|
|
2009-10-17 11:13:36 +02:00
|
|
|
/**
|
|
|
|
* Iterator for propfinds using propfind callback of a groupdav_handler to query results in chunks
|
|
|
|
*
|
|
|
|
* The propfind method just computes a filter and then returns an instance of this iterator instead of the files:
|
|
|
|
*
|
|
|
|
* function propfind($path,$options,&$files,$user,$id='')
|
|
|
|
* {
|
|
|
|
* $filter = array();
|
|
|
|
* // compute filter from path, options, ...
|
|
|
|
*
|
|
|
|
* $files['files'] = new groupdav_propfind_iterator($this,$filter,$files['files']);
|
|
|
|
*
|
|
|
|
* return true;
|
|
|
|
* }
|
|
|
|
*/
|
|
|
|
class groupdav_propfind_iterator implements Iterator
|
|
|
|
{
|
2010-03-07 00:06:43 +01:00
|
|
|
/**
|
|
|
|
* current path
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $path;
|
|
|
|
|
2009-10-17 11:13:36 +02:00
|
|
|
/**
|
|
|
|
* Handler to call for entries
|
|
|
|
*
|
|
|
|
* @var groupdav_handler
|
|
|
|
*/
|
|
|
|
protected $handler;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Filter of propfind call
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $filter;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Extra responses to return too
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2010-03-07 00:06:43 +01:00
|
|
|
protected $common_files;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* current chunk
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2009-10-17 11:13:36 +02:00
|
|
|
protected $files;
|
|
|
|
|
2010-03-07 00:06:43 +01:00
|
|
|
|
2009-10-17 11:13:36 +02:00
|
|
|
/**
|
|
|
|
* Start value for callback
|
|
|
|
*
|
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
protected $start=0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Number of entries queried from callback in one call
|
|
|
|
*
|
|
|
|
*/
|
2009-10-19 09:47:06 +02:00
|
|
|
const CHUNK_SIZE = 500;
|
2009-10-17 11:13:36 +02:00
|
|
|
|
2010-03-03 09:17:20 +01:00
|
|
|
/**
|
|
|
|
* Log calls via error_log()
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
*/
|
|
|
|
public $debug = false;
|
|
|
|
|
2010-03-07 00:06:43 +01:00
|
|
|
/**
|
|
|
|
|
2009-10-17 11:13:36 +02:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param groupdav_handler $handler
|
|
|
|
* @param array $filter filter for propfind call
|
2011-04-05 17:32:20 +02:00
|
|
|
* @param array $files=array() extra files/responses to return too
|
2009-10-17 11:13:36 +02:00
|
|
|
*/
|
2011-04-05 17:32:20 +02:00
|
|
|
public function __construct(groupdav_handler $handler, $path, array $filter,array &$files=array())
|
2009-10-17 11:13:36 +02:00
|
|
|
{
|
2010-03-07 00:06:43 +01:00
|
|
|
if ($this->debug) error_log(__METHOD__."('$path', ".array2string($filter).",)");
|
|
|
|
$this->path = $path;
|
2009-10-17 11:13:36 +02:00
|
|
|
$this->handler = $handler;
|
|
|
|
$this->filter = $filter;
|
2011-04-05 17:32:20 +02:00
|
|
|
$this->files = $this->common_files = $files;
|
2009-10-17 11:13:36 +02:00
|
|
|
reset($this->files);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the current element
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function current()
|
|
|
|
{
|
2010-03-03 09:17:20 +01:00
|
|
|
if ($this->debug) error_log(__METHOD__."() returning ".array2string(current($this->files)));
|
2009-10-17 11:13:36 +02:00
|
|
|
return current($this->files);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the key of the current element
|
|
|
|
*
|
|
|
|
* @return int|string
|
|
|
|
*/
|
|
|
|
public function key()
|
|
|
|
{
|
2010-03-07 00:06:43 +01:00
|
|
|
$current = current($this->files);
|
2009-10-17 11:13:36 +02:00
|
|
|
|
2010-03-03 09:17:20 +01:00
|
|
|
if ($this->debug) error_log(__METHOD__."() returning ".array2string($current['path']));
|
2009-10-17 11:13:36 +02:00
|
|
|
return $current['path']; // we return path as key
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Move forward to next element (called after each foreach loop)
|
|
|
|
*/
|
|
|
|
public function next()
|
|
|
|
{
|
|
|
|
if (next($this->files) !== false)
|
|
|
|
{
|
2010-03-03 09:17:20 +01:00
|
|
|
if ($this->debug) error_log(__METHOD__."() returning TRUE");
|
2009-10-17 11:13:36 +02:00
|
|
|
return true;
|
|
|
|
}
|
2011-04-05 17:32:20 +02:00
|
|
|
// check if previous query gave less then CHUNK_SIZE entries --> we're done
|
|
|
|
if ($this->start && count($this->files) < self::CHUNK_SIZE)
|
|
|
|
{
|
|
|
|
if ($this->debug) error_log(__METHOD__."() returning FALSE (no more entries)");
|
|
|
|
return false;
|
|
|
|
}
|
2010-03-15 10:55:16 +01:00
|
|
|
// try query further files via propfind callback of handler and store result in $this->files
|
|
|
|
$this->files = $this->handler->propfind_callback($this->path,$this->filter,array($this->start,self::CHUNK_SIZE));
|
|
|
|
if (!is_array($this->files) || !($entries = count($this->files)))
|
2009-10-17 11:13:36 +02:00
|
|
|
{
|
2010-03-03 09:17:20 +01:00
|
|
|
if ($this->debug) error_log(__METHOD__."() returning FALSE (no more entries)");
|
2009-10-17 11:13:36 +02:00
|
|
|
return false; // no further entries
|
|
|
|
}
|
2011-04-05 17:32:20 +02:00
|
|
|
$this->start += self::CHUNK_SIZE;
|
2009-10-17 11:13:36 +02:00
|
|
|
reset($this->files);
|
|
|
|
|
2011-04-05 17:32:20 +02:00
|
|
|
if ($this->debug) error_log(__METHOD__."() this->start=$this->start, entries=$entries, count(this->files)=".count($this->files)." returning ".array2string(current($this->files) !== false));
|
2010-03-07 00:06:43 +01:00
|
|
|
|
2009-10-17 11:13:36 +02:00
|
|
|
return current($this->files) !== false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Rewind the Iterator to the first element (called at beginning of foreach loop)
|
|
|
|
*/
|
|
|
|
public function rewind()
|
|
|
|
{
|
2010-03-03 09:17:20 +01:00
|
|
|
if ($this->debug) error_log(__METHOD__."()");
|
2009-10-17 11:13:36 +02:00
|
|
|
|
2010-03-03 09:17:20 +01:00
|
|
|
$this->start = 0;
|
2011-04-05 17:32:20 +02:00
|
|
|
$this->files = $this->common_files;
|
2011-04-05 22:39:13 +02:00
|
|
|
if (!$this->files) $this->next(); // otherwise valid will return false and nothing get returned
|
2010-03-03 09:17:20 +01:00
|
|
|
reset($this->files);
|
2009-10-17 11:13:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if current position is valid
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function valid ()
|
|
|
|
{
|
2010-03-03 09:17:20 +01:00
|
|
|
if ($this->debug) error_log(__METHOD__."() returning ".array2string(current($this->files) !== false));
|
2009-10-17 11:13:36 +02:00
|
|
|
return current($this->files) !== false;
|
|
|
|
}
|
|
|
|
}
|