2011-08-31 22:20:46 +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-08-31 22:20:46 +04:00
|
|
|
require_once('../../../lib/base.php');
|
|
|
|
|
|
|
|
// Check if we are a user
|
2011-09-24 00:22:59 +04:00
|
|
|
OC_JSON::checkLoggedIn();
|
2011-10-01 01:05:10 +04:00
|
|
|
OC_JSON::checkAppEnabled('calendar');
|
2011-08-31 22:20:46 +04:00
|
|
|
|
2012-01-21 20:42:34 +04:00
|
|
|
if(trim($_POST['name']) == ''){
|
|
|
|
OC_JSON::error(array('message'=>'empty'));
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
$calendars = OC_Calendar_Calendar::allCalendars(OC_User::getUser());
|
|
|
|
foreach($calendars as $cal){
|
|
|
|
if($cal['displayname'] == $_POST['name'] && $cal['id'] != $_POST['id']){
|
|
|
|
OC_JSON::error(array('message'=>'namenotavailable'));
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-31 22:20:46 +04:00
|
|
|
$calendarid = $_POST['id'];
|
2011-12-19 01:58:20 +04:00
|
|
|
$calendar = OC_Calendar_App::getCalendar($calendarid);//access check
|
2011-10-08 15:28:01 +04:00
|
|
|
OC_Calendar_Calendar::editCalendar($calendarid, $_POST['name'], null, null, null, $_POST['color']);
|
2011-08-31 22:20:46 +04:00
|
|
|
OC_Calendar_Calendar::setCalendarActive($calendarid, $_POST['active']);
|
2011-12-19 01:58:20 +04:00
|
|
|
|
|
|
|
$calendar = OC_Calendar_App::getCalendar($calendarid);
|
2011-09-08 14:29:29 +04:00
|
|
|
$tmpl = new OC_Template('calendar', 'part.choosecalendar.rowfields');
|
2011-08-31 22:20:46 +04:00
|
|
|
$tmpl->assign('calendar', $calendar);
|
2011-10-19 21:07:56 +04:00
|
|
|
OC_JSON::success(array(
|
|
|
|
'page' => $tmpl->fetchPage(),
|
|
|
|
'eventSource' => OC_Calendar_Calendar::getEventSourceInfo($calendar),
|
|
|
|
));
|