Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F1720915
calendarserver.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
2 KB
Subscribers
None
calendarserver.php
View Options
<?php
/**
* DokuWiki DAVCal PlugIn - DAV Calendar Server PlugIn.
*
* This is heavily based on SabreDAV and features a DokuWiki connector.
*/
// Initialize DokuWiki
if
(!
defined
(
'DOKU_INC'
))
define
(
'DOKU_INC'
,
dirname
(
__FILE__
).
'/../../../'
);
if
(!
defined
(
'DOKU_DISABLE_GZIP_OUTPUT'
))
define
(
'DOKU_DISABLE_GZIP_OUTPUT'
,
1
);
require_once
(
DOKU_INC
.
'inc/init.php'
);
session_write_close
();
//close session
global
$conf
;
$hlp
=
null
;
$hlp
=&
plugin_load
(
'helper'
,
'davcal'
);
if
(
is_null
(
$hlp
))
{
die
(
'Error loading helper plugin'
);
}
$baseUri
=
DOKU_BASE
.
'lib/plugins/davcal/'
.
basename
(
__FILE__
).
'/'
;
$sqlFile
=
$conf
[
'metadir'
].
'/davcal.sqlite3'
;
if
(!
file_exists
(
$sqlFile
))
{
die
(
'SQL File doesn
\'
t exist'
);
}
if
(
$hlp
->
getConfig
(
'disable_sync'
)
===
1
)
{
die
(
'Synchronisation is disabled'
);
}
/* Database */
$pdo
=
new
PDO
(
'sqlite:'
.
$sqlFile
);
$pdo
->
setAttribute
(
PDO
::
ATTR_ERRMODE
,
PDO
::
ERRMODE_EXCEPTION
);
//Mapping PHP errors to exceptions
function
exception_error_handler
(
$errno
,
$errstr
,
$errfile
,
$errline
)
{
throw
new
ErrorException
(
$errstr
,
0
,
$errno
,
$errfile
,
$errline
);
}
//set_error_handler("exception_error_handler");
// Files we need
require_once
'vendor/autoload.php'
;
require_once
(
'authBackendDokuwiki.php'
);
require_once
(
'principalBackendDokuwiki.php'
);
require_once
(
'calendarBackendDokuwiki.php'
);
// Backends - our DokuWiki backends
$authBackend
=
new
DokuWikiSabreAuthBackend
();
$calendarBackend
=
new
DokuWikiSabreCalendarBackend
(
$pdo
);
$principalBackend
=
new
DokuWikiSabrePrincipalBackend
();
// Directory structure
$tree
=
[
new
Sabre\CalDAV\Principal\Collection
(
$principalBackend
),
new
Sabre\CalDAV\CalendarRoot
(
$principalBackend
,
$calendarBackend
),
];
$server
=
new
Sabre\DAV\Server
(
$tree
);
if
(
isset
(
$baseUri
))
$server
->
setBaseUri
(
$baseUri
);
/* Server Plugins */
$authPlugin
=
new
Sabre\DAV\Auth\Plugin
(
$authBackend
);
$server
->
addPlugin
(
$authPlugin
);
$aclPlugin
=
new
Sabre\DAVACL\Plugin
();
$server
->
addPlugin
(
$aclPlugin
);
/* CalDAV support */
$caldavPlugin
=
new
Sabre\CalDAV\Plugin
();
$server
->
addPlugin
(
$caldavPlugin
);
/* Calendar subscription support */
//$server->addPlugin(
// new Sabre\CalDAV\Subscriptions\Plugin()
//);
/* Calendar scheduling support */
//$server->addPlugin(
// new Sabre\CalDAV\Schedule\Plugin()
//);
/* WebDAV-Sync plugin */
$server
->
addPlugin
(
new
Sabre\DAV\Sync\Plugin
());
// Support for html frontend
$browser
=
new
Sabre\DAV\Browser\Plugin
();
$server
->
addPlugin
(
$browser
);
// And off we go!
$server
->
exec
();
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Nov 23, 10:41 AM (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
908918
Default Alt Text
calendarserver.php (2 KB)
Attached To
rDAVCAL DokuWiki DAVCal PlugIn
Event Timeline
Log In to Comment