2011-08-12 16:29:45 +04:00
|
|
|
<?php
|
2011-09-24 00:59:24 +04:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2011 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.
|
|
|
|
*/
|
|
|
|
|
2011-08-28 22:13:40 +04:00
|
|
|
require_once('../../../lib/base.php');
|
2011-09-15 23:20:42 +04:00
|
|
|
|
2011-08-28 22:13:40 +04:00
|
|
|
$l10n = new OC_L10N('calendar');
|
2011-09-15 23:20:42 +04:00
|
|
|
|
2011-08-28 22:13:40 +04:00
|
|
|
if(!OC_USER::isLoggedIn()) {
|
|
|
|
die("<script type=\"text/javascript\">document.location = oc_webroot;</script>");
|
|
|
|
}
|
2011-08-12 16:29:45 +04:00
|
|
|
|
2011-09-15 23:20:42 +04:00
|
|
|
$errarr = OC_Calendar_Object::validateRequest($_POST);
|
|
|
|
if($errarr){
|
2011-08-28 22:13:40 +04:00
|
|
|
//show validate errors
|
2011-09-24 00:22:59 +04:00
|
|
|
OC_JSON::error($errarr);
|
2011-08-28 22:13:40 +04:00
|
|
|
exit;
|
|
|
|
}else{
|
2011-09-15 23:20:42 +04:00
|
|
|
$cal = $_POST['calendar'];
|
|
|
|
$vcalendar = OC_Calendar_Object::createVCalendarFromRequest($_POST);
|
|
|
|
$result = OC_Calendar_Object::add($cal, $vcalendar->serialize());
|
2011-09-24 00:22:59 +04:00
|
|
|
OC_JSON::success();
|
2011-08-28 22:13:40 +04:00
|
|
|
}
|
2011-09-15 01:29:35 +04:00
|
|
|
?>
|