Blame view

sources/apps/calendar/ajax/event/new.php 710 Bytes
d1bafeea1   Kload   [fix] Upgrade to ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  <?php
  /**
   * Copyright (c) 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.
   */
  
  
  
  OCP\JSON::checkLoggedIn();
  OCP\JSON::checkAppEnabled('calendar');
  OCP\JSON::callCheck();
  
  $errarr = OC_Calendar_Object::validateRequest($_POST);
  if($errarr) {
  	//show validate errors
  	OCP\JSON::error($errarr);
  	exit;
  }else{
  	$cal = $_POST['calendar'];
  	$vcalendar = OC_Calendar_Object::createVCalendarFromRequest($_POST);
  	try {
  		OC_Calendar_Object::add($cal, $vcalendar->serialize());
  	} catch(Exception $e) {
  		OCP\JSON::error(array('message'=>$e->getMessage()));
  		exit;
  	}
  	OCP\JSON::success();
  }