2012-06-03 20:19:28 +02:00
< ? php
2018-01-01 03:04:02 +01:00
2018-01-17 01:51:12 +01:00
use Friendica\Core\Addon ;
2018-01-01 03:04:02 +01:00
use Friendica\Module\Login ;
2017-11-23 00:10:01 +01:00
use Friendica\Util\Emailer ;
2012-06-03 20:19:28 +02:00
require_once ( 'include/security.php' );
function dav_install ()
{
2018-01-17 01:51:12 +01:00
Addon :: registerHook ( 'event_created' , 'addon/dav/dav.php' , 'dav_event_created_hook' );
Addon :: registerHook ( 'event_updated' , 'addon/dav/dav.php' , 'dav_event_updated_hook' );
Addon :: registerHook ( 'profile_tabs' , 'addon/dav/dav.php' , 'dav_profile_tabs_hook' );
Addon :: registerHook ( 'cron' , 'addon/dav/dav.php' , 'dav_cron' );
2012-06-03 20:19:28 +02:00
}
function dav_uninstall ()
{
2018-01-17 01:51:12 +01:00
Addon :: unregisterHook ( 'event_created' , 'addon/dav/dav.php' , 'dav_event_created_hook' );
Addon :: unregisterHook ( 'event_updated' , 'addon/dav/dav.php' , 'dav_event_updated_hook' );
Addon :: unregisterHook ( 'profile_tabs' , 'addon/dav/dav.php' , 'dav_profile_tabs_hook' );
Addon :: unregisterHook ( 'cron' , 'addon/dav/dav.php' , 'dav_cron' );
2012-06-03 20:19:28 +02:00
}
function dav_module ()
{
}
2012-06-10 18:29:31 +02:00
function dav_include_files ()
{
2012-08-04 10:46:11 +02:00
require_once ( __DIR__ . " /../SabreDAV/lib/Sabre/autoload.php " );
2012-06-10 18:29:31 +02:00
2012-08-11 10:07:19 +02:00
require_once ( __DIR__ . " /../sabre-vobject/lib/Sabre/VObject/Node.php " );
require_once ( __DIR__ . " /../sabre-vobject/lib/Sabre/VObject/Element.php " );
require_once ( __DIR__ . " /../sabre-vobject/lib/Sabre/VObject/Component.php " );
require_once ( __DIR__ . " /../sabre-vobject/lib/Sabre/VObject/DateTimeParser.php " );
require_once ( __DIR__ . " /../sabre-vobject/lib/Sabre/VObject/ElementList.php " );
require_once ( __DIR__ . " /../sabre-vobject/lib/Sabre/VObject/FreeBusyGenerator.php " );
require_once ( __DIR__ . " /../sabre-vobject/lib/Sabre/VObject/Parameter.php " );
require_once ( __DIR__ . " /../sabre-vobject/lib/Sabre/VObject/ParseException.php " );
require_once ( __DIR__ . " /../sabre-vobject/lib/Sabre/VObject/Property.php " );
require_once ( __DIR__ . " /../sabre-vobject/lib/Sabre/VObject/Reader.php " );
require_once ( __DIR__ . " /../sabre-vobject/lib/Sabre/VObject/RecurrenceIterator.php " );
require_once ( __DIR__ . " /../sabre-vobject/lib/Sabre/VObject/TimeZoneUtil.php " );
require_once ( __DIR__ . " /../sabre-vobject/lib/Sabre/VObject/Version.php " );
require_once ( __DIR__ . " /../sabre-vobject/lib/Sabre/VObject/Property/DateTime.php " );
require_once ( __DIR__ . " /../sabre-vobject/lib/Sabre/VObject/Property/MultiDateTime.php " );
require_once ( __DIR__ . " /../sabre-vobject/lib/Sabre/VObject/Component/VAlarm.php " );
require_once ( __DIR__ . " /../sabre-vobject/lib/Sabre/VObject/Component/VCalendar.php " );
require_once ( __DIR__ . " /../sabre-vobject/lib/Sabre/VObject/Component/VEvent.php " );
require_once ( __DIR__ . " /../sabre-vobject/lib/Sabre/VObject/Component/VJournal.php " );
require_once ( __DIR__ . " /../sabre-vobject/lib/Sabre/VObject/Component/VTodo.php " );
2012-08-04 10:46:11 +02:00
require_once ( __DIR__ . " /../common/calendar.fnk.php " );
require_once ( __DIR__ . " /../common/calendar_rendering.fnk.php " );
2012-08-02 22:26:52 +02:00
2012-08-04 10:46:11 +02:00
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_caldav_calendar_virtual.inc.php " );
require_once ( __DIR__ . " /../common/dav_caldav_calendar_private.inc.php " );
2012-08-02 22:26:52 +02:00
2012-08-04 10:46:11 +02:00
require_once ( __DIR__ . " /../common/dav_carddav_root.inc.php " );
require_once ( __DIR__ . " /../common/dav_carddav_backend_common.inc.php " );
require_once ( __DIR__ . " /../common/dav_carddav_backend_virtual.inc.php " );
require_once ( __DIR__ . " /../common/dav_carddav_backend_private.inc.php " );
require_once ( __DIR__ . " /../common/dav_user_addressbooks.inc.php " );
2012-08-02 22:26:52 +02:00
2012-08-04 10:46:11 +02:00
require_once ( __DIR__ . " /../common/wdcal_configuration.php " );
require_once ( __DIR__ . " /../common/wdcal_backend.inc.php " );
2012-06-10 18:29:31 +02:00
require_once ( __DIR__ . " /dav_friendica_principal.inc.php " );
require_once ( __DIR__ . " /dav_friendica_auth.inc.php " );
2012-07-08 19:12:58 +02:00
require_once ( __DIR__ . " /dav_carddav_backend_virtual_friendica.inc.php " );
require_once ( __DIR__ . " /dav_caldav_backend_virtual_friendica.inc.php " );
2012-06-10 18:29:31 +02:00
require_once ( __DIR__ . " /FriendicaACLPlugin.inc.php " );
2012-08-04 10:46:11 +02:00
require_once ( __DIR__ . " /../common/wdcal_edit.inc.php " );
2012-06-10 18:29:31 +02:00
require_once ( __DIR__ . " /calendar.friendica.fnk.php " );
require_once ( __DIR__ . " /layout.fnk.php " );
2012-06-06 09:05:23 +02:00
}
2012-06-03 20:19:28 +02:00
/**
* @ param App $a
*/
function dav_init ( & $a )
{
/*
* Recommended settings :
* ALTER TABLE `photo` ADD INDEX ( `contact-id` )
*/
2012-08-02 22:26:52 +02:00
ini_set ( " display_errors " , 1 );
error_reporting ( E_ALL );
2012-06-06 09:05:23 +02:00
dav_include_files ();
2012-06-10 18:29:31 +02:00
2012-07-28 12:58:12 +02:00
if ( false ) {
2012-06-03 20:19:28 +02:00
dbg ( true );
error_reporting ( E_ALL );
ini_set ( " display_errors " , 1 );
}
wdcal_create_std_calendars ();
2012-08-02 22:26:52 +02:00
wdcal_create_std_addressbooks ();
2012-07-12 21:22:11 +02:00
wdcal_addRequiredHeaders ();
2012-06-03 20:19:28 +02:00
if ( $a -> argc >= 2 && $a -> argv [ 1 ] == " wdcal " ) {
if ( $a -> argc >= 3 && $a -> argv [ 2 ] == " feed " ) {
2012-06-04 19:18:20 +02:00
wdcal_print_feed ( $a -> get_baseurl () . " /dav/wdcal/ " );
2012-06-03 20:19:28 +02:00
killme ();
}
return ;
}
2012-07-08 19:12:58 +02:00
if ( $a -> argc >= 2 && $a -> argv [ 1 ] == " getExceptionDates " ) {
echo wdcal_getEditPage_exception_selector ();
killme ();
}
2012-06-03 20:19:28 +02:00
if ( $a -> argc >= 2 && $a -> argv [ 1 ] == " settings " ) {
return ;
}
2012-07-08 19:12:58 +02:00
if ( isset ( $_REQUEST [ " test " ])) {
renderAllCalDavEntries ();
}
2012-06-03 20:19:28 +02:00
2012-08-11 10:07:19 +02:00
$server = dav_create_server ();
2012-07-30 21:07:20 +02:00
2012-06-03 20:19:28 +02:00
$browser = new Sabre_DAV_Browser_Plugin ();
$server -> addPlugin ( $browser );
2012-07-30 21:07:20 +02:00
2012-06-03 20:19:28 +02:00
$server -> exec ();
killme ();
}
/**
* @ return string
*/
function dav_content ()
{
$a = get_app ();
if ( ! isset ( $a -> user [ " uid " ]) || $a -> user [ " uid " ] == 0 ) {
2018-01-01 03:04:02 +01:00
return Login :: form ();
2012-06-03 20:19:28 +02:00
}
$x = " " ;
2012-07-28 11:10:48 +02:00
try {
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 ] == " new " ) {
$o = " " ;
if ( isset ( $_REQUEST [ " save " ])) {
2015-08-17 08:03:24 +02:00
check_form_security_token_redirectOnErr ( " /dav/wdcal/ " , " caledit " );
2012-07-28 11:10:48 +02:00
$ret = wdcal_postEditPage ( " new " , " " , $a -> user [ " uid " ], $a -> timezone , $a -> get_baseurl () . " /dav/wdcal/ " );
if ( $ret [ " ok " ]) notice ( $ret [ " msg " ]);
else info ( $ret [ " msg " ]);
2018-01-01 03:04:02 +01:00
goaway ( 'dav/wdcal/' );
2012-07-28 11:10:48 +02:00
}
$o .= wdcal_getNewPage ();
return $o ;
} else {
$calendar_id = IntVal ( $a -> argv [ 2 ]);
if ( isset ( $a -> argv [ 3 ]) && $a -> argv [ 3 ] == " ics-export " ) {
wdcal_print_user_ics ( $calendar_id );
} elseif ( isset ( $a -> argv [ 3 ]) && $a -> argv [ 3 ] == " ics-import " ) {
return wdcal_import_user_ics ( $calendar_id );
} elseif ( isset ( $a -> argv [ 3 ]) && $a -> argv [ 3 ] > 0 ) {
if ( isset ( $a -> argv [ 4 ]) && $a -> argv [ 4 ] == " edit " ) {
$o = " " ;
if ( isset ( $_REQUEST [ " save " ])) {
2015-08-17 08:03:24 +02:00
check_form_security_token_redirectOnErr ( " /dav/wdcal/ " , " caledit " );
2012-07-28 11:10:48 +02:00
$ret = wdcal_postEditPage ( $a -> argv [ 3 ], $a -> user [ " uid " ], $a -> timezone , $a -> get_baseurl () . " /dav/wdcal/ " );
if ( $ret [ " ok " ]) notice ( $ret [ " msg " ]);
else info ( $ret [ " msg " ]);
2018-01-01 03:04:02 +01:00
goaway ( 'dav/wdcal/' );
2012-07-28 11:10:48 +02:00
}
$o .= wdcal_getEditPage ( $calendar_id , $a -> argv [ 3 ]);
return $o ;
} else {
return wdcal_getDetailPage ( $calendar_id , $a -> argv [ 3 ]);
2012-07-08 19:12:58 +02:00
}
} else {
2012-07-28 11:10:48 +02:00
// @TODO Edit Calendar
2012-06-10 18:29:31 +02:00
}
}
2012-07-28 11:10:48 +02:00
} else {
$server = dav_create_server ( true , true , false );
$cals = dav_get_current_user_calendars ( $server , DAV_ACL_READ );
2018-01-15 14:15:33 +01:00
$x = wdcal_printCalendar ( $cals , [], $a -> get_baseurl () . " /dav/wdcal/feed/ " , " week " , 0 , 200 );
2012-06-03 20:19:28 +02:00
}
}
2012-07-28 11:10:48 +02:00
} catch ( DAVVersionMismatchException $e ) {
2018-01-20 14:57:41 +01:00
$x = t ( " The current version of this addon has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this. " );
2012-06-03 20:19:28 +02:00
}
return $x ;
}
/**
* @ param App $a
* @ param object $b
*/
function dav_event_created_hook ( & $a , & $b )
{
2012-06-06 09:05:23 +02:00
dav_include_files ();
2012-06-03 20:19:28 +02:00
// @TODO Updating the cache instead of completely invalidating and rebuilding it
2012-07-08 19:12:58 +02:00
Sabre_CalDAV_Backend_Friendica :: invalidateCache ( $a -> user [ " uid " ], CALDAV_FRIENDICA_CONTACTS );
Sabre_CalDAV_Backend_Friendica :: invalidateCache ( $a -> user [ " uid " ], CALDAV_FRIENDICA_MINE );
2012-06-03 20:19:28 +02:00
}
/**
* @ param App $a
* @ param object $b
*/
function dav_event_updated_hook ( & $a , & $b )
{
2012-06-06 09:05:23 +02:00
dav_include_files ();
2012-06-03 20:19:28 +02:00
// @TODO Updating the cache instead of completely invalidating and rebuilding it
2012-07-08 19:12:58 +02:00
Sabre_CalDAV_Backend_Friendica :: invalidateCache ( $a -> user [ " uid " ], CALDAV_FRIENDICA_CONTACTS );
Sabre_CalDAV_Backend_Friendica :: invalidateCache ( $a -> user [ " uid " ], CALDAV_FRIENDICA_MINE );
2012-06-03 20:19:28 +02:00
}
/**
* @ param App $a
* @ param object $b
*/
function dav_profile_tabs_hook ( & $a , & $b )
{
2018-01-15 14:15:33 +01:00
$b [ " tabs " ][] = [
2012-06-10 18:29:31 +02:00
" label " => t ( 'Calendar' ),
" url " => $a -> get_baseurl () . " /dav/wdcal/ " ,
" sel " => " " ,
2012-06-03 20:19:28 +02:00
" title " => t ( 'Extended calendar with CalDAV-support' ),
2018-01-15 14:15:33 +01:00
];
2012-06-03 20:19:28 +02:00
}
2012-07-27 20:35:14 +02:00
/**
* @ param App $a
* @ param object $b
*/
function dav_cron ( & $a , & $b )
{
dav_include_files ();
$r = q ( " SELECT * FROM %s%snotifications WHERE `notified` = 0 AND `alert_date` <= NOW() " , CALDAV_SQL_DB , CALDAV_SQL_PREFIX );
2015-01-20 01:05:38 +01:00
if ( is_array ( $r )) {
2012-07-27 20:35:14 +02:00
foreach ( $r as $not ) {
q ( " UPDATE %s%snotifications SET `notified` = 1 WHERE `id` = %d " , CALDAV_SQL_DB , CALDAV_SQL_PREFIX , $not [ " id " ]);
2012-07-28 11:10:48 +02:00
$event = q ( " SELECT * FROM %s%sjqcalendar WHERE `calendarobject_id` = %d " , CALDAV_SQL_DB , CALDAV_SQL_PREFIX , $not [ " calendarobject_id " ]);
$calendar = q ( " SELECT * FROM %s%scalendars WHERE `id` = %d " , CALDAV_SQL_DB , CALDAV_SQL_PREFIX , $not [ " calendar_id " ]);
2018-01-15 14:15:33 +01:00
$users = [];
2012-07-27 20:35:14 +02:00
if ( count ( $calendar ) != 1 || count ( $event ) == 0 ) continue ;
switch ( $calendar [ 0 ][ " namespace " ]) {
case CALDAV_NAMESPACE_PRIVATE :
$user = q ( " SELECT * FROM user WHERE `uid` = %d AND `blocked` = 0 " , $calendar [ 0 ][ " namespace_id " ]);
if ( count ( $user ) != 1 ) continue ;
$users [] = $user [ 0 ];
break ;
}
switch ( $not [ " action " ]) {
2012-07-28 11:10:48 +02:00
case " email " :
case " display " : // @TODO implement "Display"
2012-07-27 20:35:14 +02:00
foreach ( $users as $user ) {
2018-01-15 14:15:33 +01:00
$find = [ " %to% " , " %event% " , " %url% " ];
$repl = [ $user [ " username " ], $event [ 0 ][ " Summary " ], $a -> get_baseurl () . " /dav/wdcal/ " . $calendar [ 0 ][ " id " ] . " / " . $not [ " calendarobject_id " ] . " / " ];
2012-07-27 20:35:14 +02:00
$text_text = str_replace ( $find , $repl , " Hi %to%! \n \n The event \" %event% \" is about to begin: \n %url% " );
$text_html = str_replace ( $find , $repl , " Hi %to%!<br> \n <br> \n The event \" %event% \" is about to begin:<br> \n <a href=' " . " %url% " . " '>%url%</a> " );
2018-01-15 14:15:33 +01:00
$params = [
2012-07-28 11:10:48 +02:00
'fromName' => FRIENDICA_PLATFORM ,
'fromEmail' => t ( 'noreply' ) . '@' . $a -> get_hostname (),
'replyTo' => t ( 'noreply' ) . '@' . $a -> get_hostname (),
'toEmail' => $user [ " email " ],
'messageSubject' => t ( " Notification: " . $event [ 0 ][ " Summary " ]),
'htmlVersion' => $text_html ,
'textVersion' => $text_text ,
2012-07-27 20:35:14 +02:00
'additionalMailHeader' => " " ,
2018-01-15 14:15:33 +01:00
];
2015-03-23 12:20:21 +01:00
Emailer :: send ( $params );
2012-07-27 20:35:14 +02:00
}
break ;
}
}
2015-01-20 01:05:38 +01:00
}
2012-07-27 20:35:14 +02:00
}
2012-06-03 20:19:28 +02:00
/**
* @ param App $a
* @ param null | object $o
*/
2018-01-20 14:57:41 +01:00
function dav_addon_admin_post ( & $a = null , & $o = null )
2012-06-03 20:19:28 +02:00
{
2018-01-20 14:57:41 +01:00
check_form_security_token_redirectOnErr ( '/admin/addons/dav' , 'dav_admin_save' );
2012-06-03 20:19:28 +02:00
2012-07-08 19:12:58 +02:00
dav_include_files ();
2012-06-03 20:19:28 +02:00
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 );
}
2012-07-08 19:12:58 +02:00
if ( isset ( $_REQUEST [ " upgrade " ])) {
$errs = dav_upgrade_tables ();
2012-07-28 11:10:48 +02:00
if ( count ( $errs ) == 0 ) {
renderAllCalDavEntries ();
info ( t ( 'The database tables have been updated.' ) . EOL );
2012-08-11 10:07:19 +02:00
} else notice ( t ( " An error occurred during the update. " ) . EOL );
2012-07-08 19:12:58 +02:00
}
2012-06-03 20:19:28 +02:00
}
/**
* @ param App $a
2012-07-08 19:12:58 +02:00
* @ param string $o
2012-06-03 20:19:28 +02:00
*/
2018-01-20 14:57:41 +01:00
function dav_addon_admin ( & $a , & $o )
2012-06-03 20:19:28 +02:00
{
2012-07-08 19:12:58 +02:00
dav_include_files ();
2012-06-03 20:19:28 +02:00
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 :
2012-08-12 11:31:34 +02:00
case 2 :
2012-07-28 11:10:48 +02:00
$o .= " <strong> " . t ( 'Upgrade needed' ) . " </strong><br> " . t ( " Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events <i>should</i> be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button. " ) . " <br><br><input type='submit' name='upgrade' value=' " . t ( 'Upgrade' ) . " '> " ;
2012-06-03 20:19:28 +02:00
break ;
case - 1 :
$o .= t ( 'Not installed' ) . " <br><br><input type='submit' name='install' value=' " . t ( 'Install' ) . " '> " ;
break ;
2012-07-28 11:10:48 +02:00
case - 2 :
default :
$o .= t ( 'Unknown' ) . " <br><br> " . t ( " Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically. " );
break ;
2012-06-03 20:19:28 +02:00
}
$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> " ;
2012-07-28 11:10:48 +02:00
switch ( $dbstatus ) {
2012-08-12 11:31:34 +02:00
case 1 : case 2 :
$tables = dav_get_update_statements ( $dbstatus );
2012-07-28 11:10:48 +02:00
foreach ( $tables as $t ) $o .= escape_tags ( $t . " ; \n \n " );
break ;
default :
$tables = dav_get_create_statements ();
foreach ( $tables as $t ) $o .= escape_tags ( $t . " ; \n \n " );
break ;
}
2012-06-03 20:19:28 +02:00
$o .= " </pre></blockquote> " ;
2012-06-04 19:18:20 +02:00
}