2011-09-02 10:55:56 +00:00
|
|
|
<?php
|
2011-09-23 20:59:24 +00:00
|
|
|
/**
|
2012-01-14 23:45:27 +00:00
|
|
|
* Copyright (c) 2012 Georg Ehrke <ownclouddev at georgswebsite dot de>
|
2011-09-23 20:59:24 +00:00
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2012-04-17 17:31:29 +00:00
|
|
|
|
2012-05-01 20:59:38 +00:00
|
|
|
OCP\User::checkLoggedIn();
|
2012-05-02 17:08:37 +00:00
|
|
|
OCP\App::checkAppEnabled('calendar');
|
2011-12-01 15:06:27 +00:00
|
|
|
$cal = isset($_GET['calid']) ? $_GET['calid'] : NULL;
|
|
|
|
$event = isset($_GET['eventid']) ? $_GET['eventid'] : NULL;
|
2012-04-01 03:16:42 +00:00
|
|
|
$nl = "\r\n";
|
2011-10-01 21:19:06 +00:00
|
|
|
if(isset($cal)){
|
2012-03-31 16:27:30 +00:00
|
|
|
$calendar = OC_Calendar_App::getCalendar($cal, true);
|
2011-10-01 21:19:06 +00:00
|
|
|
$calobjects = OC_Calendar_Object::all($cal);
|
2011-12-01 15:06:27 +00:00
|
|
|
header('Content-Type: text/Calendar');
|
|
|
|
header('Content-Disposition: inline; filename=' . $calendar['displayname'] . '.ics');
|
2011-12-18 22:01:45 +00:00
|
|
|
foreach($calobjects as $calobject){
|
2012-01-14 23:45:27 +00:00
|
|
|
echo $calobject['calendardata'] . $nl;
|
2011-10-01 21:19:06 +00:00
|
|
|
}
|
|
|
|
}elseif(isset($event)){
|
2012-03-31 16:27:30 +00:00
|
|
|
$data = OC_Calendar_App::getEventObject($_GET['eventid'], true);
|
2011-12-01 15:06:27 +00:00
|
|
|
$calendarid = $data['calendarid'];
|
2011-12-18 21:58:20 +00:00
|
|
|
$calendar = OC_Calendar_App::getCalendar($calendarid);
|
2011-12-01 15:06:27 +00:00
|
|
|
header('Content-Type: text/Calendar');
|
|
|
|
header('Content-Disposition: inline; filename=' . $data['summary'] . '.ics');
|
|
|
|
echo $data['calendardata'];
|
2011-09-02 10:55:56 +00:00
|
|
|
}
|
2011-09-15 08:14:47 +00:00
|
|
|
?>
|