2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
19 * External calendar API
21 * @package core_calendar
23 * @copyright 2012 Ankit Agarwal
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28 defined('MOODLE_INTERNAL') ||
die;
30 require_once("$CFG->libdir/externallib.php");
31 require_once($CFG->dirroot
. '/calendar/lib.php');
33 use \core_calendar\local\api
as local_api
;
34 use \core_calendar\local\event\container
as event_container
;
35 use \core_calendar\local\event\forms\create
as create_event_form
;
36 use \core_calendar\local\event\forms\update
as update_event_form
;
37 use \core_calendar\local\event\mappers\create_update_form_mapper
;
38 use \core_calendar\external\event_exporter
;
39 use \core_calendar\external\events_exporter
;
40 use \core_calendar\external\events_grouped_by_course_exporter
;
41 use \core_calendar\external\events_related_objects_cache
;
44 * Calendar external functions
46 * @package core_calendar
48 * @copyright 2012 Ankit Agarwal
49 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
52 class core_calendar_external
extends external_api
{
56 * Returns description of method parameters
58 * @return external_function_parameters
61 public static function delete_calendar_events_parameters() {
62 return new external_function_parameters(
63 array('events' => new external_multiple_structure(
64 new external_single_structure(
66 'eventid' => new external_value(PARAM_INT
, 'Event ID', VALUE_REQUIRED
, '', NULL_NOT_ALLOWED
),
67 'repeat' => new external_value(PARAM_BOOL
, 'Delete comeplete series if repeated event')
68 ), 'List of events to delete'
76 * Delete Calendar events
78 * @param array $eventids A list of event ids with repeat flag to delete
82 public static function delete_calendar_events($events) {
85 // Parameter validation.
86 $params = self
::validate_parameters(self
:: delete_calendar_events_parameters(), array('events' => $events));
88 $transaction = $DB->start_delegated_transaction();
90 foreach ($params['events'] as $event) {
91 $eventobj = calendar_event
::load($event['eventid']);
93 // Let's check if the user is allowed to delete an event.
94 if (!calendar_delete_event_allowed($eventobj)) {
95 throw new moodle_exception('nopermissions', 'error', '', get_string('deleteevent', 'calendar'));
97 // Time to do the magic.
98 $eventobj->delete($event['repeat']);
101 // Everything done smoothly, let's commit.
102 $transaction->allow_commit();
108 * Returns description of method result value
110 * @return external_description
113 public static function delete_calendar_events_returns() {
118 * Returns description of method parameters
120 * @return external_function_parameters
123 public static function get_calendar_events_parameters() {
124 return new external_function_parameters(
125 array('events' => new external_single_structure(
127 'eventids' => new external_multiple_structure(
128 new external_value(PARAM_INT
, 'event ids')
129 , 'List of event ids',
130 VALUE_DEFAULT
, array()),
131 'courseids' => new external_multiple_structure(
132 new external_value(PARAM_INT
, 'course ids')
133 , 'List of course ids for which events will be returned',
134 VALUE_DEFAULT
, array()),
135 'groupids' => new external_multiple_structure(
136 new external_value(PARAM_INT
, 'group ids')
137 , 'List of group ids for which events should be returned',
138 VALUE_DEFAULT
, array()),
139 'categoryids' => new external_multiple_structure(
140 new external_value(PARAM_INT
, 'Category ids'),
141 'List of category ids for which events will be returned',
142 VALUE_DEFAULT
, array()),
143 ), 'Event details', VALUE_DEFAULT
, array()),
144 'options' => new external_single_structure(
146 'userevents' => new external_value(PARAM_BOOL
,
147 "Set to true to return current user's user events",
148 VALUE_DEFAULT
, true, NULL_ALLOWED
),
149 'siteevents' => new external_value(PARAM_BOOL
,
150 "Set to true to return global events",
151 VALUE_DEFAULT
, true, NULL_ALLOWED
),
152 'timestart' => new external_value(PARAM_INT
,
153 "Time from which events should be returned",
154 VALUE_DEFAULT
, 0, NULL_ALLOWED
),
155 'timeend' => new external_value(PARAM_INT
,
156 "Time to which the events should be returned. We treat 0 and null as no end",
157 VALUE_DEFAULT
, 0, NULL_ALLOWED
),
158 'ignorehidden' => new external_value(PARAM_BOOL
,
159 "Ignore hidden events or not",
160 VALUE_DEFAULT
, true, NULL_ALLOWED
),
162 ), 'Options', VALUE_DEFAULT
, array())
168 * Get Calendar events
170 * @param array $events A list of events
171 * @param array $options various options
172 * @return array Array of event details
175 public static function get_calendar_events($events = array(), $options = array()) {
176 global $SITE, $DB, $USER;
178 // Parameter validation.
179 $params = self
::validate_parameters(self
::get_calendar_events_parameters(), array('events' => $events, 'options' => $options));
180 $funcparam = array('courses' => array(), 'groups' => array(), 'categories' => array());
181 $hassystemcap = has_capability('moodle/calendar:manageentries', context_system
::instance());
183 $coursecategories = array();
185 // Let us find out courses and their categories that we can return events from.
186 if (!$hassystemcap) {
187 $courseobjs = enrol_get_my_courses();
188 $courses = array_keys($courseobjs);
190 $coursecategories = array_flip(array_map(function($course) {
191 return $course->category
;
194 foreach ($params['events']['courseids'] as $id) {
196 $context = context_course
::instance($id);
197 self
::validate_context($context);
198 $funcparam['courses'][] = $id;
199 } catch (Exception
$e) {
203 'warningcode' => 'nopermissions',
204 'message' => 'No access rights in course context '.$e->getMessage().$e->getTraceAsString()
209 $courses = $params['events']['courseids'];
210 $funcparam['courses'] = $courses;
212 if (!empty($courses)) {
213 list($wheresql, $sqlparams) = $DB->get_in_or_equal($courses);
214 $wheresql = "id $wheresql";
215 $coursecategories = array_flip(array_map(function($course) {
216 return $course->category
;
217 }, $DB->get_records_select('course', $wheresql, $sqlparams, '', 'category')));
221 // Let us findout groups that we can return events from.
222 if (!$hassystemcap) {
223 $groups = groups_get_my_groups();
224 $groups = array_keys($groups);
225 foreach ($params['events']['groupids'] as $id) {
226 if (in_array($id, $groups)) {
227 $funcparam['groups'][] = $id;
229 $warnings[] = array('item' => $id, 'warningcode' => 'nopermissions', 'message' => 'you do not have permissions to access this group');
233 $groups = $params['events']['groupids'];
234 $funcparam['groups'] = $groups;
237 $categories = array();
238 if ($hassystemcap ||
!empty($courses)) {
239 // Use the category id as the key in the following array. That way we do not have to remove duplicates and
240 // have a faster lookup later.
243 if (!empty($params['events']['categoryids'])) {
244 $catobjs = \core_course_category
::get_many(
245 array_merge($params['events']['categoryids'], array_keys($coursecategories)));
246 foreach ($catobjs as $catobj) {
247 if (isset($coursecategories[$catobj->id
]) ||
248 has_capability('moodle/category:manage', $catobj->get_context())) {
249 // If the user has access to a course in this category or can manage the category,
250 // then they can see all parent categories too.
251 $categories[$catobj->id
] = true;
252 foreach ($catobj->get_parents() as $catid) {
253 $categories[$catid] = true;
257 $funcparam['categories'] = array_keys($categories);
259 // Fetch all categories where this user has any enrolment, and all categories that this user can manage.
260 $calcatcache = cache
::make('core', 'calendar_categories');
261 // Do not use cache if the user has the system capability as $coursecategories might not represent the
262 // courses the user is enrolled in.
263 $categories = (!$hassystemcap) ?
$calcatcache->get('site') : false;
264 if ($categories !== false) {
265 // The ids are stored in a list in the cache.
266 $funcparam['categories'] = $categories;
267 $categories = array_flip($categories);
270 foreach (\core_course_category
::get_all() as $category) {
271 if (isset($coursecategories[$category->id
]) ||
272 has_capability('moodle/category:manage', $category->get_context(), $USER, false)) {
273 // If the user has access to a course in this category or can manage the category,
274 // then they can see all parent categories too.
275 $categories[$category->id
] = true;
276 foreach ($category->get_parents() as $catid) {
277 $categories[$catid] = true;
281 $funcparam['categories'] = array_keys($categories);
282 if (!$hassystemcap) {
283 $calcatcache->set('site', $funcparam['categories']);
289 // Do we need user events?
290 if (!empty($params['options']['userevents'])) {
291 $funcparam['users'] = array($USER->id
);
293 $funcparam['users'] = false;
296 // Do we need site events?
297 if (!empty($params['options']['siteevents'])) {
298 $funcparam['courses'][] = $SITE->id
;
301 // We treat 0 and null as no end.
302 if (empty($params['options']['timeend'])) {
303 $params['options']['timeend'] = PHP_INT_MAX
;
306 // Event list does not check visibility and permissions, we'll check that later.
307 $eventlist = calendar_get_legacy_events($params['options']['timestart'], $params['options']['timeend'],
308 $funcparam['users'], $funcparam['groups'], $funcparam['courses'], true,
309 $params['options']['ignorehidden'], $funcparam['categories']);
311 // WS expects arrays.
314 // We need to get events asked for eventids.
315 if ($eventsbyid = calendar_get_events_by_id($params['events']['eventids'])) {
316 $eventlist +
= $eventsbyid;
318 foreach ($eventlist as $eventid => $eventobj) {
319 $event = (array) $eventobj;
320 // Description formatting.
321 $calendareventobj = new calendar_event($event);
322 list($event['description'], $event['format']) = $calendareventobj->format_external_text();
325 // User can see everything, no further check is needed.
326 $events[$eventid] = $event;
327 } else if (!empty($eventobj->modulename
)) {
328 $courseid = $eventobj->courseid
;
330 if (!$calendareventobj->context ||
!($context = $calendareventobj->context
->get_course_context(false))) {
333 $courseid = $context->instanceid
;
335 $instances = get_fast_modinfo($courseid)->get_instances_of($eventobj->modulename
);
336 if (!empty($instances[$eventobj->instance
]->uservisible
)) {
337 $events[$eventid] = $event;
340 // Can the user actually see this event?
341 $eventobj = calendar_event
::load($eventobj);
342 if ((($eventobj->courseid
== $SITE->id
) && (empty($eventobj->categoryid
))) ||
343 (!empty($eventobj->categoryid
) && isset($categories[$eventobj->categoryid
])) ||
344 (!empty($eventobj->groupid
) && in_array($eventobj->groupid
, $groups)) ||
345 (!empty($eventobj->courseid
) && in_array($eventobj->courseid
, $courses)) ||
346 ($USER->id
== $eventobj->userid
) ||
347 (calendar_edit_event_allowed($eventobj))) {
348 $events[$eventid] = $event;
350 $warnings[] = array('item' => $eventid, 'warningcode' => 'nopermissions', 'message' => 'you do not have permissions to view this event');
354 return array('events' => $events, 'warnings' => $warnings);
358 * Returns description of method result value
360 * @return external_description
363 public static function get_calendar_events_returns() {
364 return new external_single_structure(array(
365 'events' => new external_multiple_structure( new external_single_structure(
367 'id' => new external_value(PARAM_INT
, 'event id'),
368 'name' => new external_value(PARAM_TEXT
, 'event name'),
369 'description' => new external_value(PARAM_RAW
, 'Description', VALUE_OPTIONAL
, null, NULL_ALLOWED
),
370 'format' => new external_format_value('description'),
371 'courseid' => new external_value(PARAM_INT
, 'course id'),
372 'categoryid' => new external_value(PARAM_INT
, 'Category id (only for category events).',
374 'groupid' => new external_value(PARAM_INT
, 'group id'),
375 'userid' => new external_value(PARAM_INT
, 'user id'),
376 'repeatid' => new external_value(PARAM_INT
, 'repeat id'),
377 'modulename' => new external_value(PARAM_TEXT
, 'module name', VALUE_OPTIONAL
, null, NULL_ALLOWED
),
378 'instance' => new external_value(PARAM_INT
, 'instance id'),
379 'eventtype' => new external_value(PARAM_TEXT
, 'Event type'),
380 'timestart' => new external_value(PARAM_INT
, 'timestart'),
381 'timeduration' => new external_value(PARAM_INT
, 'time duration'),
382 'visible' => new external_value(PARAM_INT
, 'visible'),
383 'uuid' => new external_value(PARAM_TEXT
, 'unique id of ical events', VALUE_OPTIONAL
, null, NULL_NOT_ALLOWED
),
384 'sequence' => new external_value(PARAM_INT
, 'sequence'),
385 'timemodified' => new external_value(PARAM_INT
, 'time modified'),
386 'subscriptionid' => new external_value(PARAM_INT
, 'Subscription id', VALUE_OPTIONAL
, null, NULL_ALLOWED
),
389 'warnings' => new external_warnings()
395 * Returns description of method parameters.
398 * @return external_function_parameters
400 public static function get_calendar_action_events_by_timesort_parameters() {
401 return new external_function_parameters(
403 'timesortfrom' => new external_value(PARAM_INT
, 'Time sort from', VALUE_DEFAULT
, 0),
404 'timesortto' => new external_value(PARAM_INT
, 'Time sort to', VALUE_DEFAULT
, null),
405 'aftereventid' => new external_value(PARAM_INT
, 'The last seen event id', VALUE_DEFAULT
, 0),
406 'limitnum' => new external_value(PARAM_INT
, 'Limit number', VALUE_DEFAULT
, 20),
407 'limittononsuspendedevents' => new external_value(PARAM_BOOL
,
408 'Limit the events to courses the user is not suspended in', VALUE_DEFAULT
, false),
409 'userid' => new external_value(PARAM_INT
, 'The user id', VALUE_DEFAULT
, null),
415 * Get calendar action events based on the timesort value.
418 * @param null|int $timesortfrom Events after this time (inclusive)
419 * @param null|int $timesortto Events before this time (inclusive)
420 * @param null|int $aftereventid Get events with ids greater than this one
421 * @param int $limitnum Limit the number of results to this value
422 * @param null|int $userid The user id
425 public static function get_calendar_action_events_by_timesort($timesortfrom = 0, $timesortto = null,
426 $aftereventid = 0, $limitnum = 20, $limittononsuspendedevents = false,
430 $params = self
::validate_parameters(
431 self
::get_calendar_action_events_by_timesort_parameters(),
433 'timesortfrom' => $timesortfrom,
434 'timesortto' => $timesortto,
435 'aftereventid' => $aftereventid,
436 'limitnum' => $limitnum,
437 'limittononsuspendedevents' => $limittononsuspendedevents,
441 if ($params['userid']) {
442 $user = \core_user
::get_user($params['userid']);
447 $context = \context_user
::instance($user->id
);
448 self
::validate_context($context);
450 if (empty($params['aftereventid'])) {
451 $params['aftereventid'] = null;
454 $renderer = $PAGE->get_renderer('core_calendar');
455 $events = local_api
::get_action_events_by_timesort(
456 $params['timesortfrom'],
457 $params['timesortto'],
458 $params['aftereventid'],
460 $params['limittononsuspendedevents'],
464 $exportercache = new events_related_objects_cache($events);
465 $exporter = new events_exporter($events, ['cache' => $exportercache]);
467 return $exporter->export($renderer);
471 * Returns description of method result value.
474 * @return external_description
476 public static function get_calendar_action_events_by_timesort_returns() {
477 return events_exporter
::get_read_structure();
481 * Returns description of method parameters.
483 * @return external_function_parameters
485 public static function get_calendar_action_events_by_course_parameters() {
486 return new external_function_parameters(
488 'courseid' => new external_value(PARAM_INT
, 'Course id'),
489 'timesortfrom' => new external_value(PARAM_INT
, 'Time sort from', VALUE_DEFAULT
, null),
490 'timesortto' => new external_value(PARAM_INT
, 'Time sort to', VALUE_DEFAULT
, null),
491 'aftereventid' => new external_value(PARAM_INT
, 'The last seen event id', VALUE_DEFAULT
, 0),
492 'limitnum' => new external_value(PARAM_INT
, 'Limit number', VALUE_DEFAULT
, 20)
498 * Get calendar action events for the given course.
501 * @param int $courseid Only events in this course
502 * @param null|int $timesortfrom Events after this time (inclusive)
503 * @param null|int $timesortto Events before this time (inclusive)
504 * @param null|int $aftereventid Get events with ids greater than this one
505 * @param int $limitnum Limit the number of results to this value
508 public static function get_calendar_action_events_by_course(
509 $courseid, $timesortfrom = null, $timesortto = null, $aftereventid = 0, $limitnum = 20) {
514 $params = self
::validate_parameters(
515 self
::get_calendar_action_events_by_course_parameters(),
517 'courseid' => $courseid,
518 'timesortfrom' => $timesortfrom,
519 'timesortto' => $timesortto,
520 'aftereventid' => $aftereventid,
521 'limitnum' => $limitnum,
524 $context = \context_user
::instance($USER->id
);
525 self
::validate_context($context);
527 if (empty($params['aftereventid'])) {
528 $params['aftereventid'] = null;
531 $courses = enrol_get_my_courses('*', null, 0, [$courseid]);
532 $courses = array_values($courses);
534 if (empty($courses)) {
538 $course = $courses[0];
539 $renderer = $PAGE->get_renderer('core_calendar');
540 $events = local_api
::get_action_events_by_course(
542 $params['timesortfrom'],
543 $params['timesortto'],
544 $params['aftereventid'],
548 $exportercache = new events_related_objects_cache($events, $courses);
549 $exporter = new events_exporter($events, ['cache' => $exportercache]);
551 return $exporter->export($renderer);
555 * Returns description of method result value.
557 * @return external_description
559 public static function get_calendar_action_events_by_course_returns() {
560 return events_exporter
::get_read_structure();
564 * Returns description of method parameters.
566 * @return external_function_parameters
568 public static function get_calendar_action_events_by_courses_parameters() {
569 return new external_function_parameters(
571 'courseids' => new external_multiple_structure(
572 new external_value(PARAM_INT
, 'Course id')
574 'timesortfrom' => new external_value(PARAM_INT
, 'Time sort from', VALUE_DEFAULT
, null),
575 'timesortto' => new external_value(PARAM_INT
, 'Time sort to', VALUE_DEFAULT
, null),
576 'limitnum' => new external_value(PARAM_INT
, 'Limit number', VALUE_DEFAULT
, 10)
582 * Get calendar action events for a given list of courses.
585 * @param array $courseids Only include events for these courses
586 * @param null|int $timesortfrom Events after this time (inclusive)
587 * @param null|int $timesortto Events before this time (inclusive)
588 * @param int $limitnum Limit the number of results per course to this value
591 public static function get_calendar_action_events_by_courses(
592 array $courseids, $timesortfrom = null, $timesortto = null, $limitnum = 10) {
597 $params = self
::validate_parameters(
598 self
::get_calendar_action_events_by_courses_parameters(),
600 'courseids' => $courseids,
601 'timesortfrom' => $timesortfrom,
602 'timesortto' => $timesortto,
603 'limitnum' => $limitnum,
606 $context = \context_user
::instance($USER->id
);
607 self
::validate_context($context);
609 if (empty($params['courseids'])) {
610 return ['groupedbycourse' => []];
613 $renderer = $PAGE->get_renderer('core_calendar');
614 $courses = enrol_get_my_courses('*', null, 0, $params['courseids']);
615 $courses = array_values($courses);
617 if (empty($courses)) {
618 return ['groupedbycourse' => []];
621 $events = local_api
::get_action_events_by_courses(
623 $params['timesortfrom'],
624 $params['timesortto'],
628 if (empty($events)) {
629 return ['groupedbycourse' => []];
632 $exportercache = new events_related_objects_cache($events, $courses);
633 $exporter = new events_grouped_by_course_exporter($events, ['cache' => $exportercache]);
635 return $exporter->export($renderer);
639 * Returns description of method result value.
641 * @return external_description
643 public static function get_calendar_action_events_by_courses_returns() {
644 return events_grouped_by_course_exporter
::get_read_structure();
648 * Returns description of method parameters.
650 * @return external_function_parameters.
653 public static function create_calendar_events_parameters() {
654 // Userid is always current user, so no need to get it from client.
655 // Module based calendar events are not allowed here. Hence no need of instance and modulename.
656 // subscription id and uuid is not allowed as this is not an ical api.
657 return new external_function_parameters(
658 array('events' => new external_multiple_structure(
659 new external_single_structure(
661 'name' => new external_value(PARAM_TEXT
, 'event name', VALUE_REQUIRED
, '', NULL_NOT_ALLOWED
),
662 'description' => new external_value(PARAM_RAW
, 'Description', VALUE_DEFAULT
, null, NULL_ALLOWED
),
663 'format' => new external_format_value('description', VALUE_DEFAULT
),
664 'courseid' => new external_value(PARAM_INT
, 'course id', VALUE_DEFAULT
, 0, NULL_NOT_ALLOWED
),
665 'groupid' => new external_value(PARAM_INT
, 'group id', VALUE_DEFAULT
, 0, NULL_NOT_ALLOWED
),
666 'repeats' => new external_value(PARAM_INT
, 'number of repeats', VALUE_DEFAULT
, 0, NULL_NOT_ALLOWED
),
667 'eventtype' => new external_value(PARAM_TEXT
, 'Event type', VALUE_DEFAULT
, 'user', NULL_NOT_ALLOWED
),
668 'timestart' => new external_value(PARAM_INT
, 'timestart', VALUE_DEFAULT
, time(), NULL_NOT_ALLOWED
),
669 'timeduration' => new external_value(PARAM_INT
, 'time duration', VALUE_DEFAULT
, 0, NULL_NOT_ALLOWED
),
670 'visible' => new external_value(PARAM_INT
, 'visible', VALUE_DEFAULT
, 1, NULL_NOT_ALLOWED
),
671 'sequence' => new external_value(PARAM_INT
, 'sequence', VALUE_DEFAULT
, 1, NULL_NOT_ALLOWED
),
679 * Delete Calendar events.
681 * @param array $events A list of events to create.
682 * @return array array of events created.
684 * @throws moodle_exception if user doesnt have the permission to create events.
686 public static function create_calendar_events($events) {
689 // Parameter validation.
690 $params = self
::validate_parameters(self
::create_calendar_events_parameters(), array('events' => $events));
692 $transaction = $DB->start_delegated_transaction();
696 foreach ($params['events'] as $event) {
698 // Let us set some defaults.
699 $event['userid'] = $USER->id
;
700 $event['modulename'] = '';
701 $event['instance'] = 0;
702 $event['subscriptionid'] = null;
704 $event['format'] = external_validate_format($event['format']);
705 if ($event['repeats'] > 0) {
706 $event['repeat'] = 1;
708 $event['repeat'] = 0;
711 $eventobj = new calendar_event($event);
713 // Let's check if the user is allowed to delete an event.
714 if (!calendar_add_event_allowed($eventobj)) {
715 $warnings [] = array('item' => $event['name'], 'warningcode' => 'nopermissions', 'message' => 'you do not have permissions to create this event');
718 // Let's create the event.
719 $var = $eventobj->create($event);
720 $var = (array)$var->properties();
721 if ($event['repeat']) {
722 $children = $DB->get_records('event', array('repeatid' => $var['id']));
723 foreach ($children as $child) {
724 $return[] = (array) $child;
731 // Everything done smoothly, let's commit.
732 $transaction->allow_commit();
733 return array('events' => $return, 'warnings' => $warnings);
737 * Returns description of method result value.
739 * @return external_description.
742 public static function create_calendar_events_returns() {
743 return new external_single_structure(
745 'events' => new external_multiple_structure( new external_single_structure(
747 'id' => new external_value(PARAM_INT
, 'event id'),
748 'name' => new external_value(PARAM_TEXT
, 'event name'),
749 'description' => new external_value(PARAM_RAW
, 'Description', VALUE_OPTIONAL
),
750 'format' => new external_format_value('description'),
751 'courseid' => new external_value(PARAM_INT
, 'course id'),
752 'groupid' => new external_value(PARAM_INT
, 'group id'),
753 'userid' => new external_value(PARAM_INT
, 'user id'),
754 'repeatid' => new external_value(PARAM_INT
, 'repeat id', VALUE_OPTIONAL
),
755 'modulename' => new external_value(PARAM_TEXT
, 'module name', VALUE_OPTIONAL
),
756 'instance' => new external_value(PARAM_INT
, 'instance id'),
757 'eventtype' => new external_value(PARAM_TEXT
, 'Event type'),
758 'timestart' => new external_value(PARAM_INT
, 'timestart'),
759 'timeduration' => new external_value(PARAM_INT
, 'time duration'),
760 'visible' => new external_value(PARAM_INT
, 'visible'),
761 'uuid' => new external_value(PARAM_TEXT
, 'unique id of ical events', VALUE_OPTIONAL
, '', NULL_NOT_ALLOWED
),
762 'sequence' => new external_value(PARAM_INT
, 'sequence'),
763 'timemodified' => new external_value(PARAM_INT
, 'time modified'),
764 'subscriptionid' => new external_value(PARAM_INT
, 'Subscription id', VALUE_OPTIONAL
),
767 'warnings' => new external_warnings()
773 * Returns description of method parameters.
775 * @return external_function_parameters
777 public static function get_calendar_event_by_id_parameters() {
778 return new external_function_parameters(
780 'eventid' => new external_value(PARAM_INT
, 'The event id to be retrieved'),
786 * Get calendar event by id.
788 * @param int $eventid The calendar event id to be retrieved.
789 * @return array Array of event details
791 public static function get_calendar_event_by_id($eventid) {
794 $params = self
::validate_parameters(self
::get_calendar_event_by_id_parameters(), ['eventid' => $eventid]);
795 $context = \context_user
::instance($USER->id
);
797 self
::validate_context($context);
800 $legacyevent = calendar_event
::load($eventid);
801 // Must check we can see this event.
802 if (!calendar_view_event_allowed($legacyevent)) {
803 // We can't return a warning in this case because the event is not optional.
804 // We don't know the context for the event and it's not worth loading it.
805 $syscontext = context_system
::instance();
806 throw new \required_capability_exception
($syscontext, 'moodle/course:view', 'nopermission', '');
809 $legacyevent->count_repeats();
811 $eventmapper = event_container
::get_event_mapper();
812 $event = $eventmapper->from_legacy_event_to_event($legacyevent);
814 $cache = new events_related_objects_cache([$event]);
816 'context' => $cache->get_context($event),
817 'course' => $cache->get_course($event),
820 $exporter = new event_exporter($event, $relatedobjects);
821 $renderer = $PAGE->get_renderer('core_calendar');
823 return array('event' => $exporter->export($renderer), 'warnings' => $warnings);
827 * Returns description of method result value
829 * @return external_description
831 public static function get_calendar_event_by_id_returns() {
832 $eventstructure = event_exporter
::get_read_structure();
834 return new external_single_structure(array(
835 'event' => $eventstructure,
836 'warnings' => new external_warnings()
842 * Returns description of method parameters.
844 * @return external_function_parameters.
846 public static function submit_create_update_form_parameters() {
847 return new external_function_parameters(
849 'formdata' => new external_value(PARAM_RAW
, 'The data from the event form'),
855 * Handles the event form submission.
857 * @param string $formdata The event form data in a URI encoded param string
858 * @return array The created or modified event
859 * @throws moodle_exception
861 public static function submit_create_update_form($formdata) {
862 global $USER, $PAGE, $CFG;
863 require_once($CFG->libdir
."/filelib.php");
865 // Parameter validation.
866 $params = self
::validate_parameters(self
::submit_create_update_form_parameters(), ['formdata' => $formdata]);
867 $context = \context_user
::instance($USER->id
);
870 self
::validate_context($context);
871 parse_str($params['formdata'], $data);
873 $eventtype = isset($data['eventtype']) ?
$data['eventtype'] : null;
874 $coursekey = ($eventtype == 'group') ?
'groupcourseid' : 'courseid';
875 $courseid = (!empty($data[$coursekey])) ?
$data[$coursekey] : null;
876 $editoroptions = \core_calendar\local\event\forms\create
::build_editor_options($context);
877 $formoptions = ['editoroptions' => $editoroptions, 'courseid' => $courseid];
879 require_once($CFG->libdir
. '/grouplib.php');
880 $groupcoursedata = groups_get_course_data($courseid);
881 if (!empty($groupcoursedata->groups
)) {
882 $formoptions['groups'] = [];
883 foreach ($groupcoursedata->groups
as $groupid => $groupdata) {
884 $formoptions['groups'][$groupid] = $groupdata->name
;
889 if (!empty($data['id'])) {
890 $eventid = clean_param($data['id'], PARAM_INT
);
891 $legacyevent = calendar_event
::load($eventid);
892 $legacyevent->count_repeats();
893 $formoptions['event'] = $legacyevent;
894 $mform = new update_event_form(null, $formoptions, 'post', '', null, true, $data);
897 $mform = new create_event_form(null, $formoptions, 'post', '', null, true, $data);
900 if ($validateddata = $mform->get_data()) {
901 $formmapper = new create_update_form_mapper();
902 $properties = $formmapper->from_data_to_event_properties($validateddata);
904 if (is_null($legacyevent)) {
905 $legacyevent = new \
calendar_event($properties);
906 // Need to do this in order to initialise the description
907 // property which then triggers the update function below
908 // to set the appropriate default properties on the event.
909 $properties = $legacyevent->properties(true);
912 if (!calendar_edit_event_allowed($legacyevent, true)) {
913 print_error('nopermissiontoupdatecalendar');
916 $legacyevent->update($properties);
917 $eventcontext = $legacyevent->context
;
919 file_remove_editor_orphaned_files($validateddata->description
);
921 // Take any files added to the description draft file area and
922 // convert them into the proper event description file area. Also
923 // parse the description text and replace the URLs to the draft files
924 // with the @@PLUGIN_FILE@@ placeholder to be persisted in the DB.
925 $description = file_save_draft_area_files(
926 $validateddata->description
['itemid'],
931 create_event_form
::build_editor_options($eventcontext),
932 $validateddata->description
['text']
935 // If draft files were found then we need to save the new
936 // description value.
937 if ($description != $validateddata->description
['text']) {
938 $properties->id
= $legacyevent->id
;
939 $properties->description
= $description;
940 $legacyevent->update($properties);
943 $eventmapper = event_container
::get_event_mapper();
944 $event = $eventmapper->from_legacy_event_to_event($legacyevent);
945 $cache = new events_related_objects_cache([$event]);
947 'context' => $cache->get_context($event),
948 'course' => $cache->get_course($event),
950 $exporter = new event_exporter($event, $relatedobjects);
951 $renderer = $PAGE->get_renderer('core_calendar');
953 return [ 'event' => $exporter->export($renderer) ];
955 return [ 'validationerror' => true ];
960 * Returns description of method result value.
962 * @return external_description.
964 public static function submit_create_update_form_returns() {
965 $eventstructure = event_exporter
::get_read_structure();
966 $eventstructure->required
= VALUE_OPTIONAL
;
968 return new external_single_structure(
970 'event' => $eventstructure,
971 'validationerror' => new external_value(PARAM_BOOL
, 'Invalid form data', VALUE_DEFAULT
, false),
977 * Get data for the monthly calendar view.
979 * @param int $year The year to be shown
980 * @param int $month The month to be shown
981 * @param int $courseid The course to be included
982 * @param int $categoryid The category to be included
983 * @param bool $includenavigation Whether to include navigation
984 * @param bool $mini Whether to return the mini month view or not
987 public static function get_calendar_monthly_view($year, $month, $courseid, $categoryid, $includenavigation, $mini) {
988 global $DB, $USER, $PAGE;
990 // Parameter validation.
991 $params = self
::validate_parameters(self
::get_calendar_monthly_view_parameters(), [
994 'courseid' => $courseid,
995 'categoryid' => $categoryid,
996 'includenavigation' => $includenavigation,
1000 $context = \context_user
::instance($USER->id
);
1001 self
::validate_context($context);
1002 $PAGE->set_url('/calendar/');
1004 $type = \core_calendar\type_factory
::get_calendar_instance();
1006 $time = $type->convert_to_timestamp($params['year'], $params['month'], 1);
1007 $calendar = \calendar_information
::create($time, $params['courseid'], $params['categoryid']);
1008 self
::validate_context($calendar->context
);
1010 $view = $params['mini'] ?
'mini' : 'month';
1011 list($data, $template) = calendar_get_view($calendar, $view, $params['includenavigation']);
1017 * Returns description of method parameters.
1019 * @return external_function_parameters
1021 public static function get_calendar_monthly_view_parameters() {
1022 return new external_function_parameters(
1024 'year' => new external_value(PARAM_INT
, 'Month to be viewed', VALUE_REQUIRED
),
1025 'month' => new external_value(PARAM_INT
, 'Year to be viewed', VALUE_REQUIRED
),
1026 'courseid' => new external_value(PARAM_INT
, 'Course being viewed', VALUE_DEFAULT
, SITEID
, NULL_ALLOWED
),
1027 'categoryid' => new external_value(PARAM_INT
, 'Category being viewed', VALUE_DEFAULT
, null, NULL_ALLOWED
),
1028 'includenavigation' => new external_value(
1030 'Whether to show course navigation',
1035 'mini' => new external_value(
1037 'Whether to return the mini month view or not',
1047 * Returns description of method result value.
1049 * @return external_description
1051 public static function get_calendar_monthly_view_returns() {
1052 return \core_calendar\external\month_exporter
::get_read_structure();
1056 * Get data for the daily calendar view.
1058 * @param int $year The year to be shown
1059 * @param int $month The month to be shown
1060 * @param int $day The day to be shown
1061 * @param int $courseid The course to be included
1064 public static function get_calendar_day_view($year, $month, $day, $courseid, $categoryid) {
1065 global $DB, $USER, $PAGE;
1067 // Parameter validation.
1068 $params = self
::validate_parameters(self
::get_calendar_day_view_parameters(), [
1072 'courseid' => $courseid,
1073 'categoryid' => $categoryid,
1076 $context = \context_user
::instance($USER->id
);
1077 self
::validate_context($context);
1079 $type = \core_calendar\type_factory
::get_calendar_instance();
1081 $time = $type->convert_to_timestamp($params['year'], $params['month'], $params['day']);
1082 $calendar = \calendar_information
::create($time, $params['courseid'], $params['categoryid']);
1083 self
::validate_context($calendar->context
);
1085 list($data, $template) = calendar_get_view($calendar, 'day');
1091 * Returns description of method parameters.
1093 * @return external_function_parameters
1095 public static function get_calendar_day_view_parameters() {
1096 return new external_function_parameters(
1098 'year' => new external_value(PARAM_INT
, 'Year to be viewed', VALUE_REQUIRED
),
1099 'month' => new external_value(PARAM_INT
, 'Month to be viewed', VALUE_REQUIRED
),
1100 'day' => new external_value(PARAM_INT
, 'Day to be viewed', VALUE_REQUIRED
),
1101 'courseid' => new external_value(PARAM_INT
, 'Course being viewed', VALUE_DEFAULT
, SITEID
, NULL_ALLOWED
),
1102 'categoryid' => new external_value(PARAM_INT
, 'Category being viewed', VALUE_DEFAULT
, null, NULL_ALLOWED
),
1108 * Returns description of method result value.
1110 * @return external_description
1112 public static function get_calendar_day_view_returns() {
1113 return \core_calendar\external\calendar_day_exporter
::get_read_structure();
1118 * Returns description of method parameters.
1120 * @return external_function_parameters
1122 public static function update_event_start_day_parameters() {
1123 return new external_function_parameters(
1125 'eventid' => new external_value(PARAM_INT
, 'Id of event to be updated', VALUE_REQUIRED
),
1126 'daytimestamp' => new external_value(PARAM_INT
, 'Timestamp for the new start day', VALUE_REQUIRED
),
1132 * Change the start day for the given calendar event to the day that
1133 * corresponds with the provided timestamp.
1135 * The timestamp only needs to be anytime within the desired day as only
1136 * the date data is extracted from it.
1138 * The event's original time of day is maintained, only the date is shifted.
1140 * @param int $eventid Id of event to be updated
1141 * @param int $daytimestamp Timestamp for the new start day
1144 public static function update_event_start_day($eventid, $daytimestamp) {
1145 global $USER, $PAGE;
1147 // Parameter validation.
1148 $params = self
::validate_parameters(self
::update_event_start_day_parameters(), [
1149 'eventid' => $eventid,
1150 'daytimestamp' => $daytimestamp,
1153 $vault = event_container
::get_event_vault();
1154 $mapper = event_container
::get_event_mapper();
1155 $event = $vault->get_event_by_id($eventid);
1158 throw new \
moodle_exception('Unable to find event with id ' . $eventid);
1161 $legacyevent = $mapper->from_event_to_legacy_event($event);
1163 if (!calendar_edit_event_allowed($legacyevent, true)) {
1164 print_error('nopermissiontoupdatecalendar');
1167 self
::validate_context($legacyevent->context
);
1169 $newdate = usergetdate($daytimestamp);
1170 $startdatestring = implode('-', [$newdate['year'], $newdate['mon'], $newdate['mday']]);
1171 $startdate = new DateTimeImmutable($startdatestring);
1172 $event = local_api
::update_event_start_day($event, $startdate);
1173 $cache = new events_related_objects_cache([$event]);
1175 'context' => $cache->get_context($event),
1176 'course' => $cache->get_course($event),
1178 $exporter = new event_exporter($event, $relatedobjects);
1179 $renderer = $PAGE->get_renderer('core_calendar');
1181 return array('event' => $exporter->export($renderer));
1185 * Returns description of method result value.
1187 * @return external_description
1189 public static function update_event_start_day_returns() {
1190 return new external_single_structure(
1192 'event' => event_exporter
::get_read_structure()
1198 * Get data for the monthly calendar view.
1200 * @param int $courseid The course to be included
1201 * @param int $categoryid The category to be included
1204 public static function get_calendar_upcoming_view($courseid, $categoryid) {
1205 global $DB, $USER, $PAGE;
1207 // Parameter validation.
1208 $params = self
::validate_parameters(self
::get_calendar_upcoming_view_parameters(), [
1209 'courseid' => $courseid,
1210 'categoryid' => $categoryid,
1213 $context = \context_user
::instance($USER->id
);
1214 self
::validate_context($context);
1215 $PAGE->set_url('/calendar/');
1217 $calendar = \calendar_information
::create(time(), $params['courseid'], $params['categoryid']);
1218 self
::validate_context($calendar->context
);
1220 list($data, $template) = calendar_get_view($calendar, 'upcoming');
1226 * Returns description of method parameters.
1228 * @return external_function_parameters
1230 public static function get_calendar_upcoming_view_parameters() {
1231 return new external_function_parameters(
1233 'courseid' => new external_value(PARAM_INT
, 'Course being viewed', VALUE_DEFAULT
, SITEID
, NULL_ALLOWED
),
1234 'categoryid' => new external_value(PARAM_INT
, 'Category being viewed', VALUE_DEFAULT
, null, NULL_ALLOWED
),
1240 * Returns description of method result value.
1242 * @return external_description
1244 public static function get_calendar_upcoming_view_returns() {
1245 return \core_calendar\external\calendar_upcoming_exporter
::get_read_structure();
1250 * Returns description of method parameters.
1252 * @return external_function_parameters.
1255 public static function get_calendar_access_information_parameters() {
1256 return new external_function_parameters(
1258 'courseid' => new external_value(PARAM_INT
, 'Course to check, empty for site calendar events.', VALUE_DEFAULT
, 0),
1264 * Convenience function to retrieve some permissions information for the given course calendar.
1266 * @param int $courseid Course to check, empty for site.
1267 * @return array The access information
1268 * @throws moodle_exception
1271 public static function get_calendar_access_information($courseid = 0) {
1273 $params = self
::validate_parameters(self
::get_calendar_access_information_parameters(), ['courseid' => $courseid]);
1275 if (empty($params['courseid']) ||
$params['courseid'] == SITEID
) {
1276 $context = \context_system
::instance();
1278 $context = \context_course
::instance($params['courseid']);
1281 self
::validate_context($context);
1284 'canmanageentries' => has_capability('moodle/calendar:manageentries', $context),
1285 'canmanageownentries' => has_capability('moodle/calendar:manageownentries', $context),
1286 'canmanagegroupentries' => has_capability('moodle/calendar:managegroupentries', $context),
1292 * Returns description of method result value.
1294 * @return external_description.
1297 public static function get_calendar_access_information_returns() {
1299 return new external_single_structure(
1301 'canmanageentries' => new external_value(PARAM_BOOL
, 'Whether the user can manage entries.'),
1302 'canmanageownentries' => new external_value(PARAM_BOOL
, 'Whether the user can manage its own entries.'),
1303 'canmanagegroupentries' => new external_value(PARAM_BOOL
, 'Whether the user can manage group entries.'),
1304 'warnings' => new external_warnings(),
1310 * Returns description of method parameters.
1312 * @return external_function_parameters.
1315 public static function get_allowed_event_types_parameters() {
1316 return new external_function_parameters(
1318 'courseid' => new external_value(PARAM_INT
, 'Course to check, empty for site.', VALUE_DEFAULT
, 0),
1324 * Get the type of events a user can create in the given course.
1326 * @param int $courseid Course to check, empty for site.
1327 * @return array The types allowed
1328 * @throws moodle_exception
1331 public static function get_allowed_event_types($courseid = 0) {
1333 $params = self
::validate_parameters(self
::get_allowed_event_types_parameters(), ['courseid' => $courseid]);
1335 if (empty($params['courseid']) ||
$params['courseid'] == SITEID
) {
1336 $context = \context_system
::instance();
1338 $context = \context_course
::instance($params['courseid']);
1341 self
::validate_context($context);
1343 $allowedeventtypes = array_filter(calendar_get_allowed_event_types($params['courseid']));
1346 'allowedeventtypes' => array_keys($allowedeventtypes),
1352 * Returns description of method result value.
1354 * @return external_description.
1357 public static function get_allowed_event_types_returns() {
1359 return new external_single_structure(
1361 'allowedeventtypes' => new external_multiple_structure(
1362 new external_value(PARAM_NOTAGS
, 'Allowed event types to be created in the given course.')
1364 'warnings' => new external_warnings(),