nextcloud/apps/tasks/ajax/addtask.php

34 lines
1013 B
PHP
Raw Normal View History

2011-09-12 23:28:28 +04:00
<?php
// Init owncloud
require_once('../../../lib/base.php');
2011-10-06 23:21:38 +04:00
OC_JSON::checkLoggedIn();
OC_JSON::checkAppEnabled('tasks');
2011-09-12 23:28:28 +04: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 23:21:38 +04:00
OC_JSON::error(array('data' => array( 'message' => $l10n->t('This is not your calendar!'))));
2011-09-12 23:28:28 +04:00
exit();
}
$errors = OC_Task_App::validateRequest($_POST);
2011-09-14 00:44:15 +04:00
if (!empty($errors)) {
2011-10-06 23:21:38 +04:00
OC_JSON::error(array('data' => array( 'errors' => $errors )));
2011-09-14 00:44:15 +04:00
exit();
}
$vcalendar = OC_Task_App::createVCalendarFromRequest($_POST);
2011-09-12 23:28:28 +04:00
$id = OC_Calendar_Object::add($cid, $vcalendar->serialize());
$priority_options = OC_Task_App::getPriorityOptions();
2011-09-12 23:28:28 +04:00
$tmpl = new OC_Template('tasks','part.details');
2011-09-14 00:44:15 +04:00
$tmpl->assign('priority_options', $priority_options);
$tmpl->assign('details',$vcalendar->VTODO);
2011-09-12 23:28:28 +04:00
$tmpl->assign('id',$id);
$page = $tmpl->fetchPage();
2011-10-06 23:21:38 +04:00
OC_JSON::success(array('data' => array( 'id' => $id, 'page' => $page )));