You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
327 lines
13 KiB
327 lines
13 KiB
<?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/>.
|
|
|
|
/**
|
|
* @package mod_lesson
|
|
* @subpackage backup-moodle2
|
|
* @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
/**
|
|
* Define all the restore steps that will be used by the restore_lesson_activity_task
|
|
*/
|
|
|
|
/**
|
|
* Structure step to restore one lesson activity
|
|
*/
|
|
class restore_lesson_activity_structure_step extends restore_activity_structure_step {
|
|
// Store the answers as they're received but only process them at the
|
|
// end of the lesson
|
|
protected $answers = array();
|
|
|
|
protected function define_structure() {
|
|
|
|
$paths = array();
|
|
$userinfo = $this->get_setting_value('userinfo');
|
|
|
|
$paths[] = new restore_path_element('lesson', '/activity/lesson');
|
|
$paths[] = new restore_path_element('lesson_page', '/activity/lesson/pages/page');
|
|
$paths[] = new restore_path_element('lesson_answer', '/activity/lesson/pages/page/answers/answer');
|
|
$paths[] = new restore_path_element('lesson_override', '/activity/lesson/overrides/override');
|
|
if ($userinfo) {
|
|
$paths[] = new restore_path_element('lesson_attempt', '/activity/lesson/pages/page/answers/answer/attempts/attempt');
|
|
$paths[] = new restore_path_element('lesson_grade', '/activity/lesson/grades/grade');
|
|
$paths[] = new restore_path_element('lesson_branch', '/activity/lesson/pages/page/branches/branch');
|
|
$paths[] = new restore_path_element('lesson_highscore', '/activity/lesson/highscores/highscore');
|
|
$paths[] = new restore_path_element('lesson_timer', '/activity/lesson/timers/timer');
|
|
}
|
|
|
|
// Return the paths wrapped into standard activity structure
|
|
return $this->prepare_activity_structure($paths);
|
|
}
|
|
|
|
protected function process_lesson($data) {
|
|
global $DB;
|
|
|
|
$data = (object)$data;
|
|
$oldid = $data->id;
|
|
$data->course = $this->get_courseid();
|
|
|
|
// Any changes to the list of dates that needs to be rolled should be same during course restore and course reset.
|
|
// See MDL-9367.
|
|
$data->available = $this->apply_date_offset($data->available);
|
|
$data->deadline = $this->apply_date_offset($data->deadline);
|
|
|
|
// The lesson->highscore code was removed in MDL-49581.
|
|
// Remove it if found in the backup file.
|
|
if (isset($data->showhighscores)) {
|
|
unset($data->showhighscores);
|
|
}
|
|
if (isset($data->highscores)) {
|
|
unset($data->highscores);
|
|
}
|
|
|
|
// Supply items that maybe missing from previous versions.
|
|
if (!isset($data->completionendreached)) {
|
|
$data->completionendreached = 0;
|
|
}
|
|
if (!isset($data->completiontimespent)) {
|
|
$data->completiontimespent = 0;
|
|
}
|
|
|
|
if (!isset($data->intro)) {
|
|
$data->intro = '';
|
|
$data->introformat = FORMAT_HTML;
|
|
}
|
|
|
|
// Compatibility with old backups with maxtime and timed fields.
|
|
if (!isset($data->timelimit)) {
|
|
if (isset($data->timed) && isset($data->maxtime) && $data->timed) {
|
|
$data->timelimit = 60 * $data->maxtime;
|
|
} else {
|
|
$data->timelimit = 0;
|
|
}
|
|
}
|
|
// insert the lesson record
|
|
$newitemid = $DB->insert_record('lesson', $data);
|
|
// immediately after inserting "activity" record, call this
|
|
$this->apply_activity_instance($newitemid);
|
|
}
|
|
|
|
protected function process_lesson_page($data) {
|
|
global $DB;
|
|
|
|
$data = (object)$data;
|
|
$oldid = $data->id;
|
|
$data->lessonid = $this->get_new_parentid('lesson');
|
|
|
|
// We'll remap all the prevpageid and nextpageid at the end, once all pages have been created
|
|
|
|
$newitemid = $DB->insert_record('lesson_pages', $data);
|
|
$this->set_mapping('lesson_page', $oldid, $newitemid, true); // Has related fileareas
|
|
}
|
|
|
|
protected function process_lesson_answer($data) {
|
|
global $DB;
|
|
|
|
$data = (object)$data;
|
|
$data->lessonid = $this->get_new_parentid('lesson');
|
|
$data->pageid = $this->get_new_parentid('lesson_page');
|
|
$data->answer = $data->answer_text;
|
|
|
|
// Set a dummy mapping to get the old ID so that it can be used by get_old_parentid when
|
|
// processing attempts. It will be corrected in after_execute
|
|
$this->set_mapping('lesson_answer', $data->id, 0, true); // Has related fileareas.
|
|
|
|
// Answers need to be processed in order, so we store them in an
|
|
// instance variable and insert them in the after_execute stage
|
|
$this->answers[$data->id] = $data;
|
|
}
|
|
|
|
protected function process_lesson_attempt($data) {
|
|
global $DB;
|
|
|
|
$data = (object)$data;
|
|
$oldid = $data->id;
|
|
$data->lessonid = $this->get_new_parentid('lesson');
|
|
$data->pageid = $this->get_new_parentid('lesson_page');
|
|
|
|
// We use the old answerid here as the answer isn't created until after_execute
|
|
$data->answerid = $this->get_old_parentid('lesson_answer');
|
|
$data->userid = $this->get_mappingid('user', $data->userid);
|
|
|
|
$newitemid = $DB->insert_record('lesson_attempts', $data);
|
|
$this->set_mapping('lesson_attempt', $oldid, $newitemid, true); // Has related fileareas.
|
|
}
|
|
|
|
protected function process_lesson_grade($data) {
|
|
global $DB;
|
|
|
|
$data = (object)$data;
|
|
$oldid = $data->id;
|
|
$data->lessonid = $this->get_new_parentid('lesson');
|
|
$data->userid = $this->get_mappingid('user', $data->userid);
|
|
|
|
$newitemid = $DB->insert_record('lesson_grades', $data);
|
|
$this->set_mapping('lesson_grade', $oldid, $newitemid);
|
|
}
|
|
|
|
protected function process_lesson_branch($data) {
|
|
global $DB;
|
|
|
|
$data = (object)$data;
|
|
$oldid = $data->id;
|
|
$data->lessonid = $this->get_new_parentid('lesson');
|
|
$data->pageid = $this->get_new_parentid('lesson_page');
|
|
$data->userid = $this->get_mappingid('user', $data->userid);
|
|
|
|
$newitemid = $DB->insert_record('lesson_branch', $data);
|
|
}
|
|
|
|
protected function process_lesson_highscore($data) {
|
|
// Do not process any high score data.
|
|
// high scores were removed in Moodle 3.0 See MDL-49581.
|
|
}
|
|
|
|
protected function process_lesson_timer($data) {
|
|
global $DB;
|
|
|
|
$data = (object)$data;
|
|
$oldid = $data->id;
|
|
$data->lessonid = $this->get_new_parentid('lesson');
|
|
$data->userid = $this->get_mappingid('user', $data->userid);
|
|
// Supply item that maybe missing from previous versions.
|
|
if (!isset($data->completed)) {
|
|
$data->completed = 0;
|
|
}
|
|
$newitemid = $DB->insert_record('lesson_timer', $data);
|
|
}
|
|
|
|
/**
|
|
* Process a lesson override restore
|
|
* @param object $data The data in object form
|
|
* @return void
|
|
*/
|
|
protected function process_lesson_override($data) {
|
|
global $DB;
|
|
|
|
$data = (object)$data;
|
|
$oldid = $data->id;
|
|
|
|
// Based on userinfo, we'll restore user overides or no.
|
|
$userinfo = $this->get_setting_value('userinfo');
|
|
|
|
// Skip user overrides if we are not restoring userinfo.
|
|
if (!$userinfo && !is_null($data->userid)) {
|
|
return;
|
|
}
|
|
|
|
$data->lessonid = $this->get_new_parentid('lesson');
|
|
|
|
if (!is_null($data->userid)) {
|
|
$data->userid = $this->get_mappingid('user', $data->userid);
|
|
}
|
|
if (!is_null($data->groupid)) {
|
|
$data->groupid = $this->get_mappingid('group', $data->groupid);
|
|
}
|
|
|
|
$data->available = $this->apply_date_offset($data->available);
|
|
$data->deadline = $this->apply_date_offset($data->deadline);
|
|
|
|
$newitemid = $DB->insert_record('lesson_overrides', $data);
|
|
|
|
// Add mapping, restore of logs needs it.
|
|
$this->set_mapping('lesson_override', $oldid, $newitemid);
|
|
}
|
|
|
|
protected function after_execute() {
|
|
global $DB;
|
|
|
|
// Answers must be sorted by id to ensure that they're shown correctly
|
|
ksort($this->answers);
|
|
foreach ($this->answers as $answer) {
|
|
$newitemid = $DB->insert_record('lesson_answers', $answer);
|
|
$this->set_mapping('lesson_answer', $answer->id, $newitemid, true);
|
|
|
|
// Update the lesson attempts to use the newly created answerid
|
|
$DB->set_field('lesson_attempts', 'answerid', $newitemid, array(
|
|
'lessonid' => $answer->lessonid,
|
|
'pageid' => $answer->pageid,
|
|
'answerid' => $answer->id));
|
|
}
|
|
|
|
// Add lesson files, no need to match by itemname (just internally handled context).
|
|
$this->add_related_files('mod_lesson', 'intro', null);
|
|
$this->add_related_files('mod_lesson', 'mediafile', null);
|
|
// Add lesson page files, by lesson_page itemname
|
|
$this->add_related_files('mod_lesson', 'page_contents', 'lesson_page');
|
|
$this->add_related_files('mod_lesson', 'page_answers', 'lesson_answer');
|
|
$this->add_related_files('mod_lesson', 'page_responses', 'lesson_answer');
|
|
$this->add_related_files('mod_lesson', 'essay_responses', 'lesson_attempt');
|
|
$this->add_related_files('mod_lesson', 'essay_answers', 'lesson_attempt');
|
|
|
|
// Remap all the restored prevpageid and nextpageid now that we have all the pages and their mappings
|
|
$rs = $DB->get_recordset('lesson_pages', array('lessonid' => $this->task->get_activityid()),
|
|
'', 'id, prevpageid, nextpageid');
|
|
foreach ($rs as $page) {
|
|
$page->prevpageid = (empty($page->prevpageid)) ? 0 : $this->get_mappingid('lesson_page', $page->prevpageid);
|
|
$page->nextpageid = (empty($page->nextpageid)) ? 0 : $this->get_mappingid('lesson_page', $page->nextpageid);
|
|
$DB->update_record('lesson_pages', $page);
|
|
}
|
|
$rs->close();
|
|
|
|
// Remap all the restored 'jumpto' fields now that we have all the pages and their mappings
|
|
$rs = $DB->get_recordset('lesson_answers', array('lessonid' => $this->task->get_activityid()),
|
|
'', 'id, jumpto');
|
|
foreach ($rs as $answer) {
|
|
if ($answer->jumpto > 0) {
|
|
$answer->jumpto = $this->get_mappingid('lesson_page', $answer->jumpto);
|
|
$DB->update_record('lesson_answers', $answer);
|
|
}
|
|
}
|
|
$rs->close();
|
|
|
|
// Remap all the restored 'nextpageid' fields now that we have all the pages and their mappings.
|
|
$rs = $DB->get_recordset('lesson_branch', array('lessonid' => $this->task->get_activityid()),
|
|
'', 'id, nextpageid');
|
|
foreach ($rs as $answer) {
|
|
if ($answer->nextpageid > 0) {
|
|
$answer->nextpageid = $this->get_mappingid('lesson_page', $answer->nextpageid);
|
|
$DB->update_record('lesson_branch', $answer);
|
|
}
|
|
}
|
|
$rs->close();
|
|
|
|
// Replay the upgrade step 2015030301
|
|
// to clean lesson answers that should be plain text.
|
|
// 1 = LESSON_PAGE_SHORTANSWER, 8 = LESSON_PAGE_NUMERICAL, 20 = LESSON_PAGE_BRANCHTABLE.
|
|
|
|
$sql = 'SELECT a.*
|
|
FROM {lesson_answers} a
|
|
JOIN {lesson_pages} p ON p.id = a.pageid
|
|
WHERE a.answerformat <> :format
|
|
AND a.lessonid = :lessonid
|
|
AND p.qtype IN (1, 8, 20)';
|
|
$badanswers = $DB->get_recordset_sql($sql, array('lessonid' => $this->task->get_activityid(), 'format' => FORMAT_MOODLE));
|
|
|
|
foreach ($badanswers as $badanswer) {
|
|
// Strip tags from answer text and convert back the format to FORMAT_MOODLE.
|
|
$badanswer->answer = strip_tags($badanswer->answer);
|
|
$badanswer->answerformat = FORMAT_MOODLE;
|
|
$DB->update_record('lesson_answers', $badanswer);
|
|
}
|
|
$badanswers->close();
|
|
|
|
// Replay the upgrade step 2015032700.
|
|
// Delete any orphaned lesson_branch record.
|
|
if ($DB->get_dbfamily() === 'mysql') {
|
|
$sql = "DELETE {lesson_branch}
|
|
FROM {lesson_branch}
|
|
LEFT JOIN {lesson_pages}
|
|
ON {lesson_branch}.pageid = {lesson_pages}.id
|
|
WHERE {lesson_pages}.id IS NULL";
|
|
} else {
|
|
$sql = "DELETE FROM {lesson_branch}
|
|
WHERE NOT EXISTS (
|
|
SELECT 'x' FROM {lesson_pages}
|
|
WHERE {lesson_branch}.pageid = {lesson_pages}.id)";
|
|
}
|
|
|
|
$DB->execute($sql);
|
|
}
|
|
}
|
|
|