forked from friendica/friendica-addons
272 lines
7.9 KiB
PHP
272 lines
7.9 KiB
PHP
<?php
|
|
|
|
require_once('include/security.php');
|
|
|
|
function dav_install()
|
|
{
|
|
register_hook('event_created', 'addon/dav/dav.php', 'dav_event_created_hook');
|
|
register_hook('event_updated', 'addon/dav/dav.php', 'dav_event_updated_hook');
|
|
register_hook('profile_tabs', 'addon/dav/dav.php', 'dav_profile_tabs_hook');
|
|
}
|
|
|
|
|
|
function dav_uninstall()
|
|
{
|
|
unregister_hook('event_created', 'addon/dav/dav.php', 'dav_event_created_hook');
|
|
unregister_hook('event_updated', 'addon/dav/dav.php', 'dav_event_updated_hook');
|
|
unregister_hook('profile_tabs', 'addon/dav/dav.php', 'dav_profile_tabs_hook');
|
|
}
|
|
|
|
|
|
function dav_module()
|
|
{
|
|
}
|
|
|
|
function dav_include_files()
|
|
{
|
|
/*
|
|
require_once (__DIR__ . "/SabreDAV/lib/Sabre.includes.php");
|
|
require_once (__DIR__ . "/SabreDAV/lib/Sabre/VObject/includes.php");
|
|
require_once (__DIR__ . "/SabreDAV/lib/Sabre/DAVACL/includes.php");
|
|
require_once (__DIR__ . "/SabreDAV/lib/Sabre/CalDAV/includes.php");
|
|
*/
|
|
require_once (__DIR__ . "/SabreDAV/lib/Sabre/autoload.php");
|
|
|
|
require_once (__DIR__ . "/common/calendar.fnk.php");
|
|
require_once (__DIR__ . "/common/calendar_rendering.fnk.php");
|
|
require_once (__DIR__ . "/common/dav_caldav_backend_common.inc.php");
|
|
require_once (__DIR__ . "/common/dav_caldav_backend_private.inc.php");
|
|
require_once (__DIR__ . "/common/dav_caldav_backend_virtual.inc.php");
|
|
require_once (__DIR__ . "/common/dav_caldav_root.inc.php");
|
|
require_once (__DIR__ . "/common/dav_user_calendars.inc.php");
|
|
require_once (__DIR__ . "/common/dav_carddav_root.inc.php");
|
|
require_once (__DIR__ . "/common/dav_carddav_backend_std.inc.php");
|
|
require_once (__DIR__ . "/common/dav_user_addressbooks.inc.php");
|
|
require_once (__DIR__ . "/common/dav_caldav_calendar_virtual.inc.php");
|
|
require_once (__DIR__ . "/common/wdcal_configuration.php");
|
|
require_once (__DIR__ . "/common/wdcal_backend.inc.php");
|
|
|
|
require_once (__DIR__ . "/dav_friendica_principal.inc.php");
|
|
require_once (__DIR__ . "/dav_friendica_auth.inc.php");
|
|
require_once (__DIR__ . "/dav_carddav_backend_virtual_friendica.inc.php");
|
|
require_once (__DIR__ . "/dav_caldav_backend_virtual_friendica.inc.php");
|
|
require_once (__DIR__ . "/FriendicaACLPlugin.inc.php");
|
|
|
|
require_once (__DIR__ . "/common/wdcal_edit.inc.php");
|
|
require_once (__DIR__ . "/calendar.friendica.fnk.php");
|
|
require_once (__DIR__ . "/layout.fnk.php");
|
|
}
|
|
|
|
|
|
/**
|
|
* @param App $a
|
|
*/
|
|
function dav_init(&$a)
|
|
{
|
|
|
|
/*
|
|
* Recommended settings:
|
|
* ALTER TABLE `photo` ADD INDEX ( `contact-id` )
|
|
*/
|
|
|
|
dav_include_files();
|
|
|
|
if (true) {
|
|
dbg(true);
|
|
error_reporting(E_ALL);
|
|
ini_set("display_errors", 1);
|
|
}
|
|
|
|
wdcal_create_std_calendars();
|
|
wdcal_addRequiredHeaders();
|
|
|
|
if ($a->argc >= 2 && $a->argv[1] == "wdcal") {
|
|
|
|
if ($a->argc >= 3 && $a->argv[2] == "feed") {
|
|
wdcal_print_feed($a->get_baseurl() . "/dav/wdcal/");
|
|
killme();
|
|
}
|
|
return;
|
|
}
|
|
if ($a->argc >= 2 && $a->argv[1] == "getExceptionDates") {
|
|
echo wdcal_getEditPage_exception_selector();
|
|
killme();
|
|
}
|
|
|
|
if ($a->argc >= 2 && $a->argv[1] == "settings") {
|
|
return;
|
|
}
|
|
|
|
|
|
if (isset($_REQUEST["test"])) {
|
|
renderAllCalDavEntries();
|
|
}
|
|
|
|
|
|
$server = dav_create_server();
|
|
$browser = new Sabre_DAV_Browser_Plugin();
|
|
$server->addPlugin($browser);
|
|
$server->exec();
|
|
|
|
killme();
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
function dav_content()
|
|
{
|
|
$a = get_app();
|
|
if (!isset($a->user["uid"]) || $a->user["uid"] == 0) {
|
|
return login();
|
|
}
|
|
|
|
$x = "";
|
|
|
|
if ($a->argv[1] == "settings") {
|
|
return wdcal_getSettingsPage($a);
|
|
} elseif ($a->argv[1] == "wdcal") {
|
|
if (isset($a->argv[2]) && strlen($a->argv[2]) > 0) {
|
|
if ($a->argv[2] == "ics") {
|
|
wdcal_print_user_ics();
|
|
} elseif ($a->argv[2] == "new") {
|
|
$o = "";
|
|
if (isset($_REQUEST["save"])) {
|
|
check_form_security_token_redirectOnErr($a->get_baseurl() . "/dav/wdcal/", "caledit");
|
|
$ret = wdcal_postEditPage("new", "", $a->user["uid"], $a->timezone, $a->get_baseurl() . "/dav/wdcal/");
|
|
if ($ret["ok"]) notice($ret["msg"]);
|
|
else info($ret["msg"]);
|
|
goaway($a->get_baseurl() . "/dav/wdcal/");
|
|
}
|
|
$o .= wdcal_getNewPage();
|
|
return $o;
|
|
} else {
|
|
$calendar_id = IntVal($a->argv[2]);
|
|
if (isset($a->argv[3]) && $a->argv[3] > 0) {
|
|
$recurr_uri = ""; // @TODO
|
|
if (isset($a->argv[4]) && $a->argv[4] == "edit") {
|
|
$o = "";
|
|
if (isset($_REQUEST["save"])) {
|
|
check_form_security_token_redirectOnErr($a->get_baseurl() . "/dav/wdcal/", "caledit");
|
|
$ret = wdcal_postEditPage($a->argv[3], $recurr_uri, $a->user["uid"], $a->timezone, $a->get_baseurl() . "/dav/wdcal/");
|
|
if ($ret["ok"]) notice($ret["msg"]);
|
|
else info($ret["msg"]);
|
|
goaway($a->get_baseurl() . "/dav/wdcal/");
|
|
}
|
|
$o .= wdcal_getEditPage($calendar_id, $a->argv[3], $recurr_uri);
|
|
return $o;
|
|
} else {
|
|
return wdcal_getDetailPage($calendar_id, $a->argv[3], $recurr_uri);
|
|
}
|
|
} else {
|
|
// @TODO Edit Calendar
|
|
}
|
|
}
|
|
} else {
|
|
$server = dav_create_server(true, true, false);
|
|
$cals = dav_get_current_user_calendars($server, DAV_ACL_READ);
|
|
$x = wdcal_printCalendar($cals, array(), $a->get_baseurl() . "/dav/wdcal/feed/", "week", 0, 200);
|
|
}
|
|
}
|
|
return $x;
|
|
}
|
|
|
|
|
|
/**
|
|
* @param App $a
|
|
* @param object $b
|
|
*/
|
|
function dav_event_created_hook(&$a, &$b)
|
|
{
|
|
dav_include_files();
|
|
// @TODO Updating the cache instead of completely invalidating and rebuilding it
|
|
Sabre_CalDAV_Backend_Friendica::invalidateCache($a->user["uid"], CALDAV_FRIENDICA_CONTACTS);
|
|
Sabre_CalDAV_Backend_Friendica::invalidateCache($a->user["uid"], CALDAV_FRIENDICA_MINE);
|
|
}
|
|
|
|
/**
|
|
* @param App $a
|
|
* @param object $b
|
|
*/
|
|
function dav_event_updated_hook(&$a, &$b)
|
|
{
|
|
dav_include_files();
|
|
// @TODO Updating the cache instead of completely invalidating and rebuilding it
|
|
Sabre_CalDAV_Backend_Friendica::invalidateCache($a->user["uid"], CALDAV_FRIENDICA_CONTACTS);
|
|
Sabre_CalDAV_Backend_Friendica::invalidateCache($a->user["uid"], CALDAV_FRIENDICA_MINE);
|
|
}
|
|
|
|
/**
|
|
* @param App $a
|
|
* @param object $b
|
|
*/
|
|
function dav_profile_tabs_hook(&$a, &$b)
|
|
{
|
|
$b["tabs"][] = array(
|
|
"label" => t('Calendar'),
|
|
"url" => $a->get_baseurl() . "/dav/wdcal/",
|
|
"sel" => "",
|
|
"title" => t('Extended calendar with CalDAV-support'),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param App $a
|
|
* @param null|object $o
|
|
*/
|
|
function dav_plugin_admin_post(&$a = null, &$o = null)
|
|
{
|
|
check_form_security_token_redirectOnErr('/admin/plugins/dav', 'dav_admin_save');
|
|
|
|
dav_include_files();
|
|
require_once(__DIR__ . "/database-init.inc.php");
|
|
|
|
if (isset($_REQUEST["install"])) {
|
|
$errs = dav_create_tables();
|
|
if (count($errs) == 0) info(t('The database tables have been installed.') . EOL);
|
|
else notice(t("An error occurred during the installation.") . EOL);
|
|
}
|
|
if (isset($_REQUEST["upgrade"])) {
|
|
$errs = dav_upgrade_tables();
|
|
if (count($errs) == 0) info(t('The database tables have been updated.') . EOL);
|
|
else notice(t("An error occurred during the update.") . EOL);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param App $a
|
|
* @param string $o
|
|
*/
|
|
function dav_plugin_admin(&$a, &$o)
|
|
{
|
|
dav_include_files();
|
|
require_once(__DIR__ . "/database-init.inc.php");
|
|
|
|
$dbstatus = dav_check_tables();
|
|
|
|
$o = '<input type="hidden" name="form_security_token" value="' . get_form_security_token("dav_admin_save") . '">';
|
|
$o .= '<i>' . t("No system-wide settings yet.") . '</i><br><br>';
|
|
|
|
|
|
$o .= '<h3>' . t('Database status') . '</h3>';
|
|
switch ($dbstatus) {
|
|
case 0:
|
|
$o .= t('Installed');
|
|
break;
|
|
case 1:
|
|
$o .= t('Upgrade needed') . "<br><br><input type='submit' name='upgrade' value='" . t('Upgrade') . "'>";
|
|
break;
|
|
case -1:
|
|
$o .= t('Not installed') . "<br><br><input type='submit' name='install' value='" . t('Install') . "'>";
|
|
break;
|
|
}
|
|
$o .= "<br><br>";
|
|
|
|
$o .= "<h3>" . t("Troubleshooting") . "</h3>";
|
|
$o .= "<h4>" . t("Manual creation of the database tables:") . "</h4>";
|
|
$o .= "<a href='#' onClick='\$(\"#sqlstatements\").show(); return false;'>" . t("Show SQL-statements") . "</a><blockquote style='display: none;' id='sqlstatements'><pre>";
|
|
$tables = dav_get_create_statements();
|
|
foreach ($tables as $t) $o .= escape_tags($t . "\n\n");
|
|
$o .= "</pre></blockquote>";
|
|
}
|