mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
MDL-71410 mod_lesson: implement activity_dates for the lesson module
This commit is contained in:
parent
8a308c498c
commit
660f7c08c5
68
mod/lesson/classes/dates.php
Normal file
68
mod/lesson/classes/dates.php
Normal file
@ -0,0 +1,68 @@
|
||||
<?php
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Contains the class for fetching the important dates in mod_lesson for a given module instance and a user.
|
||||
*
|
||||
* @package mod_lesson
|
||||
* @copyright 2021 Shamim Rezaie <shamim@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace mod_lesson;
|
||||
|
||||
use core\activity_dates;
|
||||
|
||||
/**
|
||||
* Class for fetching the important dates in mod_lesson for a given module instance and a user.
|
||||
*
|
||||
* @copyright 2021 Shamim Rezaie <shamim@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class dates extends activity_dates {
|
||||
|
||||
/**
|
||||
* Returns a list of important dates in mod_lesson
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
protected function get_dates(): array {
|
||||
$timeopen = $this->cm->customdata['available'] ?? null;
|
||||
$timeclose = $this->cm->customdata['deadline'] ?? null;
|
||||
$now = time();
|
||||
$dates = [];
|
||||
|
||||
if ($timeopen) {
|
||||
$openlabelid = $timeopen > $now ? 'activitydate:opens' : 'activitydate:opened';
|
||||
$dates[] = [
|
||||
'label' => get_string($openlabelid, 'course'),
|
||||
'timestamp' => (int) $timeopen,
|
||||
];
|
||||
}
|
||||
|
||||
if ($timeclose) {
|
||||
$closelabelid = $timeclose > $now ? 'activitydate:closes' : 'activitydate:closed';
|
||||
$dates[] = [
|
||||
'label' => get_string($closelabelid, 'course'),
|
||||
'timestamp' => (int) $timeclose,
|
||||
];
|
||||
}
|
||||
|
||||
return $dates;
|
||||
}
|
||||
}
|
175
mod/lesson/tests/dates_test.php
Normal file
175
mod/lesson/tests/dates_test.php
Normal file
@ -0,0 +1,175 @@
|
||||
<?php
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Contains unit tests for mod_lesson\dates.
|
||||
*
|
||||
* @package mod_lesson
|
||||
* @category test
|
||||
* @copyright 2021 Shamim Rezaie <shamim@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace mod_lesson;
|
||||
|
||||
use advanced_testcase;
|
||||
use cm_info;
|
||||
use core\activity_dates;
|
||||
|
||||
/**
|
||||
* Class for unit testing mod_lesson\dates.
|
||||
*
|
||||
* @copyright 2021 Shamim Rezaie <shamim@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class dates_test extends advanced_testcase {
|
||||
|
||||
/**
|
||||
* Data provider for get_dates_for_module().
|
||||
* @return array[]
|
||||
*/
|
||||
public function get_dates_for_module_provider(): array {
|
||||
$now = time();
|
||||
$before = $now - DAYSECS;
|
||||
$earlier = $before - DAYSECS;
|
||||
$after = $now + DAYSECS;
|
||||
$later = $after + DAYSECS;
|
||||
|
||||
return [
|
||||
'without any dates' => [
|
||||
null, null, null, null, null, null, []
|
||||
],
|
||||
'only with opening time' => [
|
||||
$after, null, null, null, null, null, [
|
||||
['label' => get_string('activitydate:opens', 'course'), 'timestamp' => $after],
|
||||
]
|
||||
],
|
||||
'only with closing time' => [
|
||||
null, $after, null, null, null, null, [
|
||||
['label' => get_string('activitydate:closes', 'course'), 'timestamp' => $after],
|
||||
]
|
||||
],
|
||||
'with both times' => [
|
||||
$after, $later, null, null, null, null, [
|
||||
['label' => get_string('activitydate:opens', 'course'), 'timestamp' => $after],
|
||||
['label' => get_string('activitydate:closes', 'course'), 'timestamp' => $later],
|
||||
]
|
||||
],
|
||||
'between the dates' => [
|
||||
$before, $after, null, null, null, null, [
|
||||
['label' => get_string('activitydate:opened', 'course'), 'timestamp' => $before],
|
||||
['label' => get_string('activitydate:closes', 'course'), 'timestamp' => $after],
|
||||
]
|
||||
],
|
||||
'dates are past' => [
|
||||
$earlier, $before, null, null, null, null, [
|
||||
['label' => get_string('activitydate:opened', 'course'), 'timestamp' => $earlier],
|
||||
['label' => get_string('activitydate:closed', 'course'), 'timestamp' => $before],
|
||||
]
|
||||
],
|
||||
'with user override' => [
|
||||
$before, $after, $earlier, $later, null, null, [
|
||||
['label' => get_string('activitydate:opened', 'course'), 'timestamp' => $earlier],
|
||||
['label' => get_string('activitydate:closes', 'course'), 'timestamp' => $later],
|
||||
]
|
||||
],
|
||||
'with group override' => [
|
||||
$before, $after, null, null, $earlier, $later, [
|
||||
['label' => get_string('activitydate:opened', 'course'), 'timestamp' => $earlier],
|
||||
['label' => get_string('activitydate:closes', 'course'), 'timestamp' => $later],
|
||||
]
|
||||
],
|
||||
'with both user and group overrides' => [
|
||||
$before, $after, $earlier, $later, $earlier - DAYSECS, $later + DAYSECS, [
|
||||
['label' => get_string('activitydate:opened', 'course'), 'timestamp' => $earlier],
|
||||
['label' => get_string('activitydate:closes', 'course'), 'timestamp' => $later],
|
||||
]
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Test for get_dates_for_module().
|
||||
*
|
||||
* @dataProvider get_dates_for_module_provider
|
||||
* @param int|null $available The 'available from' value of the lesson.
|
||||
* @param int|null $deadline The lesson's deadline.
|
||||
* @param int|null $useravailable The user override for opening the lesson.
|
||||
* @param int|null $userdeadline The user override for deadline of the lesson.
|
||||
* @param int|null $groupavailable The group override for opening the lesson.
|
||||
* @param int|null $groupuserdeadline The group override for deadline of the lesson.
|
||||
* @param array $expected The expected value of calling get_dates_for_module()
|
||||
*/
|
||||
public function test_get_dates_for_module(?int $available, ?int $deadline,
|
||||
?int $useravailable, ?int $userdeadline,
|
||||
?int $groupavailable, ?int $groupuserdeadline,
|
||||
array $expected) {
|
||||
$this->resetAfterTest();
|
||||
$generator = $this->getDataGenerator();
|
||||
/** @var \mod_lesson_generator $lessongenerator */
|
||||
$lessongenerator = $generator->get_plugin_generator('mod_lesson');
|
||||
|
||||
$course = $generator->create_course();
|
||||
$user = $generator->create_user();
|
||||
$generator->enrol_user($user->id, $course->id);
|
||||
|
||||
$data = ['course' => $course->id];
|
||||
if ($available) {
|
||||
$data['available'] = $available;
|
||||
}
|
||||
if ($deadline) {
|
||||
$data['deadline'] = $deadline;
|
||||
}
|
||||
$this->setAdminUser();
|
||||
$lesson = $lessongenerator->create_instance($data);
|
||||
|
||||
if ($useravailable || $userdeadline || $groupavailable || $groupuserdeadline) {
|
||||
$generator->enrol_user($user->id, $course->id);
|
||||
$group = $generator->create_group(['courseid' => $course->id]);
|
||||
$generator->create_group_member(['groupid' => $group->id, 'userid' => $user->id]);
|
||||
|
||||
if ($useravailable || $userdeadline) {
|
||||
$lessongenerator->create_override([
|
||||
'lessonid' => $lesson->id,
|
||||
'userid' => $user->id,
|
||||
'available' => $useravailable,
|
||||
'deadline' => $userdeadline,
|
||||
]);
|
||||
}
|
||||
|
||||
if ($groupavailable || $groupuserdeadline) {
|
||||
$lessongenerator->create_override([
|
||||
'lessonid' => $lesson->id,
|
||||
'groupid' => $group->id,
|
||||
'available' => $groupavailable,
|
||||
'deadline' => $groupuserdeadline,
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
$this->setUser($user);
|
||||
|
||||
$cm = get_coursemodule_from_instance('lesson', $lesson->id);
|
||||
// Make sure we're using a cm_info object.
|
||||
$cm = cm_info::create($cm);
|
||||
|
||||
$dates = activity_dates::get_dates_for_module($cm, (int) $user->id);
|
||||
|
||||
$this->assertEquals($expected, $dates);
|
||||
}
|
||||
}
|
@ -426,4 +426,27 @@ class mod_lesson_generator extends testing_module_generator {
|
||||
$page = lesson_page::create((object)$record, new lesson($lesson), $context, $CFG->maxbytes);
|
||||
return $DB->get_record('lesson_pages', array('id' => $page->id), '*', MUST_EXIST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a lesson override (either user or group).
|
||||
*
|
||||
* @param array $data must specify lessonid, and one of userid or groupid.
|
||||
*/
|
||||
public function create_override(array $data): void {
|
||||
global $DB;
|
||||
|
||||
if (!isset($data['lessonid'])) {
|
||||
throw new coding_exception('Must specify lessonid when creating a lesson override.');
|
||||
}
|
||||
|
||||
if (!isset($data['userid']) && !isset($data['groupid'])) {
|
||||
throw new coding_exception('Must specify one of userid or groupid when creating a lesson override.');
|
||||
}
|
||||
|
||||
if (isset($data['userid']) && isset($data['groupid'])) {
|
||||
throw new coding_exception('Cannot specify both userid and groupid when creating a lesson override.');
|
||||
}
|
||||
|
||||
$DB->insert_record('lesson_overrides', (object) $data);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user