2008-05-08 22:31:32 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2009-10-17 14:22:40 +02:00
|
|
|
* EGroupware: CalDAV/CardDAV/GroupDAV access
|
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$
|
|
|
|
*/
|
|
|
|
|
|
|
|
require_once('HTTP/WebDAV/Server.php');
|
|
|
|
|
|
|
|
/**
|
2009-10-17 14:22:40 +02:00
|
|
|
* EGroupware: GroupDAV access
|
2008-05-08 22:31:32 +02:00
|
|
|
*
|
2009-10-03 12:22:14 +02:00
|
|
|
* Using a modified PEAR HTTP/WebDAV/Server class from egw-pear!
|
|
|
|
*
|
|
|
|
* One can use the following url's releative (!) to http://domain.com/egroupware/groupdav.php
|
|
|
|
*
|
|
|
|
* - /addressbook/ all addressbooks current user has rights to
|
|
|
|
* - /calendar/ calendar of current user
|
|
|
|
* - /infolog/ infologs of current user
|
|
|
|
* - / base of the above, only certain clients (KDE, Apple) can autodetect folders from there
|
|
|
|
* - /<username>/addressbook/ addressbook of user or group <username> given the user has rights to view it
|
|
|
|
* - /<username>/calendar/ calendar of user <username> given the user has rights to view it
|
|
|
|
* - /<username>/infolog/ InfoLog's of user <username> given the user has rights to view it
|
|
|
|
* - /<username>/ base of the above, only certain clients (KDE, Apple) can autodetect folders from there
|
|
|
|
*
|
|
|
|
* Calling one of the above collections with a GET request / regular browser generates an automatic index
|
|
|
|
* from the data of a allprop PROPFIND, allow to browse CalDAV/CardDAV/GroupDAV tree with a regular browser.
|
2008-05-08 22:31:32 +02:00
|
|
|
*
|
2010-10-20 16:37:48 +02:00
|
|
|
* @todo All principal urls should either contain no account_lid (eg. base64 of it) or use urlencode($account_lid)
|
2008-05-08 22:31:32 +02:00
|
|
|
* @link http://www.groupdav.org GroupDAV spec
|
|
|
|
*/
|
|
|
|
class groupdav extends HTTP_WebDAV_Server
|
|
|
|
{
|
2010-03-07 00:06:43 +01:00
|
|
|
/**
|
|
|
|
* DAV namespace
|
|
|
|
*/
|
|
|
|
const DAV = 'DAV:';
|
2008-05-08 22:31:32 +02:00
|
|
|
/**
|
|
|
|
* GroupDAV namespace
|
|
|
|
*/
|
|
|
|
const GROUPDAV = 'http://groupdav.org/';
|
|
|
|
/**
|
|
|
|
* CalDAV namespace
|
|
|
|
*/
|
|
|
|
const CALDAV = 'urn:ietf:params:xml:ns:caldav';
|
|
|
|
/**
|
|
|
|
* CardDAV namespace
|
|
|
|
*/
|
|
|
|
const CARDDAV = 'urn:ietf:params:xml:ns:carddav';
|
2010-01-06 00:25:17 +01:00
|
|
|
/**
|
|
|
|
* Calendarserver namespace (eg. for ctag)
|
|
|
|
*/
|
|
|
|
const CALENDARSERVER = 'http://calendarserver.org/ns/';
|
2010-04-13 17:31:59 +02:00
|
|
|
/**
|
|
|
|
* Apple iCal namespace (eg. for calendar color)
|
|
|
|
*/
|
2010-09-28 10:32:11 +02:00
|
|
|
const ICAL = 'http://apple.com/ns/ical/';
|
2008-05-08 22:31:32 +02:00
|
|
|
/**
|
|
|
|
* Realm and powered by string
|
|
|
|
*/
|
2010-04-13 17:31:59 +02:00
|
|
|
const REALM = 'EGroupware CalDAV/CardDAV/GroupDAV server';
|
2008-05-08 22:31:32 +02:00
|
|
|
|
|
|
|
var $dav_powered_by = self::REALM;
|
2008-05-20 06:59:26 +02:00
|
|
|
var $http_auth_realm = self::REALM;
|
2008-05-08 22:31:32 +02:00
|
|
|
|
|
|
|
var $root = array(
|
2008-08-04 21:08:09 +02:00
|
|
|
'calendar' => array(
|
|
|
|
'resourcetype' => array(self::GROUPDAV => 'vevent-collection', self::CALDAV => 'calendar'),
|
|
|
|
'component-set' => array(self::GROUPDAV => 'VEVENT'),
|
|
|
|
),
|
|
|
|
'addressbook' => array(
|
|
|
|
'resourcetype' => array(self::GROUPDAV => 'vcard-collection', self::CARDDAV => 'addressbook'),
|
|
|
|
'component-set' => array(self::GROUPDAV => 'VCARD'),
|
|
|
|
),
|
|
|
|
'infolog' => array(
|
2010-03-07 00:06:43 +01:00
|
|
|
'resourcetype' => array(self::GROUPDAV => 'vtodo-collection', self::CALDAV => 'calendar'),
|
2008-08-04 21:08:09 +02:00
|
|
|
'component-set' => array(self::GROUPDAV => 'VTODO'),
|
|
|
|
),
|
2010-10-20 20:59:27 +02:00
|
|
|
'principals' => array(
|
|
|
|
'resourcetype' => array(self::DAV => 'principal'),
|
|
|
|
)
|
2008-05-08 22:31:32 +02:00
|
|
|
);
|
|
|
|
/**
|
|
|
|
* Debug level: 0 = nothing, 1 = function calls, 2 = more info, 3 = complete $_SERVER array
|
|
|
|
*
|
2010-10-31 08:56:29 +01:00
|
|
|
* Can now be enabled on a per user basis in GroupDAV prefs, if it is set here to 0!
|
|
|
|
*
|
2008-05-08 22:31:32 +02:00
|
|
|
* The debug messages are send to the apache error_log
|
|
|
|
*
|
|
|
|
* @var integer
|
|
|
|
*/
|
2010-03-07 00:32:28 +01:00
|
|
|
var $debug = 0;
|
2008-05-08 22:31:32 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* eGW's charset
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
var $egw_charset;
|
|
|
|
/**
|
|
|
|
* Instance of our application specific handler
|
|
|
|
*
|
|
|
|
* @var groupdav_handler
|
|
|
|
*/
|
|
|
|
var $handler;
|
2010-03-07 00:06:43 +01:00
|
|
|
/**
|
|
|
|
* principal URL
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
var $principalURL;
|
|
|
|
/**
|
|
|
|
* Reference to the accounts class
|
|
|
|
*
|
|
|
|
* @var accounts
|
|
|
|
*/
|
|
|
|
var $accounts;
|
|
|
|
|
2008-05-08 22:31:32 +02:00
|
|
|
function __construct()
|
|
|
|
{
|
2010-10-31 08:56:29 +01:00
|
|
|
if (!$this->debug) $this->debug = (int)$GLOBALS['egw_info']['user']['preferences']['groupdav']['debug_level'];
|
|
|
|
|
2008-05-17 14:54:26 +02:00
|
|
|
if ($this->debug > 2) error_log('groupdav: $_SERVER='.array2string($_SERVER));
|
2008-05-08 22:31:32 +02:00
|
|
|
|
2009-09-14 10:44:37 +02:00
|
|
|
// identify clients, which do NOT support path AND full url in <D:href> of PROPFIND request
|
|
|
|
switch(groupdav_handler::get_agent())
|
|
|
|
{
|
|
|
|
case 'kde': // KAddressbook (at least in 3.5 can NOT subscribe / does NOT find addressbook)
|
|
|
|
$this->client_require_href_as_url = true;
|
|
|
|
break;
|
2010-09-25 11:08:37 +02:00
|
|
|
case 'cfnetwork': // Apple addressbook app
|
|
|
|
case 'dataaccess': // iPhone addressbook
|
|
|
|
$this->client_require_href_as_url = false;
|
|
|
|
$this->cnrnd = true;
|
|
|
|
break;
|
2009-09-14 10:44:37 +02:00
|
|
|
case 'davkit': // iCal app in OS X 10.6 created wrong request, if full url given
|
|
|
|
$this->client_require_href_as_url = false;
|
2010-10-20 20:59:27 +02:00
|
|
|
$this->cnrnd = true;
|
2009-09-14 10:44:37 +02:00
|
|
|
break;
|
2010-04-21 19:44:36 +02:00
|
|
|
case 'cfnetwork_old':
|
|
|
|
$this->crrnd = true; // Older Apple Addressbook.app does not cope with namespace redundancy
|
2010-05-18 12:45:46 +02:00
|
|
|
break;
|
|
|
|
case 'neon':
|
|
|
|
$this->cnrnd = true; // neon clients like cadaver
|
2010-10-20 20:59:27 +02:00
|
|
|
break;
|
2009-09-14 10:44:37 +02:00
|
|
|
}
|
2010-09-28 10:32:11 +02:00
|
|
|
// adding EGroupware version to X-Dav-Powered-By header eg. "EGroupware 1.8.001 CalDAV/CardDAV/GroupDAV server"
|
|
|
|
$this->dav_powered_by = str_replace('EGroupware','EGroupware '.$GLOBALS['egw_info']['server']['versions']['phpgwapi'],
|
|
|
|
$this->dav_powered_by);
|
|
|
|
|
2008-05-08 22:31:32 +02:00
|
|
|
parent::HTTP_WebDAV_Server();
|
|
|
|
|
2010-09-25 11:08:37 +02:00
|
|
|
$this->egw_charset = translation::charset();
|
2010-03-07 00:06:43 +01:00
|
|
|
if (strpos($this->base_uri, 'http') === 0)
|
|
|
|
{
|
|
|
|
$this->principalURL = $this->_slashify($this->base_uri);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->principalURL = (@$_SERVER["HTTPS"] === "on" ? "https:" : "http:") .
|
|
|
|
'//' . $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME'] . '/';
|
|
|
|
}
|
|
|
|
$this->principalURL .= 'principals/users/'.$GLOBALS['egw_info']['user']['account_lid'].'/';
|
2010-10-31 08:56:29 +01:00
|
|
|
|
2010-09-25 11:08:37 +02:00
|
|
|
// if client requires pathes instead of URLs
|
|
|
|
if ($this->client_require_href_as_url === false)
|
|
|
|
{
|
|
|
|
$this->principalURL = parse_url($this->principalURL,PHP_URL_PATH);
|
|
|
|
}
|
2010-03-07 00:06:43 +01:00
|
|
|
$this->accounts = $GLOBALS['egw']->accounts;
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
|
2008-05-17 14:54:26 +02:00
|
|
|
/**
|
|
|
|
* get the handler for $app
|
|
|
|
*
|
|
|
|
* @param string $app
|
|
|
|
* @return groupdav_handler
|
|
|
|
*/
|
|
|
|
function app_handler($app)
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2010-03-07 00:06:43 +01:00
|
|
|
return groupdav_handler::app_handler($app,$this->debug,$this->base_uri,$this->principalURL);
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* OPTIONS request, allow to modify the standard responses from the pear-class
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @param array &$dav
|
|
|
|
* @param array &$allow
|
|
|
|
*/
|
|
|
|
function OPTIONS($path, &$dav, &$allow)
|
|
|
|
{
|
|
|
|
list(,$app) = explode('/',$path);
|
|
|
|
switch($app)
|
|
|
|
{
|
|
|
|
case 'calendar':
|
2010-09-25 11:08:37 +02:00
|
|
|
if (!in_array(2,$dav)) $dav[] = 2;
|
2010-03-07 00:06:43 +01:00
|
|
|
$dav[] = 'access-control';
|
2008-05-08 22:31:32 +02:00
|
|
|
$dav[] = 'calendar-access';
|
2010-03-07 00:06:43 +01:00
|
|
|
//$dav[] = 'calendar-schedule';
|
|
|
|
//$dav[] = 'calendar-proxy';
|
|
|
|
//$dav[] = 'calendar-avialibility';
|
|
|
|
//$dav[] = 'calendarserver-private-events';
|
2008-05-08 22:31:32 +02:00
|
|
|
break;
|
|
|
|
case 'addressbook':
|
2010-09-25 11:08:37 +02:00
|
|
|
if (!in_array(2,$dav)) $dav[] = 2;
|
|
|
|
//$dav[] = 3; // revision aka versioning support not implemented
|
2010-03-07 00:06:43 +01:00
|
|
|
$dav[] = 'access-control';
|
2010-09-25 11:08:37 +02:00
|
|
|
$dav[] = 'addressbook'; // CardDAV uses "addressbook" NOT "addressbook-access"
|
2008-05-08 22:31:32 +02:00
|
|
|
break;
|
2010-03-07 00:06:43 +01:00
|
|
|
default:
|
2010-09-25 11:08:37 +02:00
|
|
|
if (!in_array(2,$dav)) $dav[] = 2;
|
2010-03-07 00:06:43 +01:00
|
|
|
$dav[] = 'access-control';
|
|
|
|
$dav[] = 'calendar-access';
|
2010-09-25 11:08:37 +02:00
|
|
|
$dav[] = 'addressbook';
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
// not yet implemented: $dav[] = 'access-control';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* PROPFIND and REPORT method handler
|
|
|
|
*
|
|
|
|
* @param array general parameter passing array
|
|
|
|
* @param array return array for file properties
|
|
|
|
* @return bool true on success
|
|
|
|
*/
|
2010-03-07 00:06:43 +01:00
|
|
|
function PROPFIND(&$options, &$files, $method='PROPFIND')
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2008-05-17 14:54:26 +02:00
|
|
|
if ($this->debug) error_log(__CLASS__."::$method(".array2string($options,true).')');
|
2008-05-08 22:31:32 +02:00
|
|
|
|
|
|
|
// parse path in form [/account_lid]/app[/more]
|
2009-10-03 12:22:14 +02:00
|
|
|
if (!self::_parse_path($options['path'],$id,$app,$user,$user_prefix) && $app && !$user)
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2010-03-07 00:06:43 +01:00
|
|
|
if ($this->debug > 1) error_log(__CLASS__."::$method: user='$user', app='$app', id='$id': 404 not found!");
|
2008-05-08 22:31:32 +02:00
|
|
|
return '404 Not Found';
|
|
|
|
}
|
2010-03-07 00:06:43 +01:00
|
|
|
if ($this->debug > 1) error_log(__CLASS__."::$method: user='$user', app='$app', id='$id'");
|
|
|
|
|
|
|
|
if ($user)
|
|
|
|
{
|
|
|
|
$account_lid = $this->accounts->id2name($user);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$account_lid = $GLOBALS['egw_info']['user']['account_lid'];
|
|
|
|
}
|
|
|
|
$account = $this->accounts->read($account_lid);
|
2008-05-17 09:05:57 +02:00
|
|
|
$files = array('files' => array());
|
2010-03-07 00:06:43 +01:00
|
|
|
$path = $user_prefix = $this->_slashify($user_prefix);
|
2008-05-08 22:31:32 +02:00
|
|
|
|
2010-03-07 00:06:43 +01:00
|
|
|
if (!$app) // user root folder containing apps
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2010-03-07 00:06:43 +01:00
|
|
|
if (empty($user_prefix))
|
|
|
|
{
|
2010-04-13 17:31:59 +02:00
|
|
|
$user_prefix = '/'; //.$GLOBALS['egw_info']['user']['account_lid'].'/';
|
2010-03-07 00:06:43 +01:00
|
|
|
}
|
2010-10-10 00:49:10 +02:00
|
|
|
$calendar_user_address_set = array(
|
2010-10-20 11:42:06 +02:00
|
|
|
self::mkprop('href','urn:uuid:'.$account['account_lid']),
|
|
|
|
);
|
2010-09-18 10:45:46 +02:00
|
|
|
if ($user < 0)
|
|
|
|
{
|
|
|
|
$principalType = 'groups';
|
2010-10-10 00:49:10 +02:00
|
|
|
$displayname = lang('Group').' '.$account['account_lid'];
|
2010-09-18 10:45:46 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$principalType = 'users';
|
2010-10-10 00:49:10 +02:00
|
|
|
$displayname = $account['account_fullname'];
|
|
|
|
$calendar_user_address_set[] = self::mkprop('href','MAILTO:'.$account['account_email']);
|
|
|
|
}
|
2010-10-20 11:42:06 +02:00
|
|
|
$calendar_user_address_set[] = self::mkprop('href',$this->base_uri.'/principals/'.$principalType.'/'.$account['account_lid'].'/');
|
|
|
|
|
2010-10-10 00:49:10 +02:00
|
|
|
if ($options['depth'] && $user_prefix == '/')
|
|
|
|
{
|
|
|
|
$displayname = 'EGroupware (Cal|Card|Group)DAV server';
|
2010-09-18 10:45:46 +02:00
|
|
|
}
|
2010-10-31 08:56:29 +01:00
|
|
|
|
2010-10-10 00:49:10 +02:00
|
|
|
$displayname = translation::convert($displayname, translation::charset(),'utf-8');
|
2008-05-10 22:15:02 +02:00
|
|
|
// self url
|
2010-03-07 00:06:43 +01:00
|
|
|
$props = array(
|
|
|
|
self::mkprop('displayname',$displayname),
|
2010-10-10 00:49:10 +02:00
|
|
|
self::mkprop('owner',array(self::mkprop('href',$this->base_uri.'/principals/'.$principalType.'/'.$account_lid.'/'))),
|
2010-03-07 00:06:43 +01:00
|
|
|
self::mkprop('resourcetype',array(self::mkprop('collection',''))),
|
2008-05-10 22:15:02 +02:00
|
|
|
// adding the calendar extra property (calendar-home-set, etc.) here, allows apple iCal to "autodetect" the URL
|
2010-03-07 00:06:43 +01:00
|
|
|
self::mkprop(groupdav::CALDAV,'calendar-home-set',array(
|
2010-04-13 17:31:59 +02:00
|
|
|
self::mkprop('href',$this->base_uri.$user_prefix))),
|
2010-03-07 00:06:43 +01:00
|
|
|
self::mkprop(groupdav::CARDDAV,'addressbook-home-set',array(
|
|
|
|
self::mkprop('href',$this->base_uri.$user_prefix))),
|
|
|
|
self::mkprop('current-user-principal',array(self::mkprop('href',$this->principalURL))),
|
2010-10-10 00:49:10 +02:00
|
|
|
self::mkprop(groupdav::CALDAV,'calendar-user-address-set',$calendar_user_address_set),
|
2010-06-28 00:16:22 +02:00
|
|
|
self::mkprop(groupdav::CALENDARSERVER,'email-address-set',array(
|
|
|
|
self::mkprop(groupdav::CALENDARSERVER,'email-address',$GLOBALS['egw_info']['user']['email']))),
|
2010-03-07 00:06:43 +01:00
|
|
|
//self::mkprop('principal-URL',array(self::mkprop('href',$this->principalURL))),
|
2010-06-28 00:16:22 +02:00
|
|
|
self::mkprop('principal-collection-set',array(self::mkprop('href',$this->base_uri.'/principals/'))),
|
|
|
|
// OUTBOX URLs of the current user
|
|
|
|
self::mkprop(groupdav::CALDAV,'schedule-outbox-URL',array(
|
|
|
|
self::mkprop(groupdav::DAV,'href',$this->base_uri.'/calendar/'))),
|
2010-09-25 11:08:37 +02:00
|
|
|
);
|
2010-03-07 00:06:43 +01:00
|
|
|
//$props = self::current_user_privilege_set($props);
|
|
|
|
$files['files'][] = array(
|
|
|
|
'path' => $path,
|
|
|
|
'props' => $props,
|
2008-05-10 22:15:02 +02:00
|
|
|
);
|
2008-05-17 09:05:57 +02:00
|
|
|
if ($options['depth'])
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2010-03-07 00:06:43 +01:00
|
|
|
if (strlen($path) == 1) // GroupDAV Root
|
2009-10-03 12:22:14 +02:00
|
|
|
{
|
|
|
|
// principals collection
|
|
|
|
$files['files'][] = array(
|
|
|
|
'path' => '/principals/',
|
|
|
|
'props' => array(
|
2010-03-07 00:06:43 +01:00
|
|
|
self::mkprop('displayname',lang('Accounts')),
|
2010-04-13 17:31:59 +02:00
|
|
|
self::mkprop('resourcetype',array(self::mkprop('principals',''))),
|
2010-03-07 00:06:43 +01:00
|
|
|
self::mkprop('current-user-principal',array(self::mkprop('href',$this->principalURL))),
|
2010-06-28 00:16:22 +02:00
|
|
|
//self::mkprop(groupdav::CALDAV,'calendar-home-set',array(
|
|
|
|
// self::mkprop('href',$this->base_uri.$user_prefix))),
|
|
|
|
//self::mkprop(groupdav::CARDDAV,'addressbook-home-set',array(
|
|
|
|
// self::mkprop('href',$this->base_uri.$user_prefix))),
|
|
|
|
//self::mkprop('principal-URL',array(self::mkprop('href',$this->principalURL))),
|
2010-03-07 00:06:43 +01:00
|
|
|
),
|
|
|
|
);
|
2009-10-03 12:22:14 +02:00
|
|
|
}
|
2008-05-17 09:05:57 +02:00
|
|
|
foreach($this->root as $app => $data)
|
|
|
|
{
|
|
|
|
if (!$GLOBALS['egw_info']['user']['apps'][$app]) continue; // no rights for the given app
|
2010-04-13 17:31:59 +02:00
|
|
|
$props = $this->_properties($app,false,$user,$path);
|
|
|
|
// add ctag if handler implements it
|
|
|
|
if (($handler = self::app_handler($app)) && method_exists($handler,'getctag'))
|
|
|
|
{
|
|
|
|
$props[] = self::mkprop(
|
|
|
|
groupdav::CALENDARSERVER,'getctag',$handler->getctag($options['path'],$user));
|
|
|
|
}
|
2010-09-25 11:08:37 +02:00
|
|
|
$props[] = self::mkprop('getetag','EGw-'.$app.'-wGE');
|
2008-05-17 09:05:57 +02:00
|
|
|
$files['files'][] = array(
|
2010-03-07 00:06:43 +01:00
|
|
|
'path' => $path.$app.'/',
|
2010-04-13 17:31:59 +02:00
|
|
|
'props' => $props,
|
2008-05-17 09:05:57 +02:00
|
|
|
);
|
|
|
|
}
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2010-10-20 20:59:27 +02:00
|
|
|
if ($app != 'principals' && !$GLOBALS['egw_info']['user']['apps'][$app])
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2008-05-17 14:54:26 +02:00
|
|
|
if ($this->debug) error_log(__CLASS__."::$method(path=$options[path]) 403 Forbidden: no app rights for '$app'");
|
|
|
|
return "403 Forbidden: no app rights for '$app'"; // no rights for the given app
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
2008-05-17 14:54:26 +02:00
|
|
|
if (($handler = self::app_handler($app)))
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
|
|
|
if ($method != 'REPORT' && !$id) // no self URL for REPORT requests (only PROPFIND) or propfinds on an id
|
|
|
|
{
|
2010-01-06 00:25:17 +01:00
|
|
|
$files['files'][0] = array(
|
2010-03-07 00:06:43 +01:00
|
|
|
'path' => $path.$app.'/',
|
2008-08-04 21:08:09 +02:00
|
|
|
// KAddressbook doubles the folder, if the self URL contains the GroupDAV/CalDAV resourcetypes
|
2010-10-31 08:56:29 +01:00
|
|
|
'props' => $this->_properties($app,$app=='addressbook'&&$handler->get_agent()=='kde',$user,$path),
|
2008-05-08 22:31:32 +02:00
|
|
|
);
|
2010-01-06 00:25:17 +01:00
|
|
|
// add ctag if handler implements it (only for depth 0)
|
|
|
|
if (method_exists($handler,'getctag'))
|
|
|
|
{
|
|
|
|
$files['files'][0]['props'][] = HTTP_WebDAV_Server::mkprop(
|
|
|
|
groupdav::CALENDARSERVER,'getctag',$handler->getctag($options['path'],$user));
|
|
|
|
}
|
2010-10-31 08:56:29 +01:00
|
|
|
if (!$options['depth']) return true; // depth 0 --> show only the self url
|
2008-05-10 22:32:03 +02:00
|
|
|
}
|
2010-03-07 00:06:43 +01:00
|
|
|
return $handler->propfind($this->_slashify($options['path']),$options,$files,$user,$id);
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
return '501 Not Implemented';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-08-04 21:08:09 +02:00
|
|
|
* Get the properties of a collection
|
2008-05-08 22:31:32 +02:00
|
|
|
*
|
|
|
|
* @param string $app
|
2008-07-08 07:52:04 +02:00
|
|
|
* @param boolean $no_extra_types=false should the GroupDAV and CalDAV types be added (KAddressbook has problems with it in self URL)
|
2009-10-03 12:22:14 +02:00
|
|
|
* @param int $user=null owner of the collection, default current user
|
2010-04-13 17:31:59 +02:00
|
|
|
* @param string $path='/'
|
2008-08-04 21:08:09 +02:00
|
|
|
* @return array of DAV properties
|
2008-05-08 22:31:32 +02:00
|
|
|
*/
|
2010-04-13 17:31:59 +02:00
|
|
|
function _properties($app,$no_extra_types=false,$user=null,$path='/')
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2010-11-03 11:05:08 +01:00
|
|
|
if ($this->debug) error_log(__METHOD__."(app='$app', no_extra_types=$no_extra_types, user='$user', path='$path')");
|
2011-02-13 22:08:29 +01:00
|
|
|
$user_preferences = $GLOBALS['egw_info']['user']['preferences'];
|
2010-03-07 00:06:43 +01:00
|
|
|
if ($user)
|
|
|
|
{
|
|
|
|
$account_lid = $this->accounts->id2name($user);
|
2011-02-13 22:08:29 +01:00
|
|
|
if ($user >= 0 && $GLOBALS['egw']->preferences->account_id != $user)
|
|
|
|
{
|
|
|
|
$GLOBALS['egw']->preferences->__construct($user);
|
|
|
|
$user_preferences = $GLOBALS['egw']->preferences->read_repository();
|
|
|
|
$GLOBALS['egw']->preferences->__construct($GLOBALS['egw_info']['user']['account_lid']);
|
|
|
|
}
|
2010-03-07 00:06:43 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$account_lid = $GLOBALS['egw_info']['user']['account_lid'];
|
|
|
|
}
|
2011-03-05 11:21:32 +01:00
|
|
|
|
2011-02-13 22:08:29 +01:00
|
|
|
if (strlen($user_preferences['calendar']['display_color']) == 9 &&
|
|
|
|
$user_preferences['calendar']['display_color'][0] == '#')
|
|
|
|
{
|
|
|
|
$display_color = $user_preferences['calendar']['display_color'];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$display_color = '#0040A0FF';
|
|
|
|
}
|
2011-03-05 11:21:32 +01:00
|
|
|
|
2010-03-07 00:06:43 +01:00
|
|
|
$account = $this->accounts->read($account_lid);
|
|
|
|
$displayname = $GLOBALS['egw']->translation->convert($account['account_fullname'],
|
|
|
|
$GLOBALS['egw']->translation->charset(),'utf-8');
|
2010-10-31 08:56:29 +01:00
|
|
|
|
2010-09-18 10:45:46 +02:00
|
|
|
if ($user < 0)
|
|
|
|
{
|
|
|
|
$principalType = 'groups';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$principalType = 'users';
|
|
|
|
}
|
2010-10-31 08:56:29 +01:00
|
|
|
|
2008-08-04 21:08:09 +02:00
|
|
|
$props = array(
|
2010-03-07 00:06:43 +01:00
|
|
|
self::mkprop('current-user-principal',array(self::mkprop('href',$this->principalURL))),
|
2010-09-18 10:45:46 +02:00
|
|
|
self::mkprop('owner',array(self::mkprop('href',$this->base_uri.'/principals/'.$principalType.'/'.$account_lid.'/'))),
|
2010-04-16 23:53:34 +02:00
|
|
|
//self::mkprop('principal-URL',array(self::mkprop('href',$this->principalURL))),
|
2010-03-07 00:06:43 +01:00
|
|
|
self::mkprop('alternate-URI-set',array(
|
|
|
|
self::mkprop('href','MAILTO:'.$GLOBALS['egw_info']['user']['email']))),
|
|
|
|
self::mkprop('principal-collection-set',array(
|
2010-06-28 00:16:22 +02:00
|
|
|
self::mkprop('href',$this->base_uri.'/principals/'),
|
2010-03-07 00:06:43 +01:00
|
|
|
)),
|
2010-06-28 00:16:22 +02:00
|
|
|
self::mkprop('principal-URL',array(self::mkprop('href',$this->principalURL))),
|
|
|
|
self::mkprop(groupdav::CALDAV,'calendar-user-address-set',array(
|
|
|
|
self::mkprop('href','MAILTO:'.$GLOBALS['egw_info']['user']['email']),
|
2010-09-18 10:45:46 +02:00
|
|
|
self::mkprop('href',$this->base_uri.'/principals/'.$principalType.'/'.$GLOBALS['egw_info']['user']['account_lid'].'/'),
|
2010-06-28 00:16:22 +02:00
|
|
|
self::mkprop('href','urn:uuid:'.$GLOBALS['egw_info']['user']['account_lid']))),
|
|
|
|
self::mkprop(groupdav::CALENDARSERVER,'email-address-set',array(
|
2010-09-25 11:08:37 +02:00
|
|
|
self::mkprop(groupdav::CALENDARSERVER,'email-address',$GLOBALS['egw_info']['user']['email']))),
|
2010-10-31 08:56:29 +01:00
|
|
|
self::mkprop('getetag','EGw-no-etag-wGE'), // iPhone addressbook requires an etag here!
|
2010-03-07 00:06:43 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
switch ($app)
|
|
|
|
{
|
2010-04-16 23:53:34 +02:00
|
|
|
case 'calendar':
|
|
|
|
$props[] = self::mkprop(groupdav::CALDAV,'calendar-home-set',array(
|
|
|
|
self::mkprop('href',$this->base_uri.$path.'calendar/')));
|
2010-05-17 16:20:34 +02:00
|
|
|
// OUTBOX URLs of the current user
|
|
|
|
$props[] = self::mkprop(groupdav::CALDAV,'schedule-outbox-URL',
|
|
|
|
array(self::mkprop(groupdav::DAV,'href',$this->base_uri.'/calendar/')));
|
2011-02-13 22:08:29 +01:00
|
|
|
$props[] = self::mkprop(groupdav::ICAL,'calendar-color',$display_color);
|
2010-04-16 23:53:34 +02:00
|
|
|
break;
|
2010-03-07 00:06:43 +01:00
|
|
|
case 'infolog':
|
|
|
|
$props[] = self::mkprop(groupdav::CALDAV,'calendar-home-set',array(
|
2010-04-13 17:31:59 +02:00
|
|
|
self::mkprop('href',$this->base_uri.$path.'infolog/')));
|
2010-09-25 11:08:37 +02:00
|
|
|
$displayname = translation::convert(lang($app).' '.
|
2010-03-07 00:06:43 +01:00
|
|
|
common::grab_owner_name($user),$this->egw_charset,'utf-8');
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$props[] = self::mkprop(groupdav::CALDAV,'calendar-home-set',array(
|
2010-04-13 17:31:59 +02:00
|
|
|
self::mkprop('href',$this->base_uri.$path)));
|
2010-09-25 11:08:37 +02:00
|
|
|
$displayname = translation::convert(lang($app).' '.
|
2010-03-07 00:06:43 +01:00
|
|
|
common::grab_owner_name($user),$this->egw_charset,'utf-8');
|
|
|
|
}
|
|
|
|
$props[] = self::mkprop(groupdav::CARDDAV,'addressbook-home-set',array(
|
2010-04-13 17:31:59 +02:00
|
|
|
self::mkprop('href',$this->base_uri.$path)));
|
2010-03-07 00:06:43 +01:00
|
|
|
$props[] = self::mkprop('displayname',$displayname);
|
|
|
|
|
2009-10-03 12:22:14 +02:00
|
|
|
foreach((array)$this->root[$app] as $prop => $values)
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2008-08-04 21:08:09 +02:00
|
|
|
if ($prop == 'resourcetype')
|
|
|
|
{
|
|
|
|
$resourcetype = array(
|
2010-01-07 05:24:45 +01:00
|
|
|
self::mkprop('collection',''),
|
2008-08-04 21:08:09 +02:00
|
|
|
);
|
|
|
|
if (!$no_extra_types)
|
|
|
|
{
|
|
|
|
foreach($this->root[$app]['resourcetype'] as $ns => $type)
|
|
|
|
{
|
2010-01-07 05:24:45 +01:00
|
|
|
$resourcetype[] = self::mkprop($ns,$type,'');
|
2008-08-04 21:08:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$props[] = self::mkprop('resourcetype',$resourcetype);
|
|
|
|
}
|
|
|
|
else
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2008-08-04 21:08:09 +02:00
|
|
|
foreach($values as $ns => $value)
|
|
|
|
{
|
|
|
|
$props[] = self::mkprop($ns,$prop,$value);
|
|
|
|
}
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
}
|
2008-08-04 21:08:09 +02:00
|
|
|
if (method_exists($app.'_groupdav','extra_properties'))
|
|
|
|
{
|
2010-10-10 00:49:10 +02:00
|
|
|
$displayname = translation::convert(
|
|
|
|
$account['account_id'] > 0 ? $account['account_fullname'] : lang('Group').' '.$account['account_lid'],
|
|
|
|
translation::charset(),'utf-8');
|
2010-03-07 00:06:43 +01:00
|
|
|
$props = ExecMethod2($app.'_groupdav::extra_properties',$props,$displayname,$this->base_uri);
|
2008-08-04 21:08:09 +02:00
|
|
|
}
|
|
|
|
return $props;
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* CalDAV/CardDAV REPORT method handler
|
|
|
|
*
|
|
|
|
* just calls PROPFIND()
|
|
|
|
*
|
|
|
|
* @param array general parameter passing array
|
|
|
|
* @param array return array for file properties
|
|
|
|
* @return bool true on success
|
|
|
|
*/
|
|
|
|
function REPORT(&$options, &$files)
|
|
|
|
{
|
2008-05-17 14:54:26 +02:00
|
|
|
if ($this->debug > 1) error_log(__METHOD__.'('.array2string($options).')');
|
2008-05-08 22:31:32 +02:00
|
|
|
|
|
|
|
return $this->PROPFIND($options,$files,'REPORT');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* CalDAV/CardDAV REPORT method handler to get HTTP_WebDAV_Server to process REPORT requests
|
|
|
|
*
|
|
|
|
* Just calls http_PROPFIND()
|
|
|
|
*/
|
|
|
|
function http_REPORT()
|
|
|
|
{
|
|
|
|
parent::http_PROPFIND('REPORT');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GET method handler
|
|
|
|
*
|
2009-08-16 17:24:43 +02:00
|
|
|
* @param array $options parameter passing array
|
2008-05-08 22:31:32 +02:00
|
|
|
* @return bool true on success
|
|
|
|
*/
|
|
|
|
function GET(&$options)
|
|
|
|
{
|
2008-05-17 14:54:26 +02:00
|
|
|
if ($this->debug) error_log(__METHOD__.'('.array2string($options).')');
|
2008-05-08 22:31:32 +02:00
|
|
|
|
2009-10-03 12:22:14 +02:00
|
|
|
if (!$this->_parse_path($options['path'],$id,$app,$user) || $app == 'principals')
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2009-08-16 17:24:43 +02:00
|
|
|
return $this->autoindex($options);
|
|
|
|
|
|
|
|
error_log(__METHOD__."(".array2string($options).") 404 Not Found");
|
2008-05-08 22:31:32 +02:00
|
|
|
return '404 Not Found';
|
|
|
|
}
|
2008-05-17 14:54:26 +02:00
|
|
|
if (($handler = self::app_handler($app)))
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2011-03-05 11:21:32 +01:00
|
|
|
return $handler->get($options,$id,$user);
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
2009-08-16 17:24:43 +02:00
|
|
|
error_log(__METHOD__."(".array2string($options).") 501 Not Implemented");
|
2008-05-08 22:31:32 +02:00
|
|
|
return '501 Not Implemented';
|
|
|
|
}
|
|
|
|
|
2009-08-16 17:24:43 +02:00
|
|
|
/**
|
|
|
|
* Display an automatic index (listing and properties) for a collection
|
|
|
|
*
|
|
|
|
* @param array $options parameter passing array, index "path" contains requested path
|
|
|
|
*/
|
|
|
|
protected function autoindex($options)
|
|
|
|
{
|
|
|
|
$propfind_options = array(
|
|
|
|
'path' => $options['path'],
|
|
|
|
'depth' => 1,
|
|
|
|
);
|
|
|
|
$files = array();
|
|
|
|
if (($ret = $this->PROPFIND($propfind_options,$files)) !== true)
|
|
|
|
{
|
|
|
|
return $ret; // no collection
|
|
|
|
}
|
|
|
|
header('Content-type: text/html; charset='.$GLOBALS['egw']->translation->charset());
|
|
|
|
echo "<html>\n<head>\n\t<title>".'EGroupware (Cal|Card|Group)DAV server '.htmlspecialchars($options['path'])."</title>\n";
|
|
|
|
echo "\t<meta http-equiv='content-type' content='text/html; charset=utf-8' />\n";
|
|
|
|
echo "\t<style type='text/css'>\n.th { background-color: #e0e0e0; }\n.row_on { background-color: #F1F1F1; }\n".
|
|
|
|
".row_off { background-color: #ffffff; }\ntd { padding-left: 5px; }\nth { padding-left: 5px; text-align: left; }\n\t</style>\n";
|
|
|
|
echo "</head>\n<body>\n";
|
|
|
|
|
|
|
|
echo '<h1>(Cal|Card|Group)DAV ';
|
|
|
|
$path = '/groupdav.php';
|
2010-02-26 12:04:01 +01:00
|
|
|
foreach(explode('/',$this->_unslashify($options['path'])) as $n => $name)
|
2009-08-16 17:24:43 +02:00
|
|
|
{
|
|
|
|
$path .= ($n != 1 ? '/' : '').$name;
|
2010-02-26 12:04:01 +01:00
|
|
|
echo html::a_href(htmlspecialchars($name.'/'),$path);
|
2009-08-16 17:24:43 +02:00
|
|
|
}
|
|
|
|
echo "</h1>\n";
|
2009-10-03 12:22:14 +02:00
|
|
|
|
2009-10-17 14:22:40 +02:00
|
|
|
$n = 0;
|
|
|
|
foreach($files['files'] as $file)
|
|
|
|
{
|
|
|
|
if (!isset($collection_props))
|
|
|
|
{
|
2010-01-07 05:24:45 +01:00
|
|
|
$collection_props = $this->props2array($file['props']);
|
2009-10-17 14:22:40 +02:00
|
|
|
echo '<h3>'.lang('Collection listing').': '.htmlspecialchars($collection_props['DAV:displayname'])."</h3>\n";
|
|
|
|
continue; // own entry --> displaying properies later
|
|
|
|
}
|
|
|
|
if(!$n++)
|
|
|
|
{
|
|
|
|
echo "<table>\n\t<tr class='th'><th>#</th><th>".lang('Name')."</th><th>".lang('Size')."</th><th>".lang('Last modified')."</th><th>".
|
|
|
|
lang('ETag')."</th><th>".lang('Content type')."</th><th>".lang('Resource type')."</th></tr>\n";
|
|
|
|
}
|
2010-01-07 05:24:45 +01:00
|
|
|
$props = $this->props2array($file['props']);
|
2009-10-17 14:22:40 +02:00
|
|
|
//echo $file['path']; _debug_array($props);
|
|
|
|
$class = $class == 'row_on' ? 'row_off' : 'row_on';
|
2010-03-07 00:06:43 +01:00
|
|
|
|
2009-10-17 14:22:40 +02:00
|
|
|
if (substr($file['path'],-1) == '/')
|
|
|
|
{
|
|
|
|
$name = basename(substr($file['path'],0,-1)).'/';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$name = basename($file['path']);
|
|
|
|
}
|
2010-03-07 00:06:43 +01:00
|
|
|
|
2009-10-17 14:22:40 +02:00
|
|
|
echo "\t<tr class='$class'>\n\t\t<td>$n</td>\n\t\t<td>".html::a_href(htmlspecialchars($name),'/groupdav.php'.$file['path'])."</td>\n";
|
|
|
|
echo "\t\t<td>".$props['DAV:getcontentlength']."</td>\n";
|
|
|
|
echo "\t\t<td>".(!empty($props['DAV:getlastmodified']) ? date('Y-m-d H:i:s',$props['DAV:getlastmodified']) : '')."</td>\n";
|
|
|
|
echo "\t\t<td>".$props['DAV:getetag']."</td>\n";
|
|
|
|
echo "\t\t<td>".htmlspecialchars($props['DAV:getcontenttype'])."</td>\n";
|
|
|
|
echo "\t\t<td>".self::prop_value($props['DAV:resourcetype'])."</td>\n\t</tr>\n";
|
|
|
|
}
|
|
|
|
if (!$n)
|
2009-08-16 17:24:43 +02:00
|
|
|
{
|
|
|
|
echo '<p>'.lang('Collection empty.')."</p>\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
echo "</table>\n";
|
|
|
|
}
|
|
|
|
echo '<h3>'.lang('Properties')."</h3>\n";
|
|
|
|
echo "<table>\n\t<tr class='th'><th>".lang('Namespace')."</th><th>".lang('Name')."</th><th>".lang('Value')."</th></tr>\n";
|
|
|
|
foreach($collection_props as $name => $value)
|
|
|
|
{
|
|
|
|
$class = $class == 'row_on' ? 'row_off' : 'row_on';
|
|
|
|
$ns = explode(':',$name);
|
|
|
|
$name = array_pop($ns);
|
|
|
|
$ns = implode(':',$ns);
|
|
|
|
echo "\t<tr class='$class'>\n\t\t<td>".htmlspecialchars($ns)."</td><td>".htmlspecialchars($name)."</td>\n";
|
|
|
|
echo "\t\t<td>".self::prop_value($value)."</td>\n\t</tr>\n";
|
|
|
|
}
|
|
|
|
echo "</table>\n";
|
|
|
|
|
|
|
|
echo "</body>\n</html>\n";
|
|
|
|
|
|
|
|
common::egw_exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format a property value for output
|
|
|
|
*
|
|
|
|
* @param mixed $value
|
|
|
|
* @return string
|
|
|
|
*/
|
2010-01-07 05:24:45 +01:00
|
|
|
protected function prop_value($value)
|
2009-08-16 17:24:43 +02:00
|
|
|
{
|
|
|
|
if (is_array($value))
|
|
|
|
{
|
|
|
|
if (isset($value[0]['ns']))
|
|
|
|
{
|
2010-01-07 05:24:45 +01:00
|
|
|
$value = $this->_hierarchical_prop_encode($value);
|
2009-08-16 17:24:43 +02:00
|
|
|
}
|
|
|
|
$value = htmlspecialchars(array2string($value));
|
|
|
|
}
|
2010-04-23 18:08:04 +02:00
|
|
|
elseif (preg_match('/\<(D:)?href\>[^<]+\<\/(D:)?href\>/i',$value))
|
2009-08-16 17:24:43 +02:00
|
|
|
{
|
2010-04-23 18:08:04 +02:00
|
|
|
$value = preg_replace('/\<(D:)?href\>([^<]+)\<\/(D:)?href\>/i','<\\1href><a href="\\2">\\2</a></\\3href><br />',$value);
|
2009-08-16 17:24:43 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$value = htmlspecialchars($value);
|
|
|
|
}
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return numeric indexed array with values for keys 'ns', 'name' and 'val' as array 'ns:name' => 'val'
|
|
|
|
*
|
|
|
|
* @param array $props
|
|
|
|
* @return array
|
|
|
|
*/
|
2010-01-07 05:24:45 +01:00
|
|
|
protected function props2array(array $props)
|
2009-08-16 17:24:43 +02:00
|
|
|
{
|
|
|
|
$arr = array();
|
|
|
|
foreach($props as $prop)
|
|
|
|
{
|
|
|
|
switch($prop['ns'])
|
|
|
|
{
|
|
|
|
case 'DAV:';
|
|
|
|
$ns = 'DAV';
|
|
|
|
break;
|
|
|
|
case self::CALDAV:
|
|
|
|
$ns = 'CalDAV';
|
|
|
|
break;
|
|
|
|
case self::CARDDAV:
|
|
|
|
$ns = 'CardDAV';
|
|
|
|
break;
|
|
|
|
case self::GROUPDAV:
|
|
|
|
$ns = 'GroupDAV';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$ns = $prop['ns'];
|
|
|
|
}
|
2010-04-13 17:31:59 +02:00
|
|
|
$ns_defs = '';
|
|
|
|
$ns_hash = array($prop['ns'] => $ns, 'DAV:' => 'D');
|
2010-02-26 12:04:01 +01:00
|
|
|
$arr[$ns.':'.$prop['name']] = is_array($prop['val']) ?
|
2010-04-13 17:31:59 +02:00
|
|
|
$this->_hierarchical_prop_encode($prop['val'], $prop['ns'], $ns_defs, $ns_hash) : $prop['val'];
|
2009-08-16 17:24:43 +02:00
|
|
|
}
|
|
|
|
return $arr;
|
|
|
|
}
|
|
|
|
|
2010-05-17 16:20:34 +02:00
|
|
|
/**
|
|
|
|
* POST method handler
|
|
|
|
*
|
|
|
|
* @param array parameter passing array
|
|
|
|
* @return bool true on success
|
|
|
|
*/
|
|
|
|
function POST(&$options)
|
|
|
|
{
|
|
|
|
// read the content in a string, if a stream is given
|
|
|
|
if (isset($options['stream']))
|
|
|
|
{
|
|
|
|
$options['content'] = '';
|
|
|
|
while(!feof($options['stream']))
|
|
|
|
{
|
|
|
|
$options['content'] .= fread($options['stream'],8192);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($this->debug) error_log(__METHOD__.'('.array2string($options).')');
|
2010-10-31 08:56:29 +01:00
|
|
|
|
2010-05-17 16:20:34 +02:00
|
|
|
$this->_parse_path($options['path'],$id,$app,$user);
|
2010-10-31 08:56:29 +01:00
|
|
|
|
2010-05-17 16:20:34 +02:00
|
|
|
if (($handler = self::app_handler($app)) && method_exists($handler, 'post'))
|
|
|
|
{
|
|
|
|
return $handler->post($options,$id,$user);
|
|
|
|
}
|
|
|
|
return '501 Not Implemented';
|
|
|
|
}
|
2010-10-31 08:56:29 +01:00
|
|
|
|
2008-05-08 22:31:32 +02:00
|
|
|
/**
|
|
|
|
* PUT method handler
|
|
|
|
*
|
|
|
|
* @param array parameter passing array
|
|
|
|
* @return bool true on success
|
|
|
|
*/
|
|
|
|
function PUT(&$options)
|
|
|
|
{
|
|
|
|
// read the content in a string, if a stream is given
|
|
|
|
if (isset($options['stream']))
|
|
|
|
{
|
|
|
|
$options['content'] = '';
|
|
|
|
while(!feof($options['stream']))
|
|
|
|
{
|
|
|
|
$options['content'] .= fread($options['stream'],8192);
|
|
|
|
}
|
|
|
|
}
|
2010-10-31 08:56:29 +01:00
|
|
|
|
2008-05-17 14:54:26 +02:00
|
|
|
if ($this->debug) error_log(__METHOD__.'('.array2string($options).')');
|
2008-05-08 22:31:32 +02:00
|
|
|
|
2010-10-20 17:47:30 +02:00
|
|
|
if (!$this->_parse_path($options['path'],$id,$app,$user,$prefix))
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
|
|
|
return '404 Not Found';
|
|
|
|
}
|
2008-05-17 14:54:26 +02:00
|
|
|
if (($handler = self::app_handler($app)))
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2010-10-20 17:47:30 +02:00
|
|
|
$status = $handler->put($options,$id,$user,$prefix);
|
2008-05-08 22:31:32 +02:00
|
|
|
// set default stati: true --> 204 No Content, false --> should be already handled
|
|
|
|
if (is_bool($status)) $status = $status ? '204 No Content' : '400 Something went wrong';
|
|
|
|
return $status;
|
|
|
|
}
|
|
|
|
return '501 Not Implemented';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* DELETE method handler
|
|
|
|
*
|
|
|
|
* @param array general parameter passing array
|
|
|
|
* @return bool true on success
|
|
|
|
*/
|
|
|
|
function DELETE($options)
|
|
|
|
{
|
2008-05-17 14:54:26 +02:00
|
|
|
if ($this->debug) error_log(__METHOD__.'('.array2string($options).')');
|
2008-05-08 22:31:32 +02:00
|
|
|
|
|
|
|
if (!$this->_parse_path($options['path'],$id,$app,$user))
|
|
|
|
{
|
|
|
|
return '404 Not Found';
|
|
|
|
}
|
2008-05-17 14:54:26 +02:00
|
|
|
if (($handler = self::app_handler($app)))
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
|
|
|
$status = $handler->delete($options,$id);
|
|
|
|
// set default stati: true --> 204 No Content, false --> should be already handled
|
|
|
|
if (is_bool($status)) $status = $status ? '204 No Content' : '400 Something went wrong';
|
|
|
|
return $status;
|
|
|
|
}
|
|
|
|
return '501 Not Implemented';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* MKCOL method handler
|
|
|
|
*
|
|
|
|
* @param array general parameter passing array
|
|
|
|
* @return bool true on success
|
|
|
|
*/
|
|
|
|
function MKCOL($options)
|
|
|
|
{
|
2008-05-17 14:54:26 +02:00
|
|
|
if ($this->debug) error_log(__METHOD__.'('.array2string($options).')');
|
2008-05-08 22:31:32 +02:00
|
|
|
|
|
|
|
return '501 Not Implemented';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* MOVE method handler
|
|
|
|
*
|
|
|
|
* @param array general parameter passing array
|
|
|
|
* @return bool true on success
|
|
|
|
*/
|
|
|
|
function MOVE($options)
|
|
|
|
{
|
2008-05-17 14:54:26 +02:00
|
|
|
if ($this->debug) error_log(__METHOD__.'('.array2string($options).')');
|
2008-05-08 22:31:32 +02:00
|
|
|
|
|
|
|
return '501 Not Implemented';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* COPY method handler
|
|
|
|
*
|
|
|
|
* @param array general parameter passing array
|
|
|
|
* @return bool true on success
|
|
|
|
*/
|
|
|
|
function COPY($options, $del=false)
|
|
|
|
{
|
2008-05-17 14:54:26 +02:00
|
|
|
if ($this->debug) error_log('groupdav::'.($del ? 'MOVE' : 'COPY').'('.array2string($options).')');
|
2008-05-08 22:31:32 +02:00
|
|
|
|
|
|
|
return '501 Not Implemented';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* LOCK method handler
|
|
|
|
*
|
|
|
|
* @param array general parameter passing array
|
|
|
|
* @return bool true on success
|
|
|
|
*/
|
|
|
|
function LOCK(&$options)
|
|
|
|
{
|
|
|
|
self::_parse_path($options['path'],$id,$app,$user);
|
|
|
|
$path = egw_vfs::app_entry_lock_path($app,$id);
|
|
|
|
|
2008-05-17 14:54:26 +02:00
|
|
|
if ($this->debug) error_log(__METHOD__.'('.array2string($options).") path=$path");
|
|
|
|
|
2008-05-08 22:31:32 +02:00
|
|
|
// get the app handler, to check if the user has edit access to the entry (required to make locks)
|
2008-05-17 14:54:26 +02:00
|
|
|
$handler = self::app_handler($app);
|
2008-05-08 22:31:32 +02:00
|
|
|
|
|
|
|
// TODO recursive locks on directories not supported yet
|
|
|
|
if (!$id || !empty($options['depth']) || !$handler->check_access(EGW_ACL_EDIT,$id))
|
|
|
|
{
|
|
|
|
return '409 Conflict';
|
|
|
|
}
|
|
|
|
$options['timeout'] = time()+300; // 5min. hardcoded
|
|
|
|
|
|
|
|
// dont know why, but HTTP_WebDAV_Server passes the owner in D:href tags, which get's passed unchanged to checkLock/PROPFIND
|
|
|
|
// that's wrong according to the standard and cadaver does not show it on discover --> strip_tags removes eventual tags
|
|
|
|
if (($ret = egw_vfs::lock($path,$options['locktoken'],$options['timeout'],strip_tags($options['owner']),
|
|
|
|
$options['scope'],$options['type'],isset($options['update']),false)) && !isset($options['update'])) // false = no ACL check
|
|
|
|
{
|
|
|
|
return $ret ? '200 OK' : '409 Conflict';
|
|
|
|
}
|
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UNLOCK method handler
|
|
|
|
*
|
|
|
|
* @param array general parameter passing array
|
|
|
|
* @return bool true on success
|
|
|
|
*/
|
|
|
|
function UNLOCK(&$options)
|
|
|
|
{
|
|
|
|
self::_parse_path($options['path'],$id,$app,$user);
|
|
|
|
$path = egw_vfs::app_entry_lock_path($app,$id);
|
|
|
|
|
2008-05-17 14:54:26 +02:00
|
|
|
if ($this->debug) error_log(__METHOD__.'('.array2string($options).") path=$path");
|
2008-05-08 22:31:32 +02:00
|
|
|
return egw_vfs::unlock($path,$options['token']) ? '204 No Content' : '409 Conflict';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* checkLock() helper
|
|
|
|
*
|
|
|
|
* @param string resource path to check for locks
|
|
|
|
* @return bool true on success
|
|
|
|
*/
|
|
|
|
function checkLock($path)
|
|
|
|
{
|
|
|
|
self::_parse_path($path,$id,$app,$user);
|
|
|
|
$path = egw_vfs::app_entry_lock_path($app,$id);
|
|
|
|
|
|
|
|
return egw_vfs::checkLock($path);
|
|
|
|
}
|
|
|
|
|
2010-03-07 00:06:43 +01:00
|
|
|
/**
|
|
|
|
* ACL method handler
|
|
|
|
*
|
|
|
|
* @param array general parameter passing array
|
|
|
|
* @return string HTTP status
|
|
|
|
*/
|
|
|
|
function ACL(&$options)
|
|
|
|
{
|
|
|
|
self::_parse_path($options['path'],$id,$app,$user);
|
|
|
|
|
|
|
|
if ($this->debug) error_log(__METHOD__.'('.array2string($options).") path=$path");
|
|
|
|
|
|
|
|
$options['errors'] = array();
|
|
|
|
switch ($app)
|
|
|
|
{
|
|
|
|
case 'calendar':
|
|
|
|
case 'addressbook':
|
|
|
|
case 'infolog':
|
|
|
|
$status = '200 OK'; // grant all
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$options['errors'][] = 'no-inherited-ace-conflict';
|
|
|
|
$status = '403 Forbidden';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
}
|
|
|
|
|
2008-05-08 22:31:32 +02:00
|
|
|
/**
|
|
|
|
* Parse a path into it's id, app and user parts
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @param int &$id
|
|
|
|
* @param string &$app addressbook, calendar, infolog (=infolog)
|
|
|
|
* @param int &$user
|
2009-10-03 12:22:14 +02:00
|
|
|
* @param string &$user_prefix=null
|
2008-05-08 22:31:32 +02:00
|
|
|
* @return boolean true on success, false on error
|
|
|
|
*/
|
2009-10-03 12:22:14 +02:00
|
|
|
function _parse_path($path,&$id,&$app,&$user,&$user_prefix=null)
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2010-02-26 12:04:01 +01:00
|
|
|
if ($this->debug)
|
|
|
|
{
|
|
|
|
error_log(__METHOD__." called with ('$path') id=$id, app='$app', user=$user");
|
|
|
|
}
|
|
|
|
if ($path[0] == '/')
|
|
|
|
{
|
|
|
|
$path = substr($path, 1);
|
|
|
|
}
|
|
|
|
$parts = explode('/', $this->_unslashify($path));
|
2008-05-08 22:31:32 +02:00
|
|
|
|
2010-10-31 08:56:29 +01:00
|
|
|
if (($account_id = $this->accounts->name2id($parts[0], 'account_lid')) ||
|
2010-10-20 16:37:48 +02:00
|
|
|
($account_id = $this->accounts->name2id($parts[0]=urldecode($parts[0]))))
|
2009-10-03 12:22:14 +02:00
|
|
|
{
|
2010-02-26 12:04:01 +01:00
|
|
|
// /$user/$app/...
|
|
|
|
$user = array_shift($parts);
|
2009-10-03 12:22:14 +02:00
|
|
|
}
|
2008-05-08 22:31:32 +02:00
|
|
|
|
2010-02-26 12:04:01 +01:00
|
|
|
$app = array_shift($parts);
|
|
|
|
|
|
|
|
if ($user)
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2009-10-03 12:22:14 +02:00
|
|
|
$user_prefix = '/'.$user;
|
2010-03-22 16:04:21 +01:00
|
|
|
$user = $account_id;
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-10-03 12:22:14 +02:00
|
|
|
$user_prefix = '';
|
2008-05-08 22:31:32 +02:00
|
|
|
$user = $GLOBALS['egw_info']['user']['account_id'];
|
|
|
|
}
|
2010-02-26 12:04:01 +01:00
|
|
|
|
2011-04-05 22:39:13 +02:00
|
|
|
$id = array_pop($parts);
|
2010-02-26 12:04:01 +01:00
|
|
|
|
2010-10-20 17:47:30 +02:00
|
|
|
$ok = $id && $user && in_array($app,array('addressbook','calendar','infolog','principals'));
|
2010-03-07 00:06:43 +01:00
|
|
|
if ($this->debug)
|
2008-05-08 22:31:32 +02:00
|
|
|
{
|
2010-03-07 00:06:43 +01:00
|
|
|
error_log(__METHOD__."('$path') returning " . ($ok ? 'true' : 'false') . ": id='$id', app='$app', user='$user', user_prefix='$user_prefix'");
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|
|
|
|
return $ok;
|
|
|
|
}
|
2010-03-07 00:06:43 +01:00
|
|
|
/**
|
|
|
|
* Add the privileges of the current user
|
|
|
|
*
|
|
|
|
* @param array $props=array() regular props by the groupdav handler
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
static function current_user_privilege_set(array $props=array())
|
|
|
|
{
|
|
|
|
$props[] = HTTP_WebDAV_Server::mkprop('current-user-privilege-set',
|
|
|
|
array(HTTP_WebDAV_Server::mkprop('privilege',
|
|
|
|
array(//HTTP_WebDAV_Server::mkprop('all',''),
|
|
|
|
HTTP_WebDAV_Server::mkprop('read',''),
|
|
|
|
HTTP_WebDAV_Server::mkprop('read-free-busy',''),
|
|
|
|
//HTTP_WebDAV_Server::mkprop('read-current-user-privilege-set',''),
|
|
|
|
HTTP_WebDAV_Server::mkprop('bind',''),
|
|
|
|
HTTP_WebDAV_Server::mkprop('unbind',''),
|
|
|
|
HTTP_WebDAV_Server::mkprop('schedule-post',''),
|
|
|
|
HTTP_WebDAV_Server::mkprop('schedule-post-vevent',''),
|
|
|
|
HTTP_WebDAV_Server::mkprop('schedule-respond',''),
|
|
|
|
HTTP_WebDAV_Server::mkprop('schedule-respond-vevent',''),
|
|
|
|
HTTP_WebDAV_Server::mkprop('schedule-deliver',''),
|
|
|
|
HTTP_WebDAV_Server::mkprop('schedule-deliver-vevent',''),
|
|
|
|
HTTP_WebDAV_Server::mkprop('write',''),
|
|
|
|
HTTP_WebDAV_Server::mkprop('write-properties',''),
|
|
|
|
HTTP_WebDAV_Server::mkprop('write-content',''),
|
|
|
|
))));
|
|
|
|
return $props;
|
|
|
|
}
|
2008-05-08 22:31:32 +02:00
|
|
|
}
|