Merge branch 'm311_MDL_32226' of https://github.com/danmarsden/moodle into MOODLE_311...
[moodle.git] / calendar / externallib.php
blobb2c94b546b0c0a4fff22c7497a36c7ba5e02a36a
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
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.
8 //
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/>.
18 /**
19 * External calendar API
21 * @package core_calendar
22 * @category external
23 * @copyright 2012 Ankit Agarwal
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 * @since Moodle 2.5
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;
43 /**
44 * Calendar external functions
46 * @package core_calendar
47 * @category external
48 * @copyright 2012 Ankit Agarwal
49 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
50 * @since Moodle 2.5
52 class core_calendar_external extends external_api {
55 /**
56 * Returns description of method parameters
58 * @return external_function_parameters
59 * @since Moodle 2.5
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(
65 array(
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'
75 /**
76 * Delete Calendar events
78 * @param array $eventids A list of event ids with repeat flag to delete
79 * @return null
80 * @since Moodle 2.5
82 public static function delete_calendar_events($events) {
83 global $DB;
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();
104 return null;
108 * Returns description of method result value
110 * @return external_description
111 * @since Moodle 2.5
113 public static function delete_calendar_events_returns() {
114 return null;
118 * Returns description of method parameters
120 * @return external_function_parameters
121 * @since Moodle 2.5
123 public static function get_calendar_events_parameters() {
124 return new external_function_parameters(
125 array('events' => new external_single_structure(
126 array(
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(
145 array(
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 site 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
173 * @since Moodle 2.5
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());
182 $warnings = array();
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;
192 }, $courseobjs));
194 foreach ($params['events']['courseids'] as $id) {
195 try {
196 $context = context_course::instance($id);
197 self::validate_context($context);
198 $funcparam['courses'][] = $id;
199 } catch (Exception $e) {
200 $warnings[] = array(
201 'item' => 'course',
202 'itemid' => $id,
203 'warningcode' => 'nopermissions',
204 'message' => 'No access rights in course context '.$e->getMessage().$e->getTraceAsString()
208 } else {
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;
228 } else {
229 $warnings[] = array('item' => $id, 'warningcode' => 'nopermissions', 'message' => 'you do not have permissions to access this group');
232 } else {
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.
241 $categories = [];
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);
258 } else {
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);
268 } else {
269 $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);
292 } else {
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.
312 $events = array();
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 $event['name'] = $calendareventobj->format_external_name();
323 list($event['description'], $event['format']) = $calendareventobj->format_external_text();
325 if ($hassystemcap) {
326 // User can see everything, no further check is needed.
327 $events[$eventid] = $event;
328 } else if (!empty($eventobj->modulename)) {
329 $courseid = $eventobj->courseid;
330 if (!$courseid) {
331 if (!$calendareventobj->context || !($context = $calendareventobj->context->get_course_context(false))) {
332 continue;
334 $courseid = $context->instanceid;
336 $instances = get_fast_modinfo($courseid)->get_instances_of($eventobj->modulename);
337 if (!empty($instances[$eventobj->instance]->uservisible)) {
338 $events[$eventid] = $event;
340 } else {
341 // Can the user actually see this event?
342 $eventobj = calendar_event::load($eventobj);
343 if ((($eventobj->courseid == $SITE->id) && (empty($eventobj->categoryid))) ||
344 (!empty($eventobj->categoryid) && isset($categories[$eventobj->categoryid])) ||
345 (!empty($eventobj->groupid) && in_array($eventobj->groupid, $groups)) ||
346 (!empty($eventobj->courseid) && in_array($eventobj->courseid, $courses)) ||
347 ($USER->id == $eventobj->userid) ||
348 (calendar_edit_event_allowed($eventobj))) {
349 $events[$eventid] = $event;
350 } else {
351 $warnings[] = array('item' => $eventid, 'warningcode' => 'nopermissions', 'message' => 'you do not have permissions to view this event');
355 return array('events' => $events, 'warnings' => $warnings);
359 * Returns description of method result value
361 * @return external_description
362 * @since Moodle 2.5
364 public static function get_calendar_events_returns() {
365 return new external_single_structure(array(
366 'events' => new external_multiple_structure( new external_single_structure(
367 array(
368 'id' => new external_value(PARAM_INT, 'event id'),
369 'name' => new external_value(PARAM_RAW, 'event name'),
370 'description' => new external_value(PARAM_RAW, 'Description', VALUE_OPTIONAL, null, NULL_ALLOWED),
371 'format' => new external_format_value('description'),
372 'courseid' => new external_value(PARAM_INT, 'course id'),
373 'categoryid' => new external_value(PARAM_INT, 'Category id (only for category events).',
374 VALUE_OPTIONAL),
375 'groupid' => new external_value(PARAM_INT, 'group id'),
376 'userid' => new external_value(PARAM_INT, 'user id'),
377 'repeatid' => new external_value(PARAM_INT, 'repeat id'),
378 'modulename' => new external_value(PARAM_TEXT, 'module name', VALUE_OPTIONAL, null, NULL_ALLOWED),
379 'instance' => new external_value(PARAM_INT, 'instance id'),
380 'eventtype' => new external_value(PARAM_TEXT, 'Event type'),
381 'timestart' => new external_value(PARAM_INT, 'timestart'),
382 'timeduration' => new external_value(PARAM_INT, 'time duration'),
383 'visible' => new external_value(PARAM_INT, 'visible'),
384 'uuid' => new external_value(PARAM_TEXT, 'unique id of ical events', VALUE_OPTIONAL, null, NULL_NOT_ALLOWED),
385 'sequence' => new external_value(PARAM_INT, 'sequence'),
386 'timemodified' => new external_value(PARAM_INT, 'time modified'),
387 'subscriptionid' => new external_value(PARAM_INT, 'Subscription id', VALUE_OPTIONAL, null, NULL_ALLOWED),
388 ), 'event')
390 'warnings' => new external_warnings()
396 * Returns description of method parameters.
398 * @since Moodle 3.3
399 * @return external_function_parameters
401 public static function get_calendar_action_events_by_timesort_parameters() {
402 return new external_function_parameters(
403 array(
404 'timesortfrom' => new external_value(PARAM_INT, 'Time sort from', VALUE_DEFAULT, 0),
405 'timesortto' => new external_value(PARAM_INT, 'Time sort to', VALUE_DEFAULT, null),
406 'aftereventid' => new external_value(PARAM_INT, 'The last seen event id', VALUE_DEFAULT, 0),
407 'limitnum' => new external_value(PARAM_INT, 'Limit number', VALUE_DEFAULT, 20),
408 'limittononsuspendedevents' => new external_value(PARAM_BOOL,
409 'Limit the events to courses the user is not suspended in', VALUE_DEFAULT, false),
410 'userid' => new external_value(PARAM_INT, 'The user id', VALUE_DEFAULT, null),
416 * Get calendar action events based on the timesort value.
418 * @since Moodle 3.3
419 * @param null|int $timesortfrom Events after this time (inclusive)
420 * @param null|int $timesortto Events before this time (inclusive)
421 * @param null|int $aftereventid Get events with ids greater than this one
422 * @param int $limitnum Limit the number of results to this value
423 * @param null|int $userid The user id
424 * @return array
426 public static function get_calendar_action_events_by_timesort($timesortfrom = 0, $timesortto = null,
427 $aftereventid = 0, $limitnum = 20, $limittononsuspendedevents = false,
428 $userid = null) {
429 global $PAGE, $USER;
431 $params = self::validate_parameters(
432 self::get_calendar_action_events_by_timesort_parameters(),
434 'timesortfrom' => $timesortfrom,
435 'timesortto' => $timesortto,
436 'aftereventid' => $aftereventid,
437 'limitnum' => $limitnum,
438 'limittononsuspendedevents' => $limittononsuspendedevents,
439 'userid' => $userid,
442 if ($params['userid']) {
443 $user = \core_user::get_user($params['userid']);
444 } else {
445 $user = $USER;
448 $context = \context_user::instance($user->id);
449 self::validate_context($context);
451 if (empty($params['aftereventid'])) {
452 $params['aftereventid'] = null;
455 $renderer = $PAGE->get_renderer('core_calendar');
456 $events = local_api::get_action_events_by_timesort(
457 $params['timesortfrom'],
458 $params['timesortto'],
459 $params['aftereventid'],
460 $params['limitnum'],
461 $params['limittononsuspendedevents'],
462 $user
465 $exportercache = new events_related_objects_cache($events);
466 $exporter = new events_exporter($events, ['cache' => $exportercache]);
468 return $exporter->export($renderer);
472 * Returns description of method result value.
474 * @since Moodle 3.3
475 * @return external_description
477 public static function get_calendar_action_events_by_timesort_returns() {
478 return events_exporter::get_read_structure();
482 * Returns description of method parameters.
484 * @return external_function_parameters
486 public static function get_calendar_action_events_by_course_parameters() {
487 return new external_function_parameters(
488 array(
489 'courseid' => new external_value(PARAM_INT, 'Course id'),
490 'timesortfrom' => new external_value(PARAM_INT, 'Time sort from', VALUE_DEFAULT, null),
491 'timesortto' => new external_value(PARAM_INT, 'Time sort to', VALUE_DEFAULT, null),
492 'aftereventid' => new external_value(PARAM_INT, 'The last seen event id', VALUE_DEFAULT, 0),
493 'limitnum' => new external_value(PARAM_INT, 'Limit number', VALUE_DEFAULT, 20)
499 * Get calendar action events for the given course.
501 * @since Moodle 3.3
502 * @param int $courseid Only events in this course
503 * @param null|int $timesortfrom Events after this time (inclusive)
504 * @param null|int $timesortto Events before this time (inclusive)
505 * @param null|int $aftereventid Get events with ids greater than this one
506 * @param int $limitnum Limit the number of results to this value
507 * @return array
509 public static function get_calendar_action_events_by_course(
510 $courseid, $timesortfrom = null, $timesortto = null, $aftereventid = 0, $limitnum = 20) {
512 global $PAGE, $USER;
514 $user = null;
515 $params = self::validate_parameters(
516 self::get_calendar_action_events_by_course_parameters(),
518 'courseid' => $courseid,
519 'timesortfrom' => $timesortfrom,
520 'timesortto' => $timesortto,
521 'aftereventid' => $aftereventid,
522 'limitnum' => $limitnum,
525 $context = \context_user::instance($USER->id);
526 self::validate_context($context);
528 if (empty($params['aftereventid'])) {
529 $params['aftereventid'] = null;
532 $courses = enrol_get_my_courses('*', null, 0, [$courseid]);
533 $courses = array_values($courses);
535 if (empty($courses)) {
536 return [];
539 $course = $courses[0];
540 $renderer = $PAGE->get_renderer('core_calendar');
541 $events = local_api::get_action_events_by_course(
542 $course,
543 $params['timesortfrom'],
544 $params['timesortto'],
545 $params['aftereventid'],
546 $params['limitnum']
549 $exportercache = new events_related_objects_cache($events, $courses);
550 $exporter = new events_exporter($events, ['cache' => $exportercache]);
552 return $exporter->export($renderer);
556 * Returns description of method result value.
558 * @return external_description
560 public static function get_calendar_action_events_by_course_returns() {
561 return events_exporter::get_read_structure();
565 * Returns description of method parameters.
567 * @return external_function_parameters
569 public static function get_calendar_action_events_by_courses_parameters() {
570 return new external_function_parameters(
571 array(
572 'courseids' => new external_multiple_structure(
573 new external_value(PARAM_INT, 'Course id')
575 'timesortfrom' => new external_value(PARAM_INT, 'Time sort from', VALUE_DEFAULT, null),
576 'timesortto' => new external_value(PARAM_INT, 'Time sort to', VALUE_DEFAULT, null),
577 'limitnum' => new external_value(PARAM_INT, 'Limit number', VALUE_DEFAULT, 10)
583 * Get calendar action events for a given list of courses.
585 * @since Moodle 3.3
586 * @param array $courseids Only include events for these courses
587 * @param null|int $timesortfrom Events after this time (inclusive)
588 * @param null|int $timesortto Events before this time (inclusive)
589 * @param int $limitnum Limit the number of results per course to this value
590 * @return array
592 public static function get_calendar_action_events_by_courses(
593 array $courseids, $timesortfrom = null, $timesortto = null, $limitnum = 10) {
595 global $PAGE, $USER;
597 $user = null;
598 $params = self::validate_parameters(
599 self::get_calendar_action_events_by_courses_parameters(),
601 'courseids' => $courseids,
602 'timesortfrom' => $timesortfrom,
603 'timesortto' => $timesortto,
604 'limitnum' => $limitnum,
607 $context = \context_user::instance($USER->id);
608 self::validate_context($context);
610 if (empty($params['courseids'])) {
611 return ['groupedbycourse' => []];
614 $renderer = $PAGE->get_renderer('core_calendar');
615 $courses = enrol_get_my_courses('*', null, 0, $params['courseids']);
616 $courses = array_values($courses);
618 if (empty($courses)) {
619 return ['groupedbycourse' => []];
622 $events = local_api::get_action_events_by_courses(
623 $courses,
624 $params['timesortfrom'],
625 $params['timesortto'],
626 $params['limitnum']
629 if (empty($events)) {
630 return ['groupedbycourse' => []];
633 $exportercache = new events_related_objects_cache($events, $courses);
634 $exporter = new events_grouped_by_course_exporter($events, ['cache' => $exportercache]);
636 return $exporter->export($renderer);
640 * Returns description of method result value.
642 * @return external_description
644 public static function get_calendar_action_events_by_courses_returns() {
645 return events_grouped_by_course_exporter::get_read_structure();
649 * Returns description of method parameters.
651 * @return external_function_parameters.
652 * @since Moodle 2.5
654 public static function create_calendar_events_parameters() {
655 // Userid is always current user, so no need to get it from client.
656 // Module based calendar events are not allowed here. Hence no need of instance and modulename.
657 // subscription id and uuid is not allowed as this is not an ical api.
658 return new external_function_parameters(
659 array('events' => new external_multiple_structure(
660 new external_single_structure(
661 array(
662 'name' => new external_value(PARAM_TEXT, 'event name', VALUE_REQUIRED, '', NULL_NOT_ALLOWED),
663 'description' => new external_value(PARAM_RAW, 'Description', VALUE_DEFAULT, null, NULL_ALLOWED),
664 'format' => new external_format_value('description', VALUE_DEFAULT),
665 'courseid' => new external_value(PARAM_INT, 'course id', VALUE_DEFAULT, 0, NULL_NOT_ALLOWED),
666 'groupid' => new external_value(PARAM_INT, 'group id', VALUE_DEFAULT, 0, NULL_NOT_ALLOWED),
667 'repeats' => new external_value(PARAM_INT, 'number of repeats', VALUE_DEFAULT, 0, NULL_NOT_ALLOWED),
668 'eventtype' => new external_value(PARAM_TEXT, 'Event type', VALUE_DEFAULT, 'user', NULL_NOT_ALLOWED),
669 'timestart' => new external_value(PARAM_INT, 'timestart', VALUE_DEFAULT, time(), NULL_NOT_ALLOWED),
670 'timeduration' => new external_value(PARAM_INT, 'time duration', VALUE_DEFAULT, 0, NULL_NOT_ALLOWED),
671 'visible' => new external_value(PARAM_INT, 'visible', VALUE_DEFAULT, 1, NULL_NOT_ALLOWED),
672 'sequence' => new external_value(PARAM_INT, 'sequence', VALUE_DEFAULT, 1, NULL_NOT_ALLOWED),
673 ), 'event')
680 * Create calendar events.
682 * @param array $events A list of events to create.
683 * @return array array of events created.
684 * @since Moodle 2.5
685 * @throws moodle_exception if user doesnt have the permission to create events.
687 public static function create_calendar_events($events) {
688 global $DB, $USER;
690 // Parameter validation.
691 $params = self::validate_parameters(self::create_calendar_events_parameters(), array('events' => $events));
693 $transaction = $DB->start_delegated_transaction();
694 $return = array();
695 $warnings = array();
697 foreach ($params['events'] as $event) {
699 // Let us set some defaults.
700 $event['userid'] = $USER->id;
701 $event['modulename'] = '';
702 $event['instance'] = 0;
703 $event['subscriptionid'] = null;
704 $event['uuid']= '';
705 $event['format'] = external_validate_format($event['format']);
706 if ($event['repeats'] > 0) {
707 $event['repeat'] = 1;
708 } else {
709 $event['repeat'] = 0;
712 $eventobj = new calendar_event($event);
714 // Let's check if the user is allowed to delete an event.
715 if (!calendar_add_event_allowed($eventobj)) {
716 $warnings [] = array('item' => $event['name'], 'warningcode' => 'nopermissions', 'message' => 'you do not have permissions to create this event');
717 continue;
719 // Let's create the event.
720 $var = $eventobj->create($event);
721 $var = (array)$var->properties();
722 if ($event['repeat']) {
723 $children = $DB->get_records('event', array('repeatid' => $var['id']));
724 foreach ($children as $child) {
725 $return[] = (array) $child;
727 } else {
728 $return[] = $var;
732 // Everything done smoothly, let's commit.
733 $transaction->allow_commit();
734 return array('events' => $return, 'warnings' => $warnings);
738 * Returns description of method result value.
740 * @return external_description.
741 * @since Moodle 2.5
743 public static function create_calendar_events_returns() {
744 return new external_single_structure(
745 array(
746 'events' => new external_multiple_structure( new external_single_structure(
747 array(
748 'id' => new external_value(PARAM_INT, 'event id'),
749 'name' => new external_value(PARAM_RAW, 'event name'),
750 'description' => new external_value(PARAM_RAW, 'Description', VALUE_OPTIONAL),
751 'format' => new external_format_value('description'),
752 'courseid' => new external_value(PARAM_INT, 'course id'),
753 'groupid' => new external_value(PARAM_INT, 'group id'),
754 'userid' => new external_value(PARAM_INT, 'user id'),
755 'repeatid' => new external_value(PARAM_INT, 'repeat id', VALUE_OPTIONAL),
756 'modulename' => new external_value(PARAM_TEXT, 'module name', VALUE_OPTIONAL),
757 'instance' => new external_value(PARAM_INT, 'instance id'),
758 'eventtype' => new external_value(PARAM_TEXT, 'Event type'),
759 'timestart' => new external_value(PARAM_INT, 'timestart'),
760 'timeduration' => new external_value(PARAM_INT, 'time duration'),
761 'visible' => new external_value(PARAM_INT, 'visible'),
762 'uuid' => new external_value(PARAM_TEXT, 'unique id of ical events', VALUE_OPTIONAL, '', NULL_NOT_ALLOWED),
763 'sequence' => new external_value(PARAM_INT, 'sequence'),
764 'timemodified' => new external_value(PARAM_INT, 'time modified'),
765 'subscriptionid' => new external_value(PARAM_INT, 'Subscription id', VALUE_OPTIONAL),
766 ), 'event')
768 'warnings' => new external_warnings()
774 * Returns description of method parameters.
776 * @return external_function_parameters
778 public static function get_calendar_event_by_id_parameters() {
779 return new external_function_parameters(
780 array(
781 'eventid' => new external_value(PARAM_INT, 'The event id to be retrieved'),
787 * Get calendar event by id.
789 * @param int $eventid The calendar event id to be retrieved.
790 * @return array Array of event details
792 public static function get_calendar_event_by_id($eventid) {
793 global $PAGE, $USER;
795 $params = self::validate_parameters(self::get_calendar_event_by_id_parameters(), ['eventid' => $eventid]);
796 $context = \context_user::instance($USER->id);
798 self::validate_context($context);
799 $warnings = array();
801 $eventvault = event_container::get_event_vault();
802 if ($event = $eventvault->get_event_by_id($eventid)) {
803 $mapper = event_container::get_event_mapper();
804 if (!calendar_view_event_allowed($mapper->from_event_to_legacy_event($event))) {
805 $event = null;
809 if (!$event) {
810 // We can't return a warning in this case because the event is not optional.
811 // We don't know the context for the event and it's not worth loading it.
812 $syscontext = context_system::instance();
813 throw new \required_capability_exception($syscontext, 'moodle/course:view', 'nopermission', '');
816 $cache = new events_related_objects_cache([$event]);
817 $relatedobjects = [
818 'context' => $cache->get_context($event),
819 'course' => $cache->get_course($event),
822 $exporter = new event_exporter($event, $relatedobjects);
823 $renderer = $PAGE->get_renderer('core_calendar');
825 return array('event' => $exporter->export($renderer), 'warnings' => $warnings);
829 * Returns description of method result value
831 * @return external_description
833 public static function get_calendar_event_by_id_returns() {
834 $eventstructure = event_exporter::get_read_structure();
836 return new external_single_structure(array(
837 'event' => $eventstructure,
838 'warnings' => new external_warnings()
844 * Returns description of method parameters.
846 * @return external_function_parameters.
848 public static function submit_create_update_form_parameters() {
849 return new external_function_parameters(
851 'formdata' => new external_value(PARAM_RAW, 'The data from the event form'),
857 * Handles the event form submission.
859 * @param string $formdata The event form data in a URI encoded param string
860 * @return array The created or modified event
861 * @throws moodle_exception
863 public static function submit_create_update_form($formdata) {
864 global $USER, $PAGE, $CFG;
865 require_once($CFG->libdir."/filelib.php");
867 // Parameter validation.
868 $params = self::validate_parameters(self::submit_create_update_form_parameters(), ['formdata' => $formdata]);
869 $context = \context_user::instance($USER->id);
870 $data = [];
872 self::validate_context($context);
873 parse_str($params['formdata'], $data);
875 if (WS_SERVER) {
876 // Request via WS, ignore sesskey checks in form library.
877 $USER->ignoresesskey = true;
880 $eventtype = isset($data['eventtype']) ? $data['eventtype'] : null;
881 $coursekey = ($eventtype == 'group') ? 'groupcourseid' : 'courseid';
882 $courseid = (!empty($data[$coursekey])) ? $data[$coursekey] : null;
883 $editoroptions = \core_calendar\local\event\forms\create::build_editor_options($context);
884 $formoptions = ['editoroptions' => $editoroptions, 'courseid' => $courseid];
885 $formoptions['eventtypes'] = calendar_get_allowed_event_types($courseid);
886 if ($courseid) {
887 require_once($CFG->libdir . '/grouplib.php');
888 $groupcoursedata = groups_get_course_data($courseid);
889 if (!empty($groupcoursedata->groups)) {
890 $formoptions['groups'] = [];
891 foreach ($groupcoursedata->groups as $groupid => $groupdata) {
892 $formoptions['groups'][$groupid] = $groupdata->name;
897 if (!empty($data['id'])) {
898 $eventid = clean_param($data['id'], PARAM_INT);
899 $legacyevent = calendar_event::load($eventid);
900 $legacyevent->count_repeats();
901 $formoptions['event'] = $legacyevent;
902 $mform = new update_event_form(null, $formoptions, 'post', '', null, true, $data);
903 } else {
904 $legacyevent = null;
905 $mform = new create_event_form(null, $formoptions, 'post', '', null, true, $data);
908 if ($validateddata = $mform->get_data()) {
909 $formmapper = new create_update_form_mapper();
910 $properties = $formmapper->from_data_to_event_properties($validateddata);
912 if (is_null($legacyevent)) {
913 $legacyevent = new \calendar_event($properties);
914 // Need to do this in order to initialise the description
915 // property which then triggers the update function below
916 // to set the appropriate default properties on the event.
917 $properties = $legacyevent->properties(true);
920 if (!calendar_edit_event_allowed($legacyevent, true)) {
921 print_error('nopermissiontoupdatecalendar');
924 $legacyevent->update($properties);
925 $eventcontext = $legacyevent->context;
927 file_remove_editor_orphaned_files($validateddata->description);
929 // Take any files added to the description draft file area and
930 // convert them into the proper event description file area. Also
931 // parse the description text and replace the URLs to the draft files
932 // with the @@PLUGIN_FILE@@ placeholder to be persisted in the DB.
933 $description = file_save_draft_area_files(
934 $validateddata->description['itemid'],
935 $eventcontext->id,
936 'calendar',
937 'event_description',
938 $legacyevent->id,
939 create_event_form::build_editor_options($eventcontext),
940 $validateddata->description['text']
943 // If draft files were found then we need to save the new
944 // description value.
945 if ($description != $validateddata->description['text']) {
946 $properties->id = $legacyevent->id;
947 $properties->description = $description;
948 $legacyevent->update($properties);
951 $eventmapper = event_container::get_event_mapper();
952 $event = $eventmapper->from_legacy_event_to_event($legacyevent);
953 $cache = new events_related_objects_cache([$event]);
954 $relatedobjects = [
955 'context' => $cache->get_context($event),
956 'course' => $cache->get_course($event),
958 $exporter = new event_exporter($event, $relatedobjects);
959 $renderer = $PAGE->get_renderer('core_calendar');
961 return [ 'event' => $exporter->export($renderer) ];
962 } else {
963 return [ 'validationerror' => true ];
968 * Returns description of method result value.
970 * @return external_description.
972 public static function submit_create_update_form_returns() {
973 $eventstructure = event_exporter::get_read_structure();
974 $eventstructure->required = VALUE_OPTIONAL;
976 return new external_single_structure(
977 array(
978 'event' => $eventstructure,
979 'validationerror' => new external_value(PARAM_BOOL, 'Invalid form data', VALUE_DEFAULT, false),
985 * Get data for the monthly calendar view.
987 * @param int $year The year to be shown
988 * @param int $month The month to be shown
989 * @param int $courseid The course to be included
990 * @param int $categoryid The category to be included
991 * @param bool $includenavigation Whether to include navigation
992 * @param bool $mini Whether to return the mini month view or not
993 * @param int $day The day we want to keep as the current day
994 * @return array
996 public static function get_calendar_monthly_view($year, $month, $courseid, $categoryid, $includenavigation, $mini, $day) {
997 global $USER, $PAGE;
999 // Parameter validation.
1000 $params = self::validate_parameters(self::get_calendar_monthly_view_parameters(), [
1001 'year' => $year,
1002 'month' => $month,
1003 'courseid' => $courseid,
1004 'categoryid' => $categoryid,
1005 'includenavigation' => $includenavigation,
1006 'mini' => $mini,
1007 'day' => $day,
1010 $context = \context_user::instance($USER->id);
1011 self::validate_context($context);
1012 $PAGE->set_url('/calendar/');
1014 $type = \core_calendar\type_factory::get_calendar_instance();
1016 $time = $type->convert_to_timestamp($params['year'], $params['month'], $params['day']);
1017 $calendar = \calendar_information::create($time, $params['courseid'], $params['categoryid']);
1018 self::validate_context($calendar->context);
1020 $view = $params['mini'] ? 'mini' : 'month';
1021 list($data, $template) = calendar_get_view($calendar, $view, $params['includenavigation']);
1023 return $data;
1027 * Returns description of method parameters.
1029 * @return external_function_parameters
1031 public static function get_calendar_monthly_view_parameters() {
1032 return new external_function_parameters(
1034 'year' => new external_value(PARAM_INT, 'Year to be viewed', VALUE_REQUIRED),
1035 'month' => new external_value(PARAM_INT, 'Month to be viewed', VALUE_REQUIRED),
1036 'courseid' => new external_value(PARAM_INT, 'Course being viewed', VALUE_DEFAULT, SITEID, NULL_ALLOWED),
1037 'categoryid' => new external_value(PARAM_INT, 'Category being viewed', VALUE_DEFAULT, null, NULL_ALLOWED),
1038 'includenavigation' => new external_value(
1039 PARAM_BOOL,
1040 'Whether to show course navigation',
1041 VALUE_DEFAULT,
1042 true,
1043 NULL_ALLOWED
1045 'mini' => new external_value(
1046 PARAM_BOOL,
1047 'Whether to return the mini month view or not',
1048 VALUE_DEFAULT,
1049 false,
1050 NULL_ALLOWED
1052 'day' => new external_value(PARAM_INT, 'Day to be viewed', VALUE_DEFAULT, 1),
1058 * Returns description of method result value.
1060 * @return external_description
1062 public static function get_calendar_monthly_view_returns() {
1063 return \core_calendar\external\month_exporter::get_read_structure();
1067 * Get data for the daily calendar view.
1069 * @param int $year The year to be shown
1070 * @param int $month The month to be shown
1071 * @param int $day The day to be shown
1072 * @param int $courseid The course to be included
1073 * @return array
1075 public static function get_calendar_day_view($year, $month, $day, $courseid, $categoryid) {
1076 global $DB, $USER, $PAGE;
1078 // Parameter validation.
1079 $params = self::validate_parameters(self::get_calendar_day_view_parameters(), [
1080 'year' => $year,
1081 'month' => $month,
1082 'day' => $day,
1083 'courseid' => $courseid,
1084 'categoryid' => $categoryid,
1087 $context = \context_user::instance($USER->id);
1088 self::validate_context($context);
1090 $type = \core_calendar\type_factory::get_calendar_instance();
1092 $time = $type->convert_to_timestamp($params['year'], $params['month'], $params['day']);
1093 $calendar = \calendar_information::create($time, $params['courseid'], $params['categoryid']);
1094 self::validate_context($calendar->context);
1096 list($data, $template) = calendar_get_view($calendar, 'day');
1098 return $data;
1102 * Returns description of method parameters.
1104 * @return external_function_parameters
1106 public static function get_calendar_day_view_parameters() {
1107 return new external_function_parameters(
1109 'year' => new external_value(PARAM_INT, 'Year to be viewed', VALUE_REQUIRED),
1110 'month' => new external_value(PARAM_INT, 'Month to be viewed', VALUE_REQUIRED),
1111 'day' => new external_value(PARAM_INT, 'Day to be viewed', VALUE_REQUIRED),
1112 'courseid' => new external_value(PARAM_INT, 'Course being viewed', VALUE_DEFAULT, SITEID, NULL_ALLOWED),
1113 'categoryid' => new external_value(PARAM_INT, 'Category being viewed', VALUE_DEFAULT, null, NULL_ALLOWED),
1119 * Returns description of method result value.
1121 * @return external_description
1123 public static function get_calendar_day_view_returns() {
1124 return \core_calendar\external\calendar_day_exporter::get_read_structure();
1129 * Returns description of method parameters.
1131 * @return external_function_parameters
1133 public static function update_event_start_day_parameters() {
1134 return new external_function_parameters(
1136 'eventid' => new external_value(PARAM_INT, 'Id of event to be updated', VALUE_REQUIRED),
1137 'daytimestamp' => new external_value(PARAM_INT, 'Timestamp for the new start day', VALUE_REQUIRED),
1143 * Change the start day for the given calendar event to the day that
1144 * corresponds with the provided timestamp.
1146 * The timestamp only needs to be anytime within the desired day as only
1147 * the date data is extracted from it.
1149 * The event's original time of day is maintained, only the date is shifted.
1151 * @param int $eventid Id of event to be updated
1152 * @param int $daytimestamp Timestamp for the new start day
1153 * @return array
1155 public static function update_event_start_day($eventid, $daytimestamp) {
1156 global $USER, $PAGE;
1158 // Parameter validation.
1159 $params = self::validate_parameters(self::update_event_start_day_parameters(), [
1160 'eventid' => $eventid,
1161 'daytimestamp' => $daytimestamp,
1164 $vault = event_container::get_event_vault();
1165 $mapper = event_container::get_event_mapper();
1166 $event = $vault->get_event_by_id($eventid);
1168 if (!$event) {
1169 throw new \moodle_exception('Unable to find event with id ' . $eventid);
1172 $legacyevent = $mapper->from_event_to_legacy_event($event);
1174 if (!calendar_edit_event_allowed($legacyevent, true)) {
1175 print_error('nopermissiontoupdatecalendar');
1178 self::validate_context($legacyevent->context);
1180 $newdate = usergetdate($daytimestamp);
1181 $startdatestring = implode('-', [$newdate['year'], $newdate['mon'], $newdate['mday']]);
1182 $startdate = new DateTimeImmutable($startdatestring);
1183 $event = local_api::update_event_start_day($event, $startdate);
1184 $cache = new events_related_objects_cache([$event]);
1185 $relatedobjects = [
1186 'context' => $cache->get_context($event),
1187 'course' => $cache->get_course($event),
1189 $exporter = new event_exporter($event, $relatedobjects);
1190 $renderer = $PAGE->get_renderer('core_calendar');
1192 return array('event' => $exporter->export($renderer));
1196 * Returns description of method result value.
1198 * @return external_description
1200 public static function update_event_start_day_returns() {
1201 return new external_single_structure(
1202 array(
1203 'event' => event_exporter::get_read_structure()
1209 * Get data for the monthly calendar view.
1211 * @param int $courseid The course to be included
1212 * @param int $categoryid The category to be included
1213 * @return array
1215 public static function get_calendar_upcoming_view($courseid, $categoryid) {
1216 global $DB, $USER, $PAGE;
1218 // Parameter validation.
1219 $params = self::validate_parameters(self::get_calendar_upcoming_view_parameters(), [
1220 'courseid' => $courseid,
1221 'categoryid' => $categoryid,
1224 $context = \context_user::instance($USER->id);
1225 self::validate_context($context);
1226 $PAGE->set_url('/calendar/');
1228 $calendar = \calendar_information::create(time(), $params['courseid'], $params['categoryid']);
1229 self::validate_context($calendar->context);
1231 list($data, $template) = calendar_get_view($calendar, 'upcoming');
1233 return $data;
1237 * Returns description of method parameters.
1239 * @return external_function_parameters
1241 public static function get_calendar_upcoming_view_parameters() {
1242 return new external_function_parameters(
1244 'courseid' => new external_value(PARAM_INT, 'Course being viewed', VALUE_DEFAULT, SITEID, NULL_ALLOWED),
1245 'categoryid' => new external_value(PARAM_INT, 'Category being viewed', VALUE_DEFAULT, null, NULL_ALLOWED),
1251 * Returns description of method result value.
1253 * @return external_description
1255 public static function get_calendar_upcoming_view_returns() {
1256 return \core_calendar\external\calendar_upcoming_exporter::get_read_structure();
1261 * Returns description of method parameters.
1263 * @return external_function_parameters.
1264 * @since Moodle 3.7
1266 public static function get_calendar_access_information_parameters() {
1267 return new external_function_parameters(
1269 'courseid' => new external_value(PARAM_INT, 'Course to check, empty for site calendar events.', VALUE_DEFAULT, 0),
1275 * Convenience function to retrieve some permissions information for the given course calendar.
1277 * @param int $courseid Course to check, empty for site.
1278 * @return array The access information
1279 * @throws moodle_exception
1280 * @since Moodle 3.7
1282 public static function get_calendar_access_information($courseid = 0) {
1284 $params = self::validate_parameters(self::get_calendar_access_information_parameters(), ['courseid' => $courseid]);
1286 if (empty($params['courseid']) || $params['courseid'] == SITEID) {
1287 $context = \context_system::instance();
1288 } else {
1289 $context = \context_course::instance($params['courseid']);
1292 self::validate_context($context);
1294 return [
1295 'canmanageentries' => has_capability('moodle/calendar:manageentries', $context),
1296 'canmanageownentries' => has_capability('moodle/calendar:manageownentries', $context),
1297 'canmanagegroupentries' => has_capability('moodle/calendar:managegroupentries', $context),
1298 'warnings' => [],
1303 * Returns description of method result value.
1305 * @return external_description.
1306 * @since Moodle 3.7
1308 public static function get_calendar_access_information_returns() {
1310 return new external_single_structure(
1312 'canmanageentries' => new external_value(PARAM_BOOL, 'Whether the user can manage entries.'),
1313 'canmanageownentries' => new external_value(PARAM_BOOL, 'Whether the user can manage its own entries.'),
1314 'canmanagegroupentries' => new external_value(PARAM_BOOL, 'Whether the user can manage group entries.'),
1315 'warnings' => new external_warnings(),
1321 * Returns description of method parameters.
1323 * @return external_function_parameters.
1324 * @since Moodle 3.7
1326 public static function get_allowed_event_types_parameters() {
1327 return new external_function_parameters(
1329 'courseid' => new external_value(PARAM_INT, 'Course to check, empty for site.', VALUE_DEFAULT, 0),
1335 * Get the type of events a user can create in the given course.
1337 * @param int $courseid Course to check, empty for site.
1338 * @return array The types allowed
1339 * @throws moodle_exception
1340 * @since Moodle 3.7
1342 public static function get_allowed_event_types($courseid = 0) {
1344 $params = self::validate_parameters(self::get_allowed_event_types_parameters(), ['courseid' => $courseid]);
1346 if (empty($params['courseid']) || $params['courseid'] == SITEID) {
1347 $context = \context_system::instance();
1348 } else {
1349 $context = \context_course::instance($params['courseid']);
1352 self::validate_context($context);
1354 $allowedeventtypes = array_filter(calendar_get_allowed_event_types($params['courseid']));
1356 return [
1357 'allowedeventtypes' => array_keys($allowedeventtypes),
1358 'warnings' => [],
1363 * Returns description of method result value.
1365 * @return external_description.
1366 * @since Moodle 3.7
1368 public static function get_allowed_event_types_returns() {
1370 return new external_single_structure(
1372 'allowedeventtypes' => new external_multiple_structure(
1373 new external_value(PARAM_NOTAGS, 'Allowed event types to be created in the given course.')
1375 'warnings' => new external_warnings(),
1381 * Convert the specified dates into unix timestamps.
1383 * @param array $datetimes Array of arrays containing date time details, each in the format:
1384 * ['year' => a, 'month' => b, 'day' => c,
1385 * 'hour' => d (optional), 'minute' => e (optional), 'key' => 'x' (optional)]
1386 * @return array Provided array of dates converted to unix timestamps
1387 * @throws moodle_exception If one or more of the dates provided does not convert to a valid timestamp.
1389 public static function get_timestamps($datetimes) {
1390 $params = self::validate_parameters(self::get_timestamps_parameters(), ['data' => $datetimes]);
1392 $type = \core_calendar\type_factory::get_calendar_instance();
1393 $timestamps = ['timestamps' => []];
1395 foreach ($params['data'] as $key => $datetime) {
1396 $hour = $datetime['hour'] ?? 0;
1397 $minute = $datetime['minute'] ?? 0;
1399 try {
1400 $timestamp = $type->convert_to_timestamp(
1401 $datetime['year'], $datetime['month'], $datetime['day'], $hour, $minute);
1403 $timestamps['timestamps'][] = [
1404 'key' => $datetime['key'] ?? $key,
1405 'timestamp' => $timestamp,
1408 } catch (Exception $e) {
1409 throw new moodle_exception('One or more of the dates provided were invalid');
1413 return $timestamps;
1417 * Describes the parameters for get_timestamps.
1419 * @return external_function_parameters
1421 public static function get_timestamps_parameters() {
1422 return new external_function_parameters ([
1423 'data' => new external_multiple_structure(
1424 new external_single_structure(
1426 'key' => new external_value(PARAM_ALPHANUMEXT, 'key', VALUE_OPTIONAL),
1427 'year' => new external_value(PARAM_INT, 'year'),
1428 'month' => new external_value(PARAM_INT, 'month'),
1429 'day' => new external_value(PARAM_INT, 'day'),
1430 'hour' => new external_value(PARAM_INT, 'hour', VALUE_OPTIONAL),
1431 'minute' => new external_value(PARAM_INT, 'minute', VALUE_OPTIONAL),
1439 * Describes the timestamps return format.
1441 * @return external_single_structure
1443 public static function get_timestamps_returns() {
1444 return new external_single_structure(
1446 'timestamps' => new external_multiple_structure(
1447 new external_single_structure(
1449 'key' => new external_value(PARAM_ALPHANUMEXT, 'Timestamp key'),
1450 'timestamp' => new external_value(PARAM_INT, 'Unix timestamp'),