2011-09-12 19:28:28 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Init owncloud
|
|
|
|
require_once('../../../lib/base.php');
|
2011-10-06 19:21:38 +00:00
|
|
|
OC_JSON::checkLoggedIn();
|
|
|
|
OC_JSON::checkAppEnabled('tasks');
|
2011-09-12 19:28:28 +00:00
|
|
|
|
|
|
|
$l10n = new OC_L10N('tasks');
|
|
|
|
|
|
|
|
$cid = $_POST['id'];
|
|
|
|
$calendar = OC_Calendar_Calendar::findCalendar( $cid );
|
|
|
|
if( $calendar === false || $calendar['userid'] != OC_USER::getUser()){
|
2011-10-06 19:21:38 +00:00
|
|
|
OC_JSON::error(array('data' => array( 'message' => $l10n->t('This is not your calendar!'))));
|
2011-09-12 19:28:28 +00:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2012-02-22 19:11:38 +00:00
|
|
|
$errors = OC_Task_App::validateRequest($_POST);
|
2011-09-13 20:44:15 +00:00
|
|
|
if (!empty($errors)) {
|
2011-10-06 19:21:38 +00:00
|
|
|
OC_JSON::error(array('data' => array( 'errors' => $errors )));
|
2011-09-13 20:44:15 +00:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2012-02-22 19:11:38 +00:00
|
|
|
$vcalendar = OC_Task_App::createVCalendarFromRequest($_POST);
|
2011-09-12 19:28:28 +00:00
|
|
|
$id = OC_Calendar_Object::add($cid, $vcalendar->serialize());
|
|
|
|
|
2012-02-22 19:11:38 +00:00
|
|
|
$priority_options = OC_Task_App::getPriorityOptions();
|
2011-09-12 19:28:28 +00:00
|
|
|
$tmpl = new OC_Template('tasks','part.details');
|
2011-09-13 20:44:15 +00:00
|
|
|
$tmpl->assign('priority_options', $priority_options);
|
|
|
|
$tmpl->assign('details',$vcalendar->VTODO);
|
2011-09-12 19:28:28 +00:00
|
|
|
$tmpl->assign('id',$id);
|
|
|
|
$page = $tmpl->fetchPage();
|
|
|
|
|
2011-10-06 19:21:38 +00:00
|
|
|
OC_JSON::success(array('data' => array( 'id' => $id, 'page' => $page )));
|