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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
require_once('../../../../lib/base.php');
|
|
|
|
OC_JSON::checkLoggedIn();
|
|
|
|
OC_JSON::checkAppEnabled('calendar');
|
|
|
|
|
2012-04-08 06:37:26 +04:00
|
|
|
$id = $_POST['id'];
|
|
|
|
|
2012-04-10 23:53:39 +04:00
|
|
|
if(!array_key_exists('calendar', $_POST)){
|
|
|
|
$cal = OC_Calendar_Object::getCalendarid($id);
|
|
|
|
$_POST['calendar'] = $cal;
|
|
|
|
}else{
|
|
|
|
$cal = $_POST['calendar'];
|
|
|
|
}
|
|
|
|
|
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-02-20 14:26:22 +04:00
|
|
|
$errarr = OC_Calendar_Object::validateRequest($_POST);
|
|
|
|
if($errarr){
|
|
|
|
//show validate errors
|
|
|
|
OC_JSON::error($errarr);
|
|
|
|
exit;
|
|
|
|
}else{
|
2012-04-10 23:53:39 +04:00
|
|
|
$data = OC_Calendar_App::getEventObject($id, false, false);
|
2012-02-20 14:26:22 +04:00
|
|
|
$vcalendar = OC_VObject::parse($data['calendardata']);
|
|
|
|
|
|
|
|
OC_Calendar_App::isNotModified($vcalendar->VEVENT, $_POST['lastmodified']);
|
|
|
|
OC_Calendar_Object::updateVCalendarFromRequest($_POST, $vcalendar);
|
|
|
|
|
2012-04-10 23:53:39 +04:00
|
|
|
OC_Calendar_Object::edit($id, $vcalendar->serialize());
|
2012-02-20 14:26:22 +04:00
|
|
|
if ($data['calendarid'] != $cal) {
|
|
|
|
OC_Calendar_Object::moveToCalendar($id, $cal);
|
|
|
|
}
|
|
|
|
OC_JSON::success();
|
|
|
|
}
|
|
|
|
?>
|