2012-02-20 14:26:22 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2011 Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* 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-20 14:26:22 +04:00
|
|
|
OC_JSON::checkLoggedIn();
|
|
|
|
|
|
|
|
$id = $_POST['id'];
|
2012-04-08 06:37:26 +04:00
|
|
|
$access = OC_Calendar_App::getaccess($id, OC_Calendar_App::EVENT);
|
|
|
|
if($access != 'owner' && $access != 'rw'){
|
|
|
|
OC_JSON::error(array('message'=>'permission denied'));
|
|
|
|
exit;
|
|
|
|
}
|
2012-04-10 23:53:39 +04:00
|
|
|
$vcalendar = OC_Calendar_App::getVCalendar($id, false, false);
|
2012-02-20 14:26:22 +04:00
|
|
|
$vevent = $vcalendar->VEVENT;
|
|
|
|
|
|
|
|
$allday = $_POST['allDay'];
|
|
|
|
$delta = new DateInterval('P0D');
|
|
|
|
$delta->d = $_POST['dayDelta'];
|
|
|
|
$delta->i = $_POST['minuteDelta'];
|
|
|
|
OC_Calendar_App::isNotModified($vevent, $_POST['lastmodified']);
|
|
|
|
|
|
|
|
$dtstart = $vevent->DTSTART;
|
|
|
|
$dtend = OC_Calendar_Object::getDTEndFromVEvent($vevent);
|
|
|
|
$start_type = $dtstart->getDateType();
|
|
|
|
$end_type = $dtend->getDateType();
|
2012-02-25 01:20:40 +04:00
|
|
|
if ($allday && $start_type != Sabre_VObject_Property_DateTime::DATE){
|
|
|
|
$start_type = $end_type = Sabre_VObject_Property_DateTime::DATE;
|
2012-02-20 14:26:22 +04:00
|
|
|
$dtend->setDateTime($dtend->getDateTime()->modify('+1 day'), $end_type);
|
|
|
|
}
|
2012-02-25 01:20:40 +04:00
|
|
|
if (!$allday && $start_type == Sabre_VObject_Property_DateTime::DATE){
|
|
|
|
$start_type = $end_type = Sabre_VObject_Property_DateTime::LOCALTZ;
|
2012-02-20 14:26:22 +04:00
|
|
|
}
|
|
|
|
$dtstart->setDateTime($dtstart->getDateTime()->add($delta), $start_type);
|
|
|
|
$dtend->setDateTime($dtend->getDateTime()->add($delta), $end_type);
|
|
|
|
unset($vevent->DURATION);
|
|
|
|
|
2012-02-25 01:20:40 +04:00
|
|
|
$vevent->setDateTime('LAST-MODIFIED', 'now', Sabre_VObject_Property_DateTime::UTC);
|
|
|
|
$vevent->setDateTime('DTSTAMP', 'now', Sabre_VObject_Property_DateTime::UTC);
|
2012-02-20 14:26:22 +04:00
|
|
|
|
|
|
|
$result = OC_Calendar_Object::edit($id, $vcalendar->serialize());
|
|
|
|
$lastmodified = $vevent->__get('LAST-MODIFIED')->getDateTime();
|
|
|
|
OC_JSON::success(array('lastmodified'=>(int)$lastmodified->format('U')));
|