2011-10-17 17:58:56 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2012-04-08 02:39:37 +00:00
|
|
|
* Copyright (c) 2011, 2012 Georg Ehrke <ownclouddev at georgswebsite dot de>
|
2011-10-17 17:58:56 +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-02-23 14:37:38 +00:00
|
|
|
require_once('when/When.php');
|
2011-11-12 21:02:04 +00:00
|
|
|
|
2012-05-03 10:23:29 +00:00
|
|
|
OCP\JSON::checkLoggedIn();
|
|
|
|
OCP\JSON::checkAppEnabled('calendar');
|
2012-06-15 22:44:23 +00:00
|
|
|
session_write_close();
|
2011-10-17 17:58:56 +00:00
|
|
|
|
2012-05-10 19:36:30 +00:00
|
|
|
// Look for the calendar id
|
|
|
|
$calendar_id = OC_Calendar_App::getCalendar($_GET['calendar_id'], false, false);
|
|
|
|
if($calendar_id !== false){
|
2012-05-13 10:02:36 +00:00
|
|
|
if(! is_numeric($calendar_id['userid']) && $calendar_id['userid'] != OCP\User::getUser()){
|
2012-05-10 19:36:30 +00:00
|
|
|
OCP\JSON::error();
|
|
|
|
exit;
|
|
|
|
}
|
2012-05-08 06:46:14 +00:00
|
|
|
}
|
2012-05-10 19:36:30 +00:00
|
|
|
else {
|
|
|
|
$calendar_id = $_GET['calendar_id'];
|
|
|
|
}
|
2012-05-10 19:50:47 +00: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-06-21 14:23:13 +00:00
|
|
|
$events = OC_Calendar_App::getrequestedEvents($_GET['calendar_id'], $start, $end);
|
2012-04-08 02:39:37 +00:00
|
|
|
$output = array();
|
2011-11-12 21:02:04 +00:00
|
|
|
foreach($events as $event){
|
2012-05-04 15:34:13 +00:00
|
|
|
$output = array_merge($output, OC_Calendar_App::generateEventOutput($event, $start, $end));
|
2011-10-17 17:58:56 +00:00
|
|
|
}
|
2012-06-20 13:11:14 +00:00
|
|
|
OCP\JSON::encodedPrint(OCP\Util::sanitizeHTML($output));
|