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 >
2014-12-11 11:35:38 +01:00
* @ copyright ( c ) 2007 - 14 by Ralf Becker < RalfBecker - AT - outdoor - training . de >
2008-05-08 22:31:32 +02:00
* @ version $Id $
*/
2014-12-11 11:35:38 +01:00
if ( strpos ( ini_get ( 'include_path' ), EGW_API_INC ) === false )
{
ini_set ( 'include_path' , EGW_API_INC . PATH_SEPARATOR . ini_get ( 'include_path' ));
}
2008-05-08 22:31:32 +02:00
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
*
2014-12-11 11:35:38 +01:00
* Using a modified PEAR HTTP / WebDAV / Server class from API !
2009-10-03 12:22:14 +02:00
*
* One can use the following url ' s releative ( ! ) to http :// domain . com / egroupware / groupdav . php
*
2011-09-20 21:16:24 +02:00
* - / base of Cal | Card | GroupDAV tree , only certain clients ( KDE , Apple ) can autodetect folders from here
* - / principals / principal - collection - set for WebDAV ACL
* - / principals / users /< username >/
* - / principals / groups /< groupname >/
* - /< username >/ users home - set with
2009-10-03 12:22:14 +02:00
* - /< username >/ addressbook / addressbook of user or group < username > given the user has rights to view it
2012-09-27 17:46:08 +02:00
* - /< current - username >/ addressbook -< other - username >/ shared addressbooks from other user or group
* - /< current - username >/ addressbook - accounts / all accounts current user has rights to see
2009-10-03 12:22:14 +02:00
* - /< username >/ calendar / calendar of user < username > given the user has rights to view it
2015-11-13 16:23:36 +01:00
* - /< username >/ calendar / ? download download whole calendar as . ics file ( GET request ! )
2012-09-27 17:46:08 +02:00
* - /< current - username >/ calendar -< other - username >/ shared calendar from other user or group ( only current < username >! )
2011-09-22 20:46:16 +02:00
* - /< username >/ inbox / scheduling inbox of user < username >
* - /< username >/ outbox / scheduling outbox of user < username >
2009-10-03 12:22:14 +02:00
* - /< username >/ infolog / InfoLog ' s of user < username > given the user has rights to view it
2011-09-20 21:16:24 +02:00
* - / addressbook / all addressbooks current user has rights to , announced as directory - gateway now
2012-04-11 22:33:24 +02:00
* - / addressbook - accounts / all accounts current user has rights to see
2011-09-20 21:16:24 +02:00
* - / calendar / calendar of current user
* - / infolog / infologs of current user
2012-09-27 17:46:08 +02:00
* - / ( resources | locations ) /< resource - name >/ calendar calendar of a resource / location , if user has rights to view
* - /< current - username >/ ( resource | location ) -< resource - name > shared calendar from a resource / location
*
* Shared addressbooks or calendars are only shown in in users home - set , if he subscribed to it via his CalDAV preferences !
2009-10-03 12:22:14 +02:00
*
* 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
*
2012-02-21 21:04:45 +01:00
* Permanent error_log () calls should use groupdav -> log ( $str ) instead , to be send to PHP error_log ()
* and our request - log ( prefixed with " ### " after request and response , like exceptions ) .
*
2011-09-20 21:16:24 +02:00
* @ link http :// www . groupdav . org / GroupDAV spec
* @ link http :// caldav . calconnect . org / CalDAV resources
* @ link http :// carddav . calconnect . org / CardDAV resources
* @ link http :// calendarserver . org / Apple calendar and contacts server
2008-05-08 22:31:32 +02:00
*/
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
/**
2011-09-16 12:21:40 +02:00
* Apple Calendarserver namespace ( eg . for ctag )
2010-01-06 00:25:17 +01:00
*/
const CALENDARSERVER = 'http://calendarserver.org/ns/' ;
2011-09-16 12:21:40 +02:00
/**
* Apple Addressbookserver namespace ( eg . for ctag )
*/
const ADDRESSBOOKSERVER = 'http://addressbookserver.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
2011-09-21 22:08:21 +02:00
/**
* Folders in root or user home
*
* @ var array
*/
2008-05-08 22:31:32 +02:00
var $root = array (
2011-09-21 22:08:21 +02:00
'addressbook' => array (
'resourcetype' => array ( self :: GROUPDAV => 'vcard-collection' , self :: CARDDAV => 'addressbook' ),
'component-set' => array ( self :: GROUPDAV => 'VCARD' ),
),
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' ),
),
2011-09-22 17:22:52 +02:00
'inbox' => array (
2011-09-21 22:08:21 +02:00
'resourcetype' => array ( self :: CALDAV => 'schedule-inbox' ),
'app' => 'calendar' ,
2011-09-22 17:22:52 +02:00
'user-only' => true , // display just in user home
2008-08-04 21:08:09 +02:00
),
2011-09-21 22:08:21 +02:00
'outbox' => array (
'resourcetype' => array ( self :: CALDAV => 'schedule-outbox' ),
'app' => 'calendar' ,
2011-09-22 17:22:52 +02:00
'user-only' => true , // display just in user home
),
2008-08-04 21:08:09 +02:00
'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' ),
),
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
/**
2011-09-18 12:56:56 +02:00
* current - user - principal URL
2010-03-07 00:06:43 +01:00
*
* @ var string
*/
2011-09-18 12:56:56 +02:00
var $current_user_principal ;
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
/**
* Supported privileges with name and description
*
* privileges are hierarchical
*
* @ var array
*/
var $supported_privileges = array (
'all' => array (
'*description*' => 'all privileges' ,
2011-09-22 20:46:16 +02:00
'read' => array (
'*description*' => 'read resource' ,
'read-free-busy' => array (
'*ns*' => self :: CALDAV ,
'*description*' => 'allow free busy report query' ,
'*only*' => '/calendar/' ,
),
),
2011-09-21 22:08:21 +02:00
'write' => array (
'*description*' => 'write resource' ,
'write-properties' => 'write resource properties' ,
'write-content' => 'write resource content' ,
'bind' => 'add child resource' ,
'unbind' => 'remove child resource' ,
),
'unlock' => 'unlock resource without ownership of lock' ,
'read-acl' => 'read resource access control list' ,
'write-acl' => 'write resource access control list' ,
'read-current-user-privilege-set' => 'read privileges for current principal' ,
2011-09-22 20:46:16 +02:00
'schedule-deliver' => array (
'*ns*' => self :: CALDAV ,
'*description*' => 'schedule privileges for current principal' ,
'*only*' => '/inbox/' ,
),
'schedule-send' => array (
'*ns*' => self :: CALDAV ,
'*description*' => 'schedule privileges for current principal' ,
'*only*' => '/outbox/' ,
),
2011-09-21 22:08:21 +02:00
),
);
/**
* $options parameter to PROPFIND request , eg . to check what props are requested
*
* @ var array
*/
var $propfind_options ;
2010-03-07 00:06:43 +01:00
2012-10-04 13:59:04 +02:00
/**
* Reference to active instance , used by exception handler
*
* @ var groupdav
*/
protected static $instance ;
2008-05-08 22:31:32 +02:00
function __construct ()
{
2015-09-30 05:27:29 +02:00
// log which CalDAVTester test is currently running, set as User-Agent header
if ( substr ( $_SERVER [ 'HTTP_USER_AGENT' ], 0 , 14 ) == 'scripts/tests/' ) error_log ( '****** ' . $_SERVER [ 'HTTP_USER_AGENT' ]);
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
2012-02-20 10:06:24 +01:00
// setting our own exception handler, to be able to still log the requests
set_exception_handler ( array ( __CLASS__ , 'exception_handler' ));
2011-09-18 12:56:56 +02:00
// crrnd: client refuses redundand namespace declarations
2011-09-20 21:16:24 +02:00
// setting redundand namespaces as the default for (Cal|Card|Group)DAV, as the majority of the clients either require or can live with it
2012-08-13 11:32:03 +02:00
$this -> crrnd = false ;
2011-09-20 21:16:24 +02:00
// identify clients, which do NOT support path AND full url in <D:href> of PROPFIND request
2011-09-18 12:56:56 +02:00
switch (( $agent = groupdav_handler :: get_agent ()))
2009-09-14 10:44:37 +02:00
{
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 ;
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
2011-08-02 14:59:23 +02:00
case 'coredav' : // iCal app in OS X 10.7
2011-11-08 22:03:49 +01:00
case 'calendarstore' : // Apple iCal 5.0.1 under OS X 10.7.2
2009-09-14 10:44:37 +02:00
$this -> client_require_href_as_url = false ;
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 ;
2009-09-14 10:44:37 +02:00
}
2012-08-13 11:32:03 +02:00
if ( $this -> debug ) error_log ( __METHOD__ . " () HTTP_USER_AGENT=' $_SERVER[HTTP_USER_AGENT] ' --> ' $agent ' --> client_requires_href_as_url= $this->client_require_href_as_url , crrnd(client refuses redundand namespace declarations)= $this->crrnd " );
2011-09-18 12:56:56 +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 ();
2012-02-04 21:24:01 +01:00
// hack to allow to use query parameters in WebDAV, which HTTP_WebDAV_Server interprets as part of the path
list ( $this -> _SERVER [ 'REQUEST_URI' ]) = explode ( '?' , $this -> _SERVER [ 'REQUEST_URI' ]);
/* if ( substr ( $this -> _SERVER [ 'REQUEST_URI' ], - 13 ) == '/;add-member/' )
{
$_GET [ 'add-member' ] = '' ;
$this -> _SERVER [ 'REQUEST_URI' ] = substr ( $this -> _SERVER [ 'REQUEST_URI' ], 0 , - 12 );
} */
//error_log($_SERVER['REQUEST_URI']." --> ".$this->_SERVER['REQUEST_URI']);
2008-05-08 22:31:32 +02:00
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 )
{
2011-09-18 12:56:56 +02:00
$this -> current_user_principal = $this -> _slashify ( $this -> base_uri );
2010-03-07 00:06:43 +01:00
}
else
{
2011-09-18 12:56:56 +02:00
$this -> current_user_principal = ( @ $_SERVER [ " HTTPS " ] === " on " ? " https: " : " http: " ) .
2010-03-07 00:06:43 +01:00
'//' . $_SERVER [ 'HTTP_HOST' ] . $_SERVER [ 'SCRIPT_NAME' ] . '/' ;
}
2011-09-18 12:56:56 +02:00
$this -> current_user_principal .= '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
2011-09-18 12:56:56 +02:00
if ( ! $this -> client_require_href_as_url )
2010-09-25 11:08:37 +02:00
{
2011-09-18 12:56:56 +02:00
$this -> current_user_principal = parse_url ( $this -> current_user_principal , PHP_URL_PATH );
2010-09-25 11:08:37 +02:00
}
2010-03-07 00:06:43 +01:00
$this -> accounts = $GLOBALS [ 'egw' ] -> accounts ;
2012-10-04 13:59:04 +02:00
self :: $instance = $this ;
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
{
2011-09-21 22:08:21 +02:00
if ( isset ( $this -> root [ $app ][ 'app' ])) $app = $this -> root [ $app ][ 'app' ];
2011-09-18 12:56:56 +02:00
return groupdav_handler :: app_handler ( $app , $this );
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 )
{
2012-02-07 21:19:16 +01:00
// locking support
2012-02-09 21:09:49 +01:00
if ( ! in_array ( '2' , $dav )) $dav [] = '2' ;
2012-02-07 21:19:16 +01:00
if ( preg_match ( '#/(calendar(-[^/]+)?|inbox|outbox)/#' , $path )) // eg. /<username>/calendar-<otheruser>/
2008-05-08 22:31:32 +02:00
{
2011-09-25 14:00:20 +02:00
$app = 'calendar' ;
}
2012-02-07 21:19:16 +01:00
elseif ( preg_match ( '#/addressbook(-[^/]+)?/#' , $path )) // eg. /<username>/addressbook-<otheruser>/
2011-09-25 14:00:20 +02:00
{
$app = 'addressbook' ;
}
// CalDAV and CardDAV
$dav [] = 'access-control' ;
if ( $app !== 'addressbook' ) // CalDAV
{
$dav [] = 'calendar-access' ;
$dav [] = 'calendar-auto-schedule' ;
$dav [] = 'calendar-proxy' ;
// required by iOS iCal to use principal-property-search to autocomplete participants (and locations)
$dav [] = 'calendarserver-principal-property-search' ;
2012-02-07 21:19:16 +01:00
// required by iOS & OS X iCal to show private checkbox (X-CALENDARSERVER-ACCESS: CONFIDENTIAL on VCALENDAR)
$dav [] = 'calendarserver-private-events' ;
2013-09-23 12:21:31 +02:00
// managed attachments
$dav [] = 'calendar-managed-attachments' ;
2011-09-25 14:00:20 +02:00
// other capabilities calendarserver announces
//$dav[] = 'calendar-schedule';
//$dav[] = 'calendar-availability';
//$dav[] = 'inbox-availability';
//$dav[] = 'calendarserver-private-comments';
//$dav[] = 'calendarserver-sharing';
//$dav[] = 'calendarserver-sharing-no-scheduling';
2008-05-08 22:31:32 +02:00
}
2011-09-26 08:39:13 +02:00
if ( $app !== 'calendar' ) // CardDAV
2011-09-25 14:00:20 +02:00
{
$dav [] = 'addressbook' ; // CardDAV uses "addressbook" NOT "addressbook-access"
}
//error_log(__METHOD__."('$path') --> app='$app' --> DAV: ".implode(', ', $dav));
2008-05-08 22:31:32 +02:00
}
2011-09-21 22:08:21 +02:00
/**
* PROPFIND and REPORT method handler
*
* @ param array general parameter passing array
* @ param array return array for file properties
* @ return bool true on success
*/
function PROPFIND ( & $options , & $files , $method = 'PROPFIND' )
{
2012-01-21 02:45:48 +01:00
if ( $this -> debug ) error_log ( __CLASS__ . " :: $method ( " . array2string ( $options ) . ')' );
2011-09-21 22:08:21 +02:00
// make options (readonly) available to all class methods, eg. prop_requested
$this -> propfind_options = $options ;
// parse path in form [/account_lid]/app[/more]
2012-01-25 04:25:42 +01:00
if ( ! self :: _parse_path ( $options [ 'path' ], $id , $app , $user , $user_prefix ) && $app && ! $user && $user !== 0 )
2011-09-21 22:08:21 +02:00
{
if ( $this -> debug > 1 ) error_log ( __CLASS__ . " :: $method : user=' $user ', app=' $app ', id=' $id ': 404 not found! " );
return '404 Not Found' ;
}
2012-09-27 17:46:08 +02:00
if ( $this -> debug > 1 ) error_log ( __CLASS__ . " :: $method (path=' $options[path] '): user=' $user ', user_prefix=' $user_prefix ', app=' $app ', id=' $id ' " );
2011-09-21 22:08:21 +02:00
$files = array ( 'files' => array ());
$path = $user_prefix = $this -> _slashify ( $user_prefix );
if ( ! $app ) // user root folder containing apps
{
// add root with current users apps
$this -> add_home ( $files , $path , $user , $options [ 'depth' ]);
2014-11-14 11:19:20 +01:00
if ( $path == '/' )
{
$GLOBALS [ 'egw' ] -> hooks -> process ( array (
'location' => 'groupdav_root_props' ,
'props' => & $files [ 'files' ][ 0 ][ 'props' ],
'options' => $options ,
));
}
2011-09-21 22:08:21 +02:00
// add principals and user-homes
if ( $path == '/' && $options [ 'depth' ])
{
// principals collection
$files [ 'files' ][] = $this -> add_collection ( '/principals/' , array (
2011-11-23 17:34:39 +01:00
'displayname' => lang ( 'Accounts' ),
2011-09-21 22:08:21 +02:00
));
2012-01-25 04:25:42 +01:00
foreach ( $this -> accounts -> search ( array ( 'type' => 'both' , 'order' => 'account_lid' )) as $account )
2011-09-21 22:08:21 +02:00
{
2012-01-25 04:25:42 +01:00
$this -> add_home ( $files , $path . $account [ 'account_lid' ] . '/' , $account [ 'account_id' ], $options [ 'depth' ] == 'infinity' ? 'infinity' : $options [ 'depth' ] - 1 );
2011-09-21 22:08:21 +02:00
}
}
return true ;
}
2012-09-27 17:46:08 +02:00
if ( $path == '/' && ( $app == 'resources' || $app == 'locations' ))
{
return $this -> add_resources_collection ( $files , '/' . $app . '/' , $options [ 'depth' ]);
}
2011-09-21 22:08:21 +02:00
if ( $app != 'principals' && ! isset ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'apps' ][ $this -> root [ $app ][ 'app' ] ? $this -> root [ $app ][ 'app' ] : $app ]))
{
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
}
if (( $handler = self :: app_handler ( $app )))
{
if ( $method != 'REPORT' && ! $id ) // no self URL for REPORT requests (only PROPFIND) or propfinds on an id
{
// KAddressbook doubles the folder, if the self URL contains the GroupDAV/CalDAV resourcetypes
2012-01-30 06:11:05 +01:00
$files [ 'files' ][ 0 ] = $this -> add_app ( $app , $app == 'addressbook' && $handler -> get_agent () == 'kde' , $user ,
2012-01-31 23:27:31 +01:00
$this -> _slashify ( $options [ 'path' ]));
2011-09-21 22:08:21 +02:00
2015-09-03 08:54:06 +02:00
// Hack for iOS 5.0.1 addressbook to stop asking directory gateway permissions with depth != 0
// values for depth are 0, 1, "infinit" or not set which has to be interpreted as "infinit"
2015-09-02 15:38:36 +02:00
if ( $method == 'PROPFIND' && $options [ 'path' ] == '/addressbook/' &&
2015-09-03 08:54:06 +02:00
( ! isset ( $options [ 'depth' ]) || $options [ 'depth' ]) && $handler -> get_agent () == 'dataaccess' )
2012-01-21 02:45:48 +01:00
{
2012-02-21 21:04:45 +01:00
$this -> log ( __CLASS__ . " :: $method ( " . array2string ( $options ) . ') Enabling hack for iOS 5.0.1 addressbook: force Depth: 0 on PROPFIND for directory gateway!' );
2012-01-21 02:45:48 +01:00
return true ;
}
2011-09-21 22:08:21 +02:00
if ( ! $options [ 'depth' ]) return true ; // depth 0 --> show only the self url
}
return $handler -> propfind ( $this -> _slashify ( $options [ 'path' ]), $options , $files , $user , $id );
}
return '501 Not Implemented' ;
}
2011-09-18 12:56:56 +02:00
/**
* Add a collection to a PROPFIND request
*
* @ param string $path
* @ param array $props = array () extra properties 'resourcetype' is added anyway , name => value pairs or name => HTTP_WebDAV_Server ([ namespace ,] name , value )
2011-09-21 22:08:21 +02:00
* @ param array $privileges = array ( 'read' ) values for current - user - privilege - set
* @ param array $supported_privileges = null default $this -> supported_privileges
2011-09-18 12:56:56 +02:00
* @ return array with values for keys 'path' and 'props'
*/
2011-09-24 23:10:53 +02:00
public function add_collection ( $path , array $props = array (), array $privileges = array ( 'read' , 'read-acl' , 'read-current-user-privilege-set' ), array $supported_privileges = null )
2011-09-18 12:56:56 +02:00
{
// resourcetype: collection
$props [ 'resourcetype' ][] = self :: mkprop ( 'collection' , '' );
2011-09-21 22:08:21 +02:00
if ( ! isset ( $props [ 'getcontenttype' ])) $props [ 'getcontenttype' ] = 'httpd/unix-directory' ;
return $this -> add_resource ( $path , $props , $privileges , $supported_privileges );
}
/**
2011-09-28 17:41:42 +02:00
* Add a resource to a PROPFIND request
2011-09-21 22:08:21 +02:00
*
* @ param string $path
* @ param array $props = array () extra properties 'resourcetype' is added anyway , name => value pairs or name => HTTP_WebDAV_Server ([ namespace ,] name , value )
* @ param array $privileges = array ( 'read' ) values for current - user - privilege - set
* @ param array $supported_privileges = null default $this -> supported_privileges
* @ return array with values for keys 'path' and 'props'
*/
public function add_resource ( $path , array $props = array (), array $privileges = array ( 'read' , 'read-current-user-privilege-set' ), array $supported_privileges = null )
{
2011-09-18 12:56:56 +02:00
// props for all collections: current-user-principal and principal-collection-set
$props [ 'current-user-principal' ] = array (
self :: mkprop ( 'href' , $this -> current_user_principal ));
$props [ 'principal-collection-set' ] = array (
self :: mkprop ( 'href' , $this -> base_uri . '/principals/' ));
// required props per WebDAV standard
foreach ( array (
'displayname' => basename ( $path ),
2011-10-08 13:34:55 +02:00
'getetag' => 'none' ,
2011-09-18 12:56:56 +02:00
'getcontentlength' => '' ,
'getlastmodified' => '' ,
2011-09-21 22:08:21 +02:00
'getcontenttype' => '' ,
'resourcetype' => '' ,
2011-09-18 12:56:56 +02:00
) as $name => $default )
{
if ( ! isset ( $props [ $name ])) $props [ $name ] = $default ;
}
2011-09-21 22:08:21 +02:00
// if requested add privileges
if ( is_null ( $supported_privileges )) $supported_privileges = $this -> supported_privileges ;
if ( $this -> prop_requested ( 'current-user-privilege-set' ) === true )
{
foreach ( $privileges as $name )
{
$props [ 'current-user-privilege-set' ][] = self :: mkprop ( 'privilege' , array (
is_array ( $name ) ? self :: mkprop ( $name [ 'ns' ], $name [ 'name' ], '' ) : self :: mkprop ( $name , '' )));
}
}
if ( $this -> prop_requested ( 'supported-privilege-set' ) === true )
{
foreach ( $supported_privileges as $name => $data )
{
2011-09-22 20:46:16 +02:00
$props [ 'supported-privilege-set' ][] = $this -> supported_privilege ( $name , $data , $path );
2011-09-21 22:08:21 +02:00
}
}
if ( ! isset ( $props [ 'owner' ]) && $this -> prop_requested ( 'owner' ) === true )
{
$props [ 'owner' ] = '' ;
}
2011-09-18 12:56:56 +02:00
if ( $this -> debug > 1 ) error_log ( __METHOD__ . " (path=' $path ', props= " . array2string ( $props ) . ')' );
// convert simple associative properties to HTTP_WebDAV_Server ones
foreach ( $props as $name => & $prop )
{
if ( ! is_array ( $prop ) || ! isset ( $prop [ 'name' ]))
{
$prop = self :: mkprop ( $name , $prop );
}
2011-10-05 10:15:24 +02:00
// add quotes around etag, if they are not already there
if ( $prop [ 'name' ] == 'getetag' && $prop [ 'val' ][ 0 ] != '"' )
{
$prop [ 'val' ] = '"' . $prop [ 'val' ] . '"' ;
}
2011-09-18 12:56:56 +02:00
}
return array (
'path' => $path ,
'props' => $props ,
);
}
2008-05-08 22:31:32 +02:00
/**
2011-09-21 22:08:21 +02:00
* Generate ( hierachical ) supported - privilege property
2008-05-08 22:31:32 +02:00
*
2011-09-21 22:08:21 +02:00
* @ param string $name name of privilege
2011-09-22 20:46:16 +02:00
* @ param string | array $data string with describtion or array with agregated privileges plus value for key '*description*' , '*ns*' , '*only*'
* @ param string $path = null path to match with $data [ '*only*' ]
2011-09-21 22:08:21 +02:00
* @ return array of self :: mkprop () arrays
2008-05-08 22:31:32 +02:00
*/
2011-09-22 20:46:16 +02:00
protected function supported_privilege ( $name , $data , $path = null )
2008-05-08 22:31:32 +02:00
{
2011-09-21 22:08:21 +02:00
$props = array ();
2011-09-22 20:46:16 +02:00
$props [] = self :: mkprop ( 'privilege' , array ( is_array ( $data ) && $data [ '*ns*' ] ?
self :: mkprop ( $data [ '*ns*' ], $name , '' ) : self :: mkprop ( $name , '' )));
2011-09-21 22:08:21 +02:00
$props [] = self :: mkprop ( 'description' , is_array ( $data ) ? $data [ '*description*' ] : $data );
if ( is_array ( $data ))
2008-05-08 22:31:32 +02:00
{
2011-09-21 22:08:21 +02:00
foreach ( $data as $name => $data )
2010-10-10 00:49:10 +02:00
{
2011-09-22 20:46:16 +02:00
if ( $name [ 0 ] == '*' ) continue ;
if ( is_array ( $data ) && $data [ '*only*' ] && strpos ( $path , $data [ '*only*' ]) === false )
{
continue ; // wrong path
}
$props [] = $this -> supported_privilege ( $name , $data , $path );
2008-05-08 22:31:32 +02:00
}
}
2011-09-21 22:08:21 +02:00
return self :: mkprop ( 'supported-privilege' , $props );
}
/**
* Checks if a given property was requested in propfind request
*
* @ param string $name property name
* @ param string $ns = null namespace , if that is to be checked too
2012-01-24 06:27:26 +01:00
* @ param boolean $return_prop = false if true return the property array with values for 'name' , 'xmlns' , 'attrs' , 'children'
2012-01-30 06:11:05 +01:00
* @ return boolean | string | array true : $name explicitly requested ( or autoindex ), " all " : allprop or " names " : propname requested , false : $name was not requested
2011-09-21 22:08:21 +02:00
*/
2012-01-24 06:27:26 +01:00
function prop_requested ( $name , $ns = null , $return_prop = false )
2011-09-21 22:08:21 +02:00
{
if ( ! is_array ( $this -> propfind_options ) || ! isset ( $this -> propfind_options [ 'props' ]))
2008-05-08 22:31:32 +02:00
{
2012-01-30 06:11:05 +01:00
$ret = true ; // no props set, should happen only in autoindex, we return true to show all available props
2008-05-08 22:31:32 +02:00
}
2012-01-30 06:11:05 +01:00
elseif ( ! is_array ( $this -> propfind_options [ 'props' ]))
2008-05-08 22:31:32 +02:00
{
2012-01-30 06:11:05 +01:00
$ret = $this -> propfind_options [ 'props' ]; // "all": allprop or "names": propname
}
else
{
$ret = false ;
foreach ( $this -> propfind_options [ 'props' ] as $prop )
2008-05-08 22:31:32 +02:00
{
2012-01-30 06:11:05 +01:00
if ( $prop [ 'name' ] == $name && ( is_null ( $ns ) || $prop [ 'xmlns' ] == $ns ))
{
$ret = $return_prop ? $prop : true ;
break ;
}
2008-05-10 22:32:03 +02:00
}
2008-05-08 22:31:32 +02:00
}
2012-01-30 06:11:05 +01:00
//error_log(__METHOD__."('$name', '$ns', $return_prop) propfind_options=".array2string($this->propfind_options));
2011-09-21 22:08:21 +02:00
return $ret ;
2008-05-08 22:31:32 +02:00
}
2011-09-20 21:16:24 +02:00
/**
* Add user home with addressbook , calendar , infolog
*
* @ param array $files
* @ param string $path / or /< username >/
* @ param int $user
* @ param int $depth
* @ return string | boolean http status or true | false
*/
protected function add_home ( array & $files , $path , $user , $depth )
{
if ( $user )
{
$account_lid = $this -> accounts -> id2name ( $user );
}
else
{
$account_lid = $GLOBALS [ 'egw_info' ][ 'user' ][ 'account_lid' ];
}
$account = $this -> accounts -> read ( $account_lid );
$calendar_user_address_set = array (
self :: mkprop ( 'href' , 'urn:uuid:' . $account [ 'account_lid' ]),
);
if ( $user < 0 )
{
$principalType = 'groups' ;
$displayname = lang ( 'Group' ) . ' ' . $account [ 'account_lid' ];
}
else
{
$principalType = 'users' ;
$displayname = $account [ 'account_fullname' ];
2015-01-23 10:39:34 +01:00
$calendar_user_address_set [] = self :: mkprop ( 'href' , 'mailto:' . $account [ 'account_email' ]);
2011-09-20 21:16:24 +02:00
}
$calendar_user_address_set [] = self :: mkprop ( 'href' , $this -> base_uri . '/principals/' . $principalType . '/' . $account [ 'account_lid' ] . '/' );
if ( $depth && $path == '/' )
{
$displayname = 'EGroupware (Cal|Card|Group)DAV server' ;
}
$displayname = translation :: convert ( $displayname , translation :: charset (), 'utf-8' );
// self url
2012-02-02 00:26:16 +01:00
$props = array (
2011-09-20 21:16:24 +02:00
'displayname' => $displayname ,
2011-09-21 22:08:21 +02:00
'owner' => $path == '/' ? '' : array ( self :: mkprop ( 'href' , $this -> base_uri . '/principals/' . $principalType . '/' . $account_lid . '/' )),
2012-02-02 00:26:16 +01:00
);
if ( $path != '/' )
{
// add props modifyable via proppatch from client, eg. jqcalendar stores it's preferences there
foreach (( array ) $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'groupdav' ] as $name => $value )
{
list ( $prop , $prop4path , $ns ) = explode ( ':' , $name , 3 );
2012-09-26 12:01:02 +02:00
if ( $prop4path == $path && ( ! in_array ( $ns , self :: $ns_needs_explicit_named_props ) ||
isset ( self :: $proppatch_props [ $prop ]) && self :: $proppatch_props [ $prop ] === $ns ))
2012-02-02 00:26:16 +01:00
{
$props [] = self :: mkprop ( $ns , $prop , $value );
//error_log(__METHOD__."() arbitrary $ns:$prop=".array2string($value));
}
}
}
$files [ 'files' ][] = $this -> add_collection ( $path , $props );
2011-09-20 21:16:24 +02:00
if ( $depth )
{
foreach ( $this -> root as $app => $data )
{
2011-09-21 22:08:21 +02:00
if ( ! $GLOBALS [ 'egw_info' ][ 'user' ][ 'apps' ][ $data [ 'app' ] ? $data [ 'app' ] : $app ]) continue ; // no rights for the given app
2011-09-22 17:22:52 +02:00
if ( ! empty ( $data [ 'user-only' ]) && ( $path == '/' || $user < 0 )) continue ;
2011-09-21 22:08:21 +02:00
2012-01-25 04:25:42 +01:00
$files [ 'files' ][] = $this -> add_app ( $app , false , $user , $path . $app . '/' );
2012-01-30 06:11:05 +01:00
// only add global /addressbook-accounts/ as the one in home-set is added (and controled) by add_shared
if ( $path == '/' && $app == 'addressbook' &&
! $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'addressbook' ][ 'hide_accounts' ])
{
2012-02-03 19:21:20 +01:00
$file = $this -> add_app ( $app , false , 0 , $path . $app . '-accounts/' );
$file [ 'props' ][ 'resourcetype' ][ 'val' ][] = self :: mkprop ( self :: CALENDARSERVER , 'shared' , '' );
$files [ 'files' ][] = $file ;
2012-01-30 06:11:05 +01:00
}
2012-01-25 04:25:42 +01:00
// added shared calendars or addressbooks
$this -> add_shared ( $files [ 'files' ], $path , $app , $user );
2011-09-20 21:16:24 +02:00
}
2012-09-27 17:46:08 +02:00
if ( $path == '/' && $GLOBALS [ 'egw_info' ][ 'user' ][ 'apps' ][ 'resources' ])
{
$this -> add_resources_collection ( $files , $path . 'resources/' );
$this -> add_resources_collection ( $files , $path . 'locations/' );
}
}
return true ;
}
/**
* Add collection with available resources or locations calendar - home - sets
*
* @ param array & $files
* @ param string $path / or /< username >/
* @ param int $depth = 0
* @ return string | boolean http status or true | false
*/
protected function add_resources_collection ( array & $files , $path , $depth = 0 )
{
if ( ! isset ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'apps' ][ 'resources' ]))
{
if ( $this -> debug ) error_log ( __CLASS__ . " :: $method (path= $path ) 403 Forbidden: no app rights for 'resources' " );
return " 403 Forbidden: no app rights for 'resources' " ; // no rights for the given app
}
list (, $what ) = explode ( '/' , $path );
if (( $is_location = ( $what == 'locations' )))
{
$files [ 'files' ][] = $this -> add_collection ( '/locations/' , array ( 'displayname' => lang ( 'Location calendars' )));
}
else
{
$files [ 'files' ][] = $this -> add_collection ( '/resources/' , array ( 'displayname' => lang ( 'Resource calendars' )));
}
if ( $depth )
{
foreach ( groupdav_principals :: get_resources () as $res_id => $resource )
{
if ( $is_location == groupdav_principals :: resource_is_location ( $resource ))
{
$files [ 'files' ][] = $this -> add_app ( 'calendar' , false , 'r' . $resource [ 'res_id' ],
'/' . groupdav_principals :: resource2name ( $resource , $is_location ) . '/' );
}
}
2011-09-20 21:16:24 +02:00
}
return true ;
}
2012-01-25 04:25:42 +01:00
/**
* Add shared addressbook , calendar , infolog to user home
*
* @ param array & $files
* @ param string $path /< username >/
* @ param int $app
* @ param int $user
* @ return string | boolean http status or true | false
*/
protected function add_shared ( array & $files , $path , $app , $user )
{
// currently only show shared calendars/addressbooks for current user and not in the root
2012-02-04 02:03:56 +01:00
if ( $path == '/' || $user != $GLOBALS [ 'egw_info' ][ 'user' ][ 'account_id' ] ||
! isset ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'apps' ][ $app ])) // also avoids principals, inbox and outbox
2012-01-25 04:25:42 +01:00
{
return true ;
}
2012-02-04 02:03:56 +01:00
$handler = $this -> app_handler ( $app );
if (( $shared = $handler -> get_shared ()))
{
foreach ( $shared as $id => $owner )
{
2012-09-27 17:46:08 +02:00
$file = $this -> add_app ( $app , false , $id , $path . $owner . '/' );
2012-02-09 21:09:49 +01:00
// mark other users calendar as shared (iOS 5.0.1 AB does NOT display AB marked as shared!)
if ( $app == 'calendar' ) $file [ 'props' ][ 'resourcetype' ][ 'val' ][] = self :: mkprop ( self :: CALENDARSERVER , 'shared' , '' );
2012-02-04 02:03:56 +01:00
$files [] = $file ;
}
2012-01-25 04:25:42 +01:00
}
return true ;
}
/**
* Format an account - name for use in displayname
*
* @ param int | array $account
* @ return string
*/
public function account_name ( $account )
{
if ( is_array ( $account ))
{
if ( $account [ 'account_id' ] < 0 )
{
$name = lang ( 'Group' ) . ' ' . $account [ 'account_lid' ];
}
else
{
$name = $account [ 'account_fullname' ];
}
}
else
{
if ( $account < 0 )
{
$name = lang ( 'Group' ) . ' ' . $this -> accounts -> id2name ( $account , 'account_lid' );
}
else
{
$name = $this -> accounts -> id2name ( $account , 'account_fullname' );
}
if ( empty ( $name )) $name = '#' . $account ;
}
return $name ;
}
2008-05-08 22:31:32 +02:00
/**
2011-09-21 22:08:21 +02:00
* Add an application collection to a user home or the root
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 = '/'
2011-09-21 22:08:21 +02:00
* @ return array with values for keys 'path' and 'props'
2008-05-08 22:31:32 +02:00
*/
2011-09-21 22:08:21 +02:00
protected function add_app ( $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' ];
2012-09-27 17:46:08 +02:00
if ( is_string ( $user ) && $user [ 0 ] == 'r' && ( $resource = groupdav_principals :: read_resource ( substr ( $user , 1 ))))
{
$is_location = groupdav_principals :: resource_is_location ( $resource );
list ( $principalType , $account_lid ) = explode ( '/' , groupdav_principals :: resource2name ( $resource , $is_location , $displayname ));
}
elseif ( $user )
2010-03-07 00:06:43 +01:00
{
$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' ]);
}
2012-09-27 17:46:08 +02:00
$principalType = $user < 0 ? 'groups' : 'users' ;
2010-03-07 00:06:43 +01:00
}
else
{
$account_lid = $GLOBALS [ 'egw_info' ][ 'user' ][ 'account_lid' ];
2010-09-18 10:45:46 +02:00
$principalType = 'users' ;
}
2012-09-27 17:46:08 +02:00
if ( ! isset ( $displayname )) $displayname = $this -> account_name ( $user );
2010-10-31 08:56:29 +01:00
2008-08-04 21:08:09 +02:00
$props = array (
2011-09-18 12:56:56 +02:00
'owner' => array ( self :: mkprop ( 'href' , $this -> base_uri . '/principals/' . $principalType . '/' . $account_lid . '/' )),
2010-03-07 00:06:43 +01:00
);
switch ( $app )
{
2011-09-21 22:08:21 +02:00
case 'inbox' :
2012-09-27 17:46:08 +02:00
$props [ 'displayname' ] = lang ( 'Scheduling inbox' ) . ' ' . $displayname ;
2011-09-21 22:08:21 +02:00
break ;
case 'outbox' :
2012-09-27 17:46:08 +02:00
$props [ 'displayname' ] = lang ( 'Scheduling outbox' ) . ' ' . $displayname ;
2011-09-21 22:08:21 +02:00
break ;
2012-01-25 04:25:42 +01:00
case 'addressbook' :
if ( $path == '/addressbook/' )
{
$props [ 'displayname' ] = lang ( 'All addressbooks' );
break ;
}
elseif ( ! $user && ! $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'addressbook' ][ 'hide_accounts' ])
{
unset ( $props [ 'owner' ]);
$props [ 'displayname' ] = lang ( $app ) . ' ' . lang ( 'Accounts' );
break ;
}
// fall through
2010-03-07 00:06:43 +01:00
default :
2012-09-27 17:46:08 +02:00
$props [ 'displayname' ] = translation :: convert ( lang ( $app ) . ' ' . $displayname , $this -> egw_charset , 'utf-8' );
2011-11-09 14:23:53 +01:00
}
2012-02-04 21:24:01 +01:00
// rfc 5995 (Use POST to add members to WebDAV collections): we use collection path with add-member query param
2013-09-24 14:29:17 +02:00
// leaving it switched off, until further testing, because OS X iCal seem to ignore it and OS X Addressbook uses POST to full URL without ?add-member
2012-02-04 21:24:01 +01:00
if ( $app && ! in_array ( $app , array ( 'inbox' , 'outbox' , 'principals' ))) // not on inbox, outbox or principals
{
$props [ 'add-member' ][] = self :: mkprop ( 'href' , $this -> base_uri . $path . '?add-member' );
2013-09-24 14:29:17 +02:00
}
2012-02-04 21:24:01 +01:00
2011-11-09 14:23:53 +01:00
// add props modifyable via proppatch from client, eg. calendar-color, see self::$proppatch_props
foreach (( array ) $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ $app ] as $name => $value )
{
2012-01-30 06:11:05 +01:00
unset ( $ns );
list ( $prop , $prop4user , $ns ) = explode ( ':' , $name , 3 );
if ( $prop4user == ( string ) $user && isset ( self :: $proppatch_props [ $prop ]) && ! isset ( $ns ))
2011-11-09 14:23:53 +01:00
{
$props [ $prop ] = self :: mkprop ( self :: $proppatch_props [ $prop ], $prop , $value );
2012-01-30 06:11:05 +01:00
//error_log(__METHOD__."() explicit ".self::$proppatch_props[$prop].":$prop=".array2string($value));
}
// props in arbitrary namespaces not mentioned in self::$ns_needs_explicit_named_props
elseif ( isset ( $ns ) && ! in_array ( $ns , self :: $ns_needs_explicit_named_props ))
{
$props [] = self :: mkprop ( $ns , $prop , $value );
//error_log(__METHOD__."() arbitrary $ns:$prop=".array2string($value));
2011-11-09 14:23:53 +01:00
}
2010-03-07 00:06:43 +01:00
}
2009-10-03 12:22:14 +02:00
foreach (( array ) $this -> root [ $app ] as $prop => $values )
2008-05-08 22:31:32 +02:00
{
2011-09-21 22:08:21 +02:00
switch ( $prop )
2008-08-04 21:08:09 +02:00
{
2011-09-21 22:08:21 +02:00
case 'resourcetype' ;
if ( ! $no_extra_types )
2008-08-04 21:08:09 +02:00
{
2011-09-21 22:08:21 +02:00
foreach ( $this -> root [ $app ][ 'resourcetype' ] as $ns => $type )
{
$props [ 'resourcetype' ][] = self :: mkprop ( $ns , $type , '' );
}
// add /addressbook/ as directory gateway
2012-01-30 19:53:47 +01:00
if ( $path == '/addressbook/' )
2011-09-21 22:08:21 +02:00
{
$props [ 'resourcetype' ][] = self :: mkprop ( self :: CARDDAV , 'directory' , '' );
}
2008-08-04 21:08:09 +02:00
}
2011-09-21 22:08:21 +02:00
break ;
case 'app' :
2011-09-22 17:22:52 +02:00
case 'user-only' :
2011-09-21 22:08:21 +02:00
break ; // no props, already handled
default :
if ( is_array ( $values ))
2011-09-20 21:16:24 +02:00
{
2011-09-21 22:08:21 +02:00
foreach ( $values as $ns => $value )
{
$props [ $prop ] = self :: mkprop ( $ns , $prop , $value );
}
2011-09-20 21:16:24 +02:00
}
2011-09-21 22:08:21 +02:00
else
{
$props [ $prop ] = $values ;
}
break ;
2008-05-08 22:31:32 +02:00
}
}
2011-10-20 15:35:01 +02:00
// add other handler specific properties
2011-09-21 22:08:21 +02:00
if (( $handler = self :: app_handler ( $app )))
{
2011-10-20 15:35:01 +02:00
if ( method_exists ( $handler , 'extra_properties' ))
{
2012-09-27 17:46:08 +02:00
$props = $handler -> extra_properties ( $props , $displayname , $this -> base_uri , $user , $path );
2011-10-20 15:35:01 +02:00
}
// add ctag if handler implements it
2011-09-21 22:08:21 +02:00
if ( method_exists ( $handler , 'getctag' ) && $this -> prop_requested ( 'getctag' ) === true )
{
$props [ 'getctag' ] = self :: mkprop (
groupdav :: CALENDARSERVER , 'getctag' , $handler -> getctag ( $path , $user ));
}
2012-09-24 12:26:29 +02:00
// add sync-token url if handler supports sync-collection report
if ( isset ( $props [ 'supported-report-set' ][ 'sync-collection' ]) && $this -> prop_requested ( 'sync-token' ) === true )
2012-09-23 22:19:35 +02:00
{
2012-09-24 12:26:29 +02:00
$props [ 'sync-token' ] = $handler -> get_sync_token ( $path , $user );
2012-09-23 22:19:35 +02:00
}
2011-09-21 22:08:21 +02:00
}
2013-01-22 09:37:58 +01:00
if ( $handler && ! is_null ( $user ))
2012-01-25 04:25:42 +01:00
{
return $this -> add_collection ( $path , $props , $handler -> current_user_privileges ( $path , $user ));
}
return $this -> add_collection ( $path , $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 );
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
{
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
}
2011-09-16 12:21:40 +02:00
header ( 'Content-type: text/html; charset=' . translation :: charset ());
2009-08-16 17:24:43 +02:00
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 " ;
2011-09-21 22:08:21 +02:00
echo " \t <style type='text/css'> \n .th { background-color: #e0e0e0; } \n .row_on { background-color: #F1F1F1; vertical-align: top; } \n " .
" .row_off { background-color: #ffffff; vertical-align: top; } \n td { padding-left: 5px; } \n th { padding-left: 5px; text-align: left; } \n \t </style> \n " ;
2009-08-16 17:24:43 +02:00
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
2012-01-25 04:25:42 +01:00
static $props2show = array (
2012-02-07 13:47:49 +01:00
'DAV:displayname' => 'Displayname' ,
2012-01-25 04:25:42 +01:00
'DAV:getlastmodified' => 'Last modified' ,
'DAV:getetag' => 'ETag' ,
2012-10-29 13:23:17 +01:00
//'CalDAV:schedule-tag' => 'Schedule-Tag',
2012-01-25 04:25:42 +01:00
'DAV:getcontenttype' => 'Content type' ,
'DAV:resourcetype' => 'Resource type' ,
2012-10-08 13:20:29 +02:00
//'http://calendarserver.org/ns/:created-by' => 'Created by',
//'http://calendarserver.org/ns/:updated-by' => 'Updated by',
2012-01-25 04:25:42 +01:00
//'DAV:owner' => 'Owner',
//'DAV:current-user-privilege-set' => 'current-user-privilege-set',
2012-02-07 13:47:49 +01:00
//'DAV:getcontentlength' => 'Size',
2012-09-26 12:01:02 +02:00
//'DAV:sync-token' => 'sync-token',
2012-01-25 04:25:42 +01: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 ++ )
{
2012-01-25 04:25:42 +01:00
echo " <table> \n \t <tr class='th'> \n \t \t <th>#</th> \n \t \t <th> " . lang ( 'Name' ) . " </th> " ;
foreach ( $props2show as $label ) echo " \t \t <th> " . lang ( $label ) . " </th> \n " ;
echo " \t </tr> \n " ;
2009-10-17 14:22:40 +02:00
}
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
2011-10-06 09:51:24 +02:00
echo " \t <tr class=' $class '> \n \t \t <td> $n </td> \n \t \t <td> " .
html :: a_href ( htmlspecialchars ( $name ), '/groupdav.php' . strtr ( $file [ 'path' ], array (
'%' => '%25' ,
'#' => '%23' ,
'?' => '%3F' ,
))) . " </td> \n " ;
2012-01-25 04:25:42 +01:00
foreach ( $props2show as $prop => $label )
{
echo " \t \t <td> " . ( $prop == 'DAV:getlastmodified' &&! empty ( $props [ $prop ]) ? date ( 'Y-m-d H:i:s' , $props [ $prop ]) : $props [ $prop ]) . " </td> \n " ;
}
echo " \t </tr> \n " ;
2009-10-17 14:22:40 +02:00
}
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 );
2011-09-16 12:21:40 +02:00
echo " \t <tr class=' $class '> \n \t \t <td> " . htmlspecialchars ( $ns ) . " </td><td style='white-space: nowrap'> " . htmlspecialchars ( $name ) . " </td> \n " ;
2011-09-21 22:08:21 +02:00
echo " \t \t <td> " . $value . " </td> \n \t </tr> \n " ;
2009-08-16 17:24:43 +02:00
}
echo " </table> \n " ;
2011-09-25 14:00:20 +02:00
$dav = array ( 1 );
$allow = false ;
$this -> OPTIONS ( $options [ 'path' ], $dav , $allow );
echo " <p>DAV: " . implode ( ', ' , $dav ) . " </p> \n " ;
2009-08-16 17:24:43 +02:00
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
}
2011-09-21 22:08:21 +02:00
$value = array2string ( $value );
2009-08-16 17:24:43 +02:00
}
2011-09-21 22:08:21 +02:00
if ( $value [ 0 ] == '<' && function_exists ( 'tidy_repair_string' ))
2009-08-16 17:24:43 +02:00
{
2011-09-21 22:08:21 +02:00
$value = tidy_repair_string ( $value , array (
'indent' => true ,
'show-body-only' => true ,
'output-encoding' => 'utf-8' ,
'input-encoding' => 'utf-8' ,
'input-xml' => true ,
'output-xml' => true ,
'wrap' => 0 ,
));
}
2012-10-08 13:20:29 +02:00
if (( $href = preg_match ( '/\<(D:)?href\>[^<]+\<\/(D:)?href\>/i' , $value )))
2011-09-21 22:08:21 +02:00
{
2012-10-08 13:20:29 +02:00
$value = preg_replace ( '/\<(D:)?href\>(' . preg_quote ( $this -> base_uri . '/' , '/' ) . ')?([^<]+)\<\/(D:)?href\>/i' , '<\\1href><a href="\\2\\3">\\3</a></\\4href>' , $value );
2009-08-16 17:24:43 +02:00
}
2012-10-08 13:20:29 +02:00
$value = $value [ 0 ] == '<' || strpos ( $value , " \n " ) !== false ? '<pre>' . htmlspecialchars ( $value ) . '</pre>' : htmlspecialchars ( $value );
if ( $href )
2009-08-16 17:24:43 +02:00
{
2012-10-08 13:20:29 +02:00
$value = preg_replace ( '/<a href="(.+)">/' , '<a href="\\1">' , $value );
$value = str_replace ( '</a>' , '</a>' , $value );
2009-08-16 17:24:43 +02:00
}
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 )
{
2011-09-22 17:22:52 +02:00
$ns_hash = array ( 'DAV:' => 'D' );
2009-08-16 17:24:43 +02:00
switch ( $prop [ 'ns' ])
{
case 'DAV:' ;
$ns = 'DAV' ;
break ;
case self :: CALDAV :
2011-09-22 17:22:52 +02:00
$ns = $ns_hash [ $prop [ 'ns' ]] = 'CalDAV' ;
2009-08-16 17:24:43 +02:00
break ;
case self :: CARDDAV :
2011-09-22 17:22:52 +02:00
$ns = $ns_hash [ $prop [ 'ns' ]] = 'CardDAV' ;
2009-08-16 17:24:43 +02:00
break ;
case self :: GROUPDAV :
2011-09-22 17:22:52 +02:00
$ns = $ns_hash [ $prop [ 'ns' ]] = 'GroupDAV' ;
2009-08-16 17:24:43 +02:00
break ;
default :
$ns = $prop [ 'ns' ];
}
2011-09-16 12:21:40 +02:00
if ( is_array ( $prop [ 'val' ]))
{
2011-09-22 17:22:52 +02:00
$prop [ 'val' ] = $this -> _hierarchical_prop_encode ( $prop [ 'val' ], $prop [ 'ns' ], $ns_defs = '' , $ns_hash );
2011-09-16 12:21:40 +02:00
// hack to show real namespaces instead of not (visibly) defined shortcuts
unset ( $ns_hash [ 'DAV:' ]);
2011-09-22 17:22:52 +02:00
$value = strtr ( $v = $this -> prop_value ( $prop [ 'val' ]), array_flip ( $ns_hash ));
2011-09-21 22:08:21 +02:00
}
else
{
$value = $this -> prop_value ( $prop [ 'val' ]);
2011-09-16 12:21:40 +02:00
}
2011-09-21 22:08:21 +02:00
$arr [ $ns . ':' . $prop [ 'name' ]] = $value ;
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 )
{
2012-02-04 21:24:01 +01:00
// for some reason OS X Addressbook (CFNetwork user-agent) uses now (DAV:add-member given with collection URL+"?add-member")
// POST to the collection URL plus a UID like name component (like for regular PUT) to create new entrys
if ( isset ( $_GET [ 'add-member' ]) || groupdav_handler :: get_agent () == 'cfnetwork' )
{
$_GET [ 'add-member' ] = '' ; // otherwise we give no Location header
return $this -> PUT ( $options );
}
2013-09-23 12:21:31 +02:00
if ( $this -> debug ) error_log ( __METHOD__ . '(' . array2string ( $options ) . ')' );
$this -> _parse_path ( $options [ 'path' ], $id , $app , $user );
if (( $handler = self :: app_handler ( $app )))
2010-05-17 16:20:34 +02:00
{
2013-09-23 12:21:31 +02:00
// managed attachments
if ( isset ( $_GET [ 'action' ]) && substr ( $_GET [ 'action' ], 0 , 11 ) === 'attachment-' )
2010-05-17 16:20:34 +02:00
{
2013-09-23 12:21:31 +02:00
return $this -> managed_attachements ( $options , $id , $handler , $_GET [ 'action' ]);
}
if ( method_exists ( $handler , 'post' ))
{
// 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 );
}
}
return $handler -> post ( $options , $id , $user );
2010-05-17 16:20:34 +02:00
}
}
2013-09-23 12:21:31 +02:00
return '501 Not Implemented' ;
}
2010-10-31 08:56:29 +01:00
2013-09-23 12:21:31 +02:00
/**
* HTTP header containing managed id
*/
const MANAGED_ID_HEADER = 'Cal-Managed-ID' ;
2010-10-31 08:56:29 +01:00
2013-09-23 12:21:31 +02:00
/**
* Add , update or remove attachments
*
* @ param array & $options
* @ param string | int $id
* @ param groupdav_handler $handler
* @ param string $action 'attachment-add' , 'attachment-update' , 'attachment-remove'
* @ return string http status
*
* @ todo support for rid parameter
* @ todo managed - id does NOT change on update
* @ todo updates of attachments through vfs need to call $handler -> update_tags ( $id ) too
*/
protected function managed_attachements ( & $options , $id , groupdav_handler $handler , $action )
{
error_log ( __METHOD__ . " (path= $options[path] , id= $id , ..., action= $action ) _GET= " . array2string ( $_GET ));
$entry = $handler -> _common_get_put_delete ( 'GET' , $options , $id );
if ( ! is_array ( $entry ))
2010-05-17 16:20:34 +02:00
{
2013-09-23 12:21:31 +02:00
return $entry ? $entry : " 404 Not found " ;
2010-05-17 16:20:34 +02:00
}
2013-09-23 12:21:31 +02:00
if ( ! egw_link :: file_access ( $handler -> app , $entry [ 'id' ], EGW_ACL_EDIT ))
{
return '403 Forbidden' ;
}
switch ( $action )
{
case 'attachment-add' :
if ( isset ( $this -> _SERVER [ 'HTTP_CONTENT_DISPOSITION' ]) &&
substr ( $this -> _SERVER [ 'HTTP_CONTENT_DISPOSITION' ], 0 , 10 ) === 'attachment' &&
preg_match ( '/filename="?([^";]+)/' , $this -> _SERVER [ 'HTTP_CONTENT_DISPOSITION' ], $matches ))
{
2013-09-23 15:39:28 +02:00
$filename = egw_vfs :: basename ( $matches [ 1 ]);
2013-09-23 12:21:31 +02:00
}
2013-09-23 15:39:28 +02:00
if ( ! ( $to = self :: fopen_attachment ( $handler -> app , $handler -> get_id ( $entry ), $filename , $this -> _SERVER [ 'CONTENT_TYPE' ], $path )) ||
2013-09-23 12:21:31 +02:00
isset ( $options [ 'stream' ]) && ( $copied = stream_copy_to_stream ( $options [ 'stream' ], $to )) === false ||
isset ( $options [ 'content' ]) && ( $copied = fwrite ( $to , $options [ 'content' ])) === false )
{
return '403 Forbidden' ;
}
fclose ( $to );
2013-09-23 15:39:28 +02:00
error_log ( __METHOD__ . " () content-type= $options[content_type] , filename= $filename : $path created $copied bytes copied " );
2013-09-23 12:21:31 +02:00
$ret = '201 Created' ;
header ( self :: MANAGED_ID_HEADER . ': ' . self :: path2managed_id ( $path ));
2013-09-24 14:29:17 +02:00
header ( 'Location: ' . self :: path2location ( $path ));
2013-09-23 12:21:31 +02:00
break ;
case 'attachment-remove' :
case 'attachment-update' :
if ( empty ( $_GET [ 'managed-id' ]) || ! ( $path = self :: managed_id2path ( $_GET [ 'managed-id' ], $app , $id )))
{
2013-09-25 09:11:27 +02:00
self :: xml_error ( self :: mkprop ( self :: CALDAV , 'valid-managed-id-parameter' , '' ));
2013-09-25 14:37:42 +02:00
return '403 Forbidden' ;
2013-09-23 12:21:31 +02:00
}
if ( $action == 'attachment-remove' )
{
if ( ! egw_vfs :: unlink ( $path ))
{
2013-09-25 09:11:27 +02:00
self :: xml_error ( self :: mkprop ( self :: CALDAV , 'valid-managed-id-parameter' , '' ));
2013-09-23 12:21:31 +02:00
return '403 Forbidden' ;
}
$ret = '204 No content' ;
}
else
{
2015-09-29 14:27:49 +02:00
// check for rename of attachment via Content-Disposition:filename=
if ( isset ( $this -> _SERVER [ 'HTTP_CONTENT_DISPOSITION' ]) &&
substr ( $this -> _SERVER [ 'HTTP_CONTENT_DISPOSITION' ], 0 , 10 ) === 'attachment' &&
preg_match ( '/filename="?([^";]+)/' , $this -> _SERVER [ 'HTTP_CONTENT_DISPOSITION' ], $matches ) &&
( $filename = egw_vfs :: basename ( $matches [ 1 ])) != egw_vfs :: basename ( $path ))
{
$old_path = $path ;
if ( ! egw_vfs :: rename ( $old_path , $path = egw_vfs :: concat ( egw_vfs :: dirname ( $path ), $filename )))
{
self :: xml_error ( self :: mkprop ( self :: CALDAV , 'valid-managed-id-parameter' , '' ));
return '403 Forbidden' ;
}
}
2013-09-23 12:21:31 +02:00
if ( ! ( $to = egw_vfs :: fopen ( $path , 'w' )) ||
isset ( $options [ 'stream' ]) && ( $copied = stream_copy_to_stream ( $options [ 'stream' ], $to )) === false ||
isset ( $options [ 'content' ]) && ( $copied = fwrite ( $to , $options [ 'content' ])) === false )
{
2013-09-25 09:11:27 +02:00
self :: xml_error ( self :: mkprop ( self :: CALDAV , 'valid-managed-id-parameter' , '' ));
2013-09-23 12:21:31 +02:00
return '403 Forbidden' ;
}
fclose ( $to );
error_log ( __METHOD__ . " () content-type= $options[content_type] , filename= $filename : $path updated $copied bytes copied " );
$ret = '200 Ok' ;
header ( self :: MANAGED_ID_HEADER . ': ' . self :: path2managed_id ( $path ));
2013-09-25 14:37:42 +02:00
header ( 'Location: ' . self :: path2location ( $path ));
2013-09-23 12:21:31 +02:00
}
break ;
default :
return '501 Unknown action parameter ' . $action ;
}
// update etag/ctag/sync-token by updating modification time
$handler -> update_tags ( $entry );
// check/handle Prefer: return-representation
2013-09-25 14:37:42 +02:00
// we can NOT use 204 No content (forbidds a body) with return=representation, therefore we need to use 200 Ok instead!
if ( $handler -> check_return_representation ( $options , $id , $user ) && ( int ) $ret == 204 )
{
$ret = '200 Ok' ;
}
2013-09-23 12:21:31 +02:00
return $ret ;
}
2013-09-23 15:39:28 +02:00
/**
* Handle ATTACH attribute on importing iCals
*
* - turn inline attachments into managed attachments
* - delete NOT included attachments , $delete_via_put is true
* @ todo : store URLs not from our managed attachments
*
* @ param string $app eg . 'calendar'
* @ param int | string $id
* @ param array $attach array of array with values for keys 'name' , 'params' , 'value'
* @ param boolean $delete_via_put
2015-09-30 05:27:29 +02:00
* @ return boolean false on error , eg . invalid managed id , for false an xml - error body has been send
2013-09-23 15:39:28 +02:00
*/
public static function handle_attach ( $app , $id , $attach , $delete_via_put = false )
{
error_log ( __METHOD__ . " (' $app ', $id , attach= " . array2string ( $attach ) . " , delete_via_put= " . array2string ( $delete_via_put ) . ')' );
if ( ! egw_link :: file_access ( $app , $id , EGW_ACL_EDIT ))
{
error_log ( __METHOD__ . " (' $app ', $id , ...) no rights to update attachments " );
return ; // no rights --> nothing to do
}
if ( ! is_array ( $attach )) $attach = array (); // could be PEAR_Error if not set
if ( $delete_via_put )
{
foreach ( egw_vfs :: find ( egw_link :: vfs_path ( $app , $id , '' , true ), array ( 'type' => 'F' )) as $path )
{
$found = false ;
foreach ( $attach as $key => $attr )
{
if ( $attr [ 'params' ][ 'MANAGED-ID' ] === self :: path2managed_id ( $path ))
{
$found = true ;
unset ( $attach [ $key ]);
break ;
}
}
if ( ! $found )
{
$ok = egw_vfs :: unlink ( $path );
error_log ( __METHOD__ . " (' $app ', $id , ...) egw_vfs::unlink(' $path ') returned " . array2string ( $ok ));
}
}
}
// turn inline attachments into managed ones
foreach ( $attach as $key => $attr )
{
2015-09-29 09:37:15 +02:00
if ( ! empty ( $attr [ 'params' ][ 'FMTTYPE' ]))
2013-09-23 15:39:28 +02:00
{
2015-09-30 05:27:29 +02:00
if ( isset ( $attr [ 'params' ][ 'MANAGED-ID' ]))
{
// invalid managed-id
if ( ! ( $path = self :: managed_id2path ( $attr [ 'params' ][ 'MANAGED-ID' ])) || ! egw_vfs :: is_readable ( $path ))
{
error_log ( __METHOD__ . " (' $app ', $id , ...) invalid MANAGED-ID " . array2string ( $attr ));
self :: xml_error ( self :: mkprop ( self :: CALDAV , 'valid-managed-id' , '' ));
return false ;
}
if ( $path == ( $link = egw_link :: vfs_path ( $app , $id , egw_vfs :: basename ( $path ))))
{
error_log ( __METHOD__ . " (' $app ', $id , ...) trying to modify existing MANAGED-ID --> ignored! " . array2string ( $attr ));
continue ;
}
// reuse valid managed-id --> symlink attachment
if ( egw_vfs :: file_exists ( $link ))
{
if ( egw_vfs :: readlink ( $link ) === $path ) continue ; // no need to recreate identical link
egw_vfs :: unlink ( $link ); // symlink will fail, if $link exists
}
if ( ! egw_vfs :: symlink ( $path , $link ))
{
error_log ( __METHOD__ . " (' $app ', $id , ...) failed to symlink( $path , $link ) --> ignored! " );
}
continue ;
}
2013-09-23 15:39:28 +02:00
if ( ! ( $to = self :: fopen_attachment ( $app , $id , $filename = $attr [ 'params' ][ 'FILENAME' ], $attr [ 'params' ][ 'FMTTYPE' ], $path )) ||
2015-09-29 09:37:15 +02:00
// Horde Icalendar does NOT decode automatic
( $copied = fwrite ( $to , $attr [ 'params' ][ 'ENCODING' ] == 'BASE64' ? base64_decode ( $attr [ 'value' ]) : $attr [ 'value' ])) === false )
2013-09-23 15:39:28 +02:00
{
error_log ( __METHOD__ . " (' $app ', $id , ...) failed to add attachment " . array2string ( $attr ) . " ) " );
continue ;
}
fclose ( $to );
error_log ( __METHOD__ . " (' $app ', $id , ...)) content-type= { $attr [ 'params' ][ 'FMTTYPE' ] } , filename= $filename : $path created $copied bytes copied " );
}
else
{
error_log ( __METHOD__ . " (' $app ', $id , ...) unsupported URI attachment " . array2string ( $attr ));
}
}
}
/**
* Open attachment for writing
*
* @ param string $app
* @ param int | string $id
* @ param string $filename defaults to 'attachment'
* @ param string $mime = null mime - type to generate extension
* @ param string & $path = null on return path opened
* @ return resource
*/
protected static function fopen_attachment ( $app , $id , $filename , $mime = null , & $path = null )
{
$filename = empty ( $filename ) ? 'attachment' : egw_vfs :: basename ( $filename );
if ( strpos ( $mime , ';' )) list ( $mime ) = explode ( ';' , $mime ); // in case it contains eg. charset info
$ext = ! empty ( $mime ) ? mime_magic :: mime2ext ( $mime ) : '' ;
if ( ! $ext || substr ( $filename , - strlen ( $ext ) - 1 ) == '.' . $ext ||
preg_match ( '/\.([^.]+)$/' , $filename , $matches ) && mime_magic :: ext2mime ( $matches [ 1 ]) == $mime )
{
$parts = explode ( '.' , $filename );
$ext = '.' . array_pop ( $parts );
$filename = implode ( '.' , $parts );
}
else
{
$ext = '.' . $ext ;
}
for ( $i = 1 ; $i < 100 ; ++ $i )
{
$path = egw_link :: vfs_path ( $app , $id , $filename . ( $i > 1 ? '-' . $i : '' ) . $ext , true );
if ( ! egw_vfs :: stat ( $path )) break ;
}
if ( $i >= 100 ) return null ;
2013-09-25 14:37:42 +02:00
if ( ! egw_vfs :: file_exists ( $dir = egw_vfs :: dirname ( $path )) && ! egw_vfs :: mkdir ( $dir , 0777 , STREAM_MKDIR_RECURSIVE ))
2013-09-23 15:39:28 +02:00
{
error_log ( __METHOD__ . " (' $app ', $id , ...) failed to create entry dir $dir ! " );
return false ;
}
return egw_vfs :: fopen ( $path , 'w' );
}
/**
2013-09-24 14:29:17 +02:00
* Get attachment location from path
2013-09-23 15:39:28 +02:00
*
2013-09-24 14:29:17 +02:00
* @ param string $path
* @ return string
2013-09-23 15:39:28 +02:00
*/
2013-09-24 14:29:17 +02:00
protected static function path2location ( $path )
2013-09-23 15:39:28 +02:00
{
static $url_prefix ;
if ( ! isset ( $url_prefix ))
{
$url_prefix = '' ;
if ( $GLOBALS [ 'egw_info' ][ 'server' ][ 'webserver_url' ][ 0 ] == '/' )
{
$url_prefix = ( $_SERVER [ 'HTTPS' ] ? 'https' : 'http' ) . '://' . $_SERVER [ 'HTTP_HOST' ];
}
}
2013-09-24 14:29:17 +02:00
return $url_prefix . egw :: link ( egw_vfs :: download_url ( $path ));
}
/**
* Add ATTACH attribute ( s ) for iCal
*
* @ param string $app eg . 'calendar'
* @ param int | string $id
* @ param array & $attributes
* @ param array & $parameters
*/
public static function add_attach ( $app , $id , array & $attributes , array & $parameters )
{
2013-09-23 15:39:28 +02:00
foreach ( egw_vfs :: find ( egw_link :: vfs_path ( $app , $id , '' , true ), array (
'type' => 'F' ,
'need_mime' => true ,
), true ) as $path => $stat )
{
2015-09-30 05:27:29 +02:00
// handle symlinks --> return target size and mime-type
2015-09-30 08:24:53 +02:00
if (( $target = egw_vfs :: readlink ( $path )))
2015-09-30 05:27:29 +02:00
{
if ( ! ( $stat = egw_vfs :: stat ( $target ))) continue ; // broken or inaccessible symlink
// check if target is in /apps, probably reused MANAGED-ID --> return it
if ( substr ( $target , 0 , 6 ) == '/apps/' )
{
$path = $target ;
}
}
2013-09-24 14:29:17 +02:00
$attributes [ 'ATTACH' ][] = self :: path2location ( $path );
2013-09-23 15:39:28 +02:00
$parameters [ 'ATTACH' ][] = array (
'MANAGED-ID' => groupdav :: path2managed_id ( $path ),
2013-09-25 09:11:27 +02:00
'FMTTYPE' => $stat [ 'mime' ],
2015-09-29 09:37:15 +02:00
'SIZE' => ( string ) $stat [ 'size' ], // Horde_Icalendar renders int as empty string
2013-09-23 15:39:28 +02:00
'FILENAME' => egw_vfs :: basename ( $path ),
);
2015-09-29 09:37:15 +02:00
// if we have attachments, set X-attribute to enable deleting them by put
// (works around events synced before without ATTACH attributes)
$attributes [ 'X-EGROUPWARE-ATTACH-INCLUDED' ] = 'TRUE' ;
2013-09-23 15:39:28 +02:00
}
}
2013-09-23 12:21:31 +02:00
/**
* Return managed - id of a vfs - path
*
* @ param string $path " /apps/ $app / $id /something "
* @ return string
*/
static public function path2managed_id ( $path )
{
return base64_encode ( $path );
}
/**
* Return vfs - path of a managed - id
*
* @ param string $managed_id
* @ param string $app = null app - name to check against path
* @ param string | int $id = null id to check agains path
* @ return string | boolean " /apps/ $app / $id /something " or false if not found or not belonging to given $app / $id
*/
static public function managed_id2path ( $managed_id , $app = null , $id = null )
{
$path = base64_decode ( $managed_id );
if ( ! $path || substr ( $path , 0 , 6 ) != '/apps/' || ! egw_vfs :: stat ( $path ))
{
$path = false ;
}
elseif ( ! empty ( $app ) && ! empty ( $id ))
{
list (,, $a , $i ) = explode ( '/' , $path );
if ( $a !== $app || $i !== ( string ) $id )
{
$path = false ;
}
}
error_log ( __METHOD__ . " (' $managed_id ', $app , $id ) base64_decode(' $managed_id ')= " . array2string ( base64_decode ( $managed_id )) . ' returning ' . array2string ( $path ));
return $path ;
2010-05-17 16:20:34 +02:00
}
2010-10-31 08:56:29 +01:00
2011-11-09 14:23:53 +01:00
/**
2012-01-30 06:11:05 +01:00
* Namespaces which need to be eplicitly named in self :: $proppatch_props ,
* because we consider them protected , if not explicitly named
*
* @ var array
*/
static $ns_needs_explicit_named_props = array ( self :: DAV , self :: CALDAV , self :: CARDDAV , self :: CALENDARSERVER );
/**
* props modifyable via proppatch from client for name - spaces mentioned in self :: $ns_needs_explicit_named_props
*
* Props named here are stored in prefs without namespace !
2011-11-09 14:23:53 +01:00
*
* @ var array name => namespace pairs
*/
static $proppatch_props = array (
'displayname' => self :: DAV ,
'calendar-description' => self :: CALDAV ,
2012-01-30 06:11:05 +01:00
'addressbook-description' => self :: CARDDAV ,
'calendar-color' => self :: ICAL , // only mentioned that old prefs still work
2011-11-09 14:23:53 +01:00
'calendar-order' => self :: ICAL ,
2012-09-26 12:01:02 +02:00
'default-alarm-vevent-date' => self :: CALDAV ,
'default-alarm-vevent-datetime' => self :: CALDAV ,
2011-11-09 14:23:53 +01:00
);
/**
* PROPPATCH method handler
*
2012-01-30 06:11:05 +01:00
* @ param array & $options general parameter passing array
* @ return string with responsedescription or null , individual status in $options [ 'props' ][][ 'status' ]
2011-11-09 14:23:53 +01:00
*/
function PROPPATCH ( & $options )
{
2014-05-28 12:57:02 +02:00
if ( $this -> debug ) error_log ( __METHOD__ . " ( " . array2string ( $options ) . ')' );
2011-11-09 14:23:53 +01:00
// parse path in form [/account_lid]/app[/more]
2012-01-30 06:11:05 +01:00
self :: _parse_path ( $options [ 'path' ], $id , $app , $user , $user_prefix ); // allways returns false if eg. !$id
2012-02-02 00:26:16 +01:00
if ( $app == 'principals' || $id || $options [ 'path' ] == '/' )
2011-11-09 14:23:53 +01:00
{
2014-05-28 12:57:02 +02:00
if ( $this -> debug > 1 ) error_log ( __METHOD__ . " : user=' $user ', app=' $app ', id=' $id ': 404 not found! " );
2012-01-30 06:11:05 +01:00
foreach ( $options [ 'props' ] as & $prop ) $prop [ 'status' ] = '403 Forbidden' ;
return 'NOT allowed to PROPPATCH that resource!' ;
2011-11-09 14:23:53 +01:00
}
// store selected props in preferences, eg. calendar-color, see self::$proppatch_props
2014-05-28 12:57:02 +02:00
$need_save = array ();
2012-01-30 06:11:05 +01:00
foreach ( $options [ 'props' ] as & $prop )
2011-11-09 14:23:53 +01:00
{
2012-01-30 06:11:05 +01:00
if (( isset ( self :: $proppatch_props [ $prop [ 'name' ]]) && self :: $proppatch_props [ $prop [ 'name' ]] === $prop [ 'xmlns' ] ||
! in_array ( $prop [ 'xmlns' ], self :: $ns_needs_explicit_named_props )))
2011-11-09 14:23:53 +01:00
{
2012-02-02 00:26:16 +01:00
if ( ! $app )
{
$app = 'groupdav' ;
$name = $prop [ 'name' ] . ':' . $options [ 'path' ] . ':' . $prop [ 'ns' ];
}
else
{
$name = $prop [ 'name' ] . ':' . $user . ( isset ( self :: $proppatch_props [ $prop [ 'name' ]]) &&
self :: $proppatch_props [ $prop [ 'name' ]] == $prop [ 'ns' ] ? '' : ':' . $prop [ 'ns' ]);
}
2012-01-30 06:11:05 +01:00
//error_log("preferences['user']['$app']['$name']=".array2string($GLOBALS['egw_info']['user']['preferences'][$app][$name]).($GLOBALS['egw_info']['user']['preferences'][$app][$name] !== $prop['val'] ? ' !== ':' === ')."prop['val']=".array2string($prop['val']));
if ( $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ $app ][ $name ] !== $prop [ 'val' ]) // nothing to change otherwise
{
if ( isset ( $prop [ 'val' ]))
{
$GLOBALS [ 'egw' ] -> preferences -> add ( $app , $name , $prop [ 'val' ]);
}
else
{
$GLOBALS [ 'egw' ] -> preferences -> delete ( $app , $name );
}
2014-05-28 12:57:02 +02:00
$need_save [] = $name ;
2012-01-30 06:11:05 +01:00
}
$prop [ 'status' ] = '200 OK' ;
}
else
{
$prop [ 'status' ] = '409 Conflict' ; // could also be "403 Forbidden"
2011-11-09 14:23:53 +01:00
}
}
2014-05-28 12:57:02 +02:00
if ( $need_save )
{
$GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ] = $GLOBALS [ 'egw' ] -> preferences -> save_repository ();
// call calendar-hook, if default-alarms are changed, to sync them to calendar prefs
foreach ( $need_save as $name )
{
list ( $name ) = explode ( ':' , $name );
if ( in_array ( $name , array ( 'default-alarm-vevent-date' , 'default-alarm-vevent-datetime' )))
{
calendar_hooks :: sync_default_alarms ();
break ;
}
}
}
2011-11-09 14:23:53 +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 );
2013-09-23 12:21:31 +02:00
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' ;
2013-09-23 12:21:31 +02:00
// check/handle Prefer: return-representation
2015-09-28 15:15:36 +02:00
if ( $status [ 0 ] === '2' || $status === true )
2013-09-23 12:21:31 +02:00
{
2015-09-28 15:15:36 +02:00
// we can NOT use 204 No content (forbidds a body) with return=representation, therefore we need to use 200 Ok instead!
if ( $handler -> check_return_representation ( $options , $id , $user ) && ( int ) $status == 204 )
{
$status = '200 Ok' ;
}
2013-09-23 12:21:31 +02:00
}
2008-05-08 22:31:32 +02:00
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 ] == '/' )
{
2011-11-23 17:34:39 +01:00
$path = substr ( $path , 1 );
2010-02-26 12:04:01 +01:00
}
$parts = explode ( '/' , $this -> _unslashify ( $path ));
2008-05-08 22:31:32 +02:00
2012-09-27 17:46:08 +02:00
// /(resources|locations)/<resource-id>-<resource-name>/calendar
if ( $parts [ 0 ] == 'resources' || $parts [ 0 ] == 'locations' )
{
if ( ! empty ( $parts [ 1 ]))
{
$user = $parts [ 0 ] . '/' . $parts [ 1 ];
array_shift ( $parts );
$res_id = ( int ) array_shift ( $parts );
if ( ! groupdav_principals :: read_resource ( $res_id ))
{
return false ;
}
$account_id = 'r' . $res_id ;
$app = 'calendar' ;
}
}
elseif (( $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
2012-09-27 17:46:08 +02:00
if ( ! isset ( $app )) $app = array_shift ( $parts );
2010-02-26 12:04:01 +01:00
2012-01-30 06:11:05 +01:00
// /addressbook-accounts/
if ( ! $account_id && $app == 'addressbook-accounts' )
{
$app = 'addressbook' ;
$user = 0 ;
$user_prefix = '/' ;
}
2012-09-27 17:46:08 +02:00
// shared calendars/addressbooks at /<currentuser>/(calendar|addressbook|infolog|resource|location)-<username>
2012-01-30 06:11:05 +01:00
elseif ( $account_id == $GLOBALS [ 'egw_info' ][ 'user' ][ 'account_id' ] && strpos ( $app , '-' ) !== false )
2012-01-25 04:25:42 +01:00
{
2012-09-27 17:46:08 +02:00
$user_prefix = '/' . $GLOBALS [ 'egw_info' ][ 'user' ][ 'account_lid' ] . '/' . $app ;
2012-01-25 04:25:42 +01:00
list ( $app , $username ) = explode ( '-' , $app , 2 );
2012-01-30 06:11:05 +01:00
if ( $username == 'accounts' && ! $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'addressbook' ][ 'hide_accounts' ])
2012-01-25 04:25:42 +01:00
{
$account_id = 0 ;
}
2012-09-27 17:46:08 +02:00
elseif ( $app == 'resource' || $app == 'location' )
{
if ( ! groupdav_principals :: read_resource ( $res_id = ( int ) $username ))
{
return false ;
}
$account_id = 'r' . $res_id ;
$app = 'calendar' ;
}
2012-01-25 04:25:42 +01:00
elseif ( ! ( $account_id = $this -> accounts -> name2id ( $username , 'account_lid' )) &&
! ( $account_id = $this -> accounts -> name2id ( $username = urldecode ( $username ))))
{
return false ;
}
$user = $account_id ;
}
elseif ( $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 ;
2013-10-31 12:29:22 +01:00
// /<currentuser>/inbox/
if ( $user == $GLOBALS [ 'egw_info' ][ 'user' ][ 'account_id' ] && $app == 'inbox' )
{
$app = 'calendar' ;
}
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
2012-02-04 21:24:01 +01:00
$ok = ( $id || isset ( $_GET [ 'add-member' ]) && $_SERVER [ 'REQUEST_METHOD' ] == 'POST' ) &&
( $user || $user === 0 ) && 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 ;
}
2011-11-23 17:34:39 +01:00
2012-10-04 13:59:04 +02:00
protected static $request_starttime ;
/**
* Log level from user prefs : $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'groupdav' ][ 'debug_level' ])
* - 'f' files directory
* - 'r' to error - log , but only shortend requests
*
* @ var string
*/
protected static $log_level ;
2012-02-20 10:06:24 +01:00
2011-11-23 17:34:39 +01:00
/**
* Serve WebDAV HTTP request
*
2012-02-17 10:14:33 +01:00
* Reimplemented to add logging
2011-11-23 17:34:39 +01:00
*/
function ServeRequest ()
{
2012-10-04 13:59:04 +02:00
if (( self :: $log_level = $GLOBALS [ 'egw_info' ][ 'user' ][ 'preferences' ][ 'groupdav' ][ 'debug_level' ]) === 'r' ||
self :: $log_level === 'f' || $this -> debug )
2011-11-23 17:34:39 +01:00
{
2012-02-20 10:06:24 +01:00
self :: $request_starttime = microtime ( true );
2013-09-23 12:21:31 +02:00
// do NOT log non-text attachments
$this -> store_request = $_SERVER [ 'REQUEST_METHOD' ] != 'POST' || ! isset ( $_GET [ 'action' ]) ||
! in_array ( $_GET [ 'action' ], array ( 'attachment-add' , 'attachment-update' )) ||
substr ( $_SERVER [ 'CONTENT_TYPE' ], 0 , 5 ) == 'text/' ;
2011-11-23 17:34:39 +01:00
ob_start ();
}
parent :: ServeRequest ();
2012-02-20 10:06:24 +01:00
if ( self :: $request_starttime ) self :: log_request ();
}
/**
* Log the request
*
* @ param string $extra = '' extra text to add below request - log , eg . exception thrown
*/
2012-10-04 13:59:04 +02:00
protected function log_request ( $extra = '' )
2012-02-20 10:06:24 +01:00
{
if ( self :: $request_starttime )
2011-11-23 17:34:39 +01:00
{
2012-10-04 13:59:04 +02:00
if ( self :: $log_level === 'f' )
2011-11-24 13:20:13 +01:00
{
$msg_file = $GLOBALS [ 'egw_info' ][ 'server' ][ 'files_dir' ];
$msg_file .= '/groupdav' ;
if ( ! file_exists ( $msg_file ) && ! mkdir ( $msg_file , 0700 ))
{
error_log ( __METHOD__ . " () Could NOT create directory ' $msg_file '! " );
return ;
}
2013-09-25 09:46:02 +02:00
$msg_file .= '/' . $GLOBALS [ 'egw_info' ][ 'user' ][ 'account_lid' ] . '-' ;
// stop CalDAVTester from creating one log per test-step
if ( substr ( $_SERVER [ 'HTTP_USER_AGENT' ], 0 , 14 ) == 'scripts/tests/' )
{
$msg_file .= 'CalDAVTester.log' ;
}
else
{
$msg_file .= str_replace ( '/' , '!' , $_SERVER [ 'HTTP_USER_AGENT' ]) . '.log' ;
}
2012-02-17 10:14:33 +01:00
$content = '*** ' . $_SERVER [ 'REMOTE_ADDR' ] . ' ' . date ( 'c' ) . " \n " ;
2011-11-24 13:20:13 +01:00
}
2012-02-17 10:14:33 +01:00
$content .= $_SERVER [ 'REQUEST_METHOD' ] . ' ' . $_SERVER [ 'REQUEST_URI' ] . ' HTTP/1.1' . " \n " ;
2011-11-23 17:34:39 +01:00
// reconstruct headers
foreach ( $_SERVER as $name => $value )
{
list ( $type , $name ) = explode ( '_' , $name , 2 );
2011-11-24 13:20:13 +01:00
if ( $type == 'HTTP' || $type == 'CONTENT' )
{
2012-02-17 10:14:33 +01:00
$content .= str_replace ( ' ' , '-' , ucwords ( strtolower (( $type == 'HTTP' ? '' : $type . ' ' ) . str_replace ( '_' , ' ' , $name )))) .
': ' . ( $name == 'AUTHORIZATION' ? 'Basic ***************' : $value ) . " \n " ;
2011-11-24 13:20:13 +01:00
}
2011-11-23 17:34:39 +01:00
}
2012-02-17 10:14:33 +01:00
$content .= " \n " ;
2011-11-23 17:34:39 +01:00
if ( $this -> request )
{
2012-02-18 11:49:24 +01:00
$content .= $this -> request . " \n " ;
2011-11-23 17:34:39 +01:00
}
2012-02-17 10:14:33 +01:00
$content .= 'HTTP/1.1 ' . $this -> _http_status . " \n " ;
2013-09-25 09:11:27 +02:00
$content .= 'Date: ' . str_replace ( '+0000' , 'GMT' , gmdate ( 'r' )) . " \n " ;
$content .= 'Server: ' . $_SERVER [ 'SERVER_SOFTWARE' ] . " \n " ;
2012-02-17 10:14:33 +01:00
foreach ( headers_list () as $line ) $content .= $line . " \n " ;
if (( $c = ob_get_flush ())) $content .= " \n " ;
2012-10-08 13:20:29 +02:00
if ( self :: $log_level !== 'f' && strlen ( $c ) > 1536 ) $c = substr ( $c , 0 , 1536 ) . " \n *** LOG TRUNKATED \n " ;
2012-02-17 10:14:33 +01:00
$content .= $c ;
2012-02-20 10:06:24 +01:00
if ( $extra ) $content .= $extra ;
2012-02-21 21:04:45 +01:00
if ( $this -> to_log ) $content .= " \n ### " . implode ( " \n ### " , $this -> to_log ) . " \n " ;
2012-04-12 12:44:00 +02:00
$content .= $this -> _http_status [ 0 ] == '4' && substr ( $this -> _http_status , 0 , 3 ) != '412' ||
$this -> _http_status [ 0 ] == '5' ? '###' : '***' ; // mark failed requests with ###, instead of ***
$content .= sprintf ( ' %s --> "%s" took %5.3f s' , $_SERVER [ 'REQUEST_METHOD' ] . ( $_SERVER [ 'REQUEST_METHOD' ] == 'REPORT' ? ' ' . $this -> propfind_options [ 'root' ][ 'name' ] : '' ) . ' ' . $_SERVER [ 'PATH_INFO' ], $this -> _http_status , microtime ( true ) - self :: $request_starttime ) . " \n \n " ;
2012-02-21 21:04:45 +01:00
if ( $msg_file && ( $f = fopen ( $msg_file , 'a' )))
{
flock ( $f , LOCK_EX );
fwrite ( $f , $content );
flock ( $f , LOCK_UN );
fclose ( $f );
}
else
{
2012-03-28 09:03:40 +02:00
foreach ( explode ( " \n " , $content ) as $line ) error_log ( $line );
2012-02-21 21:04:45 +01:00
}
2012-02-17 10:14:33 +01:00
}
}
2013-09-25 09:11:27 +02:00
/**
* Output xml error element
*
* @ param string | array $xml_error string with name for empty element in DAV NS or array with props
* @ param string $human_readable = null human readable error message
*/
public static function xml_error ( $xml_error , $human_readable = null )
{
header ( 'Content-type: application/xml; charset=utf-8' );
$xml = new XMLWriter ;
$xml -> openMemory ();
$xml -> setIndent ( true );
$xml -> startDocument ( '1.0' , 'utf-8' );
$xml -> startElementNs ( null , 'error' , 'DAV:' );
self :: add_prop ( $xml , $xml_error );
if ( ! empty ( $human_readable ))
{
$xml -> writeElement ( 'responsedescription' , $human_readable );
}
$xml -> endElement (); // DAV:error
$xml -> endDocument ();
echo $xml -> outputMemory ();
}
/**
* Recursivly add properties to XMLWriter object
*
* @ param XMLWriter $xml
* @ param string | array $props string with name for empty element in DAV NS or array with props
*/
protected static function add_prop ( XMLWriter $xml , $props )
{
if ( is_string ( $props )) $props = self :: mkprop ( $props , '' );
if ( isset ( $props [ 'name' ])) $props = array ( $props );
foreach ( $props as $prop )
{
if ( isset ( $prop [ 'ns' ]) && $prop [ 'ns' ] !== 'DAV:' )
{
$xml -> startElementNs ( null , $prop [ 'name' ], $prop [ 'ns' ]);
}
else
{
$xml -> startElement ( $prop [ 'name' ]);
}
if ( is_array ( $prop [ 'val' ]))
{
self :: add_prop ( $xml , $prop [ 'val' ]);
}
else
{
$xml -> text (( string ) $prop [ 'val' ]);
}
$xml -> endElement ();
}
}
2012-02-17 10:14:33 +01:00
/**
2012-02-21 21:04:45 +01:00
* Content of log () calls , to be appended to request_log
*
* @ var array
*/
private $to_log = array ();
/**
* Log unconditional to own request - and PHP error - log
2012-02-17 10:14:33 +01:00
*
2012-02-21 21:04:45 +01:00
* @ param string $str
2012-02-17 10:14:33 +01:00
*/
2012-02-21 21:04:45 +01:00
public function log ( $str )
2012-02-17 10:14:33 +01:00
{
2012-10-29 13:14:33 +01:00
$this -> to_log [] = $str ;
2012-02-21 21:04:45 +01:00
error_log ( $str );
2011-11-23 17:34:39 +01:00
}
2012-02-20 10:06:24 +01:00
/**
* Exception handler , which additionally logs the request ( incl . a trace )
*
* Does NOT return and get installed in constructor .
*
* @ param Exception $e
*/
public static function exception_handler ( Exception $e )
{
// logging exception as regular egw_execption_hander does
_egw_log_exception ( $e , $headline );
// exception handler sending message back to the client as basic auth message
$error = str_replace ( array ( " \r " , " \n " ), array ( '' , ' | ' ), $e -> getMessage ());
header ( 'WWW-Authenticate: Basic realm="' . $headline . ': ' . $error . '"' );
header ( 'HTTP/1.1 401 Unauthorized' );
header ( 'X-WebDAV-Status: 401 Unauthorized' , true );
// if our own logging is active, log the request plus a trace, if enabled in server-config
2012-10-04 13:59:04 +02:00
if ( self :: $request_starttime && isset ( self :: $instance ))
2012-02-20 10:06:24 +01:00
{
2012-10-04 13:59:04 +02:00
self :: $instance -> _http_status = '401 Unauthorized' ; // to correctly log it
2012-02-20 10:06:24 +01:00
if ( $GLOBALS [ 'egw_info' ][ 'server' ][ 'exception_show_trace' ])
{
2012-10-04 13:59:04 +02:00
self :: $instance -> log_request ( " \n " . $e -> getTraceAsString () . " \n " );
2012-02-20 10:06:24 +01:00
}
else
{
2012-10-04 13:59:04 +02:00
self :: $instance -> log_request ();
2012-02-20 10:06:24 +01:00
}
}
if ( is_object ( $GLOBALS [ 'egw' ]))
{
common :: egw_exit ();
}
exit ;
}
2008-05-08 22:31:32 +02:00
}