nextcloud/apps/calendar/ajax/events.php

31 lines
1018 B
PHP
Raw Normal View History

<?php
/**
2012-04-08 06:39:37 +04:00
* Copyright (c) 2011, 2012 Georg Ehrke <ownclouddev at georgswebsite dot de>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
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-05-08 10:46:14 +04:00
$calendar = OC_Calendar_App::getCalendar($_GET['calendar_id'], false, false);
2012-05-08 10:49:14 +04:00
if(is_numeric($calendar['userid']) && $calendar['userid'] != OCP\User::getUser){
2012-05-08 10:46:14 +04:00
OCP\JSON::error();
exit;
}
2012-04-08 06:39:37 +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-08 10:46:14 +04:00
$events = OC_Calendar_App::getrequestedEvents($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){
$output = array_merge($output, OC_Calendar_App::generateEventOutput($event, $start, $end));
}
2012-05-03 14:23:29 +04:00
OCP\JSON::encodedPrint($output);