|
|
|
|
@ -12,16 +12,20 @@ require_once('when/When.php'); |
|
|
|
|
OCP\JSON::checkLoggedIn(); |
|
|
|
|
OCP\JSON::checkAppEnabled('calendar'); |
|
|
|
|
|
|
|
|
|
$calendar = OC_Calendar_App::getCalendar($_GET['calendar_id'], false, false); |
|
|
|
|
if(is_numeric($calendar['userid']) && $calendar['userid'] != OCP\User::getUser){ |
|
|
|
|
OCP\JSON::error(); |
|
|
|
|
exit; |
|
|
|
|
// Look for the calendar id |
|
|
|
|
$calendar_id = OC_Calendar_App::getCalendar($_GET['calendar_id'], false, false); |
|
|
|
|
if($calendar_id !== false){ |
|
|
|
|
if(! is_numeric($calendar['userid']) && $calendar['userid'] != OCP\User::getUser()){ |
|
|
|
|
OCP\JSON::error(); |
|
|
|
|
exit; |
|
|
|
|
} |
|
|
|
|
$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']); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$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']); |
|
|
|
|
|
|
|
|
|
$events = OC_Calendar_App::getrequestedEvents($calendar['id'], $start, $end); |
|
|
|
|
else { |
|
|
|
|
$calendar_id = $_GET['calendar_id']; |
|
|
|
|
} |
|
|
|
|
$events = OC_Calendar_App::getrequestedEvents($calendar_id, $start, $end); |
|
|
|
|
|
|
|
|
|
$output = array(); |
|
|
|
|
foreach($events as $event){ |
|
|
|
|
|