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