2011-10-17 21:58:56 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2012-04-08 06:39:37 +04:00
|
|
|
* Copyright (c) 2011, 2012 Georg Ehrke <ownclouddev at georgswebsite dot de>
|
2011-10-17 21:58:56 +04:00
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2012-04-17 21:31:29 +04:00
|
|
|
|
2012-02-23 18:37:38 +04:00
|
|
|
require_once('when/When.php');
|
2011-11-13 01:02:04 +04:00
|
|
|
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::checkLoggedIn();
|
|
|
|
OCP\JSON::checkAppEnabled('calendar');
|
2012-06-16 02:44:23 +04:00
|
|
|
session_write_close();
|
2011-10-17 21:58:56 +04:00
|
|
|
|
2012-05-10 23:36:30 +04:00
|
|
|
// Look for the calendar id
|
2012-06-15 02:26:34 +04:00
|
|
|
$calendar_id = null;
|
|
|
|
if (strval(intval($_GET['calendar_id'])) == strval($_GET['calendar_id'])) { // integer for sure.
|
|
|
|
$id = intval($_GET['calendar_id']);
|
|
|
|
$calendarrow = OC_Calendar_App::getCalendar($id, true, false); // Let's at least security check otherwise we might as well use OC_Calendar_Calendar::find()
|
|
|
|
if($calendarrow !== false && is_int($calendar_id['userid']) && $id == $calendar_id['userid']) {
|
|
|
|
$calendar_id = $id;
|
2012-05-10 23:36:30 +04:00
|
|
|
}
|
2012-05-08 10:46:14 +04:00
|
|
|
}
|
2012-06-15 02:26:34 +04:00
|
|
|
$calendar_id = (is_null($calendar_id)?strip_tags($_GET['calendar_id']):$calendar_id);
|
2012-05-10 23:50:47 +04:00
|
|
|
|
|
|
|
$start = (version_compare(PHP_VERSION, '5.3.0', '>='))?DateTime::createFromFormat('U', $_GET['start']):new DateTime('@' . $_GET['start']);
|
|
|
|
$end = (version_compare(PHP_VERSION, '5.3.0', '>='))?DateTime::createFromFormat('U', $_GET['end']):new DateTime('@' . $_GET['end']);
|
2012-05-10 23:36:30 +04:00
|
|
|
$events = OC_Calendar_App::getrequestedEvents($calendar_id, $start, $end);
|
2012-04-08 06:39:37 +04:00
|
|
|
$output = array();
|
2011-11-13 01:02:04 +04:00
|
|
|
foreach($events as $event){
|
2012-05-04 19:34:13 +04:00
|
|
|
$output = array_merge($output, OC_Calendar_App::generateEventOutput($event, $start, $end));
|
2011-10-17 21:58:56 +04:00
|
|
|
}
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::encodedPrint($output);
|