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/>.
20 * @package core_calendar
21 * @copyright 2004 Greek School Network (http://www.sch.gr), Jon Papaioannou,
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 if (!defined('MOODLE_INTERNAL')) {
27 die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
31 * These are read by the administration component to provide default values
35 * CALENDAR_DEFAULT_UPCOMING_LOOKAHEAD - default value of upcoming event preference
37 define('CALENDAR_DEFAULT_UPCOMING_LOOKAHEAD', 21);
40 * CALENDAR_DEFAULT_UPCOMING_MAXEVENTS - default value to display the maximum number of upcoming event
42 define('CALENDAR_DEFAULT_UPCOMING_MAXEVENTS', 10);
45 * CALENDAR_DEFAULT_STARTING_WEEKDAY - default value to display the starting weekday
47 define('CALENDAR_DEFAULT_STARTING_WEEKDAY', 1);
49 // This is a packed bitfield: day X is "weekend" if $field & (1 << X) is true
50 // Default value = 65 = 64 + 1 = 2^6 + 2^0 = Saturday & Sunday
53 * CALENDAR_DEFAULT_WEEKEND - default value for weekend (Saturday & Sunday)
55 define('CALENDAR_DEFAULT_WEEKEND', 65);
58 * CALENDAR_URL - path to calendar's folder
60 define('CALENDAR_URL', $CFG->wwwroot
.'/calendar/');
63 * CALENDAR_TF_24 - Calendar time in 24 hours format
65 define('CALENDAR_TF_24', '%H:%M');
68 * CALENDAR_TF_12 - Calendar time in 12 hours format
70 define('CALENDAR_TF_12', '%I:%M %p');
73 * CALENDAR_EVENT_GLOBAL - Site calendar event types
74 * @deprecated since 3.8
76 define('CALENDAR_EVENT_GLOBAL', 1);
79 * CALENDAR_EVENT_SITE - Site calendar event types
81 define('CALENDAR_EVENT_SITE', 1);
84 * CALENDAR_EVENT_COURSE - Course calendar event types
86 define('CALENDAR_EVENT_COURSE', 2);
89 * CALENDAR_EVENT_GROUP - group calendar event types
91 define('CALENDAR_EVENT_GROUP', 4);
94 * CALENDAR_EVENT_USER - user calendar event types
96 define('CALENDAR_EVENT_USER', 8);
99 * CALENDAR_EVENT_COURSECAT - Course category calendar event types
101 define('CALENDAR_EVENT_COURSECAT', 16);
104 * CALENDAR_IMPORT_FROM_FILE - import the calendar from a file
106 define('CALENDAR_IMPORT_FROM_FILE', 0);
109 * CALENDAR_IMPORT_FROM_URL - import the calendar from a URL
111 define('CALENDAR_IMPORT_FROM_URL', 1);
114 * CALENDAR_IMPORT_EVENT_UPDATED_SKIPPED - imported event was skipped
116 define('CALENDAR_IMPORT_EVENT_SKIPPED', -1);
119 * CALENDAR_IMPORT_EVENT_UPDATED - imported event was updated
121 define('CALENDAR_IMPORT_EVENT_UPDATED', 1);
124 * CALENDAR_IMPORT_EVENT_INSERTED - imported event was added by insert
126 define('CALENDAR_IMPORT_EVENT_INSERTED', 2);
129 * CALENDAR_SUBSCRIPTION_UPDATE - Used to represent update action for subscriptions in various forms.
131 define('CALENDAR_SUBSCRIPTION_UPDATE', 1);
134 * CALENDAR_SUBSCRIPTION_REMOVE - Used to represent remove action for subscriptions in various forms.
136 define('CALENDAR_SUBSCRIPTION_REMOVE', 2);
139 * CALENDAR_EVENT_USER_OVERRIDE_PRIORITY - Constant for the user override priority.
141 define('CALENDAR_EVENT_USER_OVERRIDE_PRIORITY', 0);
144 * CALENDAR_EVENT_TYPE_STANDARD - Standard events.
146 define('CALENDAR_EVENT_TYPE_STANDARD', 0);
149 * CALENDAR_EVENT_TYPE_ACTION - Action events.
151 define('CALENDAR_EVENT_TYPE_ACTION', 1);
154 * Manage calendar events.
156 * This class provides the required functionality in order to manage calendar events.
157 * It was introduced as part of Moodle 2.0 and was created in order to provide a
158 * better framework for dealing with calendar events in particular regard to file
159 * handling through the new file API.
161 * @package core_calendar
163 * @copyright 2009 Sam Hemelryk
164 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
166 * @property int $id The id within the event table
167 * @property string $name The name of the event
168 * @property string $description The description of the event
169 * @property int $format The format of the description FORMAT_?
170 * @property int $courseid The course the event is associated with (0 if none)
171 * @property int $groupid The group the event is associated with (0 if none)
172 * @property int $userid The user the event is associated with (0 if none)
173 * @property int $repeatid If this is a repeated event this will be set to the
175 * @property string $component If created by a plugin/component (other than module), the full frankenstyle name of a component
176 * @property string $modulename If added by a module this will be the module name
177 * @property int $instance If added by a module this will be the module instance
178 * @property string $eventtype The event type
179 * @property int $timestart The start time as a timestamp
180 * @property int $timeduration The duration of the event in seconds
181 * @property int $timeusermidnight User midnight for the event
182 * @property int $visible 1 if the event is visible
183 * @property int $uuid ?
184 * @property int $sequence ?
185 * @property int $timemodified The time last modified as a timestamp
187 class calendar_event
{
189 /** @var array An object containing the event properties can be accessed via the magic __get/set methods */
190 protected $properties = null;
192 /** @var string The converted event discription with file paths resolved.
193 * This gets populated when someone requests description for the first time */
194 protected $_description = null;
196 /** @var array The options to use with this description editor */
197 protected $editoroptions = array(
199 'forcehttps' => false,
202 'trusttext' => false);
204 /** @var object The context to use with the description editor */
205 protected $editorcontext = null;
208 * Instantiates a new event and optionally populates its properties with the data provided.
210 * @param \stdClass $data Optional. An object containing the properties to for
213 public function __construct($data = null) {
216 // First convert to object if it is not already (should either be object or assoc array).
217 if (!is_object($data)) {
218 $data = (object) $data;
221 $this->editoroptions
['maxbytes'] = $CFG->maxbytes
;
223 $data->eventrepeats
= 0;
225 if (empty($data->id
)) {
229 if (!empty($data->subscriptionid
)) {
230 $data->subscription
= calendar_get_subscription($data->subscriptionid
);
233 // Default to a user event.
234 if (empty($data->eventtype
)) {
235 $data->eventtype
= 'user';
238 // Default to the current user.
239 if (empty($data->userid
)) {
240 $data->userid
= $USER->id
;
243 if (!empty($data->timeduration
) && is_array($data->timeduration
)) {
244 $data->timeduration
= make_timestamp(
245 $data->timeduration
['year'], $data->timeduration
['month'], $data->timeduration
['day'],
246 $data->timeduration
['hour'], $data->timeduration
['minute']) - $data->timestart
;
249 if (!empty($data->description
) && is_array($data->description
)) {
250 $data->format
= $data->description
['format'];
251 $data->description
= $data->description
['text'];
252 } else if (empty($data->description
)) {
253 $data->description
= '';
254 $data->format
= editors_get_preferred_format();
257 // Ensure form is defaulted correctly.
258 if (empty($data->format
)) {
259 $data->format
= editors_get_preferred_format();
262 if (empty($data->component
)) {
263 $data->component
= null;
266 $this->properties
= $data;
272 * Attempts to call a set_$key method if one exists otherwise falls back
273 * to simply set the property.
275 * @param string $key property name
276 * @param mixed $value value of the property
278 public function __set($key, $value) {
279 if (method_exists($this, 'set_'.$key)) {
280 $this->{'set_'.$key}($value);
282 $this->properties
->{$key} = $value;
288 * Attempts to call a get_$key method to return the property and ralls over
289 * to return the raw property.
291 * @param string $key property name
292 * @return mixed property value
293 * @throws \coding_exception
295 public function __get($key) {
296 if (method_exists($this, 'get_'.$key)) {
297 return $this->{'get_'.$key}();
299 if (!property_exists($this->properties
, $key)) {
300 throw new \
coding_exception('Undefined property requested');
302 return $this->properties
->{$key};
306 * Magic isset method.
308 * PHP needs an isset magic method if you use the get magic method and
309 * still want empty calls to work.
311 * @param string $key $key property name
312 * @return bool|mixed property value, false if property is not exist
314 public function __isset($key) {
315 return !empty($this->properties
->{$key});
319 * Calculate the context value needed for an event.
321 * Event's type can be determine by the available value store in $data
322 * It is important to check for the existence of course/courseid to determine
324 * Default value is set to CONTEXT_USER
326 * @return \stdClass The context object.
328 protected function calculate_context() {
332 if (isset($this->properties
->categoryid
) && $this->properties
->categoryid
> 0) {
333 $context = \context_coursecat
::instance($this->properties
->categoryid
);
334 } else if (isset($this->properties
->courseid
) && $this->properties
->courseid
> 0) {
335 $context = \context_course
::instance($this->properties
->courseid
);
336 } else if (isset($this->properties
->course
) && $this->properties
->course
> 0) {
337 $context = \context_course
::instance($this->properties
->course
);
338 } else if (isset($this->properties
->groupid
) && $this->properties
->groupid
> 0) {
339 $group = $DB->get_record('groups', array('id' => $this->properties
->groupid
));
340 $context = \context_course
::instance($group->courseid
);
341 } else if (isset($this->properties
->userid
) && $this->properties
->userid
> 0
342 && $this->properties
->userid
== $USER->id
) {
343 $context = \context_user
::instance($this->properties
->userid
);
344 } else if (isset($this->properties
->userid
) && $this->properties
->userid
> 0
345 && $this->properties
->userid
!= $USER->id
&&
346 !empty($this->properties
->modulename
) &&
347 isset($this->properties
->instance
) && $this->properties
->instance
> 0) {
348 $cm = get_coursemodule_from_instance($this->properties
->modulename
, $this->properties
->instance
, 0,
350 $context = \context_course
::instance($cm->course
);
352 $context = \context_user
::instance($this->properties
->userid
);
359 * Returns the context for this event. The context is calculated
360 * the first time is is requested and then stored in a member
361 * variable to be returned each subsequent time.
363 * This is a magical getter function that will be called when
364 * ever the context property is accessed, e.g. $event->context.
368 protected function get_context() {
369 if (!isset($this->properties
->context
)) {
370 $this->properties
->context
= $this->calculate_context();
373 return $this->properties
->context
;
377 * Returns an array of editoroptions for this event.
379 * @return array event editor options
381 protected function get_editoroptions() {
382 return $this->editoroptions
;
386 * Returns an event description: Called by __get
387 * Please use $blah = $event->description;
389 * @return string event description
391 protected function get_description() {
394 require_once($CFG->libdir
. '/filelib.php');
396 if ($this->_description
=== null) {
397 // Check if we have already resolved the context for this event.
398 if ($this->editorcontext
=== null) {
399 // Switch on the event type to decide upon the appropriate context to use for this event.
400 $this->editorcontext
= $this->get_context();
401 if (!calendar_is_valid_eventtype($this->properties
->eventtype
)) {
402 return clean_text($this->properties
->description
, $this->properties
->format
);
406 // Work out the item id for the editor, if this is a repeated event
407 // then the files will be associated with the original.
408 if (!empty($this->properties
->repeatid
) && $this->properties
->repeatid
> 0) {
409 $itemid = $this->properties
->repeatid
;
411 $itemid = $this->properties
->id
;
414 // Convert file paths in the description so that things display correctly.
415 $this->_description
= file_rewrite_pluginfile_urls($this->properties
->description
, 'pluginfile.php',
416 $this->editorcontext
->id
, 'calendar', 'event_description', $itemid);
417 // Clean the text so no nasties get through.
418 $this->_description
= clean_text($this->_description
, $this->properties
->format
);
421 // Finally return the description.
422 return $this->_description
;
426 * Return the number of repeat events there are in this events series.
428 * @return int number of event repeated
430 public function count_repeats() {
432 if (!empty($this->properties
->repeatid
)) {
433 $this->properties
->eventrepeats
= $DB->count_records('event',
434 array('repeatid' => $this->properties
->repeatid
));
435 // We don't want to count ourselves.
436 $this->properties
->eventrepeats
--;
438 return $this->properties
->eventrepeats
;
442 * Update or create an event within the database
444 * Pass in a object containing the event properties and this function will
445 * insert it into the database and deal with any associated files
447 * Capability checking should be performed if the user is directly manipulating the event
448 * and no other capability has been tested. However if the event is not being manipulated
449 * directly by the user and another capability has been checked for them to do this then
450 * capabilites should not be checked.
452 * For example if a user is editing an event in the calendar the check should be true,
453 * but if you are updating an event in an activities settings are changed then the calendar
454 * capabilites should not be checked.
456 * @see self::create()
457 * @see self::update()
459 * @param \stdClass $data object of event
460 * @param bool $checkcapability If Moodle should check the user can manage the calendar events for this call or not.
461 * @return bool event updated
463 public function update($data, $checkcapability=true) {
466 foreach ($data as $key => $value) {
467 $this->properties
->$key = $value;
470 $this->properties
->timemodified
= time();
471 $usingeditor = (!empty($this->properties
->description
) && is_array($this->properties
->description
));
473 // Prepare event data.
475 'context' => $this->get_context(),
476 'objectid' => $this->properties
->id
,
478 'repeatid' => empty($this->properties
->repeatid
) ?
0 : $this->properties
->repeatid
,
479 'timestart' => $this->properties
->timestart
,
480 'name' => $this->properties
->name
484 if (empty($this->properties
->id
) ||
$this->properties
->id
< 1) {
485 if ($checkcapability) {
486 if (!calendar_add_event_allowed($this->properties
)) {
487 print_error('nopermissiontoupdatecalendar');
492 switch ($this->properties
->eventtype
) {
494 $this->properties
->courseid
= 0;
495 $this->properties
->course
= 0;
496 $this->properties
->groupid
= 0;
497 $this->properties
->userid
= $USER->id
;
500 $this->properties
->courseid
= SITEID
;
501 $this->properties
->course
= SITEID
;
502 $this->properties
->groupid
= 0;
503 $this->properties
->userid
= $USER->id
;
506 $this->properties
->groupid
= 0;
507 $this->properties
->userid
= $USER->id
;
510 $this->properties
->groupid
= 0;
511 $this->properties
->category
= 0;
512 $this->properties
->userid
= $USER->id
;
515 $this->properties
->userid
= $USER->id
;
518 // We should NEVER get here, but just incase we do lets fail gracefully.
519 $usingeditor = false;
523 // If we are actually using the editor, we recalculate the context because some default values
524 // were set when calculate_context() was called from the constructor.
526 $this->properties
->context
= $this->calculate_context();
527 $this->editorcontext
= $this->get_context();
530 $editor = $this->properties
->description
;
531 $this->properties
->format
= $this->properties
->description
['format'];
532 $this->properties
->description
= $this->properties
->description
['text'];
535 // Insert the event into the database.
536 $this->properties
->id
= $DB->insert_record('event', $this->properties
);
539 $this->properties
->description
= file_save_draft_area_files(
541 $this->editorcontext
->id
,
544 $this->properties
->id
,
545 $this->editoroptions
,
547 $this->editoroptions
['forcehttps']);
548 $DB->set_field('event', 'description', $this->properties
->description
,
549 array('id' => $this->properties
->id
));
552 // Log the event entry.
553 $eventargs['objectid'] = $this->properties
->id
;
554 $eventargs['context'] = $this->get_context();
555 $event = \core\event\calendar_event_created
::create($eventargs);
558 $repeatedids = array();
560 if (!empty($this->properties
->repeat
)) {
561 $this->properties
->repeatid
= $this->properties
->id
;
562 $DB->set_field('event', 'repeatid', $this->properties
->repeatid
, array('id' => $this->properties
->id
));
564 $eventcopy = clone($this->properties
);
565 unset($eventcopy->id
);
567 $timestart = new \
DateTime('@' . $eventcopy->timestart
);
568 $timestart->setTimezone(\core_date
::get_user_timezone_object());
570 for ($i = 1; $i < $eventcopy->repeats
; $i++
) {
572 $timestart->add(new \
DateInterval('P7D'));
573 $eventcopy->timestart
= $timestart->getTimestamp();
575 // Get the event id for the log record.
576 $eventcopyid = $DB->insert_record('event', $eventcopy);
578 // If the context has been set delete all associated files.
580 $fs = get_file_storage();
581 $files = $fs->get_area_files($this->editorcontext
->id
, 'calendar', 'event_description',
582 $this->properties
->id
);
583 foreach ($files as $file) {
584 $fs->create_file_from_storedfile(array('itemid' => $eventcopyid), $file);
588 $repeatedids[] = $eventcopyid;
591 $eventargs['objectid'] = $eventcopyid;
592 $eventargs['other']['timestart'] = $eventcopy->timestart
;
593 $event = \core\event\calendar_event_created
::create($eventargs);
601 if ($checkcapability) {
602 if (!calendar_edit_event_allowed($this->properties
)) {
603 print_error('nopermissiontoupdatecalendar');
608 if ($this->editorcontext
!== null) {
609 $this->properties
->description
= file_save_draft_area_files(
610 $this->properties
->description
['itemid'],
611 $this->editorcontext
->id
,
614 $this->properties
->id
,
615 $this->editoroptions
,
616 $this->properties
->description
['text'],
617 $this->editoroptions
['forcehttps']);
619 $this->properties
->format
= $this->properties
->description
['format'];
620 $this->properties
->description
= $this->properties
->description
['text'];
624 $event = $DB->get_record('event', array('id' => $this->properties
->id
));
626 $updaterepeated = (!empty($this->properties
->repeatid
) && !empty($this->properties
->repeateditall
));
628 if ($updaterepeated) {
637 // Note: Group and course id may not be set. If not, keep their current values.
639 $this->properties
->name
,
640 $this->properties
->description
,
641 $this->properties
->timeduration
,
643 isset($this->properties
->groupid
) ?
$this->properties
->groupid
: $event->groupid
,
644 isset($this->properties
->courseid
) ?
$this->properties
->courseid
: $event->courseid
,
647 // Note: Only update start date, if it was changed by the user.
648 if ($this->properties
->timestart
!= $event->timestart
) {
649 $timestartoffset = $this->properties
->timestart
- $event->timestart
;
650 $sqlset .= ', timestart = timestart + ?';
651 $params[] = $timestartoffset;
654 // Note: Only update location, if it was changed by the user.
655 $updatelocation = (!empty($this->properties
->location
) && $this->properties
->location
!== $event->location
);
656 if ($updatelocation) {
657 $sqlset .= ', location = ?';
658 $params[] = $this->properties
->location
;
662 $sql = "UPDATE {event}
666 $params[] = $event->repeatid
;
667 $DB->execute($sql, $params);
669 // Trigger an update event for each of the calendar event.
670 $events = $DB->get_records('event', array('repeatid' => $event->repeatid
), '', '*');
671 foreach ($events as $calendarevent) {
672 $eventargs['objectid'] = $calendarevent->id
;
673 $eventargs['other']['timestart'] = $calendarevent->timestart
;
674 $event = \core\event\calendar_event_updated
::create($eventargs);
675 $event->add_record_snapshot('event', $calendarevent);
679 $DB->update_record('event', $this->properties
);
680 $event = self
::load($this->properties
->id
);
681 $this->properties
= $event->properties();
683 // Trigger an update event.
684 $event = \core\event\calendar_event_updated
::create($eventargs);
685 $event->add_record_snapshot('event', $this->properties
);
694 * Deletes an event and if selected an repeated events in the same series
696 * This function deletes an event, any associated events if $deleterepeated=true,
697 * and cleans up any files associated with the events.
699 * @see self::delete()
701 * @param bool $deleterepeated delete event repeatedly
702 * @return bool succession of deleting event
704 public function delete($deleterepeated = false) {
707 // If $this->properties->id is not set then something is wrong.
708 if (empty($this->properties
->id
)) {
709 debugging('Attempting to delete an event before it has been loaded', DEBUG_DEVELOPER
);
712 $calevent = $DB->get_record('event', array('id' => $this->properties
->id
), '*', MUST_EXIST
);
714 $DB->delete_records('event', array('id' => $this->properties
->id
));
716 // Trigger an event for the delete action.
718 'context' => $this->get_context(),
719 'objectid' => $this->properties
->id
,
721 'repeatid' => empty($this->properties
->repeatid
) ?
0 : $this->properties
->repeatid
,
722 'timestart' => $this->properties
->timestart
,
723 'name' => $this->properties
->name
725 $event = \core\event\calendar_event_deleted
::create($eventargs);
726 $event->add_record_snapshot('event', $calevent);
729 // If we are deleting parent of a repeated event series, promote the next event in the series as parent.
730 if (($this->properties
->id
== $this->properties
->repeatid
) && !$deleterepeated) {
731 $newparent = $DB->get_field_sql("SELECT id from {event} where repeatid = ? order by id ASC",
732 array($this->properties
->id
), IGNORE_MULTIPLE
);
733 if (!empty($newparent)) {
734 $DB->execute("UPDATE {event} SET repeatid = ? WHERE repeatid = ?",
735 array($newparent, $this->properties
->id
));
736 // Get all records where the repeatid is the same as the event being removed.
737 $events = $DB->get_records('event', array('repeatid' => $newparent));
738 // For each of the returned events trigger an update event.
739 foreach ($events as $calendarevent) {
740 // Trigger an event for the update.
741 $eventargs['objectid'] = $calendarevent->id
;
742 $eventargs['other']['timestart'] = $calendarevent->timestart
;
743 $event = \core\event\calendar_event_updated
::create($eventargs);
744 $event->add_record_snapshot('event', $calendarevent);
750 // If the editor context hasn't already been set then set it now.
751 if ($this->editorcontext
=== null) {
752 $this->editorcontext
= $this->get_context();
755 // If the context has been set delete all associated files.
756 if ($this->editorcontext
!== null) {
757 $fs = get_file_storage();
758 $files = $fs->get_area_files($this->editorcontext
->id
, 'calendar', 'event_description', $this->properties
->id
);
759 foreach ($files as $file) {
764 // If we need to delete repeated events then we will fetch them all and delete one by one.
765 if ($deleterepeated && !empty($this->properties
->repeatid
) && $this->properties
->repeatid
> 0) {
766 // Get all records where the repeatid is the same as the event being removed.
767 $events = $DB->get_records('event', array('repeatid' => $this->properties
->repeatid
));
768 // For each of the returned events populate an event object and call delete.
769 // make sure the arg passed is false as we are already deleting all repeats.
770 foreach ($events as $event) {
771 $event = new calendar_event($event);
772 $event->delete(false);
780 * Fetch all event properties.
782 * This function returns all of the events properties as an object and optionally
783 * can prepare an editor for the description field at the same time. This is
784 * designed to work when the properties are going to be used to set the default
785 * values of a moodle forms form.
787 * @param bool $prepareeditor If set to true a editor is prepared for use with
788 * the mforms editor element. (for description)
789 * @return \stdClass Object containing event properties
791 public function properties($prepareeditor = false) {
794 // First take a copy of the properties. We don't want to actually change the
795 // properties or we'd forever be converting back and forwards between an
796 // editor formatted description and not.
797 $properties = clone($this->properties
);
798 // Clean the description here.
799 $properties->description
= clean_text($properties->description
, $properties->format
);
801 // If set to true we need to prepare the properties for use with an editor
802 // and prepare the file area.
803 if ($prepareeditor) {
805 // We may or may not have a property id. If we do then we need to work
806 // out the context so we can copy the existing files to the draft area.
807 if (!empty($properties->id
)) {
809 if ($properties->eventtype
=== 'site') {
811 $this->editorcontext
= $this->get_context();
812 } else if ($properties->eventtype
=== 'user') {
814 $this->editorcontext
= $this->get_context();
815 } else if ($properties->eventtype
=== 'group' ||
$properties->eventtype
=== 'course') {
816 // First check the course is valid.
817 $course = $DB->get_record('course', array('id' => $properties->courseid
));
819 print_error('invalidcourse');
822 $this->editorcontext
= $this->get_context();
823 // We have a course and are within the course context so we had
824 // better use the courses max bytes value.
825 $this->editoroptions
['maxbytes'] = $course->maxbytes
;
826 } else if ($properties->eventtype
=== 'category') {
827 // First check the course is valid.
828 \core_course_category
::get($properties->categoryid
, MUST_EXIST
, true);
830 $this->editorcontext
= $this->get_context();
832 // If we get here we have a custom event type as used by some
833 // modules. In this case the event will have been added by
834 // code and we won't need the editor.
835 $this->editoroptions
['maxbytes'] = 0;
836 $this->editoroptions
['maxfiles'] = 0;
839 if (empty($this->editorcontext
) ||
empty($this->editorcontext
->id
)) {
842 // Get the context id that is what we really want.
843 $contextid = $this->editorcontext
->id
;
847 // If we get here then this is a new event in which case we don't need a
848 // context as there is no existing files to copy to the draft area.
852 // If the contextid === false we don't support files so no preparing
854 if ($contextid !== false) {
855 // Just encase it has already been submitted.
856 $draftiddescription = file_get_submitted_draft_itemid('description');
857 // Prepare the draft area, this copies existing files to the draft area as well.
858 $properties->description
= file_prepare_draft_area($draftiddescription, $contextid, 'calendar',
859 'event_description', $properties->id
, $this->editoroptions
, $properties->description
);
861 $draftiddescription = 0;
864 // Structure the description field as the editor requires.
865 $properties->description
= array('text' => $properties->description
, 'format' => $properties->format
,
866 'itemid' => $draftiddescription);
869 // Finally return the properties.
874 * Toggles the visibility of an event
876 * @param null|bool $force If it is left null the events visibility is flipped,
877 * If it is false the event is made hidden, if it is true it
879 * @return bool if event is successfully updated, toggle will be visible
881 public function toggle_visibility($force = null) {
884 // Set visible to the default if it is not already set.
885 if (empty($this->properties
->visible
)) {
886 $this->properties
->visible
= 1;
889 if ($force === true ||
($force !== false && $this->properties
->visible
== 0)) {
890 // Make this event visible.
891 $this->properties
->visible
= 1;
893 // Make this event hidden.
894 $this->properties
->visible
= 0;
897 // Update the database to reflect this change.
898 $success = $DB->set_field('event', 'visible', $this->properties
->visible
, array('id' => $this->properties
->id
));
899 $calendarevent = $DB->get_record('event', array('id' => $this->properties
->id
), '*', MUST_EXIST
);
901 // Prepare event data.
903 'context' => $this->get_context(),
904 'objectid' => $this->properties
->id
,
906 'repeatid' => empty($this->properties
->repeatid
) ?
0 : $this->properties
->repeatid
,
907 'timestart' => $this->properties
->timestart
,
908 'name' => $this->properties
->name
911 $event = \core\event\calendar_event_updated
::create($eventargs);
912 $event->add_record_snapshot('event', $calendarevent);
919 * Returns an event object when provided with an event id.
921 * This function makes use of MUST_EXIST, if the event id passed in is invalid
922 * it will result in an exception being thrown.
924 * @param int|object $param event object or event id
925 * @return calendar_event
927 public static function load($param) {
929 if (is_object($param)) {
930 $event = new calendar_event($param);
932 $event = $DB->get_record('event', array('id' => (int)$param), '*', MUST_EXIST
);
933 $event = new calendar_event($event);
939 * Creates a new event and returns an event object.
941 * Capability checking should be performed if the user is directly creating the event
942 * and no other capability has been tested. However if the event is not being created
943 * directly by the user and another capability has been checked for them to do this then
944 * capabilites should not be checked.
946 * For example if a user is creating an event in the calendar the check should be true,
947 * but if you are creating an event in an activity when it is created then the calendar
948 * capabilites should not be checked.
950 * @param \stdClass|array $properties An object containing event properties
951 * @param bool $checkcapability If Moodle should check the user can manage the calendar events for this call or not.
952 * @throws \coding_exception
954 * @return calendar_event|bool The event object or false if it failed
956 public static function create($properties, $checkcapability = true) {
957 if (is_array($properties)) {
958 $properties = (object)$properties;
960 if (!is_object($properties)) {
961 throw new \
coding_exception('When creating an event properties should be either an object or an assoc array');
963 $event = new calendar_event($properties);
964 if ($event->update($properties, $checkcapability)) {
972 * Format the event name using the external API.
974 * This function should we used when text formatting is required in external functions.
976 * @return string Formatted name.
978 public function format_external_name() {
979 if ($this->editorcontext
=== null) {
980 // Switch on the event type to decide upon the appropriate context to use for this event.
981 $this->editorcontext
= $this->get_context();
984 return external_format_string($this->properties
->name
, $this->editorcontext
->id
);
988 * Format the text using the external API.
990 * This function should we used when text formatting is required in external functions.
992 * @return array an array containing the text formatted and the text format
994 public function format_external_text() {
996 if ($this->editorcontext
=== null) {
997 // Switch on the event type to decide upon the appropriate context to use for this event.
998 $this->editorcontext
= $this->get_context();
1000 if (!calendar_is_valid_eventtype($this->properties
->eventtype
)) {
1001 // We don't have a context here, do a normal format_text.
1002 return external_format_text($this->properties
->description
, $this->properties
->format
, $this->editorcontext
->id
);
1006 // Work out the item id for the editor, if this is a repeated event then the files will be associated with the original.
1007 if (!empty($this->properties
->repeatid
) && $this->properties
->repeatid
> 0) {
1008 $itemid = $this->properties
->repeatid
;
1010 $itemid = $this->properties
->id
;
1013 return external_format_text($this->properties
->description
, $this->properties
->format
, $this->editorcontext
->id
,
1014 'calendar', 'event_description', $itemid);
1019 * Calendar information class
1021 * This class is used simply to organise the information pertaining to a calendar
1022 * and is used primarily to make information easily available.
1024 * @package core_calendar
1025 * @category calendar
1026 * @copyright 2010 Sam Hemelryk
1027 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1029 class calendar_information
{
1032 * @var int The timestamp
1034 * Rather than setting the day, month and year we will set a timestamp which will be able
1035 * to be used by multiple calendars.
1039 /** @var int A course id */
1040 public $courseid = null;
1042 /** @var array An array of categories */
1043 public $categories = array();
1045 /** @var int The current category */
1046 public $categoryid = null;
1048 /** @var array An array of courses */
1049 public $courses = array();
1051 /** @var array An array of groups */
1052 public $groups = array();
1054 /** @var array An array of users */
1055 public $users = array();
1057 /** @var context The anticipated context that the calendar is viewed in */
1058 public $context = null;
1061 * Creates a new instance
1063 * @param int $day the number of the day
1064 * @param int $month the number of the month
1065 * @param int $year the number of the year
1066 * @param int $time the unixtimestamp representing the date we want to view, this is used instead of $calmonth
1067 * and $calyear to support multiple calendars
1069 public function __construct($day = 0, $month = 0, $year = 0, $time = 0) {
1070 // If a day, month and year were passed then convert it to a timestamp. If these were passed
1071 // then we can assume the day, month and year are passed as Gregorian, as no where in core
1072 // should we be passing these values rather than the time. This is done for BC.
1073 if (!empty($day) ||
!empty($month) ||
!empty($year)) {
1074 $date = usergetdate(time());
1076 $day = $date['mday'];
1078 if (empty($month)) {
1079 $month = $date['mon'];
1082 $year = $date['year'];
1084 if (checkdate($month, $day, $year)) {
1085 $time = make_timestamp($year, $month, $day);
1091 $this->set_time($time);
1095 * Creates and set up a instance.
1097 * @param int $time the unixtimestamp representing the date we want to view.
1098 * @param int $courseid The ID of the course the user wishes to view.
1099 * @param int $categoryid The ID of the category the user wishes to view
1100 * If a courseid is specified, this value is ignored.
1101 * @return calendar_information
1103 public static function create($time, int $courseid, int $categoryid = null) : calendar_information
{
1104 $calendar = new static(0, 0, 0, $time);
1105 if ($courseid != SITEID
&& !empty($courseid)) {
1106 // Course ID must be valid and existing.
1107 $course = get_course($courseid);
1108 $calendar->context
= context_course
::instance($course->id
);
1110 if (!$course->visible
&& !is_role_switched($course->id
)) {
1111 require_capability('moodle/course:viewhiddencourses', $calendar->context
);
1114 $courses = [$course->id
=> $course];
1115 $category = (\core_course_category
::get($course->category
, MUST_EXIST
, true))->get_db_record();
1116 } else if (!empty($categoryid)) {
1117 $course = get_site();
1118 $courses = calendar_get_default_courses(null, 'id, category, groupmode, groupmodeforce');
1120 // Filter available courses to those within this category or it's children.
1121 $ids = [$categoryid];
1122 $category = \core_course_category
::get($categoryid);
1123 $ids = array_merge($ids, array_keys($category->get_children()));
1124 $courses = array_filter($courses, function($course) use ($ids) {
1125 return array_search($course->category
, $ids) !== false;
1127 $category = $category->get_db_record();
1129 $calendar->context
= context_coursecat
::instance($categoryid);
1131 $course = get_site();
1132 $courses = calendar_get_default_courses(null, 'id, category, groupmode, groupmodeforce');
1135 $calendar->context
= context_system
::instance();
1138 $calendar->set_sources($course, $courses, $category);
1144 * Set the time period of this instance.
1146 * @param int $time the unixtimestamp representing the date we want to view.
1149 public function set_time($time = null) {
1151 $this->time
= time();
1153 $this->time
= $time;
1160 * Initialize calendar information
1163 * @param stdClass $course object
1164 * @param array $coursestoload An array of courses [$course->id => $course]
1165 * @param bool $ignorefilters options to use filter
1167 public function prepare_for_view(stdClass
$course, array $coursestoload, $ignorefilters = false) {
1168 debugging('The prepare_for_view() function has been deprecated. Please update your code to use set_sources()',
1170 $this->set_sources($course, $coursestoload);
1174 * Set the sources for events within the calendar.
1176 * If no category is provided, then the category path for the current
1177 * course will be used.
1179 * @param stdClass $course The current course being viewed.
1180 * @param stdClass[] $courses The list of all courses currently accessible.
1181 * @param stdClass $category The current category to show.
1183 public function set_sources(stdClass
$course, array $courses, stdClass
$category = null) {
1186 // A cousre must always be specified.
1187 $this->course
= $course;
1188 $this->courseid
= $course->id
;
1190 list($courseids, $group, $user) = calendar_set_filters($courses);
1191 $this->courses
= $courseids;
1192 $this->groups
= $group;
1193 $this->users
= $user;
1195 // Do not show category events by default.
1196 $this->categoryid
= null;
1197 $this->categories
= null;
1199 // Determine the correct category information to show.
1200 // When called with a course, the category of that course is usually included too.
1201 // When a category was specifically requested, it should be requested with the site id.
1202 if (SITEID
!== $this->courseid
) {
1203 // A specific course was requested.
1204 // Fetch the category that this course is in, along with all parents.
1205 // Do not include child categories of this category, as the user many not have enrolments in those siblings or children.
1206 $category = \core_course_category
::get($course->category
, MUST_EXIST
, true);
1207 $this->categoryid
= $category->id
;
1209 $this->categories
= $category->get_parents();
1210 $this->categories
[] = $category->id
;
1211 } else if (null !== $category && $category->id
> 0) {
1212 // A specific category was requested.
1213 // Fetch all parents of this category, along with all children too.
1214 $category = \core_course_category
::get($category->id
);
1215 $this->categoryid
= $category->id
;
1217 // Build the category list.
1218 // This includes the current category.
1219 $this->categories
= $category->get_parents();
1220 $this->categories
[] = $category->id
;
1221 $this->categories
= array_merge($this->categories
, $category->get_all_children_ids());
1222 } else if (SITEID
=== $this->courseid
) {
1223 // The site was requested.
1224 // Fetch all categories where this user has any enrolment, and all categories that this user can manage.
1226 // Grab the list of categories that this user has courses in.
1227 $coursecategories = array_flip(array_map(function($course) {
1228 return $course->category
;
1231 $calcatcache = cache
::make('core', 'calendar_categories');
1232 $this->categories
= $calcatcache->get('site');
1233 if ($this->categories
=== false) {
1234 // Use the category id as the key in the following array. That way we do not have to remove duplicates.
1236 foreach (\core_course_category
::get_all() as $category) {
1237 if (isset($coursecategories[$category->id
]) ||
1238 has_capability('moodle/category:manage', $category->get_context(), $USER, false)) {
1239 // If the user has access to a course in this category or can manage the category,
1240 // then they can see all parent categories too.
1241 $categories[$category->id
] = true;
1242 foreach ($category->get_parents() as $catid) {
1243 $categories[$catid] = true;
1247 $this->categories
= array_keys($categories);
1248 $calcatcache->set('site', $this->categories
);
1254 * Ensures the date for the calendar is correct and either sets it to now
1255 * or throws a moodle_exception if not
1257 * @param bool $defaultonow use current time
1258 * @throws moodle_exception
1259 * @return bool validation of checkdate
1261 public function checkdate($defaultonow = true) {
1262 if (!checkdate($this->month
, $this->day
, $this->year
)) {
1264 $now = usergetdate(time());
1265 $this->day
= intval($now['mday']);
1266 $this->month
= intval($now['mon']);
1267 $this->year
= intval($now['year']);
1270 throw new moodle_exception('invaliddate');
1277 * Gets todays timestamp for the calendar
1279 * @return int today timestamp
1281 public function timestamp_today() {
1285 * Gets tomorrows timestamp for the calendar
1287 * @return int tomorrow timestamp
1289 public function timestamp_tomorrow() {
1290 return strtotime('+1 day', $this->time
);
1293 * Adds the pretend blocks for the calendar
1295 * @param core_calendar_renderer $renderer
1296 * @param bool $showfilters display filters, false is set as default
1297 * @param string|null $view preference view options (eg: day, month, upcoming)
1299 public function add_sidecalendar_blocks(core_calendar_renderer
$renderer, $showfilters=false, $view=null) {
1302 if (!has_capability('moodle/block:view', $PAGE->context
) ) {
1307 $filters = new block_contents();
1308 $filters->content
= $renderer->event_filter();
1309 $filters->footer
= '';
1310 $filters->title
= get_string('eventskey', 'calendar');
1311 $renderer->add_pretend_calendar_block($filters, BLOCK_POS_RIGHT
);
1313 $block = new block_contents
;
1314 $block->content
= $renderer->fake_block_threemonths($this);
1315 $block->footer
= '';
1316 $block->title
= get_string('monthlyview', 'calendar');
1317 $renderer->add_pretend_calendar_block($block, BLOCK_POS_RIGHT
);
1322 * Get calendar events.
1324 * @param int $tstart Start time of time range for events
1325 * @param int $tend End time of time range for events
1326 * @param array|int|boolean $users array of users, user id or boolean for all/no user events
1327 * @param array|int|boolean $groups array of groups, group id or boolean for all/no group events
1328 * @param array|int|boolean $courses array of courses, course id or boolean for all/no course events
1329 * @param boolean $withduration whether only events starting within time range selected
1330 * or events in progress/already started selected as well
1331 * @param boolean $ignorehidden whether to select only visible events or all events
1332 * @param array|int|boolean $categories array of categories, category id or boolean for all/no course events
1333 * @return array $events of selected events or an empty array if there aren't any (or there was an error)
1335 function calendar_get_events($tstart, $tend, $users, $groups, $courses,
1336 $withduration = true, $ignorehidden = true, $categories = []) {
1342 if (empty($users) && empty($groups) && empty($courses) && empty($categories)) {
1346 if ((is_array($users) && !empty($users)) or is_numeric($users)) {
1347 // Events from a number of users
1348 if(!empty($whereclause)) $whereclause .= ' OR';
1349 list($insqlusers, $inparamsusers) = $DB->get_in_or_equal($users, SQL_PARAMS_NAMED
);
1350 $whereclause .= " (e.userid $insqlusers AND e.courseid = 0 AND e.groupid = 0 AND e.categoryid = 0)";
1351 $params = array_merge($params, $inparamsusers);
1352 } else if($users === true) {
1353 // Events from ALL users
1354 if(!empty($whereclause)) $whereclause .= ' OR';
1355 $whereclause .= ' (e.userid != 0 AND e.courseid = 0 AND e.groupid = 0 AND e.categoryid = 0)';
1356 } else if($users === false) {
1357 // No user at all, do nothing
1360 if ((is_array($groups) && !empty($groups)) or is_numeric($groups)) {
1361 // Events from a number of groups
1362 if(!empty($whereclause)) $whereclause .= ' OR';
1363 list($insqlgroups, $inparamsgroups) = $DB->get_in_or_equal($groups, SQL_PARAMS_NAMED
);
1364 $whereclause .= " e.groupid $insqlgroups ";
1365 $params = array_merge($params, $inparamsgroups);
1366 } else if($groups === true) {
1367 // Events from ALL groups
1368 if(!empty($whereclause)) $whereclause .= ' OR ';
1369 $whereclause .= ' e.groupid != 0';
1371 // boolean false (no groups at all): we don't need to do anything
1373 if ((is_array($courses) && !empty($courses)) or is_numeric($courses)) {
1374 if(!empty($whereclause)) $whereclause .= ' OR';
1375 list($insqlcourses, $inparamscourses) = $DB->get_in_or_equal($courses, SQL_PARAMS_NAMED
);
1376 $whereclause .= " (e.groupid = 0 AND e.courseid $insqlcourses)";
1377 $params = array_merge($params, $inparamscourses);
1378 } else if ($courses === true) {
1379 // Events from ALL courses
1380 if(!empty($whereclause)) $whereclause .= ' OR';
1381 $whereclause .= ' (e.groupid = 0 AND e.courseid != 0)';
1384 if ((is_array($categories) && !empty($categories)) ||
is_numeric($categories)) {
1385 if (!empty($whereclause)) {
1386 $whereclause .= ' OR';
1388 list($insqlcategories, $inparamscategories) = $DB->get_in_or_equal($categories, SQL_PARAMS_NAMED
);
1389 $whereclause .= " (e.groupid = 0 AND e.courseid = 0 AND e.categoryid $insqlcategories)";
1390 $params = array_merge($params, $inparamscategories);
1391 } else if ($categories === true) {
1392 // Events from ALL categories.
1393 if (!empty($whereclause)) {
1394 $whereclause .= ' OR';
1396 $whereclause .= ' (e.groupid = 0 AND e.courseid = 0 AND e.categoryid != 0)';
1399 // Security check: if, by now, we have NOTHING in $whereclause, then it means
1400 // that NO event-selecting clauses were defined. Thus, we won't be returning ANY
1401 // events no matter what. Allowing the code to proceed might return a completely
1402 // valid query with only time constraints, thus selecting ALL events in that time frame!
1403 if(empty($whereclause)) {
1408 $timeclause = '(e.timestart >= '.$tstart.' OR e.timestart + e.timeduration > '.$tstart.') AND e.timestart <= '.$tend;
1411 $timeclause = 'e.timestart >= '.$tstart.' AND e.timestart <= '.$tend;
1413 if(!empty($whereclause)) {
1414 // We have additional constraints
1415 $whereclause = $timeclause.' AND ('.$whereclause.')';
1418 // Just basic time filtering
1419 $whereclause = $timeclause;
1422 if ($ignorehidden) {
1423 $whereclause .= ' AND e.visible = 1';
1428 LEFT JOIN {modules} m ON e.modulename = m.name
1429 -- Non visible modules will have a value of 0.
1430 WHERE (m.visible = 1 OR m.visible IS NULL) AND $whereclause
1431 ORDER BY e.timestart";
1432 $events = $DB->get_records_sql($sql, $params);
1434 if ($events === false) {
1441 * Return the days of the week.
1443 * @return array array of days
1445 function calendar_get_days() {
1446 $calendartype = \core_calendar\type_factory
::get_calendar_instance();
1447 return $calendartype->get_weekdays();
1451 * Get the subscription from a given id.
1454 * @param int $id id of the subscription
1455 * @return stdClass Subscription record from DB
1456 * @throws moodle_exception for an invalid id
1458 function calendar_get_subscription($id) {
1461 $cache = \cache
::make('core', 'calendar_subscriptions');
1462 $subscription = $cache->get($id);
1463 if (empty($subscription)) {
1464 $subscription = $DB->get_record('event_subscriptions', array('id' => $id), '*', MUST_EXIST
);
1465 $cache->set($id, $subscription);
1468 return $subscription;
1472 * Gets the first day of the week.
1474 * Used to be define('CALENDAR_STARTING_WEEKDAY', blah);
1478 function calendar_get_starting_weekday() {
1479 $calendartype = \core_calendar\type_factory
::get_calendar_instance();
1480 return $calendartype->get_starting_weekday();
1484 * Get a HTML link to a course.
1486 * @param int|stdClass $course the course id or course object
1487 * @return string a link to the course (as HTML); empty if the course id is invalid
1489 function calendar_get_courselink($course) {
1494 if (!is_object($course)) {
1495 $course = calendar_get_course_cached($coursecache, $course);
1497 $context = \context_course
::instance($course->id
);
1498 $fullname = format_string($course->fullname
, true, array('context' => $context));
1499 $url = new \
moodle_url('/course/view.php', array('id' => $course->id
));
1500 $link = \html_writer
::link($url, $fullname);
1506 * Get current module cache.
1508 * Only use this method if you do not know courseid. Otherwise use:
1509 * get_fast_modinfo($courseid)->instances[$modulename][$instance]
1511 * @param array $modulecache in memory module cache
1512 * @param string $modulename name of the module
1513 * @param int $instance module instance number
1514 * @return stdClass|bool $module information
1516 function calendar_get_module_cached(&$modulecache, $modulename, $instance) {
1517 if (!isset($modulecache[$modulename . '_' . $instance])) {
1518 $modulecache[$modulename . '_' . $instance] = get_coursemodule_from_instance($modulename, $instance);
1521 return $modulecache[$modulename . '_' . $instance];
1525 * Get current course cache.
1527 * @param array $coursecache list of course cache
1528 * @param int $courseid id of the course
1529 * @return stdClass $coursecache[$courseid] return the specific course cache
1531 function calendar_get_course_cached(&$coursecache, $courseid) {
1532 if (!isset($coursecache[$courseid])) {
1533 $coursecache[$courseid] = get_course($courseid);
1535 return $coursecache[$courseid];
1539 * Get group from groupid for calendar display
1541 * @param int $groupid
1542 * @return stdClass group object with fields 'id', 'name' and 'courseid'
1544 function calendar_get_group_cached($groupid) {
1545 static $groupscache = array();
1546 if (!isset($groupscache[$groupid])) {
1547 $groupscache[$groupid] = groups_get_group($groupid, 'id,name,courseid');
1549 return $groupscache[$groupid];
1553 * Add calendar event metadata
1555 * @deprecated since 3.9
1557 * @param stdClass $event event info
1558 * @return stdClass $event metadata
1560 function calendar_add_event_metadata($event) {
1561 debugging('This function is no longer used', DEBUG_DEVELOPER
);
1562 global $CFG, $OUTPUT;
1564 // Support multilang in event->name.
1565 $event->name
= format_string($event->name
, true);
1567 if (!empty($event->modulename
)) { // Activity event.
1568 // The module name is set. I will assume that it has to be displayed, and
1569 // also that it is an automatically-generated event. And of course that the
1570 // instace id and modulename are set correctly.
1571 $instances = get_fast_modinfo($event->courseid
)->get_instances_of($event->modulename
);
1572 if (!array_key_exists($event->instance
, $instances)) {
1575 $module = $instances[$event->instance
];
1577 $modulename = $module->get_module_type_name(false);
1578 if (get_string_manager()->string_exists($event->eventtype
, $event->modulename
)) {
1579 // Will be used as alt text if the event icon.
1580 $eventtype = get_string($event->eventtype
, $event->modulename
);
1585 $event->icon
= '<img src="' . s($module->get_icon_url()) . '" alt="' . s($eventtype) .
1586 '" title="' . s($modulename) . '" class="icon" />';
1587 $event->referer
= html_writer
::link($module->url
, $event->name
);
1588 $event->courselink
= calendar_get_courselink($module->get_course());
1589 $event->cmid
= $module->id
;
1590 } else if ($event->courseid
== SITEID
) { // Site event.
1591 $event->icon
= '<img src="' . $OUTPUT->image_url('i/siteevent') . '" alt="' .
1592 get_string('siteevent', 'calendar') . '" class="icon" />';
1593 $event->cssclass
= 'calendar_event_site';
1594 } else if ($event->courseid
!= 0 && $event->courseid
!= SITEID
&& $event->groupid
== 0) { // Course event.
1595 $event->icon
= '<img src="' . $OUTPUT->image_url('i/courseevent') . '" alt="' .
1596 get_string('courseevent', 'calendar') . '" class="icon" />';
1597 $event->courselink
= calendar_get_courselink($event->courseid
);
1598 $event->cssclass
= 'calendar_event_course';
1599 } else if ($event->groupid
) { // Group event.
1600 if ($group = calendar_get_group_cached($event->groupid
)) {
1601 $groupname = format_string($group->name
, true, \context_course
::instance($group->courseid
));
1605 $event->icon
= \html_writer
::empty_tag('image', array('src' => $OUTPUT->image_url('i/groupevent'),
1606 'alt' => get_string('groupevent', 'calendar'), 'title' => $groupname, 'class' => 'icon'));
1607 $event->courselink
= calendar_get_courselink($event->courseid
) . ', ' . $groupname;
1608 $event->cssclass
= 'calendar_event_group';
1609 } else if ($event->userid
) { // User event.
1610 $event->icon
= '<img src="' . $OUTPUT->image_url('i/userevent') . '" alt="' .
1611 get_string('userevent', 'calendar') . '" class="icon" />';
1612 $event->cssclass
= 'calendar_event_user';
1619 * Get calendar events by id.
1622 * @param array $eventids list of event ids
1623 * @return array Array of event entries, empty array if nothing found
1625 function calendar_get_events_by_id($eventids) {
1628 if (!is_array($eventids) ||
empty($eventids)) {
1632 list($wheresql, $params) = $DB->get_in_or_equal($eventids);
1633 $wheresql = "id $wheresql";
1635 return $DB->get_records_select('event', $wheresql, $params);
1639 * Get control options for calendar.
1641 * @param string $type of calendar
1642 * @param array $data calendar information
1643 * @return string $content return available control for the calender in html
1645 function calendar_top_controls($type, $data) {
1646 global $PAGE, $OUTPUT;
1648 // Get the calendar type we are using.
1649 $calendartype = \core_calendar\type_factory
::get_calendar_instance();
1653 // Ensure course id passed if relevant.
1655 if (!empty($data['id'])) {
1656 $courseid = '&course=' . $data['id'];
1659 // If we are passing a month and year then we need to convert this to a timestamp to
1660 // support multiple calendars. No where in core should these be passed, this logic
1661 // here is for third party plugins that may use this function.
1662 if (!empty($data['m']) && !empty($date['y'])) {
1663 if (!isset($data['d'])) {
1666 if (!checkdate($data['m'], $data['d'], $data['y'])) {
1669 $time = make_timestamp($data['y'], $data['m'], $data['d']);
1671 } else if (!empty($data['time'])) {
1672 $time = $data['time'];
1677 // Get the date for the calendar type.
1678 $date = $calendartype->timestamp_to_date_array($time);
1680 $urlbase = $PAGE->url
;
1682 // We need to get the previous and next months in certain cases.
1683 if ($type == 'frontpage' ||
$type == 'course' ||
$type == 'month') {
1684 $prevmonth = calendar_sub_month($date['mon'], $date['year']);
1685 $prevmonthtime = $calendartype->convert_to_gregorian($prevmonth[1], $prevmonth[0], 1);
1686 $prevmonthtime = make_timestamp($prevmonthtime['year'], $prevmonthtime['month'], $prevmonthtime['day'],
1687 $prevmonthtime['hour'], $prevmonthtime['minute']);
1689 $nextmonth = calendar_add_month($date['mon'], $date['year']);
1690 $nextmonthtime = $calendartype->convert_to_gregorian($nextmonth[1], $nextmonth[0], 1);
1691 $nextmonthtime = make_timestamp($nextmonthtime['year'], $nextmonthtime['month'], $nextmonthtime['day'],
1692 $nextmonthtime['hour'], $nextmonthtime['minute']);
1697 $prevlink = calendar_get_link_previous(get_string('monthprev', 'calendar'), $urlbase, false, false, false,
1698 true, $prevmonthtime);
1699 $nextlink = calendar_get_link_next(get_string('monthnext', 'calendar'), $urlbase, false, false, false, true,
1701 $calendarlink = calendar_get_link_href(new \
moodle_url(CALENDAR_URL
. 'view.php', array('view' => 'month')),
1702 false, false, false, $time);
1704 if (!empty($data['id'])) {
1705 $calendarlink->param('course', $data['id']);
1710 $content .= \html_writer
::start_tag('div', array('class' => 'calendar-controls'));
1711 $content .= $prevlink . '<span class="hide"> | </span>';
1712 $content .= \html_writer
::tag('span', \html_writer
::link($calendarlink,
1713 userdate($time, get_string('strftimemonthyear')), array('title' => get_string('monththis', 'calendar'))
1714 ), array('class' => 'current'));
1715 $content .= '<span class="hide"> | </span>' . $right;
1716 $content .= "<span class=\"clearer\"><!-- --></span>\n";
1717 $content .= \html_writer
::end_tag('div');
1721 $prevlink = calendar_get_link_previous(get_string('monthprev', 'calendar'), $urlbase, false, false, false,
1722 true, $prevmonthtime);
1723 $nextlink = calendar_get_link_next(get_string('monthnext', 'calendar'), $urlbase, false, false, false,
1724 true, $nextmonthtime);
1725 $calendarlink = calendar_get_link_href(new \
moodle_url(CALENDAR_URL
. 'view.php', array('view' => 'month')),
1726 false, false, false, $time);
1728 if (!empty($data['id'])) {
1729 $calendarlink->param('course', $data['id']);
1732 $content .= \html_writer
::start_tag('div', array('class' => 'calendar-controls'));
1733 $content .= $prevlink . '<span class="hide"> | </span>';
1734 $content .= \html_writer
::tag('span', \html_writer
::link($calendarlink,
1735 userdate($time, get_string('strftimemonthyear')), array('title' => get_string('monththis', 'calendar'))
1736 ), array('class' => 'current'));
1737 $content .= '<span class="hide"> | </span>' . $nextlink;
1738 $content .= "<span class=\"clearer\"><!-- --></span>";
1739 $content .= \html_writer
::end_tag('div');
1742 $calendarlink = calendar_get_link_href(new \
moodle_url(CALENDAR_URL
. 'view.php', array('view' => 'upcoming')),
1743 false, false, false, $time);
1744 if (!empty($data['id'])) {
1745 $calendarlink->param('course', $data['id']);
1747 $calendarlink = \html_writer
::link($calendarlink, userdate($time, get_string('strftimemonthyear')));
1748 $content .= \html_writer
::tag('div', $calendarlink, array('class' => 'centered'));
1751 $calendarlink = calendar_get_link_href(new \
moodle_url(CALENDAR_URL
. 'view.php', array('view' => 'month')),
1752 false, false, false, $time);
1753 if (!empty($data['id'])) {
1754 $calendarlink->param('course', $data['id']);
1756 $calendarlink = \html_writer
::link($calendarlink, userdate($time, get_string('strftimemonthyear')));
1757 $content .= \html_writer
::tag('h3', $calendarlink);
1760 $prevlink = calendar_get_link_previous(userdate($prevmonthtime, get_string('strftimemonthyear')),
1761 'view.php?view=month' . $courseid . '&', false, false, false, false, $prevmonthtime);
1762 $nextlink = calendar_get_link_next(userdate($nextmonthtime, get_string('strftimemonthyear')),
1763 'view.php?view=month' . $courseid . '&', false, false, false, false, $nextmonthtime);
1765 $content .= \html_writer
::start_tag('div', array('class' => 'calendar-controls'));
1766 $content .= $prevlink . '<span class="hide"> | </span>';
1767 $content .= $OUTPUT->heading(userdate($time, get_string('strftimemonthyear')), 2, 'current');
1768 $content .= '<span class="hide"> | </span>' . $nextlink;
1769 $content .= '<span class="clearer"><!-- --></span>';
1770 $content .= \html_writer
::end_tag('div')."\n";
1773 $days = calendar_get_days();
1775 $prevtimestamp = strtotime('-1 day', $time);
1776 $nexttimestamp = strtotime('+1 day', $time);
1778 $prevdate = $calendartype->timestamp_to_date_array($prevtimestamp);
1779 $nextdate = $calendartype->timestamp_to_date_array($nexttimestamp);
1781 $prevname = $days[$prevdate['wday']]['fullname'];
1782 $nextname = $days[$nextdate['wday']]['fullname'];
1783 $prevlink = calendar_get_link_previous($prevname, 'view.php?view=day' . $courseid . '&', false, false,
1784 false, false, $prevtimestamp);
1785 $nextlink = calendar_get_link_next($nextname, 'view.php?view=day' . $courseid . '&', false, false, false,
1786 false, $nexttimestamp);
1788 $content .= \html_writer
::start_tag('div', array('class' => 'calendar-controls'));
1789 $content .= $prevlink;
1790 $content .= '<span class="hide"> | </span><span class="current">' .userdate($time,
1791 get_string('strftimedaydate')) . '</span>';
1792 $content .= '<span class="hide"> | </span>' . $nextlink;
1793 $content .= "<span class=\"clearer\"><!-- --></span>";
1794 $content .= \html_writer
::end_tag('div') . "\n";
1803 * Return the representation day.
1805 * @param int $tstamp Timestamp in GMT
1806 * @param int|bool $now current Unix timestamp
1807 * @param bool $usecommonwords
1808 * @return string the formatted date/time
1810 function calendar_day_representation($tstamp, $now = false, $usecommonwords = true) {
1811 static $shortformat;
1813 if (empty($shortformat)) {
1814 $shortformat = get_string('strftimedayshort');
1817 if ($now === false) {
1821 // To have it in one place, if a change is needed.
1822 $formal = userdate($tstamp, $shortformat);
1824 $datestamp = usergetdate($tstamp);
1825 $datenow = usergetdate($now);
1827 if ($usecommonwords == false) {
1828 // We don't want words, just a date.
1830 } else if ($datestamp['year'] == $datenow['year'] && $datestamp['yday'] == $datenow['yday']) {
1831 return get_string('today', 'calendar');
1832 } else if (($datestamp['year'] == $datenow['year'] && $datestamp['yday'] == $datenow['yday'] - 1 ) ||
1833 ($datestamp['year'] == $datenow['year'] - 1 && $datestamp['mday'] == 31 && $datestamp['mon'] == 12
1834 && $datenow['yday'] == 1)) {
1835 return get_string('yesterday', 'calendar');
1836 } else if (($datestamp['year'] == $datenow['year'] && $datestamp['yday'] == $datenow['yday'] +
1 ) ||
1837 ($datestamp['year'] == $datenow['year'] +
1 && $datenow['mday'] == 31 && $datenow['mon'] == 12
1838 && $datestamp['yday'] == 1)) {
1839 return get_string('tomorrow', 'calendar');
1846 * return the formatted representation time.
1849 * @param int $time the timestamp in UTC, as obtained from the database
1850 * @return string the formatted date/time
1852 function calendar_time_representation($time) {
1853 static $langtimeformat = null;
1855 if ($langtimeformat === null) {
1856 $langtimeformat = get_string('strftimetime');
1859 $timeformat = get_user_preferences('calendar_timeformat');
1860 if (empty($timeformat)) {
1861 $timeformat = get_config(null, 'calendar_site_timeformat');
1864 // Allow language customization of selected time format.
1865 if ($timeformat === CALENDAR_TF_12
) {
1866 $timeformat = get_string('strftimetime12', 'langconfig');
1867 } else if ($timeformat === CALENDAR_TF_24
) {
1868 $timeformat = get_string('strftimetime24', 'langconfig');
1871 return userdate($time, empty($timeformat) ?
$langtimeformat : $timeformat);
1875 * Adds day, month, year arguments to a URL and returns a moodle_url object.
1877 * @param string|moodle_url $linkbase
1878 * @param int $d The number of the day.
1879 * @param int $m The number of the month.
1880 * @param int $y The number of the year.
1881 * @param int $time the unixtime, used for multiple calendar support. The values $d,
1882 * $m and $y are kept for backwards compatibility.
1883 * @return moodle_url|null $linkbase
1885 function calendar_get_link_href($linkbase, $d, $m, $y, $time = 0) {
1886 if (empty($linkbase)) {
1890 if (!($linkbase instanceof \moodle_url
)) {
1891 $linkbase = new \
moodle_url($linkbase);
1894 $linkbase->param('time', calendar_get_timestamp($d, $m, $y, $time));
1900 * Build and return a previous month HTML link, with an arrow.
1902 * @param string $text The text label.
1903 * @param string|moodle_url $linkbase The URL stub.
1904 * @param int $d The number of the date.
1905 * @param int $m The number of the month.
1906 * @param int $y year The number of the year.
1907 * @param bool $accesshide Default visible, or hide from all except screenreaders.
1908 * @param int $time the unixtime, used for multiple calendar support. The values $d,
1909 * $m and $y are kept for backwards compatibility.
1910 * @return string HTML string.
1912 function calendar_get_link_previous($text, $linkbase, $d, $m, $y, $accesshide = false, $time = 0) {
1913 $href = calendar_get_link_href(new \
moodle_url($linkbase), $d, $m, $y, $time);
1920 'data-time' => calendar_get_timestamp($d, $m, $y, $time),
1921 'data-drop-zone' => 'nav-link',
1924 return link_arrow_left($text, $href->out(false), $accesshide, 'previous', $attrs);
1928 * Build and return a next month HTML link, with an arrow.
1930 * @param string $text The text label.
1931 * @param string|moodle_url $linkbase The URL stub.
1932 * @param int $d the number of the Day
1933 * @param int $m The number of the month.
1934 * @param int $y The number of the year.
1935 * @param bool $accesshide Default visible, or hide from all except screenreaders.
1936 * @param int $time the unixtime, used for multiple calendar support. The values $d,
1937 * $m and $y are kept for backwards compatibility.
1938 * @return string HTML string.
1940 function calendar_get_link_next($text, $linkbase, $d, $m, $y, $accesshide = false, $time = 0) {
1941 $href = calendar_get_link_href(new \
moodle_url($linkbase), $d, $m, $y, $time);
1948 'data-time' => calendar_get_timestamp($d, $m, $y, $time),
1949 'data-drop-zone' => 'nav-link',
1952 return link_arrow_right($text, $href->out(false), $accesshide, 'next', $attrs);
1956 * Return the number of days in month.
1958 * @param int $month the number of the month.
1959 * @param int $year the number of the year
1962 function calendar_days_in_month($month, $year) {
1963 $calendartype = \core_calendar\type_factory
::get_calendar_instance();
1964 return $calendartype->get_num_days_in_month($year, $month);
1968 * Get the next following month.
1970 * @param int $month the number of the month.
1971 * @param int $year the number of the year.
1972 * @return array the following month
1974 function calendar_add_month($month, $year) {
1975 $calendartype = \core_calendar\type_factory
::get_calendar_instance();
1976 return $calendartype->get_next_month($year, $month);
1980 * Get the previous month.
1982 * @param int $month the number of the month.
1983 * @param int $year the number of the year.
1984 * @return array previous month
1986 function calendar_sub_month($month, $year) {
1987 $calendartype = \core_calendar\type_factory
::get_calendar_instance();
1988 return $calendartype->get_prev_month($year, $month);
1992 * Get per-day basis events
1994 * @param array $events list of events
1995 * @param int $month the number of the month
1996 * @param int $year the number of the year
1997 * @param array $eventsbyday event on specific day
1998 * @param array $durationbyday duration of the event in days
1999 * @param array $typesbyday event type (eg: site, course, user, or group)
2000 * @param array $courses list of courses
2003 function calendar_events_by_day($events, $month, $year, &$eventsbyday, &$durationbyday, &$typesbyday, &$courses) {
2004 $calendartype = \core_calendar\type_factory
::get_calendar_instance();
2006 $eventsbyday = array();
2007 $typesbyday = array();
2008 $durationbyday = array();
2010 if ($events === false) {
2014 foreach ($events as $event) {
2015 $startdate = $calendartype->timestamp_to_date_array($event->timestart
);
2016 if ($event->timeduration
) {
2017 $enddate = $calendartype->timestamp_to_date_array($event->timestart +
$event->timeduration
- 1);
2019 $enddate = $startdate;
2022 // Simple arithmetic: $year * 13 + $month is a distinct integer for each distinct ($year, $month) pair.
2023 if (!($startdate['year'] * 13 +
$startdate['mon'] <= $year * 13 +
$month) &&
2024 ($enddate['year'] * 13 +
$enddate['mon'] >= $year * 13 +
$month)) {
2028 $eventdaystart = intval($startdate['mday']);
2030 if ($startdate['mon'] == $month && $startdate['year'] == $year) {
2031 // Give the event to its day.
2032 $eventsbyday[$eventdaystart][] = $event->id
;
2034 // Mark the day as having such an event.
2035 if ($event->courseid
== SITEID
&& $event->groupid
== 0) {
2036 $typesbyday[$eventdaystart]['startsite'] = true;
2037 // Set event class for site event.
2038 $events[$event->id
]->class = 'calendar_event_site';
2039 } else if ($event->courseid
!= 0 && $event->courseid
!= SITEID
&& $event->groupid
== 0) {
2040 $typesbyday[$eventdaystart]['startcourse'] = true;
2041 // Set event class for course event.
2042 $events[$event->id
]->class = 'calendar_event_course';
2043 } else if ($event->groupid
) {
2044 $typesbyday[$eventdaystart]['startgroup'] = true;
2045 // Set event class for group event.
2046 $events[$event->id
]->class = 'calendar_event_group';
2047 } else if ($event->userid
) {
2048 $typesbyday[$eventdaystart]['startuser'] = true;
2049 // Set event class for user event.
2050 $events[$event->id
]->class = 'calendar_event_user';
2054 if ($event->timeduration
== 0) {
2055 // Proceed with the next.
2059 // The event starts on $month $year or before.
2060 if ($startdate['mon'] == $month && $startdate['year'] == $year) {
2061 $lowerbound = intval($startdate['mday']);
2066 // Also, it ends on $month $year or later.
2067 if ($enddate['mon'] == $month && $enddate['year'] == $year) {
2068 $upperbound = intval($enddate['mday']);
2070 $upperbound = calendar_days_in_month($month, $year);
2073 // Mark all days between $lowerbound and $upperbound (inclusive) as duration.
2074 for ($i = $lowerbound +
1; $i <= $upperbound; ++
$i) {
2075 $durationbyday[$i][] = $event->id
;
2076 if ($event->courseid
== SITEID
&& $event->groupid
== 0) {
2077 $typesbyday[$i]['durationsite'] = true;
2078 } else if ($event->courseid
!= 0 && $event->courseid
!= SITEID
&& $event->groupid
== 0) {
2079 $typesbyday[$i]['durationcourse'] = true;
2080 } else if ($event->groupid
) {
2081 $typesbyday[$i]['durationgroup'] = true;
2082 } else if ($event->userid
) {
2083 $typesbyday[$i]['durationuser'] = true;
2092 * Returns the courses to load events for.
2094 * @param array $courseeventsfrom An array of courses to load calendar events for
2095 * @param bool $ignorefilters specify the use of filters, false is set as default
2096 * @param stdClass $user The user object. This defaults to the global $USER object.
2097 * @return array An array of courses, groups, and user to load calendar events for based upon filters
2099 function calendar_set_filters(array $courseeventsfrom, $ignorefilters = false, stdClass
$user = null) {
2102 if (is_null($user)) {
2110 // Get the capabilities that allow seeing group events from all groups.
2111 $allgroupscaps = array('moodle/site:accessallgroups', 'moodle/calendar:manageentries');
2113 $isvaliduser = !empty($user->id
);
2115 if ($ignorefilters ||
calendar_show_event_type(CALENDAR_EVENT_COURSE
, $user)) {
2116 $courses = array_keys($courseeventsfrom);
2118 if ($ignorefilters ||
calendar_show_event_type(CALENDAR_EVENT_SITE
, $user)) {
2119 $courses[] = SITEID
;
2121 $courses = array_unique($courses);
2124 if (!empty($courses) && in_array(SITEID
, $courses)) {
2125 // Sort courses for consistent colour highlighting.
2126 // Effectively ignoring SITEID as setting as last course id.
2127 $key = array_search(SITEID
, $courses);
2128 unset($courses[$key]);
2129 $courses[] = SITEID
;
2132 if ($ignorefilters ||
($isvaliduser && calendar_show_event_type(CALENDAR_EVENT_USER
, $user))) {
2133 $userid = $user->id
;
2136 if (!empty($courseeventsfrom) && (calendar_show_event_type(CALENDAR_EVENT_GROUP
, $user) ||
$ignorefilters)) {
2138 if (count($courseeventsfrom) == 1) {
2139 $course = reset($courseeventsfrom);
2140 if (has_any_capability($allgroupscaps, \context_course
::instance($course->id
))) {
2141 $coursegroups = groups_get_all_groups($course->id
, 0, 0, 'g.id');
2142 $group = array_keys($coursegroups);
2145 if ($group === false) {
2146 if (!empty($CFG->calendar_adminseesall
) && has_any_capability($allgroupscaps, \context_system
::instance())) {
2148 } else if ($isvaliduser) {
2149 $groupids = array();
2150 foreach ($courseeventsfrom as $courseid => $course) {
2151 // If the user is an editing teacher in there.
2152 if (!empty($user->groupmember
[$course->id
])) {
2153 // We've already cached the users groups for this course so we can just use that.
2154 $groupids = array_merge($groupids, $user->groupmember
[$course->id
]);
2155 } else if ($course->groupmode
!= NOGROUPS ||
!$course->groupmodeforce
) {
2156 // If this course has groups, show events from all of those related to the current user.
2157 $coursegroups = groups_get_user_groups($course->id
, $user->id
);
2158 $groupids = array_merge($groupids, $coursegroups['0']);
2161 if (!empty($groupids)) {
2167 if (empty($courses)) {
2171 return array($courses, $group, $userid);
2175 * Return the capability for viewing a calendar event.
2177 * @param calendar_event $event event object
2180 function calendar_view_event_allowed(calendar_event
$event) {
2183 // Anyone can see site events.
2184 if ($event->courseid
&& $event->courseid
== SITEID
) {
2188 // If a user can manage events at the site level they can see any event.
2189 $sitecontext = \context_system
::instance();
2190 // If user has manageentries at site level, return true.
2191 if (has_capability('moodle/calendar:manageentries', $sitecontext)) {
2195 if (!empty($event->groupid
)) {
2196 // If it is a group event we need to be able to manage events in the course, or be in the group.
2197 if (has_capability('moodle/calendar:manageentries', $event->context
) ||
2198 has_capability('moodle/calendar:managegroupentries', $event->context
)) {
2202 $mycourses = enrol_get_my_courses('id');
2203 return isset($mycourses[$event->courseid
]) && groups_is_member($event->groupid
);
2204 } else if ($event->modulename
) {
2205 // If this is a module event we need to be able to see the module.
2206 $coursemodules = [];
2208 // Override events do not have the courseid set.
2209 if ($event->courseid
) {
2210 $courseid = $event->courseid
;
2211 $coursemodules = get_fast_modinfo($event->courseid
)->instances
;
2213 $cmraw = get_coursemodule_from_instance($event->modulename
, $event->instance
, 0, false, MUST_EXIST
);
2214 $courseid = $cmraw->course
;
2215 $coursemodules = get_fast_modinfo($cmraw->course
)->instances
;
2217 $hasmodule = isset($coursemodules[$event->modulename
]);
2218 $hasinstance = isset($coursemodules[$event->modulename
][$event->instance
]);
2220 // If modinfo doesn't know about the module, return false to be safe.
2221 if (!$hasmodule ||
!$hasinstance) {
2225 // Must be able to see the course and the module - MDL-59304.
2226 $cm = $coursemodules[$event->modulename
][$event->instance
];
2227 if (!$cm->uservisible
) {
2230 $mycourses = enrol_get_my_courses('id');
2231 return isset($mycourses[$courseid]);
2232 } else if ($event->categoryid
) {
2233 // If this is a category we need to be able to see the category.
2234 $cat = \core_course_category
::get($event->categoryid
, IGNORE_MISSING
);
2239 } else if (!empty($event->courseid
)) {
2240 // If it is a course event we need to be able to manage events in the course, or be in the course.
2241 if (has_capability('moodle/calendar:manageentries', $event->context
)) {
2245 return can_access_course(get_course($event->courseid
));
2246 } else if ($event->userid
) {
2247 if ($event->userid
!= $USER->id
) {
2248 // No-one can ever see another users events.
2253 throw new moodle_exception('unknown event type');
2260 * Return the capability for editing calendar event.
2262 * @param calendar_event $event event object
2263 * @param bool $manualedit is the event being edited manually by the user
2264 * @return bool capability to edit event
2266 function calendar_edit_event_allowed($event, $manualedit = false) {
2269 // Must be logged in.
2270 if (!isloggedin()) {
2274 // Can not be using guest account.
2275 if (isguestuser()) {
2279 if ($manualedit && !empty($event->modulename
)) {
2280 $hascallback = component_callback_exists(
2281 'mod_' . $event->modulename
,
2282 'core_calendar_event_timestart_updated'
2285 if (!$hascallback) {
2286 // If the activity hasn't implemented the correct callback
2287 // to handle changes to it's events then don't allow any
2288 // manual changes to them.
2292 $coursemodules = get_fast_modinfo($event->courseid
)->instances
;
2293 $hasmodule = isset($coursemodules[$event->modulename
]);
2294 $hasinstance = isset($coursemodules[$event->modulename
][$event->instance
]);
2296 // If modinfo doesn't know about the module, return false to be safe.
2297 if (!$hasmodule ||
!$hasinstance) {
2301 $coursemodule = $coursemodules[$event->modulename
][$event->instance
];
2302 $context = context_module
::instance($coursemodule->id
);
2303 // This is the capability that allows a user to modify the activity
2304 // settings. Since the activity generated this event we need to check
2305 // that the current user has the same capability before allowing them
2306 // to update the event because the changes to the event will be
2307 // reflected within the activity.
2308 return has_capability('moodle/course:manageactivities', $context);
2311 if ($manualedit && !empty($event->component
)) {
2312 // TODO possibly we can later add a callback similar to core_calendar_event_timestart_updated in the modules.
2316 // You cannot edit URL based calendar subscription events presently.
2317 if (!empty($event->subscriptionid
)) {
2318 if (!empty($event->subscription
->url
)) {
2319 // This event can be updated externally, so it cannot be edited.
2324 $sitecontext = \context_system
::instance();
2326 // If user has manageentries at site level, return true.
2327 if (has_capability('moodle/calendar:manageentries', $sitecontext)) {
2331 // If groupid is set, it's definitely a group event.
2332 if (!empty($event->groupid
)) {
2333 // Allow users to add/edit group events if -
2334 // 1) They have manageentries for the course OR
2335 // 2) They have managegroupentries AND are in the group.
2336 $group = $DB->get_record('groups', array('id' => $event->groupid
));
2338 has_capability('moodle/calendar:manageentries', $event->context
) ||
2339 (has_capability('moodle/calendar:managegroupentries', $event->context
)
2340 && groups_is_member($event->groupid
)));
2341 } else if (!empty($event->courseid
)) {
2342 // If groupid is not set, but course is set, it's definitely a course event.
2343 return has_capability('moodle/calendar:manageentries', $event->context
);
2344 } else if (!empty($event->categoryid
)) {
2345 // If groupid is not set, but category is set, it's definitely a category event.
2346 return has_capability('moodle/calendar:manageentries', $event->context
);
2347 } else if (!empty($event->userid
) && $event->userid
== $USER->id
) {
2348 // If course is not set, but userid id set, it's a user event.
2349 return (has_capability('moodle/calendar:manageownentries', $event->context
));
2350 } else if (!empty($event->userid
)) {
2351 return (has_capability('moodle/calendar:manageentries', $event->context
));
2358 * Return the capability for deleting a calendar event.
2360 * @param calendar_event $event The event object
2361 * @return bool Whether the user has permission to delete the event or not.
2363 function calendar_delete_event_allowed($event) {
2364 // Only allow delete if you have capabilities and it is not an module or component event.
2365 return (calendar_edit_event_allowed($event) && empty($event->modulename
) && empty($event->component
));
2369 * Returns the default courses to display on the calendar when there isn't a specific
2370 * course to display.
2372 * @param int $courseid (optional) If passed, an additional course can be returned for admins (the current course).
2373 * @param string $fields Comma separated list of course fields to return.
2374 * @param bool $canmanage If true, this will return the list of courses the user can create events in, rather
2375 * than the list of courses they see events from (an admin can always add events in a course
2376 * calendar, even if they are not enrolled in the course).
2377 * @param int $userid (optional) The user which this function returns the default courses for.
2378 * By default the current user.
2379 * @return array $courses Array of courses to display
2381 function calendar_get_default_courses($courseid = null, $fields = '*', $canmanage = false, int $userid = null) {
2385 if (!isloggedin()) {
2388 $userid = $USER->id
;
2391 if ((!empty($CFG->calendar_adminseesall
) ||
$canmanage) &&
2392 has_capability('moodle/calendar:manageentries', context_system
::instance(), $userid)) {
2394 // Add a c. prefix to every field as expected by get_courses function.
2395 $fieldlist = explode(',', $fields);
2397 $prefixedfields = array_map(function($value) {
2398 return 'c.' . trim(strtolower($value));
2400 if (!in_array('c.visible', $prefixedfields) && !in_array('c.*', $prefixedfields)) {
2401 $prefixedfields[] = 'c.visible';
2403 $courses = get_courses('all', 'c.shortname', implode(',', $prefixedfields));
2405 $courses = enrol_get_users_courses($userid, true, $fields);
2408 if ($courseid && $courseid != SITEID
) {
2409 if (empty($courses[$courseid]) && has_capability('moodle/calendar:manageentries', context_system
::instance(), $userid)) {
2410 // Allow a site admin to see calendars from courses he is not enrolled in.
2411 // This will come from $COURSE.
2412 $courses[$courseid] = get_course($courseid);
2420 * Get event format time.
2422 * @param calendar_event $event event object
2423 * @param int $now current time in gmt
2424 * @param array $linkparams list of params for event link
2425 * @param bool $usecommonwords the words as formatted date/time.
2426 * @param int $showtime determine the show time GMT timestamp
2427 * @return string $eventtime link/string for event time
2429 function calendar_format_event_time($event, $now, $linkparams = null, $usecommonwords = true, $showtime = 0) {
2430 $starttime = $event->timestart
;
2431 $endtime = $event->timestart +
$event->timeduration
;
2433 if (empty($linkparams) ||
!is_array($linkparams)) {
2434 $linkparams = array();
2437 $linkparams['view'] = 'day';
2439 // OK, now to get a meaningful display.
2440 // Check if there is a duration for this event.
2441 if ($event->timeduration
) {
2442 // Get the midnight of the day the event will start.
2443 $usermidnightstart = usergetmidnight($starttime);
2444 // Get the midnight of the day the event will end.
2445 $usermidnightend = usergetmidnight($endtime);
2446 // Check if we will still be on the same day.
2447 if ($usermidnightstart == $usermidnightend) {
2448 // Check if we are running all day.
2449 if ($event->timeduration
== DAYSECS
) {
2450 $time = get_string('allday', 'calendar');
2451 } else { // Specify the time we will be running this from.
2452 $datestart = calendar_time_representation($starttime);
2453 $dateend = calendar_time_representation($endtime);
2454 $time = $datestart . ' <strong>»</strong> ' . $dateend;
2457 // Set printable representation.
2459 $day = calendar_day_representation($event->timestart
, $now, $usecommonwords);
2460 $url = calendar_get_link_href(new \
moodle_url(CALENDAR_URL
. 'view.php', $linkparams), 0, 0, 0, $endtime);
2461 $eventtime = \html_writer
::link($url, $day) . ', ' . $time;
2465 } else { // It must spans two or more days.
2466 $daystart = calendar_day_representation($event->timestart
, $now, $usecommonwords) . ', ';
2467 if ($showtime == $usermidnightstart) {
2470 $timestart = calendar_time_representation($event->timestart
);
2471 $dayend = calendar_day_representation($event->timestart +
$event->timeduration
, $now, $usecommonwords) . ', ';
2472 if ($showtime == $usermidnightend) {
2475 $timeend = calendar_time_representation($event->timestart +
$event->timeduration
);
2477 // Set printable representation.
2478 if ($now >= $usermidnightstart && $now < strtotime('+1 day', $usermidnightstart)) {
2479 $url = calendar_get_link_href(new \
moodle_url(CALENDAR_URL
. 'view.php', $linkparams), 0, 0, 0, $endtime);
2480 $eventtime = $timestart . ' <strong>»</strong> ' . \html_writer
::link($url, $dayend) . $timeend;
2482 // The event is in the future, print start and end links.
2483 $url = calendar_get_link_href(new \
moodle_url(CALENDAR_URL
. 'view.php', $linkparams), 0, 0, 0, $starttime);
2484 $eventtime = \html_writer
::link($url, $daystart) . $timestart . ' <strong>»</strong> ';
2486 $url = calendar_get_link_href(new \
moodle_url(CALENDAR_URL
. 'view.php', $linkparams), 0, 0, 0, $endtime);
2487 $eventtime .= \html_writer
::link($url, $dayend) . $timeend;
2490 } else { // There is no time duration.
2491 $time = calendar_time_representation($event->timestart
);
2492 // Set printable representation.
2494 $day = calendar_day_representation($event->timestart
, $now, $usecommonwords);
2495 $url = calendar_get_link_href(new \
moodle_url(CALENDAR_URL
. 'view.php', $linkparams), 0, 0, 0, $starttime);
2496 $eventtime = \html_writer
::link($url, $day) . ', ' . trim($time);
2502 // Check if It has expired.
2503 if ($event->timestart +
$event->timeduration
< $now) {
2504 $eventtime = '<span class="dimmed_text">' . str_replace(' href=', ' class="dimmed" href=', $eventtime) . '</span>';
2511 * Checks to see if the requested type of event should be shown for the given user.
2513 * @param int $type The type to check the display for (default is to display all)
2514 * @param stdClass|int|null $user The user to check for - by default the current user
2515 * @return bool True if the tyep should be displayed false otherwise
2517 function calendar_show_event_type($type, $user = null) {
2518 $default = CALENDAR_EVENT_SITE + CALENDAR_EVENT_COURSE + CALENDAR_EVENT_GROUP + CALENDAR_EVENT_USER
;
2520 if (get_user_preferences('calendar_persistflt', 0, $user) === 0) {
2522 if (!isset($SESSION->calendarshoweventtype
)) {
2523 $SESSION->calendarshoweventtype
= $default;
2525 return $SESSION->calendarshoweventtype
& $type;
2527 return get_user_preferences('calendar_savedflt', $default, $user) & $type;
2532 * Sets the display of the event type given $display.
2534 * If $display = true the event type will be shown.
2535 * If $display = false the event type will NOT be shown.
2536 * If $display = null the current value will be toggled and saved.
2538 * @param int $type object of CALENDAR_EVENT_XXX
2539 * @param bool $display option to display event type
2540 * @param stdClass|int $user moodle user object or id, null means current user
2542 function calendar_set_event_type_display($type, $display = null, $user = null) {
2543 $persist = get_user_preferences('calendar_persistflt', 0, $user);
2544 $default = CALENDAR_EVENT_SITE + CALENDAR_EVENT_COURSE + CALENDAR_EVENT_GROUP
2545 + CALENDAR_EVENT_USER + CALENDAR_EVENT_COURSECAT
;
2546 if ($persist === 0) {
2548 if (!isset($SESSION->calendarshoweventtype
)) {
2549 $SESSION->calendarshoweventtype
= $default;
2551 $preference = $SESSION->calendarshoweventtype
;
2553 $preference = get_user_preferences('calendar_savedflt', $default, $user);
2555 $current = $preference & $type;
2556 if ($display === null) {
2557 $display = !$current;
2559 if ($display && !$current) {
2560 $preference +
= $type;
2561 } else if (!$display && $current) {
2562 $preference -= $type;
2564 if ($persist === 0) {
2565 $SESSION->calendarshoweventtype
= $preference;
2567 if ($preference == $default) {
2568 unset_user_preference('calendar_savedflt', $user);
2570 set_user_preference('calendar_savedflt', $preference, $user);
2576 * Get calendar's allowed types.
2578 * @param stdClass $allowed list of allowed edit for event type
2579 * @param stdClass|int $course object of a course or course id
2580 * @param array $groups array of groups for the given course
2581 * @param stdClass|int $category object of a category
2583 function calendar_get_allowed_types(&$allowed, $course = null, $groups = null, $category = null) {
2586 $allowed = new \
stdClass();
2587 $allowed->user
= has_capability('moodle/calendar:manageownentries', \context_system
::instance());
2588 $allowed->groups
= false;
2589 $allowed->courses
= false;
2590 $allowed->categories
= false;
2591 $allowed->site
= has_capability('moodle/calendar:manageentries', \context_course
::instance(SITEID
));
2592 $getgroupsfunc = function($course, $context, $user) use ($groups) {
2593 if ($course->groupmode
!= NOGROUPS ||
!$course->groupmodeforce
) {
2594 if (has_capability('moodle/site:accessallgroups', $context)) {
2595 return is_null($groups) ?
groups_get_all_groups($course->id
) : $groups;
2597 if (is_null($groups)) {
2598 return groups_get_all_groups($course->id
, $user->id
);
2600 return array_filter($groups, function($group) use ($user) {
2601 return isset($group->members
[$user->id
]);
2610 if (!empty($course)) {
2611 if (!is_object($course)) {
2612 $course = $DB->get_record('course', array('id' => $course), 'id, groupmode, groupmodeforce', MUST_EXIST
);
2614 if ($course->id
!= SITEID
) {
2615 $coursecontext = \context_course
::instance($course->id
);
2616 $allowed->user
= has_capability('moodle/calendar:manageownentries', $coursecontext);
2618 if (has_capability('moodle/calendar:manageentries', $coursecontext)) {
2619 $allowed->courses
= array($course->id
=> 1);
2620 $allowed->groups
= $getgroupsfunc($course, $coursecontext, $USER);
2621 } else if (has_capability('moodle/calendar:managegroupentries', $coursecontext)) {
2622 $allowed->groups
= $getgroupsfunc($course, $coursecontext, $USER);
2627 if (!empty($category)) {
2628 $catcontext = \context_coursecat
::instance($category->id
);
2629 if (has_capability('moodle/category:manage', $catcontext)) {
2630 $allowed->categories
= [$category->id
=> 1];
2636 * See if user can add calendar entries at all used to print the "New Event" button.
2638 * @param stdClass $course object of a course or course id
2639 * @return bool has the capability to add at least one event type
2641 function calendar_user_can_add_event($course) {
2642 if (!isloggedin() ||
isguestuser()) {
2646 calendar_get_allowed_types($allowed, $course);
2648 return (bool)($allowed->user ||
$allowed->groups ||
$allowed->courses ||
$allowed->categories ||
$allowed->site
);
2652 * Check wether the current user is permitted to add events.
2654 * @param stdClass $event object of event
2655 * @return bool has the capability to add event
2657 function calendar_add_event_allowed($event) {
2660 // Can not be using guest account.
2661 if (!isloggedin() or isguestuser()) {
2665 $sitecontext = \context_system
::instance();
2667 // If user has manageentries at site level, always return true.
2668 if (has_capability('moodle/calendar:manageentries', $sitecontext)) {
2672 switch ($event->eventtype
) {
2674 return has_capability('moodle/category:manage', $event->context
);
2676 return has_capability('moodle/calendar:manageentries', $event->context
);
2678 // Allow users to add/edit group events if -
2679 // 1) They have manageentries (= entries for whole course).
2680 // 2) They have managegroupentries AND are in the group.
2681 $group = $DB->get_record('groups', array('id' => $event->groupid
));
2683 has_capability('moodle/calendar:manageentries', $event->context
) ||
2684 (has_capability('moodle/calendar:managegroupentries', $event->context
)
2685 && groups_is_member($event->groupid
)));
2687 if ($event->userid
== $USER->id
) {
2688 return (has_capability('moodle/calendar:manageownentries', $event->context
));
2690 // There is intentionally no 'break'.
2692 return has_capability('moodle/calendar:manageentries', $event->context
);
2694 return has_capability('moodle/calendar:manageentries', $event->context
);
2699 * Returns option list for the poll interval setting.
2701 * @return array An array of poll interval options. Interval => description.
2703 function calendar_get_pollinterval_choices() {
2705 '0' => new \
lang_string('never', 'calendar'),
2706 HOURSECS
=> new \
lang_string('hourly', 'calendar'),
2707 DAYSECS
=> new \
lang_string('daily', 'calendar'),
2708 WEEKSECS
=> new \
lang_string('weekly', 'calendar'),
2709 '2628000' => new \
lang_string('monthly', 'calendar'),
2710 YEARSECS
=> new \
lang_string('annually', 'calendar')
2715 * Returns option list of available options for the calendar event type, given the current user and course.
2717 * @param int $courseid The id of the course
2718 * @return array An array containing the event types the user can create.
2720 function calendar_get_eventtype_choices($courseid) {
2722 $allowed = new \stdClass
;
2723 calendar_get_allowed_types($allowed, $courseid);
2725 if ($allowed->user
) {
2726 $choices['user'] = get_string('userevents', 'calendar');
2728 if ($allowed->site
) {
2729 $choices['site'] = get_string('siteevents', 'calendar');
2731 if (!empty($allowed->courses
)) {
2732 $choices['course'] = get_string('courseevents', 'calendar');
2734 if (!empty($allowed->categories
)) {
2735 $choices['category'] = get_string('categoryevents', 'calendar');
2737 if (!empty($allowed->groups
) and is_array($allowed->groups
)) {
2738 $choices['group'] = get_string('group');
2741 return array($choices, $allowed->groups
);
2745 * Add an iCalendar subscription to the database.
2747 * @param stdClass $sub The subscription object (e.g. from the form)
2748 * @return int The insert ID, if any.
2750 function calendar_add_subscription($sub) {
2751 global $DB, $USER, $SITE;
2753 // Undo the form definition work around to allow us to have two different
2754 // course selectors present depending on which event type the user selects.
2755 if (!empty($sub->groupcourseid
)) {
2756 $sub->courseid
= $sub->groupcourseid
;
2757 unset($sub->groupcourseid
);
2760 // Default course id if none is set.
2761 if (empty($sub->courseid
)) {
2762 if ($sub->eventtype
=== 'site') {
2763 $sub->courseid
= SITEID
;
2769 if ($sub->eventtype
=== 'site') {
2770 $sub->courseid
= $SITE->id
;
2771 } else if ($sub->eventtype
=== 'group' ||
$sub->eventtype
=== 'course') {
2772 $sub->courseid
= $sub->courseid
;
2773 } else if ($sub->eventtype
=== 'category') {
2774 $sub->categoryid
= $sub->categoryid
;
2779 $sub->userid
= $USER->id
;
2781 // File subscriptions never update.
2782 if (empty($sub->url
)) {
2783 $sub->pollinterval
= 0;
2786 if (!empty($sub->name
)) {
2787 if (empty($sub->id
)) {
2788 $id = $DB->insert_record('event_subscriptions', $sub);
2789 // We cannot cache the data here because $sub is not complete.
2791 // Trigger event, calendar subscription added.
2792 $eventparams = array('objectid' => $sub->id
,
2793 'context' => calendar_get_calendar_context($sub),
2795 'eventtype' => $sub->eventtype
,
2798 switch ($sub->eventtype
) {
2800 $eventparams['other']['categoryid'] = $sub->categoryid
;
2803 $eventparams['other']['courseid'] = $sub->courseid
;
2806 $eventparams['other']['courseid'] = $sub->courseid
;
2807 $eventparams['other']['groupid'] = $sub->groupid
;
2810 $eventparams['other']['courseid'] = $sub->courseid
;
2813 $event = \core\event\calendar_subscription_created
::create($eventparams);
2817 // Why are we doing an update here?
2818 calendar_update_subscription($sub);
2822 print_error('errorbadsubscription', 'importcalendar');
2827 * Add an iCalendar event to the Moodle calendar.
2829 * @param stdClass $event The RFC-2445 iCalendar event
2830 * @param int $unused Deprecated
2831 * @param int $subscriptionid The iCalendar subscription ID
2832 * @param string $timezone The X-WR-TIMEZONE iCalendar property if provided
2833 * @throws dml_exception A DML specific exception is thrown for invalid subscriptionids.
2834 * @return int Code: CALENDAR_IMPORT_EVENT_UPDATED = updated, CALENDAR_IMPORT_EVENT_INSERTED = inserted, 0 = error
2836 function calendar_add_icalendar_event($event, $unused = null, $subscriptionid, $timezone='UTC') {
2839 // Probably an unsupported X-MICROSOFT-CDO-BUSYSTATUS event.
2840 if (empty($event->properties
['SUMMARY'])) {
2844 $name = $event->properties
['SUMMARY'][0]->value
;
2845 $name = str_replace('\n', '<br />', $name);
2846 $name = str_replace('\\', '', $name);
2847 $name = preg_replace('/\s+/u', ' ', $name);
2849 $eventrecord = new \stdClass
;
2850 $eventrecord->name
= clean_param($name, PARAM_NOTAGS
);
2852 if (empty($event->properties
['DESCRIPTION'][0]->value
)) {
2855 $description = $event->properties
['DESCRIPTION'][0]->value
;
2856 $description = clean_param($description, PARAM_NOTAGS
);
2857 $description = str_replace('\n', '<br />', $description);
2858 $description = str_replace('\\', '', $description);
2859 $description = preg_replace('/\s+/u', ' ', $description);
2861 $eventrecord->description
= $description;
2863 // Probably a repeating event with RRULE etc. TODO: skip for now.
2864 if (empty($event->properties
['DTSTART'][0]->value
)) {
2868 if (isset($event->properties
['DTSTART'][0]->parameters
['TZID'])) {
2869 $tz = $event->properties
['DTSTART'][0]->parameters
['TZID'];
2873 $tz = \core_date
::normalise_timezone($tz);
2874 $eventrecord->timestart
= strtotime($event->properties
['DTSTART'][0]->value
. ' ' . $tz);
2875 if (empty($event->properties
['DTEND'])) {
2876 $eventrecord->timeduration
= 0; // No duration if no end time specified.
2878 if (isset($event->properties
['DTEND'][0]->parameters
['TZID'])) {
2879 $endtz = $event->properties
['DTEND'][0]->parameters
['TZID'];
2883 $endtz = \core_date
::normalise_timezone($endtz);
2884 $eventrecord->timeduration
= strtotime($event->properties
['DTEND'][0]->value
. ' ' . $endtz) - $eventrecord->timestart
;
2887 // Check to see if it should be treated as an all day event.
2888 if ($eventrecord->timeduration
== DAYSECS
) {
2889 // Check to see if the event started at Midnight on the imported calendar.
2890 date_default_timezone_set($timezone);
2891 if (date('H:i:s', $eventrecord->timestart
) === "00:00:00") {
2892 // This event should be an all day event. This is not correct, we don't do anything differently for all day events.
2894 $eventrecord->timeduration
= 0;
2896 \core_date
::set_default_server_timezone();
2899 $eventrecord->location
= empty($event->properties
['LOCATION'][0]->value
) ?
'' :
2900 trim(str_replace('\\', '', $event->properties
['LOCATION'][0]->value
));
2901 $eventrecord->uuid
= $event->properties
['UID'][0]->value
;
2902 $eventrecord->timemodified
= time();
2904 // Add the iCal subscription details if required.
2905 // We should never do anything with an event without a subscription reference.
2906 $sub = calendar_get_subscription($subscriptionid);
2907 $eventrecord->subscriptionid
= $subscriptionid;
2908 $eventrecord->userid
= $sub->userid
;
2909 $eventrecord->groupid
= $sub->groupid
;
2910 $eventrecord->courseid
= $sub->courseid
;
2911 $eventrecord->categoryid
= $sub->categoryid
;
2912 $eventrecord->eventtype
= $sub->eventtype
;
2914 if ($updaterecord = $DB->get_record('event', array('uuid' => $eventrecord->uuid
,
2915 'subscriptionid' => $eventrecord->subscriptionid
))) {
2917 // Compare iCal event data against the moodle event to see if something has changed.
2918 $result = array_diff((array) $eventrecord, (array) $updaterecord);
2920 // Unset timemodified field because it's always going to be different.
2921 unset($result['timemodified']);
2923 if (count($result)) {
2924 $eventrecord->id
= $updaterecord->id
;
2925 $return = CALENDAR_IMPORT_EVENT_UPDATED
; // Update.
2927 return CALENDAR_IMPORT_EVENT_SKIPPED
;
2930 $return = CALENDAR_IMPORT_EVENT_INSERTED
; // Insert.
2933 if ($createdevent = \calendar_event
::create($eventrecord, false)) {
2934 if (!empty($event->properties
['RRULE'])) {
2935 // Repeating events.
2936 date_default_timezone_set($tz); // Change time zone to parse all events.
2937 $rrule = new \core_calendar\rrule_manager
($event->properties
['RRULE'][0]->value
);
2938 $rrule->parse_rrule();
2939 $rrule->create_events($createdevent);
2940 \core_date
::set_default_server_timezone(); // Change time zone back to what it was.
2949 * Update a subscription from the form data in one of the rows in the existing subscriptions table.
2951 * @param int $subscriptionid The ID of the subscription we are acting upon.
2952 * @param int $pollinterval The poll interval to use.
2953 * @param int $action The action to be performed. One of update or remove.
2954 * @throws dml_exception if invalid subscriptionid is provided
2955 * @return string A log of the import progress, including errors
2957 function calendar_process_subscription_row($subscriptionid, $pollinterval, $action) {
2958 // Fetch the subscription from the database making sure it exists.
2959 $sub = calendar_get_subscription($subscriptionid);
2961 // Update or remove the subscription, based on action.
2963 case CALENDAR_SUBSCRIPTION_UPDATE
:
2964 // Skip updating file subscriptions.
2965 if (empty($sub->url
)) {
2968 $sub->pollinterval
= $pollinterval;
2969 calendar_update_subscription($sub);
2971 // Update the events.
2972 return "<p>" . get_string('subscriptionupdated', 'calendar', $sub->name
) . "</p>" .
2973 calendar_update_subscription_events($subscriptionid);
2974 case CALENDAR_SUBSCRIPTION_REMOVE
:
2975 calendar_delete_subscription($subscriptionid);
2976 return get_string('subscriptionremoved', 'calendar', $sub->name
);
2985 * Delete subscription and all related events.
2987 * @param int|stdClass $subscription subscription or it's id, which needs to be deleted.
2989 function calendar_delete_subscription($subscription) {
2992 if (!is_object($subscription)) {
2993 $subscription = $DB->get_record('event_subscriptions', array('id' => $subscription), '*', MUST_EXIST
);
2996 // Delete subscription and related events.
2997 $DB->delete_records('event', array('subscriptionid' => $subscription->id
));
2998 $DB->delete_records('event_subscriptions', array('id' => $subscription->id
));
2999 \cache_helper
::invalidate_by_definition('core', 'calendar_subscriptions', array(), array($subscription->id
));
3001 // Trigger event, calendar subscription deleted.
3002 $eventparams = array('objectid' => $subscription->id
,
3003 'context' => calendar_get_calendar_context($subscription),
3005 'eventtype' => $subscription->eventtype
,
3008 switch ($subscription->eventtype
) {
3010 $eventparams['other']['categoryid'] = $subscription->categoryid
;
3013 $eventparams['other']['courseid'] = $subscription->courseid
;
3016 $eventparams['other']['courseid'] = $subscription->courseid
;
3017 $eventparams['other']['groupid'] = $subscription->groupid
;
3020 $eventparams['other']['courseid'] = $subscription->courseid
;
3022 $event = \core\event\calendar_subscription_deleted
::create($eventparams);
3027 * From a URL, fetch the calendar and return an iCalendar object.
3029 * @param string $url The iCalendar URL
3030 * @return iCalendar The iCalendar object
3032 function calendar_get_icalendar($url) {
3035 require_once($CFG->libdir
. '/filelib.php');
3037 $curl = new \
curl();
3038 $curl->setopt(array('CURLOPT_FOLLOWLOCATION' => 1, 'CURLOPT_MAXREDIRS' => 5));
3039 $calendar = $curl->get($url);
3041 // Http code validation should actually be the job of curl class.
3042 if (!$calendar ||
$curl->info
['http_code'] != 200 ||
!empty($curl->errorno
)) {
3043 throw new \
moodle_exception('errorinvalidicalurl', 'calendar');
3046 $ical = new \
iCalendar();
3047 $ical->unserialize($calendar);
3053 * Import events from an iCalendar object into a course calendar.
3055 * @param iCalendar $ical The iCalendar object.
3056 * @param int $unused Deprecated
3057 * @param int $subscriptionid The subscription ID.
3058 * @return string A log of the import progress, including errors.
3060 function calendar_import_icalendar_events($ical, $unused = null, $subscriptionid = null) {
3068 // Large calendars take a while...
3070 \core_php_time_limit
::raise(300);
3073 // Grab the timezone from the iCalendar file to be used later.
3074 if (isset($ical->properties
['X-WR-TIMEZONE'][0]->value
)) {
3075 $timezone = $ical->properties
['X-WR-TIMEZONE'][0]->value
;
3081 foreach ($ical->components
['VEVENT'] as $event) {
3082 $icaluuids[] = $event->properties
['UID'][0]->value
;
3083 $res = calendar_add_icalendar_event($event, null, $subscriptionid, $timezone);
3085 case CALENDAR_IMPORT_EVENT_UPDATED
:
3088 case CALENDAR_IMPORT_EVENT_INSERTED
:
3091 case CALENDAR_IMPORT_EVENT_SKIPPED
:
3095 $return .= '<p>' . get_string('erroraddingevent', 'calendar') . ': ';
3096 if (empty($event->properties
['SUMMARY'])) {
3097 $return .= '(' . get_string('notitle', 'calendar') . ')';
3099 $return .= $event->properties
['SUMMARY'][0]->value
;
3101 $return .= "</p>\n";
3106 $existing = $DB->get_field('event_subscriptions', 'lastupdated', ['id' => $subscriptionid]);
3107 if (!empty($existing)) {
3108 $eventsuuids = $DB->get_records_menu('event', ['subscriptionid' => $subscriptionid], '', 'id, uuid');
3110 $icaleventscount = count($icaluuids);
3112 if (count($eventsuuids) > $icaleventscount) {
3113 foreach ($eventsuuids as $eventid => $eventuuid) {
3114 if (!in_array($eventuuid, $icaluuids)) {
3115 $tobedeleted[] = $eventid;
3118 if (!empty($tobedeleted)) {
3119 $DB->delete_records_list('event', 'id', $tobedeleted);
3120 $return .= "<p> " . get_string('eventsdeleted', 'calendar') . ": " . count($tobedeleted) . "</p> ";
3125 $return .= "<p>" . get_string('eventsimported', 'calendar', $eventcount) . "</p> ";
3126 $return .= "<p>" . get_string('eventsskipped', 'calendar', $skippedcount) . "</p> ";
3127 $return .= "<p>" . get_string('eventsupdated', 'calendar', $updatecount) . "</p>";
3132 * Fetch a calendar subscription and update the events in the calendar.
3134 * @param int $subscriptionid The course ID for the calendar.
3135 * @return string A log of the import progress, including errors.
3137 function calendar_update_subscription_events($subscriptionid) {
3138 $sub = calendar_get_subscription($subscriptionid);
3140 // Don't update a file subscription.
3141 if (empty($sub->url
)) {
3142 return 'File subscription not updated.';
3145 $ical = calendar_get_icalendar($sub->url
);
3146 $return = calendar_import_icalendar_events($ical, null, $subscriptionid);
3147 $sub->lastupdated
= time();
3149 calendar_update_subscription($sub);
3155 * Update a calendar subscription. Also updates the associated cache.
3157 * @param stdClass|array $subscription Subscription record.
3158 * @throws coding_exception If something goes wrong
3161 function calendar_update_subscription($subscription) {
3164 if (is_array($subscription)) {
3165 $subscription = (object)$subscription;
3167 if (empty($subscription->id
) ||
!$DB->record_exists('event_subscriptions', array('id' => $subscription->id
))) {
3168 throw new \
coding_exception('Cannot update a subscription without a valid id');
3171 $DB->update_record('event_subscriptions', $subscription);
3174 $cache = \cache
::make('core', 'calendar_subscriptions');
3175 $cache->set($subscription->id
, $subscription);
3177 // Trigger event, calendar subscription updated.
3178 $eventparams = array('userid' => $subscription->userid
,
3179 'objectid' => $subscription->id
,
3180 'context' => calendar_get_calendar_context($subscription),
3182 'eventtype' => $subscription->eventtype
,
3185 switch ($subscription->eventtype
) {
3187 $eventparams['other']['categoryid'] = $subscription->categoryid
;
3190 $eventparams['other']['courseid'] = $subscription->courseid
;
3193 $eventparams['other']['courseid'] = $subscription->courseid
;
3194 $eventparams['other']['groupid'] = $subscription->groupid
;
3197 $eventparams['other']['courseid'] = $subscription->courseid
;
3199 $event = \core\event\calendar_subscription_updated
::create($eventparams);
3204 * Checks to see if the user can edit a given subscription feed.
3206 * @param mixed $subscriptionorid Subscription object or id
3207 * @return bool true if current user can edit the subscription else false
3209 function calendar_can_edit_subscription($subscriptionorid) {
3210 if (is_array($subscriptionorid)) {
3211 $subscription = (object)$subscriptionorid;
3212 } else if (is_object($subscriptionorid)) {
3213 $subscription = $subscriptionorid;
3215 $subscription = calendar_get_subscription($subscriptionorid);
3218 $allowed = new \stdClass
;
3219 $courseid = $subscription->courseid
;
3220 $categoryid = $subscription->categoryid
;
3221 $groupid = $subscription->groupid
;
3224 if (!empty($categoryid)) {
3225 $category = \core_course_category
::get($categoryid);
3227 calendar_get_allowed_types($allowed, $courseid, null, $category);
3228 switch ($subscription->eventtype
) {
3230 return $allowed->user
;
3232 if (isset($allowed->courses
[$courseid])) {
3233 return $allowed->courses
[$courseid];
3238 if (isset($allowed->categories
[$categoryid])) {
3239 return $allowed->categories
[$categoryid];
3244 return $allowed->site
;
3246 if (isset($allowed->groups
[$groupid])) {
3247 return $allowed->groups
[$groupid];
3257 * Helper function to determine the context of a calendar subscription.
3258 * Subscriptions can be created in two contexts COURSE, or USER.
3260 * @param stdClass $subscription
3261 * @return context instance
3263 function calendar_get_calendar_context($subscription) {
3264 // Determine context based on calendar type.
3265 if ($subscription->eventtype
=== 'site') {
3266 $context = \context_course
::instance(SITEID
);
3267 } else if ($subscription->eventtype
=== 'group' ||
$subscription->eventtype
=== 'course') {
3268 $context = \context_course
::instance($subscription->courseid
);
3270 $context = \context_user
::instance($subscription->userid
);
3276 * Implements callback user_preferences, lists preferences that users are allowed to update directly
3278 * Used in {@see core_user::fill_preferences_cache()}, see also {@see useredit_update_user_preference()}
3282 function core_calendar_user_preferences() {
3284 $preferences['calendar_timeformat'] = array('type' => PARAM_NOTAGS
, 'null' => NULL_NOT_ALLOWED
, 'default' => '0',
3285 'choices' => array('0', CALENDAR_TF_12
, CALENDAR_TF_24
)
3287 $preferences['calendar_startwday'] = array('type' => PARAM_INT
, 'null' => NULL_NOT_ALLOWED
, 'default' => 0,
3288 'choices' => array(0, 1, 2, 3, 4, 5, 6));
3289 $preferences['calendar_maxevents'] = array('type' => PARAM_INT
, 'choices' => range(1, 20));
3290 $preferences['calendar_lookahead'] = array('type' => PARAM_INT
, 'null' => NULL_NOT_ALLOWED
, 'default' => 365,
3291 'choices' => array(365, 270, 180, 150, 120, 90, 60, 30, 21, 14, 7, 6, 5, 4, 3, 2, 1));
3292 $preferences['calendar_persistflt'] = array('type' => PARAM_INT
, 'null' => NULL_NOT_ALLOWED
, 'default' => 0,
3293 'choices' => array(0, 1));
3294 return $preferences;
3298 * Get legacy calendar events
3300 * @param int $tstart Start time of time range for events
3301 * @param int $tend End time of time range for events
3302 * @param array|int|boolean $users array of users, user id or boolean for all/no user events
3303 * @param array|int|boolean $groups array of groups, group id or boolean for all/no group events
3304 * @param array|int|boolean $courses array of courses, course id or boolean for all/no course events
3305 * @param boolean $withduration whether only events starting within time range selected
3306 * or events in progress/already started selected as well
3307 * @param boolean $ignorehidden whether to select only visible events or all events
3308 * @param array $categories array of category ids and/or objects.
3309 * @param int $limitnum Number of events to fetch or zero to fetch all.
3311 * @return array $events of selected events or an empty array if there aren't any (or there was an error)
3313 function calendar_get_legacy_events($tstart, $tend, $users, $groups, $courses,
3314 $withduration = true, $ignorehidden = true, $categories = [], $limitnum = 0) {
3315 // Normalise the users, groups and courses parameters so that they are compliant with \core_calendar\local\api::get_events().
3316 // Existing functions that were using the old calendar_get_events() were passing a mixture of array, int, boolean for these
3317 // parameters, but with the new API method, only null and arrays are accepted.
3318 list($userparam, $groupparam, $courseparam, $categoryparam) = array_map(function($param) {
3319 // If parameter is true, return null.
3320 if ($param === true) {
3324 // If parameter is false, return an empty array.
3325 if ($param === false) {
3329 // If the parameter is a scalar value, enclose it in an array.
3330 if (!is_array($param)) {
3334 // No normalisation required.
3336 }, [$users, $groups, $courses, $categories]);
3338 // If a single user is provided, we can use that for capability checks.
3339 // Otherwise current logged in user is used - See MDL-58768.
3340 if (is_array($userparam) && count($userparam) == 1) {
3341 \core_calendar\local\event\container
::set_requesting_user($userparam[0]);
3343 $mapper = \core_calendar\local\event\container
::get_event_mapper();
3344 $events = \core_calendar\local\api
::get_events(
3361 return array_reduce($events, function($carry, $event) use ($mapper) {
3362 return $carry +
[$event->get_id() => $mapper->from_event_to_stdclass($event)];
3368 * Get the calendar view output.
3370 * @param \calendar_information $calendar The calendar being represented
3371 * @param string $view The type of calendar to have displayed
3372 * @param bool $includenavigation Whether to include navigation
3373 * @param bool $skipevents Whether to load the events or not
3374 * @param int $lookahead Overwrites site and users's lookahead setting.
3375 * @return array[array, string]
3377 function calendar_get_view(\calendar_information
$calendar, $view, $includenavigation = true, bool $skipevents = false,
3378 ?
int $lookahead = null) {
3381 $renderer = $PAGE->get_renderer('core_calendar');
3382 $type = \core_calendar\type_factory
::get_calendar_instance();
3384 // Calculate the bounds of the month.
3385 $calendardate = $type->timestamp_to_date_array($calendar->time
);
3387 $date = new \
DateTime('now', core_date
::get_user_timezone_object(99));
3390 if ($view === 'day') {
3391 $tstart = $type->convert_to_timestamp($calendardate['year'], $calendardate['mon'], $calendardate['mday']);
3392 $date->setTimestamp($tstart);
3393 $date->modify('+1 day');
3394 } else if ($view === 'upcoming' ||
$view === 'upcoming_mini') {
3395 // Number of days in the future that will be used to fetch events.
3397 if (isset($CFG->calendar_lookahead
)) {
3398 $defaultlookahead = intval($CFG->calendar_lookahead
);
3400 $defaultlookahead = CALENDAR_DEFAULT_UPCOMING_LOOKAHEAD
;
3402 $lookahead = get_user_preferences('calendar_lookahead', $defaultlookahead);
3405 // Maximum number of events to be displayed on upcoming view.
3406 $defaultmaxevents = CALENDAR_DEFAULT_UPCOMING_MAXEVENTS
;
3407 if (isset($CFG->calendar_maxevents
)) {
3408 $defaultmaxevents = intval($CFG->calendar_maxevents
);
3410 $eventlimit = get_user_preferences('calendar_maxevents', $defaultmaxevents);
3412 $tstart = $type->convert_to_timestamp($calendardate['year'], $calendardate['mon'], $calendardate['mday'],
3413 $calendardate['hours']);
3414 $date->setTimestamp($tstart);
3415 $date->modify('+' . $lookahead . ' days');
3417 $tstart = $type->convert_to_timestamp($calendardate['year'], $calendardate['mon'], 1);
3418 $monthdays = $type->get_num_days_in_month($calendardate['year'], $calendardate['mon']);
3419 $date->setTimestamp($tstart);
3420 $date->modify('+' . $monthdays . ' days');
3422 if ($view === 'mini' ||
$view === 'minithree') {
3423 $template = 'core_calendar/calendar_mini';
3425 $template = 'core_calendar/calendar_month';
3429 // We need to extract 1 second to ensure that we don't get into the next day.
3430 $date->modify('-1 second');
3431 $tend = $date->getTimestamp();
3433 list($userparam, $groupparam, $courseparam, $categoryparam) = array_map(function($param) {
3434 // If parameter is true, return null.
3435 if ($param === true) {
3439 // If parameter is false, return an empty array.
3440 if ($param === false) {
3444 // If the parameter is a scalar value, enclose it in an array.
3445 if (!is_array($param)) {
3449 // No normalisation required.
3451 }, [$calendar->users
, $calendar->groups
, $calendar->courses
, $calendar->categories
]);
3456 $events = \core_calendar\local\api
::get_events(
3472 if ($proxy = $event->get_course_module()) {
3473 $cminfo = $proxy->get_proxied_instance();
3474 return $cminfo->uservisible
;
3477 if ($proxy = $event->get_category()) {
3478 $category = $proxy->get_proxied_instance();
3480 return $category->is_uservisible();
3489 'events' => $events,
3490 'cache' => new \core_calendar\external\
events_related_objects_cache($events),
3495 if ($view == "month" ||
$view == "mini" ||
$view == "minithree") {
3496 $month = new \core_calendar\external\
month_exporter($calendar, $type, $related);
3497 $month->set_includenavigation($includenavigation);
3498 $month->set_initialeventsloaded(!$skipevents);
3499 $month->set_showcoursefilter($view == "month");
3500 $data = $month->export($renderer);
3501 $data->viewingmonth
= true;
3502 } else if ($view == "day") {
3503 $day = new \core_calendar\external\
calendar_day_exporter($calendar, $related);
3504 $data = $day->export($renderer);
3505 $data->viewingday
= true;
3506 $template = 'core_calendar/calendar_day';
3507 } else if ($view == "upcoming" ||
$view == "upcoming_mini") {
3508 $upcoming = new \core_calendar\external\
calendar_upcoming_exporter($calendar, $related);
3509 $data = $upcoming->export($renderer);
3511 if ($view == "upcoming") {
3512 $template = 'core_calendar/calendar_upcoming';
3513 $data->viewingupcoming
= true;
3514 } else if ($view == "upcoming_mini") {
3515 $template = 'core_calendar/calendar_upcoming_mini';
3519 return [$data, $template];
3523 * Request and render event form fragment.
3525 * @param array $args The fragment arguments.
3526 * @return string The rendered mform fragment.
3528 function calendar_output_fragment_event_form($args) {
3529 global $CFG, $OUTPUT, $USER;
3530 require_once($CFG->libdir
. '/grouplib.php');
3533 $eventid = isset($args['eventid']) ?
clean_param($args['eventid'], PARAM_INT
) : null;
3534 $starttime = isset($args['starttime']) ?
clean_param($args['starttime'], PARAM_INT
) : null;
3535 $courseid = (isset($args['courseid']) && $args['courseid'] != SITEID
) ?
clean_param($args['courseid'], PARAM_INT
) : null;
3536 $categoryid = isset($args['categoryid']) ?
clean_param($args['categoryid'], PARAM_INT
) : null;
3538 $hasformdata = isset($args['formdata']) && !empty($args['formdata']);
3539 $context = \context_user
::instance($USER->id
);
3540 $editoroptions = \core_calendar\local\event\forms\create
::build_editor_options($context);
3541 $formoptions = ['editoroptions' => $editoroptions, 'courseid' => $courseid];
3545 parse_str(clean_param($args['formdata'], PARAM_TEXT
), $data);
3546 if (isset($data['description']['itemid'])) {
3547 $draftitemid = $data['description']['itemid'];
3552 $formoptions['starttime'] = $starttime;
3554 // Let's check first which event types user can add.
3555 $eventtypes = calendar_get_allowed_event_types($courseid);
3556 $formoptions['eventtypes'] = $eventtypes;
3558 if (is_null($eventid)) {
3559 if (!empty($courseid)) {
3560 $groupcoursedata = groups_get_course_data($courseid);
3561 $formoptions['groups'] = [];
3562 foreach ($groupcoursedata->groups
as $groupid => $groupdata) {
3563 $formoptions['groups'][$groupid] = $groupdata->name
;
3567 $mform = new \core_calendar\local\event\forms\
create(
3577 // If the user is on course context and is allowed to add course events set the event type default to course.
3578 if (!empty($courseid) && !empty($eventtypes['course'])) {
3579 $data['eventtype'] = 'course';
3580 $data['courseid'] = $courseid;
3581 $data['groupcourseid'] = $courseid;
3582 } else if (!empty($categoryid) && !empty($eventtypes['category'])) {
3583 $data['eventtype'] = 'category';
3584 $data['categoryid'] = $categoryid;
3585 } else if (!empty($groupcoursedata) && !empty($eventtypes['group'])) {
3586 $data['groupcourseid'] = $courseid;
3587 $data['groups'] = $groupcoursedata->groups
;
3589 $mform->set_data($data);
3591 $event = calendar_event
::load($eventid);
3593 if (!calendar_edit_event_allowed($event)) {
3594 print_error('nopermissiontoupdatecalendar');
3597 $mapper = new \core_calendar\local\event\mappers\
create_update_form_mapper();
3598 $eventdata = $mapper->from_legacy_event_to_data($event);
3599 $data = array_merge((array) $eventdata, $data);
3600 $event->count_repeats();
3601 $formoptions['event'] = $event;
3603 if (!empty($event->courseid
)) {
3604 $groupcoursedata = groups_get_course_data($event->courseid
);
3605 $formoptions['groups'] = [];
3606 foreach ($groupcoursedata->groups
as $groupid => $groupdata) {
3607 $formoptions['groups'][$groupid] = $groupdata->name
;
3611 $data['description']['text'] = file_prepare_draft_area(
3613 $event->context
->id
,
3615 'event_description',
3618 $data['description']['text']
3620 $data['description']['itemid'] = $draftitemid;
3622 $mform = new \core_calendar\local\event\forms\
update(
3631 $mform->set_data($data);
3633 // Check to see if this event is part of a subscription or import.
3634 // If so display a warning on edit.
3635 if (isset($event->subscriptionid
) && ($event->subscriptionid
!= null)) {
3636 $renderable = new \core\output\notification
(
3637 get_string('eventsubscriptioneditwarning', 'calendar'),
3638 \core\output\notification
::NOTIFY_INFO
3641 $html .= $OUTPUT->render($renderable);
3646 $mform->is_validated();
3649 $html .= $mform->render();
3654 * Calculate the timestamp from the supplied Gregorian Year, Month, and Day.
3656 * @param int $d The day
3657 * @param int $m The month
3658 * @param int $y The year
3659 * @param int $time The timestamp to use instead of a separate y/m/d.
3660 * @return int The timestamp
3662 function calendar_get_timestamp($d, $m, $y, $time = 0) {
3663 // If a day, month and year were passed then convert it to a timestamp. If these were passed
3664 // then we can assume the day, month and year are passed as Gregorian, as no where in core
3665 // should we be passing these values rather than the time.
3666 if (!empty($d) && !empty($m) && !empty($y)) {
3667 if (checkdate($m, $d, $y)) {
3668 $time = make_timestamp($y, $m, $d);
3672 } else if (empty($time)) {
3680 * Get the calendar footer options.
3682 * @param calendar_information $calendar The calendar information object.
3683 * @return array The data for template and template name.
3685 function calendar_get_footer_options($calendar) {
3686 global $CFG, $USER, $PAGE;
3688 // Generate hash for iCal link.
3689 $authtoken = calendar_get_export_token($USER);
3691 $renderer = $PAGE->get_renderer('core_calendar');
3692 $footer = new \core_calendar\external\footer_options_exporter
($calendar, $USER->id
, $authtoken);
3693 $data = $footer->export($renderer);
3694 $template = 'core_calendar/footer_options';
3696 return [$data, $template];
3700 * Get the list of potential calendar filter types as a type => name
3705 function calendar_get_filter_types() {
3715 return array_map(function($type) {
3717 'eventtype' => $type,
3718 'name' => get_string("eventtype{$type}", "calendar"),
3720 'key' => 'i/' . $type . 'event',
3721 'component' => 'core'
3727 * Check whether the specified event type is valid.
3729 * @param string $type
3732 function calendar_is_valid_eventtype($type) {
3740 return in_array($type, $validtypes);
3744 * Get event types the user can create event based on categories, courses and groups
3745 * the logged in user belongs to.
3747 * @param int|null $courseid The course id.
3748 * @return array The array of allowed types.
3750 function calendar_get_allowed_event_types(int $courseid = null) {
3751 global $DB, $CFG, $USER;
3761 if (!empty($courseid) && $courseid != SITEID
) {
3762 $context = \context_course
::instance($courseid);
3763 $types['user'] = has_capability('moodle/calendar:manageownentries', $context);
3764 calendar_internal_update_course_and_group_permission($courseid, $context, $types);
3767 if (has_capability('moodle/calendar:manageentries', \context_course
::instance(SITEID
))) {
3768 $types['site'] = true;
3771 if (has_capability('moodle/calendar:manageownentries', \context_system
::instance())) {
3772 $types['user'] = true;
3774 if (core_course_category
::has_manage_capability_on_any()) {
3775 $types['category'] = true;
3778 // We still don't know if the user can create group and course events, so iterate over the courses to find out
3779 // if the user has capabilities in one of the courses.
3780 if ($types['course'] == false ||
$types['group'] == false) {
3781 if ($CFG->calendar_adminseesall
&& has_capability('moodle/calendar:manageentries', context_system
::instance())) {
3782 $sql = "SELECT c.id, " . context_helper
::get_preload_record_columns_sql('ctx') . "
3784 JOIN {context} ctx ON ctx.contextlevel = ? AND ctx.instanceid = c.id
3786 SELECT DISTINCT courseid FROM {groups}
3788 $courseswithgroups = $DB->get_recordset_sql($sql, [CONTEXT_COURSE
]);
3789 foreach ($courseswithgroups as $course) {
3790 context_helper
::preload_from_record($course);
3791 $context = context_course
::instance($course->id
);
3793 if (has_capability('moodle/calendar:manageentries', $context)) {
3794 if (has_any_capability(['moodle/site:accessallgroups', 'moodle/calendar:managegroupentries'], $context)) {
3795 // The user can manage group entries or access any group.
3796 $types['group'] = true;
3797 $types['course'] = true;
3802 $courseswithgroups->close();
3804 if (false === $types['course']) {
3805 // Course is still not confirmed. There may have been no courses with a group in them.
3806 $ctxfields = context_helper
::get_preload_record_columns_sql('ctx');
3808 c.id, c.visible, {$ctxfields}
3810 JOIN {context} ctx ON (ctx.instanceid = c.id AND ctx.contextlevel = :contextlevel)";
3812 'contextlevel' => CONTEXT_COURSE
,
3814 $courses = $DB->get_recordset_sql($sql, $params);
3815 foreach ($courses as $course) {
3816 context_helper
::preload_from_record($course);
3817 $context = context_course
::instance($course->id
);
3818 if (has_capability('moodle/calendar:manageentries', $context)) {
3819 $types['course'] = true;
3827 $courses = calendar_get_default_courses(null, 'id');
3828 if (empty($courses)) {
3832 $courseids = array_map(function($c) {
3836 // Check whether the user has access to create events within courses which have groups.
3837 list($insql, $params) = $DB->get_in_or_equal($courseids, SQL_PARAMS_NAMED
);
3838 $sql = "SELECT c.id, " . context_helper
::get_preload_record_columns_sql('ctx') . "
3840 JOIN {context} ctx ON ctx.contextlevel = :contextlevel AND ctx.instanceid = c.id
3842 AND c.id IN (SELECT DISTINCT courseid FROM {groups})";
3843 $params['contextlevel'] = CONTEXT_COURSE
;
3844 $courseswithgroups = $DB->get_recordset_sql($sql, $params);
3845 foreach ($courseswithgroups as $coursewithgroup) {
3846 context_helper
::preload_from_record($coursewithgroup);
3847 $context = context_course
::instance($coursewithgroup->id
);
3849 calendar_internal_update_course_and_group_permission($coursewithgroup->id
, $context, $types);
3851 // Okay, course and group event types are allowed, no need to keep the loop iteration.
3852 if ($types['course'] == true && $types['group'] == true) {
3856 $courseswithgroups->close();
3858 if (false === $types['course']) {
3859 list($insql, $params) = $DB->get_in_or_equal($courseids, SQL_PARAMS_NAMED
);
3860 $contextsql = "SELECT c.id, " . context_helper
::get_preload_record_columns_sql('ctx') . "
3862 JOIN {context} ctx ON ctx.contextlevel = :contextlevel AND ctx.instanceid = c.id
3864 $params['contextlevel'] = CONTEXT_COURSE
;
3865 $contextrecords = $DB->get_recordset_sql($contextsql, $params);
3866 foreach ($contextrecords as $course) {
3867 context_helper
::preload_from_record($course);
3868 $coursecontext = context_course
::instance($course->id
);
3869 if (has_capability('moodle/calendar:manageentries', $coursecontext)
3870 && ($courseid == $course->id ||
empty($courseid))) {
3871 $types['course'] = true;
3875 $contextrecords->close();
3885 * Given a course id, and context, updates the permission types array to add the 'course' or 'group'
3886 * permission if it is relevant for that course.
3888 * For efficiency, if they already have 'course' or 'group' then it skips checks.
3890 * Do not call this function directly, it is only for use by calendar_get_allowed_event_types().
3892 * @param int $courseid Course id
3893 * @param context $context Context for that course
3894 * @param array $types Current permissions
3896 function calendar_internal_update_course_and_group_permission(int $courseid, context
$context, array &$types) {
3897 if (!$types['course']) {
3898 // If they have manageentries permission on the course, then they can update this course.
3899 if (has_capability('moodle/calendar:manageentries', $context)) {
3900 $types['course'] = true;
3903 // To update group events they must have EITHER manageentries OR managegroupentries.
3904 if (!$types['group'] && (has_capability('moodle/calendar:manageentries', $context) ||
3905 has_capability('moodle/calendar:managegroupentries', $context))) {
3906 // And they also need for a group to exist on the course.
3907 $groups = groups_get_all_groups($courseid);
3908 if (!empty($groups)) {
3909 // And either accessallgroups, or belong to one of the groups.
3910 if (has_capability('moodle/site:accessallgroups', $context)) {
3911 $types['group'] = true;
3913 foreach ($groups as $group) {
3914 if (groups_is_member($group->id
)) {
3915 $types['group'] = true;
3925 * Get the auth token for exporting the given user calendar.
3926 * @param stdClass $user The user to export the calendar for
3928 * @return string The export token.
3930 function calendar_get_export_token(stdClass
$user): string {
3933 return sha1($user->id
. $DB->get_field('user', 'password', ['id' => $user->id
]) . $CFG->calendar_exportsalt
);