nextcloud/apps/calendar/ajax/editevent.php

53 lines
1.3 KiB
PHP
Raw Normal View History

2011-08-12 16:29:45 +04:00
<?php
2011-09-24 00:59:24 +04:00
/**
* 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.
*/
2011-09-15 23:20:42 +04:00
require_once('../../../lib/base.php');
2011-08-12 16:29:45 +04:00
2011-09-15 23:20:42 +04:00
$l10n = new OC_L10N('calendar');
if(!OC_USER::isLoggedIn()) {
die('<script type="text/javascript">document.location = oc_webroot;</script>');
}
OC_JSON::checkAppEnabled('calendar');
2011-09-15 23:20:42 +04:00
$errarr = OC_Calendar_Object::validateRequest($_POST);
if($errarr){
//show validate errors
OC_JSON::error($errarr);
2011-09-15 23:20:42 +04:00
exit;
}else{
$id = $_POST['id'];
2011-09-16 02:08:15 +04:00
$cal = $_POST['calendar'];
2011-09-15 23:20:42 +04:00
$data = OC_Calendar_Object::find($id);
if (!$data)
{
OC_JSON::error();
2011-09-15 23:20:42 +04:00
exit;
}
2011-09-16 02:08:15 +04:00
$calendar = OC_Calendar_Calendar::findCalendar($data['calendarid']);
if($calendar['userid'] != OC_User::getUser()){
OC_JSON::error();
2011-09-16 02:08:15 +04:00
exit;
}
$vcalendar = OC_VObject::parse($data['calendardata']);
$last_modified = $vcalendar->VEVENT->__get('LAST-MODIFIED');
if($last_modified && $_POST['lastmodified'] != $last_modified->getDateTime()->format('U')){
OC_JSON::error(array('modified'=>true));
exit;
}
2011-09-15 23:20:42 +04:00
OC_Calendar_Object::updateVCalendarFromRequest($_POST, $vcalendar);
$result = OC_Calendar_Object::edit($id, $vcalendar->serialize());
2011-09-16 02:08:15 +04:00
if ($data['calendarid'] != $cal) {
OC_Calendar_Object::moveToCalendar($id, $cal);
}
OC_JSON::success();
2011-09-15 23:20:42 +04:00
}
?>