From 08392add89c65b491473ddd7b7fc211dad8766ca Mon Sep 17 00:00:00 2001 From: Shamim Rezaie Date: Fri, 7 Sep 2018 14:30:56 +1000 Subject: [PATCH] MDL-63138 mod_folder: Add userid param to mod_folder calendar callback --- mod/folder/lib.php | 14 +++++-- mod/folder/tests/lib_test.php | 70 +++++++++++++++++++++++++++++++++++ 2 files changed, 81 insertions(+), 3 deletions(-) diff --git a/mod/folder/lib.php b/mod/folder/lib.php index 4c76c551565..9c24c884a06 100644 --- a/mod/folder/lib.php +++ b/mod/folder/lib.php @@ -788,15 +788,23 @@ function folder_check_updates_since(cm_info $cm, $from, $filter = array()) { * * @param calendar_event $event * @param \core_calendar\action_factory $factory + * @param int $userid User id to use for all capability checks, etc. Set to 0 for current user (default). * @return \core_calendar\local\event\entities\action_interface|null */ function mod_folder_core_calendar_provide_event_action(calendar_event $event, - \core_calendar\action_factory $factory) { - $cm = get_fast_modinfo($event->courseid)->instances['folder'][$event->instance]; + \core_calendar\action_factory $factory, + int $userid = 0) { + global $USER; + + if (!$userid) { + $userid = $USER->id; + } + + $cm = get_fast_modinfo($event->courseid, $userid)->instances['folder'][$event->instance]; $completion = new \completion_info($cm->get_course()); - $completiondata = $completion->get_data($cm, false); + $completiondata = $completion->get_data($cm, false, $userid); if ($completiondata->completionstate != COMPLETION_INCOMPLETE) { return null; diff --git a/mod/folder/tests/lib_test.php b/mod/folder/tests/lib_test.php index c4b33156ff7..a4d4eace709 100644 --- a/mod/folder/tests/lib_test.php +++ b/mod/folder/tests/lib_test.php @@ -118,6 +118,37 @@ class mod_folder_lib_testcase extends advanced_testcase { $this->assertTrue($actionevent->is_actionable()); } + public function test_folder_core_calendar_provide_event_action_for_user() { + // Create a course. + $course = $this->getDataGenerator()->create_course(); + + // Create a student. + $student = $this->getDataGenerator()->create_and_enrol($course, 'student'); + + // Create the activity. + $folder = $this->getDataGenerator()->create_module('folder', array('course' => $course->id)); + + // Create a calendar event. + $event = $this->create_action_event($course->id, $folder->id, + \core_completion\api::COMPLETION_EVENT_TYPE_DATE_COMPLETION_EXPECTED); + + // Now, log out. + $this->setUser(); + + // Create an action factory. + $factory = new \core_calendar\action_factory(); + + // Decorate action event for the student. + $actionevent = mod_folder_core_calendar_provide_event_action($event, $factory, $student->id); + + // Confirm the event was decorated. + $this->assertInstanceOf('\core_calendar\local\event\value_objects\action', $actionevent); + $this->assertEquals(get_string('view'), $actionevent->get_name()); + $this->assertInstanceOf('moodle_url', $actionevent->get_url()); + $this->assertEquals(1, $actionevent->get_item_count()); + $this->assertTrue($actionevent->is_actionable()); + } + public function test_folder_core_calendar_provide_event_action_already_completed() { global $CFG; @@ -149,6 +180,45 @@ class mod_folder_lib_testcase extends advanced_testcase { $this->assertNull($actionevent); } + public function test_folder_core_calendar_provide_event_action_already_completed_for_user() { + global $CFG; + + $CFG->enablecompletion = 1; + + // Create a course. + $course = $this->getDataGenerator()->create_course(array('enablecompletion' => 1)); + + // Create a student. + $student = $this->getDataGenerator()->create_and_enrol($course, 'student'); + + // Create the activity. + $folder = $this->getDataGenerator()->create_module('folder', array('course' => $course->id), + array('completion' => 2, 'completionview' => 1, 'completionexpected' => time() + DAYSECS)); + + // Get some additional data. + $cm = get_coursemodule_from_instance('folder', $folder->id); + + // Create a calendar event. + $event = $this->create_action_event($course->id, $folder->id, + \core_completion\api::COMPLETION_EVENT_TYPE_DATE_COMPLETION_EXPECTED); + + // Mark the activity as completed for the student. + $completion = new completion_info($course); + $completion->set_module_viewed($cm, $student->id); + + // Now, log out. + $this->setUser(); + + // Create an action factory. + $factory = new \core_calendar\action_factory(); + + // Decorate action event for the student. + $actionevent = mod_folder_core_calendar_provide_event_action($event, $factory, $student->id); + + // Ensure result was null. + $this->assertNull($actionevent); + } + /** * Creates an action event. *