MDL-53716 competency: Do not restore competencies when disabled
[moodle.git] / backup / moodle2 / restore_stepslib.php
CommitLineData
482aac65
EL
1<?php
2
3// This file is part of Moodle - http://moodle.org/
4//
5// Moodle is free software: you can redistribute it and/or modify
6// it under the terms of the GNU General Public License as published by
7// the Free Software Foundation, either version 3 of the License, or
8// (at your option) any later version.
9//
10// Moodle is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13// GNU General Public License for more details.
14//
15// You should have received a copy of the GNU General Public License
16// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17
18/**
f9dab4be
DM
19 * Defines various restore steps that will be used by common tasks in restore
20 *
21 * @package core_backup
22 * @subpackage moodle2
23 * @category backup
24 * @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
25 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
482aac65
EL
26 */
27
f9dab4be 28defined('MOODLE_INTERNAL') || die();
482aac65
EL
29
30/**
31 * delete old directories and conditionally create backup_temp_ids table
32 */
33class restore_create_and_clean_temp_stuff extends restore_execution_step {
34
35 protected function define_execution() {
b8bb45b0 36 $exists = restore_controller_dbops::create_restore_temp_tables($this->get_restoreid()); // temp tables conditionally
482aac65
EL
37 // If the table already exists, it's because restore_prechecks have been executed in the same
38 // request (without problems) and it already contains a bunch of preloaded information (users...)
39 // that we aren't going to execute again
40 if ($exists) { // Inform plan about preloaded information
41 $this->task->set_preloaded_information();
42 }
76cfb124
EL
43 // Create the old-course-ctxid to new-course-ctxid mapping, we need that available since the beginning
44 $itemid = $this->task->get_old_contextid();
a689cd1d 45 $newitemid = context_course::instance($this->get_courseid())->id;
76cfb124 46 restore_dbops::set_backup_ids_record($this->get_restoreid(), 'context', $itemid, $newitemid);
c0440b3f
EL
47 // Create the old-system-ctxid to new-system-ctxid mapping, we need that available since the beginning
48 $itemid = $this->task->get_old_system_contextid();
a689cd1d 49 $newitemid = context_system::instance()->id;
c0440b3f 50 restore_dbops::set_backup_ids_record($this->get_restoreid(), 'context', $itemid, $newitemid);
d90e49f2
EL
51 // Create the old-course-id to new-course-id mapping, we need that available since the beginning
52 $itemid = $this->task->get_old_courseid();
53 $newitemid = $this->get_courseid();
54 restore_dbops::set_backup_ids_record($this->get_restoreid(), 'course', $itemid, $newitemid);
55
482aac65
EL
56 }
57}
58
59/**
60 * delete the temp dir used by backup/restore (conditionally),
61 * delete old directories and drop temp ids table
62 */
63class restore_drop_and_clean_temp_stuff extends restore_execution_step {
64
65 protected function define_execution() {
66 global $CFG;
b8bb45b0 67 restore_controller_dbops::drop_restore_temp_tables($this->get_restoreid()); // Drop ids temp table
1cd39657 68 $progress = $this->task->get_progress();
69 $progress->start_progress('Deleting backup dir');
1f3b2356 70 backup_helper::delete_old_backup_dirs(strtotime('-1 week'), $progress); // Delete > 1 week old temp dirs.
482aac65 71 if (empty($CFG->keeptempdirectoriesonbackup)) { // Conditionally
1cd39657 72 backup_helper::delete_backup_dir($this->task->get_tempdir(), $progress); // Empty restore dir
482aac65 73 }
1cd39657 74 $progress->end_progress();
482aac65
EL
75 }
76}
77
0067d939
AD
78/**
79 * Restore calculated grade items, grade categories etc
80 */
9a20df96 81class restore_gradebook_structure_step extends restore_structure_step {
0067d939 82
a0d27102
AD
83 /**
84 * To conditionally decide if this step must be executed
85 * Note the "settings" conditions are evaluated in the
86 * corresponding task. Here we check for other conditions
87 * not being restore settings (files, site settings...)
88 */
89 protected function execute_condition() {
9a20df96 90 global $CFG, $DB;
a0d27102 91
03c39daa
DM
92 if ($this->get_courseid() == SITEID) {
93 return false;
94 }
95
a0d27102
AD
96 // No gradebook info found, don't execute
97 $fullpath = $this->task->get_taskbasepath();
98 $fullpath = rtrim($fullpath, '/') . '/' . $this->filename;
99 if (!file_exists($fullpath)) {
100 return false;
101 }
102
58328ce8
EL
103 // Some module present in backup file isn't available to restore
104 // in this site, don't execute
105 if ($this->task->is_missing_modules()) {
106 return false;
107 }
108
109 // Some activity has been excluded to be restored, don't execute
110 if ($this->task->is_excluding_activities()) {
111 return false;
112 }
113
9a20df96
AD
114 // There should only be one grade category (the 1 associated with the course itself)
115 // If other categories already exist we're restoring into an existing course.
116 // Restoring categories into a course with an existing category structure is unlikely to go well
117 $category = new stdclass();
118 $category->courseid = $this->get_courseid();
119 $catcount = $DB->count_records('grade_categories', (array)$category);
120 if ($catcount>1) {
121 return false;
122 }
123
a0d27102
AD
124 // Arrived here, execute the step
125 return true;
126 }
127
0067d939
AD
128 protected function define_structure() {
129 $paths = array();
130 $userinfo = $this->task->get_setting_value('users');
131
132 $paths[] = new restore_path_element('gradebook', '/gradebook');
133 $paths[] = new restore_path_element('grade_category', '/gradebook/grade_categories/grade_category');
134 $paths[] = new restore_path_element('grade_item', '/gradebook/grade_items/grade_item');
135 if ($userinfo) {
136 $paths[] = new restore_path_element('grade_grade', '/gradebook/grade_items/grade_item/grade_grades/grade_grade');
137 }
138 $paths[] = new restore_path_element('grade_letter', '/gradebook/grade_letters/grade_letter');
b8040c83 139 $paths[] = new restore_path_element('grade_setting', '/gradebook/grade_settings/grade_setting');
0067d939
AD
140
141 return $paths;
142 }
143
144 protected function process_gradebook($data) {
deb3d5ed
MG
145 // For non-merge restore types:
146 // Unset 'gradebook_calculations_freeze_' in the course and replace with the one from the backup.
147 $target = $this->get_task()->get_target();
148 if ($target == backup::TARGET_CURRENT_DELETING || $target == backup::TARGET_EXISTING_DELETING) {
149 set_config('gradebook_calculations_freeze_' . $this->get_courseid(), null);
150 }
fd36588f 151 if (!empty($data['calculations_freeze'])) {
deb3d5ed
MG
152 if ($target == backup::TARGET_NEW_COURSE || $target == backup::TARGET_CURRENT_DELETING ||
153 $target == backup::TARGET_EXISTING_DELETING) {
154 set_config('gradebook_calculations_freeze_' . $this->get_courseid(), $data['calculations_freeze']);
155 }
156 }
0067d939
AD
157 }
158
159 protected function process_grade_item($data) {
160 global $DB;
161
162 $data = (object)$data;
163
164 $oldid = $data->id;
165 $data->course = $this->get_courseid();
166
167 $data->courseid = $this->get_courseid();
168
0067d939 169 if ($data->itemtype=='manual') {
d46badb1 170 // manual grade items store category id in categoryid
98529b00 171 $data->categoryid = $this->get_mappingid('grade_category', $data->categoryid, NULL);
05b73370
FW
172 // if mapping failed put in course's grade category
173 if (NULL == $data->categoryid) {
174 $coursecat = grade_category::fetch_course_category($this->get_courseid());
175 $data->categoryid = $coursecat->id;
176 }
d46badb1
DM
177 } else if ($data->itemtype=='course') {
178 // course grade item stores their category id in iteminstance
179 $coursecat = grade_category::fetch_course_category($this->get_courseid());
180 $data->iteminstance = $coursecat->id;
181 } else if ($data->itemtype=='category') {
182 // category grade items store their category id in iteminstance
98529b00 183 $data->iteminstance = $this->get_mappingid('grade_category', $data->iteminstance, NULL);
d46badb1
DM
184 } else {
185 throw new restore_step_exception('unexpected_grade_item_type', $data->itemtype);
0067d939
AD
186 }
187
98529b00
AD
188 $data->scaleid = $this->get_mappingid('scale', $data->scaleid, NULL);
189 $data->outcomeid = $this->get_mappingid('outcome', $data->outcomeid, NULL);
0067d939
AD
190
191 $data->locktime = $this->apply_date_offset($data->locktime);
192 $data->timecreated = $this->apply_date_offset($data->timecreated);
193 $data->timemodified = $this->apply_date_offset($data->timemodified);
194
44a25cd2 195 $coursecategory = $newitemid = null;
0067d939
AD
196 //course grade item should already exist so updating instead of inserting
197 if($data->itemtype=='course') {
0067d939
AD
198 //get the ID of the already created grade item
199 $gi = new stdclass();
200 $gi->courseid = $this->get_courseid();
0067d939 201 $gi->itemtype = $data->itemtype;
98529b00
AD
202
203 //need to get the id of the grade_category that was automatically created for the course
204 $category = new stdclass();
205 $category->courseid = $this->get_courseid();
206 $category->parent = null;
207 //course category fullname starts out as ? but may be edited
208 //$category->fullname = '?';
209 $coursecategory = $DB->get_record('grade_categories', (array)$category);
210 $gi->iteminstance = $coursecategory->id;
0067d939
AD
211
212 $existinggradeitem = $DB->get_record('grade_items', (array)$gi);
44a25cd2
AD
213 if (!empty($existinggradeitem)) {
214 $data->id = $newitemid = $existinggradeitem->id;
215 $DB->update_record('grade_items', $data);
216 }
8f27b77b
AO
217 } else if ($data->itemtype == 'manual') {
218 // Manual items aren't assigned to a cm, so don't go duplicating them in the target if one exists.
219 $gi = array(
220 'itemtype' => $data->itemtype,
221 'courseid' => $data->courseid,
222 'itemname' => $data->itemname,
223 'categoryid' => $data->categoryid,
224 );
225 $newitemid = $DB->get_field('grade_items', 'id', $gi);
44a25cd2 226 }
0067d939 227
44a25cd2
AD
228 if (empty($newitemid)) {
229 //in case we found the course category but still need to insert the course grade item
230 if ($data->itemtype=='course' && !empty($coursecategory)) {
231 $data->iteminstance = $coursecategory->id;
232 }
034ef761 233
0067d939
AD
234 $newitemid = $DB->insert_record('grade_items', $data);
235 }
236 $this->set_mapping('grade_item', $oldid, $newitemid);
237 }
238
239 protected function process_grade_grade($data) {
240 global $DB;
241
242 $data = (object)$data;
167eb033 243 $oldid = $data->id;
3ea13309 244 $olduserid = $data->userid;
0067d939
AD
245
246 $data->itemid = $this->get_new_parentid('grade_item');
247
3ea13309
EL
248 $data->userid = $this->get_mappingid('user', $data->userid, null);
249 if (!empty($data->userid)) {
250 $data->usermodified = $this->get_mappingid('user', $data->usermodified, null);
a1a2cc59
RT
251 $data->locktime = $this->apply_date_offset($data->locktime);
252 // TODO: Ask, all the rest of locktime/exported... work with time... to be rolled?
253 $data->overridden = $this->apply_date_offset($data->overridden);
254 $data->timecreated = $this->apply_date_offset($data->timecreated);
255 $data->timemodified = $this->apply_date_offset($data->timemodified);
256
98fed696
FM
257 $gradeexists = $DB->record_exists('grade_grades', array('userid' => $data->userid, 'itemid' => $data->itemid));
258 if ($gradeexists) {
259 $message = "User id '{$data->userid}' already has a grade entry for grade item id '{$data->itemid}'";
260 $this->log($message, backup::LOG_DEBUG);
261 } else {
262 $newitemid = $DB->insert_record('grade_grades', $data);
167eb033 263 $this->set_mapping('grade_grades', $oldid, $newitemid);
98fed696 264 }
a1a2cc59 265 } else {
62182e89 266 $message = "Mapped user id not found for user id '{$olduserid}', grade item id '{$data->itemid}'";
267 $this->log($message, backup::LOG_DEBUG);
a1a2cc59 268 }
0067d939 269 }
3ea13309 270
0067d939
AD
271 protected function process_grade_category($data) {
272 global $DB;
273
274 $data = (object)$data;
275 $oldid = $data->id;
276
277 $data->course = $this->get_courseid();
278 $data->courseid = $data->course;
279
280 $data->timecreated = $this->apply_date_offset($data->timecreated);
281 $data->timemodified = $this->apply_date_offset($data->timemodified);
282
499dbce8
AD
283 $newitemid = null;
284 //no parent means a course level grade category. That may have been created when the course was created
0067d939 285 if(empty($data->parent)) {
499dbce8
AD
286 //parent was being saved as 0 when it should be null
287 $data->parent = null;
288
0067d939
AD
289 //get the already created course level grade category
290 $category = new stdclass();
499dbce8 291 $category->courseid = $this->get_courseid();
41f21f92 292 $category->parent = null;
0067d939
AD
293
294 $coursecategory = $DB->get_record('grade_categories', (array)$category);
499dbce8
AD
295 if (!empty($coursecategory)) {
296 $data->id = $newitemid = $coursecategory->id;
297 $DB->update_record('grade_categories', $data);
298 }
299 }
0067d939 300
47d6e6a7
DW
301 // Add a warning about a removed setting.
302 if (!empty($data->aggregatesubcats)) {
303 set_config('show_aggregatesubcats_upgrade_' . $data->courseid, 1);
304 }
305
499dbce8
AD
306 //need to insert a course category
307 if (empty($newitemid)) {
0067d939
AD
308 $newitemid = $DB->insert_record('grade_categories', $data);
309 }
310 $this->set_mapping('grade_category', $oldid, $newitemid);
0067d939
AD
311 }
312 protected function process_grade_letter($data) {
313 global $DB;
314
315 $data = (object)$data;
316 $oldid = $data->id;
317
a689cd1d 318 $data->contextid = context_course::instance($this->get_courseid())->id;
0067d939 319
67d4424a
DM
320 $gradeletter = (array)$data;
321 unset($gradeletter['id']);
322 if (!$DB->record_exists('grade_letters', $gradeletter)) {
5bc8335c
JF
323 $newitemid = $DB->insert_record('grade_letters', $data);
324 } else {
325 $newitemid = $data->id;
326 }
327
0067d939
AD
328 $this->set_mapping('grade_letter', $oldid, $newitemid);
329 }
b8040c83
AD
330 protected function process_grade_setting($data) {
331 global $DB;
332
333 $data = (object)$data;
334 $oldid = $data->id;
335
336 $data->courseid = $this->get_courseid();
337
eff864e7
FM
338 $target = $this->get_task()->get_target();
339 if ($data->name == 'minmaxtouse' &&
340 ($target == backup::TARGET_CURRENT_ADDING || $target == backup::TARGET_EXISTING_ADDING)) {
341 // We never restore minmaxtouse during merge.
342 return;
343 }
344
924b8d72
JPG
345 if (!$DB->record_exists('grade_settings', array('courseid' => $data->courseid, 'name' => $data->name))) {
346 $newitemid = $DB->insert_record('grade_settings', $data);
347 } else {
348 $newitemid = $data->id;
349 }
350
eff864e7
FM
351 if (!empty($oldid)) {
352 // In rare cases (minmaxtouse), it is possible that there wasn't any ID associated with the setting.
353 $this->set_mapping('grade_setting', $oldid, $newitemid);
354 }
b8040c83 355 }
0f94550c 356
7bbf4166
SH
357 /**
358 * put all activity grade items in the correct grade category and mark all for recalculation
359 */
c4d2c745
AD
360 protected function after_execute() {
361 global $DB;
362
c4d2c745
AD
363 $conditions = array(
364 'backupid' => $this->get_restoreid(),
365 'itemname' => 'grade_item'//,
366 //'itemid' => $itemid
367 );
368 $rs = $DB->get_recordset('backup_ids_temp', $conditions);
369
7bbf4166
SH
370 // We need this for calculation magic later on.
371 $mappings = array();
372
c4d2c745
AD
373 if (!empty($rs)) {
374 foreach($rs as $grade_item_backup) {
7bbf4166
SH
375
376 // Store the oldid with the new id.
377 $mappings[$grade_item_backup->itemid] = $grade_item_backup->newitemid;
378
0f94550c
AD
379 $updateobj = new stdclass();
380 $updateobj->id = $grade_item_backup->newitemid;
074a765f 381
0f94550c
AD
382 //if this is an activity grade item that needs to be put back in its correct category
383 if (!empty($grade_item_backup->parentitemid)) {
d46badb1
DM
384 $oldcategoryid = $this->get_mappingid('grade_category', $grade_item_backup->parentitemid, null);
385 if (!is_null($oldcategoryid)) {
386 $updateobj->categoryid = $oldcategoryid;
387 $DB->update_record('grade_items', $updateobj);
388 }
074a765f 389 } else {
0f94550c
AD
390 //mark course and category items as needing to be recalculated
391 $updateobj->needsupdate=1;
d46badb1 392 $DB->update_record('grade_items', $updateobj);
c4d2c745 393 }
9a20df96
AD
394 }
395 }
396 $rs->close();
0f94550c 397
7bbf4166
SH
398 // We need to update the calculations for calculated grade items that may reference old
399 // grade item ids using ##gi\d+##.
c8fbcaab
EL
400 // $mappings can be empty, use 0 if so (won't match ever)
401 list($sql, $params) = $DB->get_in_or_equal(array_values($mappings), SQL_PARAMS_NAMED, 'param', true, 0);
7bbf4166
SH
402 $sql = "SELECT gi.id, gi.calculation
403 FROM {grade_items} gi
404 WHERE gi.id {$sql} AND
405 calculation IS NOT NULL";
406 $rs = $DB->get_recordset_sql($sql, $params);
407 foreach ($rs as $gradeitem) {
408 // Collect all of the used grade item id references
409 if (preg_match_all('/##gi(\d+)##/', $gradeitem->calculation, $matches) < 1) {
410 // This calculation doesn't reference any other grade items... EASY!
411 continue;
412 }
413 // For this next bit we are going to do the replacement of id's in two steps:
414 // 1. We will replace all old id references with a special mapping reference.
415 // 2. We will replace all mapping references with id's
416 // Why do we do this?
417 // Because there potentially there will be an overlap of ids within the query and we
418 // we substitute the wrong id.. safest way around this is the two step system
419 $calculationmap = array();
420 $mapcount = 0;
421 foreach ($matches[1] as $match) {
422 // Check that the old id is known to us, if not it was broken to begin with and will
423 // continue to be broken.
424 if (!array_key_exists($match, $mappings)) {
425 continue;
426 }
427 // Our special mapping key
428 $mapping = '##MAPPING'.$mapcount.'##';
429 // The old id that exists within the calculation now
430 $oldid = '##gi'.$match.'##';
431 // The new id that we want to replace the old one with.
432 $newid = '##gi'.$mappings[$match].'##';
433 // Replace in the special mapping key
434 $gradeitem->calculation = str_replace($oldid, $mapping, $gradeitem->calculation);
435 // And record the mapping
436 $calculationmap[$mapping] = $newid;
437 $mapcount++;
438 }
439 // Iterate all special mappings for this calculation and replace in the new id's
440 foreach ($calculationmap as $mapping => $newid) {
441 $gradeitem->calculation = str_replace($mapping, $newid, $gradeitem->calculation);
442 }
443 // Update the calculation now that its being remapped
444 $DB->update_record('grade_items', $gradeitem);
445 }
446 $rs->close();
447
a60835c7 448 // Need to correct the grade category path and parent
9a20df96
AD
449 $conditions = array(
450 'courseid' => $this->get_courseid()
451 );
034ef761 452
9a20df96 453 $rs = $DB->get_recordset('grade_categories', $conditions);
a60835c7
TH
454 // Get all the parents correct first as grade_category::build_path() loads category parents from the DB
455 foreach ($rs as $gc) {
456 if (!empty($gc->parent)) {
457 $grade_category = new stdClass();
458 $grade_category->id = $gc->id;
459 $grade_category->parent = $this->get_mappingid('grade_category', $gc->parent);
460 $DB->update_record('grade_categories', $grade_category);
9a20df96
AD
461 }
462 }
9a20df96
AD
463 $rs->close();
464
a60835c7 465 // Now we can rebuild all the paths
9a20df96 466 $rs = $DB->get_recordset('grade_categories', $conditions);
a60835c7
TH
467 foreach ($rs as $gc) {
468 $grade_category = new stdClass();
469 $grade_category->id = $gc->id;
470 $grade_category->path = grade_category::build_path($gc);
471 $grade_category->depth = substr_count($grade_category->path, '/') - 1;
472 $DB->update_record('grade_categories', $grade_category);
c4d2c745
AD
473 }
474 $rs->close();
98529b00 475
cd4061ec
FM
476 // Check what to do with the minmaxtouse setting.
477 $this->check_minmaxtouse();
478
deb3d5ed
MG
479 // Freeze gradebook calculations if needed.
480 $this->gradebook_calculation_freeze();
481
a60835c7 482 // Restore marks items as needing update. Update everything now.
98529b00 483 grade_regrade_final_grades($this->get_courseid());
c4d2c745 484 }
deb3d5ed
MG
485
486 /**
487 * Freeze gradebook calculation if needed.
488 *
489 * This is similar to various upgrade scripts that check if the freeze is needed.
490 */
491 protected function gradebook_calculation_freeze() {
492 global $CFG;
493 $gradebookcalculationsfreeze = get_config('core', 'gradebook_calculations_freeze_' . $this->get_courseid());
494 preg_match('/(\d{8})/', $this->get_task()->get_info()->moodle_release, $matches);
495 $backupbuild = (int)$matches[1];
156d0486
MG
496
497 // Extra credits need adjustments only for backups made between 2.8 release (20141110) and the fix release (20150619).
498 if (!$gradebookcalculationsfreeze && $backupbuild >= 20141110 && $backupbuild < 20150619) {
499 require_once($CFG->libdir . '/db/upgradelib.php');
500 upgrade_extra_credit_weightoverride($this->get_courseid());
501 }
4d4dcc27
AG
502 // Calculated grade items need recalculating for backups made between 2.8 release (20141110) and the fix release (20150627).
503 if (!$gradebookcalculationsfreeze && $backupbuild >= 20141110 && $backupbuild < 20150627) {
504 require_once($CFG->libdir . '/db/upgradelib.php');
505 upgrade_calculated_grade_items($this->get_courseid());
506 }
deb3d5ed 507 }
cd4061ec
FM
508
509 /**
510 * Checks what should happen with the course grade setting minmaxtouse.
511 *
512 * This is related to the upgrade step at the time the setting was added.
513 *
514 * @see MDL-48618
515 * @return void
516 */
517 protected function check_minmaxtouse() {
518 global $CFG, $DB;
519 require_once($CFG->libdir . '/gradelib.php');
520
521 $userinfo = $this->task->get_setting_value('users');
522 $settingname = 'minmaxtouse';
523 $courseid = $this->get_courseid();
524 $minmaxtouse = $DB->get_field('grade_settings', 'value', array('courseid' => $courseid, 'name' => $settingname));
525 $version28start = 2014111000.00;
526 $version28last = 2014111006.05;
527 $version29start = 2015051100.00;
528 $version29last = 2015060400.02;
529
35af60da 530 $target = $this->get_task()->get_target();
eff864e7
FM
531 if ($minmaxtouse === false &&
532 ($target != backup::TARGET_CURRENT_ADDING && $target != backup::TARGET_EXISTING_ADDING)) {
cd4061ec 533 // The setting was not found because this setting did not exist at the time the backup was made.
eff864e7 534 // And we are not restoring as merge, in which case we leave the course as it was.
cd4061ec
FM
535 $version = $this->get_task()->get_info()->moodle_version;
536
537 if ($version < $version28start) {
538 // We need to set it to use grade_item, but only if the site-wide setting is different. No need to notice them.
539 if ($CFG->grade_minmaxtouse != GRADE_MIN_MAX_FROM_GRADE_ITEM) {
540 grade_set_setting($courseid, $settingname, GRADE_MIN_MAX_FROM_GRADE_ITEM);
541 }
542
543 } else if (($version >= $version28start && $version < $version28last) ||
544 ($version >= $version29start && $version < $version29last)) {
545 // They should be using grade_grade when the course has inconsistencies.
546
547 $sql = "SELECT gi.id
548 FROM {grade_items} gi
549 JOIN {grade_grades} gg
550 ON gg.itemid = gi.id
551 WHERE gi.courseid = ?
552 AND (gi.itemtype != ? AND gi.itemtype != ?)
553 AND (gg.rawgrademax != gi.grademax OR gg.rawgrademin != gi.grademin)";
554
555 // The course can only have inconsistencies when we restore the user info,
556 // we do not need to act on existing grades that were not restored as part of this backup.
557 if ($userinfo && $DB->record_exists_sql($sql, array($courseid, 'course', 'category'))) {
558
559 // Display the notice as we do during upgrade.
560 set_config('show_min_max_grades_changed_' . $courseid, 1);
561
562 if ($CFG->grade_minmaxtouse != GRADE_MIN_MAX_FROM_GRADE_GRADE) {
563 // We need set the setting as their site-wise setting is not GRADE_MIN_MAX_FROM_GRADE_GRADE.
564 // If they are using the site-wide grade_grade setting, we only want to notice them.
565 grade_set_setting($courseid, $settingname, GRADE_MIN_MAX_FROM_GRADE_GRADE);
566 }
567 }
568
569 } else {
570 // This should never happen because from now on minmaxtouse is always saved in backups.
571 }
572 }
573 }
0067d939
AD
574}
575
167eb033
FM
576/**
577 * Step in charge of restoring the grade history of a course.
578 *
579 * The execution conditions are itendical to {@link restore_gradebook_structure_step} because
580 * we do not want to restore the history if the gradebook and its content has not been
581 * restored. At least for now.
582 */
583class restore_grade_history_structure_step extends restore_structure_step {
584
585 protected function execute_condition() {
586 global $CFG, $DB;
587
03c39daa
DM
588 if ($this->get_courseid() == SITEID) {
589 return false;
590 }
591
167eb033
FM
592 // No gradebook info found, don't execute.
593 $fullpath = $this->task->get_taskbasepath();
594 $fullpath = rtrim($fullpath, '/') . '/' . $this->filename;
595 if (!file_exists($fullpath)) {
596 return false;
597 }
598
599 // Some module present in backup file isn't available to restore in this site, don't execute.
600 if ($this->task->is_missing_modules()) {
601 return false;
602 }
603
604 // Some activity has been excluded to be restored, don't execute.
605 if ($this->task->is_excluding_activities()) {
606 return false;
607 }
608
609 // There should only be one grade category (the 1 associated with the course itself).
610 $category = new stdclass();
611 $category->courseid = $this->get_courseid();
612 $catcount = $DB->count_records('grade_categories', (array)$category);
613 if ($catcount > 1) {
614 return false;
615 }
616
617 // Arrived here, execute the step.
618 return true;
619 }
620
621 protected function define_structure() {
622 $paths = array();
623
624 // Settings to use.
625 $userinfo = $this->get_setting_value('users');
626 $history = $this->get_setting_value('grade_histories');
627
628 if ($userinfo && $history) {
629 $paths[] = new restore_path_element('grade_grade',
630 '/grade_history/grade_grades/grade_grade');
631 }
632
633 return $paths;
634 }
635
636 protected function process_grade_grade($data) {
637 global $DB;
638
639 $data = (object)($data);
640 $olduserid = $data->userid;
641 unset($data->id);
642
643 $data->userid = $this->get_mappingid('user', $data->userid, null);
644 if (!empty($data->userid)) {
645 // Do not apply the date offsets as this is history.
646 $data->itemid = $this->get_mappingid('grade_item', $data->itemid);
647 $data->oldid = $this->get_mappingid('grade_grades', $data->oldid);
648 $data->usermodified = $this->get_mappingid('user', $data->usermodified, null);
649 $data->rawscaleid = $this->get_mappingid('scale', $data->rawscaleid);
650 $DB->insert_record('grade_grades_history', $data);
651 } else {
652 $message = "Mapped user id not found for user id '{$olduserid}', grade item id '{$data->itemid}'";
653 $this->log($message, backup::LOG_DEBUG);
654 }
655 }
656
657}
658
394edb7e
EL
659/**
660 * decode all the interlinks present in restored content
661 * relying 100% in the restore_decode_processor that handles
662 * both the contents to modify and the rules to be applied
663 */
664class restore_decode_interlinks extends restore_execution_step {
665
666 protected function define_execution() {
9f68f2d5
EL
667 // Get the decoder (from the plan)
668 $decoder = $this->task->get_decoder();
669 restore_decode_processor::register_link_decoders($decoder); // Add decoder contents and rules
670 // And launch it, everything will be processed
671 $decoder->execute();
394edb7e
EL
672 }
673}
674
675/**
e3c2e1b2
EL
676 * first, ensure that we have no gaps in section numbers
677 * and then, rebuid the course cache
394edb7e
EL
678 */
679class restore_rebuild_course_cache extends restore_execution_step {
680
681 protected function define_execution() {
e3c2e1b2
EL
682 global $DB;
683
684 // Although there is some sort of auto-recovery of missing sections
685 // present in course/formats... here we check that all the sections
686 // from 0 to MAX(section->section) exist, creating them if necessary
687 $maxsection = $DB->get_field('course_sections', 'MAX(section)', array('course' => $this->get_courseid()));
688 // Iterate over all sections
689 for ($i = 0; $i <= $maxsection; $i++) {
690 // If the section $i doesn't exist, create it
691 if (!$DB->record_exists('course_sections', array('course' => $this->get_courseid(), 'section' => $i))) {
692 $sectionrec = array(
693 'course' => $this->get_courseid(),
694 'section' => $i);
695 $DB->insert_record('course_sections', $sectionrec); // missing section created
696 }
697 }
698
699 // Rebuild cache now that all sections are in place
394edb7e 700 rebuild_course_cache($this->get_courseid());
cdb6045d
MG
701 cache_helper::purge_by_event('changesincourse');
702 cache_helper::purge_by_event('changesincoursecat');
394edb7e
EL
703 }
704}
705
648a575e
EL
706/**
707 * Review all the tasks having one after_restore method
708 * executing it to perform some final adjustments of information
709 * not available when the task was executed.
710 */
711class restore_execute_after_restore extends restore_execution_step {
712
713 protected function define_execution() {
714
715 // Simply call to the execute_after_restore() method of the task
716 // that always is the restore_final_task
717 $this->task->launch_execute_after_restore();
718 }
719}
720
b8e455a7
EL
721
722/**
723 * Review all the (pending) block positions in backup_ids, matching by
724 * contextid, creating positions as needed. This is executed by the
725 * final task, once all the contexts have been created
726 */
727class restore_review_pending_block_positions extends restore_execution_step {
728
729 protected function define_execution() {
730 global $DB;
731
732 // Get all the block_position objects pending to match
733 $params = array('backupid' => $this->get_restoreid(), 'itemname' => 'block_position');
3e7e2ab2 734 $rs = $DB->get_recordset('backup_ids_temp', $params, '', 'itemid, info');
b8e455a7
EL
735 // Process block positions, creating them or accumulating for final step
736 foreach($rs as $posrec) {
3e7e2ab2
RS
737 // Get the complete position object out of the info field.
738 $position = backup_controller_dbops::decode_backup_temp_info($posrec->info);
b8e455a7
EL
739 // If position is for one already mapped (known) contextid
740 // process it now, creating the position, else nothing to
741 // do, position finally discarded
742 if ($newctx = restore_dbops::get_backup_ids_record($this->get_restoreid(), 'context', $position->contextid)) {
743 $position->contextid = $newctx->newitemid;
744 // Create the block position
745 $DB->insert_record('block_positions', $position);
746 }
747 }
748 $rs->close();
749 }
750}
751
38674ef9 752
753/**
754 * Updates the availability data for course modules and sections.
755 *
756 * Runs after the restore of all course modules, sections, and grade items has
757 * completed. This is necessary in order to update IDs that have changed during
758 * restore.
759 *
760 * @package core_backup
761 * @copyright 2014 The Open University
762 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
763 */
764class restore_update_availability extends restore_execution_step {
765
766 protected function define_execution() {
767 global $CFG, $DB;
768
769 // Note: This code runs even if availability is disabled when restoring.
770 // That will ensure that if you later turn availability on for the site,
771 // there will be no incorrect IDs. (It doesn't take long if the restored
772 // data does not contain any availability information.)
773
774 // Get modinfo with all data after resetting cache.
775 rebuild_course_cache($this->get_courseid(), true);
776 $modinfo = get_fast_modinfo($this->get_courseid());
777
5176504d 778 // Get the date offset for this restore.
779 $dateoffset = $this->apply_date_offset(1) - 1;
780
38674ef9 781 // Update all sections that were restored.
782 $params = array('backupid' => $this->get_restoreid(), 'itemname' => 'course_section');
783 $rs = $DB->get_recordset('backup_ids_temp', $params, '', 'newitemid');
784 $sectionsbyid = null;
785 foreach ($rs as $rec) {
786 if (is_null($sectionsbyid)) {
787 $sectionsbyid = array();
788 foreach ($modinfo->get_section_info_all() as $section) {
789 $sectionsbyid[$section->id] = $section;
790 }
791 }
792 if (!array_key_exists($rec->newitemid, $sectionsbyid)) {
793 // If the section was not fully restored for some reason
794 // (e.g. due to an earlier error), skip it.
795 $this->get_logger()->process('Section not fully restored: id ' .
796 $rec->newitemid, backup::LOG_WARNING);
797 continue;
798 }
799 $section = $sectionsbyid[$rec->newitemid];
800 if (!is_null($section->availability)) {
801 $info = new \core_availability\info_section($section);
802 $info->update_after_restore($this->get_restoreid(),
5ef6f97f 803 $this->get_courseid(), $this->get_logger(), $dateoffset, $this->task);
38674ef9 804 }
805 }
806 $rs->close();
807
808 // Update all modules that were restored.
809 $params = array('backupid' => $this->get_restoreid(), 'itemname' => 'course_module');
810 $rs = $DB->get_recordset('backup_ids_temp', $params, '', 'newitemid');
811 foreach ($rs as $rec) {
812 if (!array_key_exists($rec->newitemid, $modinfo->cms)) {
813 // If the module was not fully restored for some reason
814 // (e.g. due to an earlier error), skip it.
815 $this->get_logger()->process('Module not fully restored: id ' .
816 $rec->newitemid, backup::LOG_WARNING);
817 continue;
818 }
819 $cm = $modinfo->get_cm($rec->newitemid);
820 if (!is_null($cm->availability)) {
821 $info = new \core_availability\info_module($cm);
822 $info->update_after_restore($this->get_restoreid(),
5ef6f97f 823 $this->get_courseid(), $this->get_logger(), $dateoffset, $this->task);
38674ef9 824 }
825 }
826 $rs->close();
827 }
828}
829
830
5095f325 831/**
38674ef9 832 * Process legacy module availability records in backup_ids.
833 *
834 * Matches course modules and grade item id once all them have been already restored.
835 * Only if all matchings are satisfied the availability condition will be created.
5095f325 836 * At the same time, it is required for the site to have that functionality enabled.
38674ef9 837 *
838 * This step is included only to handle legacy backups (2.6 and before). It does not
839 * do anything for newer backups.
840 *
841 * @copyright 2014 The Open University
842 * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
5095f325
EL
843 */
844class restore_process_course_modules_availability extends restore_execution_step {
845
846 protected function define_execution() {
847 global $CFG, $DB;
848
849 // Site hasn't availability enabled
850 if (empty($CFG->enableavailability)) {
851 return;
852 }
853
38674ef9 854 // Do both modules and sections.
855 foreach (array('module', 'section') as $table) {
856 // Get all the availability objects to process.
857 $params = array('backupid' => $this->get_restoreid(), 'itemname' => $table . '_availability');
858 $rs = $DB->get_recordset('backup_ids_temp', $params, '', 'itemid, info');
859 // Process availabilities, creating them if everything matches ok.
860 foreach ($rs as $availrec) {
861 $allmatchesok = true;
862 // Get the complete legacy availability object.
863 $availability = backup_controller_dbops::decode_backup_temp_info($availrec->info);
864
865 // Note: This code used to update IDs, but that is now handled by the
866 // current code (after restore) instead of this legacy code.
867
868 // Get showavailability option.
869 $thingid = ($table === 'module') ? $availability->coursemoduleid :
870 $availability->coursesectionid;
871 $showrec = restore_dbops::get_backup_ids_record($this->get_restoreid(),
872 $table . '_showavailability', $thingid);
873 if (!$showrec) {
874 // Should not happen.
875 throw new coding_exception('No matching showavailability record');
5095f325 876 }
38674ef9 877 $show = $showrec->info->showavailability;
878
879 // The $availability object is now in the format used in the old
880 // system. Interpret this and convert to new system.
881 $currentvalue = $DB->get_field('course_' . $table . 's', 'availability',
882 array('id' => $thingid), MUST_EXIST);
883 $newvalue = \core_availability\info::add_legacy_availability_condition(
884 $currentvalue, $availability, $show);
885 $DB->set_field('course_' . $table . 's', 'availability', $newvalue,
886 array('id' => $thingid));
5095f325
EL
887 }
888 }
889 $rs->close();
890 }
891}
892
893
482aac65
EL
894/*
895 * Execution step that, *conditionally* (if there isn't preloaded information)
896 * will load the inforef files for all the included course/section/activity tasks
897 * to backup_temp_ids. They will be stored with "xxxxref" as itemname
898 */
899class restore_load_included_inforef_records extends restore_execution_step {
900
901 protected function define_execution() {
902
903 if ($this->task->get_preloaded_information()) { // if info is already preloaded, nothing to do
904 return;
905 }
906
648a575e
EL
907 // Get all the included tasks
908 $tasks = restore_dbops::get_included_tasks($this->get_restoreid());
4fb31ae6 909 $progress = $this->task->get_progress();
910 $progress->start_progress($this->get_name(), count($tasks));
648a575e
EL
911 foreach ($tasks as $task) {
912 // Load the inforef.xml file if exists
913 $inforefpath = $task->get_taskbasepath() . '/inforef.xml';
914 if (file_exists($inforefpath)) {
4fb31ae6 915 // Load each inforef file to temp_ids.
916 restore_dbops::load_inforef_to_tempids($this->get_restoreid(), $inforefpath, $progress);
648a575e 917 }
482aac65 918 }
4fb31ae6 919 $progress->end_progress();
482aac65
EL
920 }
921}
922
76cfb124 923/*
b8bb45b0 924 * Execution step that will load all the needed files into backup_files_temp
76cfb124
EL
925 * - info: contains the whole original object (times, names...)
926 * (all them being original ids as loaded from xml)
927 */
928class restore_load_included_files extends restore_structure_step {
929
930 protected function define_structure() {
931
932 $file = new restore_path_element('file', '/files/file');
933
934 return array($file);
935 }
936
67233725 937 /**
4b6b087f 938 * Process one <file> element from files.xml
67233725 939 *
4b6b087f 940 * @param array $data the element data
67233725 941 */
76cfb124
EL
942 public function process_file($data) {
943
944 $data = (object)$data; // handy
945
76cfb124
EL
946 // load it if needed:
947 // - it it is one of the annotated inforef files (course/section/activity/block)
41941110
EL
948 // - it is one "user", "group", "grouping", "grade", "question" or "qtype_xxxx" component file (that aren't sent to inforef ever)
949 // TODO: qtype_xxx should be replaced by proper backup_qtype_plugin::get_components_and_fileareas() use,
950 // but then we'll need to change it to load plugins itself (because this is executed too early in restore)
b8bb45b0 951 $isfileref = restore_dbops::get_backup_ids_record($this->get_restoreid(), 'fileref', $data->id);
2832093f 952 $iscomponent = ($data->component == 'user' || $data->component == 'group' || $data->component == 'badges' ||
41941110
EL
953 $data->component == 'grouping' || $data->component == 'grade' ||
954 $data->component == 'question' || substr($data->component, 0, 5) == 'qtype');
76cfb124 955 if ($isfileref || $iscomponent) {
b8bb45b0 956 restore_dbops::set_backup_files_record($this->get_restoreid(), $data);
76cfb124
EL
957 }
958 }
959}
960
71a50b13
EL
961/**
962 * Execution step that, *conditionally* (if there isn't preloaded information),
963 * will load all the needed roles to backup_temp_ids. They will be stored with
964 * "role" itemname. Also it will perform one automatic mapping to roles existing
965 * in the target site, based in permissions of the user performing the restore,
966 * archetypes and other bits. At the end, each original role will have its associated
967 * target role or 0 if it's going to be skipped. Note we wrap everything over one
968 * restore_dbops method, as far as the same stuff is going to be also executed
969 * by restore prechecks
970 */
971class restore_load_and_map_roles extends restore_execution_step {
972
973 protected function define_execution() {
8d4e41f4 974 if ($this->task->get_preloaded_information()) { // if info is already preloaded
71a50b13
EL
975 return;
976 }
977
978 $file = $this->get_basepath() . '/roles.xml';
979 // Load needed toles to temp_ids
980 restore_dbops::load_roles_to_tempids($this->get_restoreid(), $file);
8d4e41f4 981
71a50b13 982 // Process roles, mapping/skipping. Any error throws exception
8d4e41f4
EL
983 // Note we pass controller's info because it can contain role mapping information
984 // about manual mappings performed by UI
985 restore_dbops::process_included_roles($this->get_restoreid(), $this->task->get_courseid(), $this->task->get_userid(), $this->task->is_samesite(), $this->task->get_info()->role_mappings);
71a50b13
EL
986 }
987}
988
482aac65
EL
989/**
990 * Execution step that, *conditionally* (if there isn't preloaded information
991 * and users have been selected in settings, will load all the needed users
992 * to backup_temp_ids. They will be stored with "user" itemname and with
76cfb124 993 * their original contextid as paremitemid
482aac65
EL
994 */
995class restore_load_included_users extends restore_execution_step {
996
997 protected function define_execution() {
998
999 if ($this->task->get_preloaded_information()) { // if info is already preloaded, nothing to do
1000 return;
1001 }
25d3cf44 1002 if (!$this->task->get_setting_value('users')) { // No userinfo being restored, nothing to do
482aac65
EL
1003 return;
1004 }
1005 $file = $this->get_basepath() . '/users.xml';
4fb31ae6 1006 // Load needed users to temp_ids.
1007 restore_dbops::load_users_to_tempids($this->get_restoreid(), $file, $this->task->get_progress());
482aac65
EL
1008 }
1009}
1010
1011/**
1012 * Execution step that, *conditionally* (if there isn't preloaded information
1013 * and users have been selected in settings, will process all the needed users
1014 * in order to decide and perform any action with them (create / map / error)
1015 * Note: Any error will cause exception, as far as this is the same processing
1016 * than the one into restore prechecks (that should have stopped process earlier)
1017 */
76cfb124 1018class restore_process_included_users extends restore_execution_step {
482aac65
EL
1019
1020 protected function define_execution() {
1021
1022 if ($this->task->get_preloaded_information()) { // if info is already preloaded, nothing to do
1023 return;
1024 }
25d3cf44 1025 if (!$this->task->get_setting_value('users')) { // No userinfo being restored, nothing to do
482aac65
EL
1026 return;
1027 }
4fb31ae6 1028 restore_dbops::process_included_users($this->get_restoreid(), $this->task->get_courseid(),
1029 $this->task->get_userid(), $this->task->is_samesite(), $this->task->get_progress());
482aac65
EL
1030 }
1031}
1032
76cfb124
EL
1033/**
1034 * Execution step that will create all the needed users as calculated
1035 * by @restore_process_included_users (those having newiteind = 0)
1036 */
1037class restore_create_included_users extends restore_execution_step {
1038
1039 protected function define_execution() {
1040
0e263705 1041 restore_dbops::create_included_users($this->get_basepath(), $this->get_restoreid(),
1042 $this->task->get_userid(), $this->task->get_progress());
76cfb124
EL
1043 }
1044}
1045
1046/**
1047 * Structure step that will create all the needed groups and groupings
1048 * by loading them from the groups.xml file performing the required matches.
1049 * Note group members only will be added if restoring user info
1050 */
1051class restore_groups_structure_step extends restore_structure_step {
1052
c0440b3f
EL
1053 protected function define_structure() {
1054
1055 $paths = array(); // Add paths here
1056
868b086c
MS
1057 // Do not include group/groupings information if not requested.
1058 $groupinfo = $this->get_setting_value('groups');
1059 if ($groupinfo) {
1060 $paths[] = new restore_path_element('group', '/groups/group');
1061 $paths[] = new restore_path_element('grouping', '/groups/groupings/grouping');
1062 $paths[] = new restore_path_element('grouping_group', '/groups/groupings/grouping/grouping_groups/grouping_group');
1063 }
c0440b3f
EL
1064 return $paths;
1065 }
1066
1067 // Processing functions go here
1068 public function process_group($data) {
1069 global $DB;
1070
1071 $data = (object)$data; // handy
1072 $data->courseid = $this->get_courseid();
1073
74b714df
ARN
1074 // Only allow the idnumber to be set if the user has permission and the idnumber is not already in use by
1075 // another a group in the same course
1076 $context = context_course::instance($data->courseid);
128af106 1077 if (isset($data->idnumber) and has_capability('moodle/course:changeidnumber', $context, $this->task->get_userid())) {
74b714df
ARN
1078 if (groups_get_group_by_idnumber($data->courseid, $data->idnumber)) {
1079 unset($data->idnumber);
1080 }
1081 } else {
1082 unset($data->idnumber);
1083 }
1084
c0440b3f 1085 $oldid = $data->id; // need this saved for later
76cfb124 1086
c0440b3f
EL
1087 $restorefiles = false; // Only if we end creating the group
1088
1089 // Search if the group already exists (by name & description) in the target course
1090 $description_clause = '';
1091 $params = array('courseid' => $this->get_courseid(), 'grname' => $data->name);
1092 if (!empty($data->description)) {
1093 $description_clause = ' AND ' .
d84fe4c8
EL
1094 $DB->sql_compare_text('description') . ' = ' . $DB->sql_compare_text(':description');
1095 $params['description'] = $data->description;
c0440b3f
EL
1096 }
1097 if (!$groupdb = $DB->get_record_sql("SELECT *
1098 FROM {groups}
1099 WHERE courseid = :courseid
1100 AND name = :grname $description_clause", $params)) {
1101 // group doesn't exist, create
1102 $newitemid = $DB->insert_record('groups', $data);
1103 $restorefiles = true; // We'll restore the files
1104 } else {
1105 // group exists, use it
1106 $newitemid = $groupdb->id;
1107 }
1108 // Save the id mapping
1109 $this->set_mapping('group', $oldid, $newitemid, $restorefiles);
e17dbeeb
SH
1110 // Invalidate the course group data cache just in case.
1111 cache_helper::invalidate_by_definition('core', 'groupdata', array(), array($data->courseid));
c0440b3f
EL
1112 }
1113
c0440b3f 1114 public function process_grouping($data) {
71a50b13
EL
1115 global $DB;
1116
1117 $data = (object)$data; // handy
1118 $data->courseid = $this->get_courseid();
1119
74b714df
ARN
1120 // Only allow the idnumber to be set if the user has permission and the idnumber is not already in use by
1121 // another a grouping in the same course
1122 $context = context_course::instance($data->courseid);
128af106 1123 if (isset($data->idnumber) and has_capability('moodle/course:changeidnumber', $context, $this->task->get_userid())) {
74b714df
ARN
1124 if (groups_get_grouping_by_idnumber($data->courseid, $data->idnumber)) {
1125 unset($data->idnumber);
1126 }
1127 } else {
1128 unset($data->idnumber);
1129 }
1130
71a50b13
EL
1131 $oldid = $data->id; // need this saved for later
1132 $restorefiles = false; // Only if we end creating the grouping
1133
1134 // Search if the grouping already exists (by name & description) in the target course
1135 $description_clause = '';
1136 $params = array('courseid' => $this->get_courseid(), 'grname' => $data->name);
1137 if (!empty($data->description)) {
1138 $description_clause = ' AND ' .
d84fe4c8
EL
1139 $DB->sql_compare_text('description') . ' = ' . $DB->sql_compare_text(':description');
1140 $params['description'] = $data->description;
71a50b13
EL
1141 }
1142 if (!$groupingdb = $DB->get_record_sql("SELECT *
1143 FROM {groupings}
1144 WHERE courseid = :courseid
1145 AND name = :grname $description_clause", $params)) {
1146 // grouping doesn't exist, create
1147 $newitemid = $DB->insert_record('groupings', $data);
1148 $restorefiles = true; // We'll restore the files
1149 } else {
1150 // grouping exists, use it
1151 $newitemid = $groupingdb->id;
1152 }
1153 // Save the id mapping
1154 $this->set_mapping('grouping', $oldid, $newitemid, $restorefiles);
e17dbeeb
SH
1155 // Invalidate the course group data cache just in case.
1156 cache_helper::invalidate_by_definition('core', 'groupdata', array(), array($data->courseid));
c0440b3f
EL
1157 }
1158
1159 public function process_grouping_group($data) {
fdcf4a5f 1160 global $CFG;
51e8d287 1161
fdcf4a5f 1162 require_once($CFG->dirroot.'/group/lib.php');
51e8d287
AG
1163
1164 $data = (object)$data;
1165 groups_assign_grouping($this->get_new_parentid('grouping'), $this->get_mappingid('group', $data->groupid), $data->timeadded);
c0440b3f
EL
1166 }
1167
1168 protected function after_execute() {
1169 // Add group related files, matching with "group" mappings
1170 $this->add_related_files('group', 'icon', 'group');
1171 $this->add_related_files('group', 'description', 'group');
71a50b13
EL
1172 // Add grouping related files, matching with "grouping" mappings
1173 $this->add_related_files('grouping', 'description', 'grouping');
e17dbeeb
SH
1174 // Invalidate the course group data.
1175 cache_helper::invalidate_by_definition('core', 'groupdata', array(), array($this->get_courseid()));
c0440b3f
EL
1176 }
1177
1178}
1179
7881024e
PS
1180/**
1181 * Structure step that will create all the needed group memberships
1182 * by loading them from the groups.xml file performing the required matches.
1183 */
1184class restore_groups_members_structure_step extends restore_structure_step {
1185
1186 protected $plugins = null;
1187
1188 protected function define_structure() {
1189
1190 $paths = array(); // Add paths here
1191
868b086c 1192 if ($this->get_setting_value('groups') && $this->get_setting_value('users')) {
7881024e
PS
1193 $paths[] = new restore_path_element('group', '/groups/group');
1194 $paths[] = new restore_path_element('member', '/groups/group/group_members/group_member');
1195 }
1196
1197 return $paths;
1198 }
1199
1200 public function process_group($data) {
1201 $data = (object)$data; // handy
1202
1203 // HACK ALERT!
1204 // Not much to do here, this groups mapping should be already done from restore_groups_structure_step.
1205 // Let's fake internal state to make $this->get_new_parentid('group') work.
1206
1207 $this->set_mapping('group', $data->id, $this->get_mappingid('group', $data->id));
1208 }
1209
1210 public function process_member($data) {
1211 global $DB, $CFG;
1212 require_once("$CFG->dirroot/group/lib.php");
1213
1214 // NOTE: Always use groups_add_member() because it triggers events and verifies if user is enrolled.
1215
1216 $data = (object)$data; // handy
1217
1218 // get parent group->id
1219 $data->groupid = $this->get_new_parentid('group');
1220
1221 // map user newitemid and insert if not member already
1222 if ($data->userid = $this->get_mappingid('user', $data->userid)) {
1223 if (!$DB->record_exists('groups_members', array('groupid' => $data->groupid, 'userid' => $data->userid))) {
1224 // Check the component, if any, exists.
1225 if (empty($data->component)) {
1226 groups_add_member($data->groupid, $data->userid);
1227
1228 } else if ((strpos($data->component, 'enrol_') === 0)) {
1229 // Deal with enrolment groups - ignore the component and just find out the instance via new id,
1230 // it is possible that enrolment was restored using different plugin type.
1231 if (!isset($this->plugins)) {
1232 $this->plugins = enrol_get_plugins(true);
1233 }
1234 if ($enrolid = $this->get_mappingid('enrol', $data->itemid)) {
1235 if ($instance = $DB->get_record('enrol', array('id'=>$enrolid))) {
1236 if (isset($this->plugins[$instance->enrol])) {
1237 $this->plugins[$instance->enrol]->restore_group_member($instance, $data->groupid, $data->userid);
1238 }
1239 }
1240 }
1241
1242 } else {
b0d1d941 1243 $dir = core_component::get_component_directory($data->component);
7881024e
PS
1244 if ($dir and is_dir($dir)) {
1245 if (component_callback($data->component, 'restore_group_member', array($this, $data), true)) {
1246 return;
1247 }
1248 }
1249 // Bad luck, plugin could not restore the data, let's add normal membership.
1250 groups_add_member($data->groupid, $data->userid);
1251 $message = "Restore of '$data->component/$data->itemid' group membership is not supported, using standard group membership instead.";
7881024e
PS
1252 $this->log($message, backup::LOG_WARNING);
1253 }
1254 }
1255 }
1256 }
1257}
1258
c0440b3f
EL
1259/**
1260 * Structure step that will create all the needed scales
1261 * by loading them from the scales.xml
c0440b3f
EL
1262 */
1263class restore_scales_structure_step extends restore_structure_step {
1264
1265 protected function define_structure() {
1266
1267 $paths = array(); // Add paths here
1268 $paths[] = new restore_path_element('scale', '/scales_definition/scale');
1269 return $paths;
1270 }
1271
1272 protected function process_scale($data) {
1273 global $DB;
1274
1275 $data = (object)$data;
1276
1277 $restorefiles = false; // Only if we end creating the group
1278
1279 $oldid = $data->id; // need this saved for later
1280
1281 // Look for scale (by 'scale' both in standard (course=0) and current course
1282 // with priority to standard scales (ORDER clause)
1283 // scale is not course unique, use get_record_sql to suppress warning
1284 // Going to compare LOB columns so, use the cross-db sql_compare_text() in both sides
1285 $compare_scale_clause = $DB->sql_compare_text('scale') . ' = ' . $DB->sql_compare_text(':scaledesc');
1286 $params = array('courseid' => $this->get_courseid(), 'scaledesc' => $data->scale);
1287 if (!$scadb = $DB->get_record_sql("SELECT *
1288 FROM {scale}
1289 WHERE courseid IN (0, :courseid)
1290 AND $compare_scale_clause
1291 ORDER BY courseid", $params, IGNORE_MULTIPLE)) {
1292 // Remap the user if possible, defaut to user performing the restore if not
1293 $userid = $this->get_mappingid('user', $data->userid);
ba8bead5 1294 $data->userid = $userid ? $userid : $this->task->get_userid();
c0440b3f
EL
1295 // Remap the course if course scale
1296 $data->courseid = $data->courseid ? $this->get_courseid() : 0;
1297 // If global scale (course=0), check the user has perms to create it
1298 // falling to course scale if not
a689cd1d 1299 $systemctx = context_system::instance();
394edb7e 1300 if ($data->courseid == 0 && !has_capability('moodle/course:managescales', $systemctx , $this->task->get_userid())) {
c0440b3f
EL
1301 $data->courseid = $this->get_courseid();
1302 }
1303 // scale doesn't exist, create
1304 $newitemid = $DB->insert_record('scale', $data);
1305 $restorefiles = true; // We'll restore the files
1306 } else {
1307 // scale exists, use it
1308 $newitemid = $scadb->id;
1309 }
1310 // Save the id mapping (with files support at system context)
1311 $this->set_mapping('scale', $oldid, $newitemid, $restorefiles, $this->task->get_old_system_contextid());
1312 }
1313
1314 protected function after_execute() {
1315 // Add scales related files, matching with "scale" mappings
1316 $this->add_related_files('grade', 'scale', 'scale', $this->task->get_old_system_contextid());
1317 }
76cfb124
EL
1318}
1319
c0440b3f 1320
c8730ff0
EL
1321/**
1322 * Structure step that will create all the needed outocomes
1323 * by loading them from the outcomes.xml
1324 */
1325class restore_outcomes_structure_step extends restore_structure_step {
1326
1327 protected function define_structure() {
1328
1329 $paths = array(); // Add paths here
1330 $paths[] = new restore_path_element('outcome', '/outcomes_definition/outcome');
1331 return $paths;
1332 }
1333
1334 protected function process_outcome($data) {
1335 global $DB;
1336
1337 $data = (object)$data;
1338
1339 $restorefiles = false; // Only if we end creating the group
1340
1341 $oldid = $data->id; // need this saved for later
1342
1343 // Look for outcome (by shortname both in standard (courseid=null) and current course
1344 // with priority to standard outcomes (ORDER clause)
1345 // outcome is not course unique, use get_record_sql to suppress warning
1346 $params = array('courseid' => $this->get_courseid(), 'shortname' => $data->shortname);
1347 if (!$outdb = $DB->get_record_sql('SELECT *
1348 FROM {grade_outcomes}
1349 WHERE shortname = :shortname
1350 AND (courseid = :courseid OR courseid IS NULL)
1351 ORDER BY COALESCE(courseid, 0)', $params, IGNORE_MULTIPLE)) {
1352 // Remap the user
1353 $userid = $this->get_mappingid('user', $data->usermodified);
ba8bead5 1354 $data->usermodified = $userid ? $userid : $this->task->get_userid();
8d4e41f4
EL
1355 // Remap the scale
1356 $data->scaleid = $this->get_mappingid('scale', $data->scaleid);
c8730ff0
EL
1357 // Remap the course if course outcome
1358 $data->courseid = $data->courseid ? $this->get_courseid() : null;
1359 // If global outcome (course=null), check the user has perms to create it
1360 // falling to course outcome if not
a689cd1d 1361 $systemctx = context_system::instance();
394edb7e 1362 if (is_null($data->courseid) && !has_capability('moodle/grade:manageoutcomes', $systemctx , $this->task->get_userid())) {
c8730ff0
EL
1363 $data->courseid = $this->get_courseid();
1364 }
1365 // outcome doesn't exist, create
1366 $newitemid = $DB->insert_record('grade_outcomes', $data);
1367 $restorefiles = true; // We'll restore the files
1368 } else {
1369 // scale exists, use it
1370 $newitemid = $outdb->id;
1371 }
1372 // Set the corresponding grade_outcomes_courses record
1373 $outcourserec = new stdclass();
1374 $outcourserec->courseid = $this->get_courseid();
1375 $outcourserec->outcomeid = $newitemid;
1376 if (!$DB->record_exists('grade_outcomes_courses', (array)$outcourserec)) {
1377 $DB->insert_record('grade_outcomes_courses', $outcourserec);
1378 }
1379 // Save the id mapping (with files support at system context)
1380 $this->set_mapping('outcome', $oldid, $newitemid, $restorefiles, $this->task->get_old_system_contextid());
1381 }
1382
1383 protected function after_execute() {
1384 // Add outcomes related files, matching with "outcome" mappings
1385 $this->add_related_files('grade', 'outcome', 'outcome', $this->task->get_old_system_contextid());
1386 }
1387}
1388
41941110
EL
1389/**
1390 * Execution step that, *conditionally* (if there isn't preloaded information
1391 * will load all the question categories and questions (header info only)
1392 * to backup_temp_ids. They will be stored with "question_category" and
1393 * "question" itemnames and with their original contextid and question category
1394 * id as paremitemids
1395 */
1396class restore_load_categories_and_questions extends restore_execution_step {
1397
1398 protected function define_execution() {
1399
1400 if ($this->task->get_preloaded_information()) { // if info is already preloaded, nothing to do
1401 return;
1402 }
1403 $file = $this->get_basepath() . '/questions.xml';
1404 restore_dbops::load_categories_and_questions_to_tempids($this->get_restoreid(), $file);
1405 }
1406}
1407
1408/**
1409 * Execution step that, *conditionally* (if there isn't preloaded information)
1410 * will process all the needed categories and questions
1411 * in order to decide and perform any action with them (create / map / error)
1412 * Note: Any error will cause exception, as far as this is the same processing
1413 * than the one into restore prechecks (that should have stopped process earlier)
1414 */
1415class restore_process_categories_and_questions extends restore_execution_step {
1416
1417 protected function define_execution() {
1418
1419 if ($this->task->get_preloaded_information()) { // if info is already preloaded, nothing to do
1420 return;
1421 }
1422 restore_dbops::process_categories_and_questions($this->get_restoreid(), $this->task->get_courseid(), $this->task->get_userid(), $this->task->is_samesite());
1423 }
1424}
1425
3223cc95
EL
1426/**
1427 * Structure step that will read the section.xml creating/updating sections
1428 * as needed, rebuilding course cache and other friends
1429 */
1430class restore_section_structure_step extends restore_structure_step {
27479b5c 1431 /** @var array Cache: Array of id => course format */
1432 private static $courseformats = array();
1433
1434 /**
1435 * Resets a static cache of course formats. Required for unit testing.
1436 */
1437 public static function reset_caches() {
1438 self::$courseformats = array();
1439 }
c8730ff0 1440
3223cc95 1441 protected function define_structure() {
71cbb251 1442 global $CFG;
ce4dfd27 1443
71cbb251 1444 $paths = array();
ce4dfd27 1445
71cbb251
EL
1446 $section = new restore_path_element('section', '/section');
1447 $paths[] = $section;
1448 if ($CFG->enableavailability) {
1449 $paths[] = new restore_path_element('availability', '/section/availability');
e01fbcf7 1450 $paths[] = new restore_path_element('availability_field', '/section/availability_field');
ce4dfd27 1451 }
03604430 1452 $paths[] = new restore_path_element('course_format_options', '/section/course_format_options');
ce4dfd27 1453
71cbb251
EL
1454 // Apply for 'format' plugins optional paths at section level
1455 $this->add_plugin_structure('format', $section);
ce4dfd27 1456
a66e8bb3
SC
1457 // Apply for 'local' plugins optional paths at section level
1458 $this->add_plugin_structure('local', $section);
1459
71cbb251 1460 return $paths;
3223cc95
EL
1461 }
1462
1463 public function process_section($data) {
71cbb251 1464 global $CFG, $DB;
3223cc95
EL
1465 $data = (object)$data;
1466 $oldid = $data->id; // We'll need this later
1467
1468 $restorefiles = false;
1469
1470 // Look for the section
1471 $section = new stdclass();
1472 $section->course = $this->get_courseid();
1473 $section->section = $data->number;
1474 // Section doesn't exist, create it with all the info from backup
1475 if (!$secrec = $DB->get_record('course_sections', (array)$section)) {
1476 $section->name = $data->name;
1477 $section->summary = $data->summary;
1478 $section->summaryformat = $data->summaryformat;
1479 $section->sequence = '';
1480 $section->visible = $data->visible;
71cbb251 1481 if (empty($CFG->enableavailability)) { // Process availability information only if enabled.
38674ef9 1482 $section->availability = null;
71cbb251 1483 } else {
38674ef9 1484 $section->availability = isset($data->availabilityjson) ? $data->availabilityjson : null;
1485 // Include legacy [<2.7] availability data if provided.
1486 if (is_null($section->availability)) {
1487 $section->availability = \core_availability\info::convert_legacy_fields(
1488 $data, true);
1489 }
71cbb251 1490 }
3223cc95
EL
1491 $newitemid = $DB->insert_record('course_sections', $section);
1492 $restorefiles = true;
1493
1494 // Section exists, update non-empty information
1495 } else {
1496 $section->id = $secrec->id;
ff5d6f88 1497 if ((string)$secrec->name === '') {
3223cc95
EL
1498 $section->name = $data->name;
1499 }
1500 if (empty($secrec->summary)) {
1501 $section->summary = $data->summary;
1502 $section->summaryformat = $data->summaryformat;
1503 $restorefiles = true;
1504 }
ce4dfd27 1505
38674ef9 1506 // Don't update availability (I didn't see a useful way to define
1507 // whether existing or new one should take precedence).
ce4dfd27 1508
3223cc95
EL
1509 $DB->update_record('course_sections', $section);
1510 $newitemid = $secrec->id;
1511 }
1512
1513 // Annotate the section mapping, with restorefiles option if needed
1514 $this->set_mapping('course_section', $oldid, $newitemid, $restorefiles);
1515
a90659d6
EL
1516 // set the new course_section id in the task
1517 $this->task->set_sectionid($newitemid);
1518
38674ef9 1519 // If there is the legacy showavailability data, store this for later use.
1520 // (This data is not present when restoring 'new' backups.)
1521 if (isset($data->showavailability)) {
1522 // Cache the showavailability flag using the backup_ids data field.
1523 restore_dbops::set_backup_ids_record($this->get_restoreid(),
1524 'section_showavailability', $newitemid, 0, null,
1525 (object)array('showavailability' => $data->showavailability));
1526 }
a90659d6 1527
f81f5133
EL
1528 // Commented out. We never modify course->numsections as far as that is used
1529 // by a lot of people to "hide" sections on purpose (so this remains as used to be in Moodle 1.x)
1530 // Note: We keep the code here, to know about and because of the possibility of making this
1531 // optional based on some setting/attribute in the future
3223cc95 1532 // If needed, adjust course->numsections
f81f5133
EL
1533 //if ($numsections = $DB->get_field('course', 'numsections', array('id' => $this->get_courseid()))) {
1534 // if ($numsections < $section->section) {
1535 // $DB->set_field('course', 'numsections', $section->section, array('id' => $this->get_courseid()));
1536 // }
1537 //}
3223cc95
EL
1538 }
1539
38674ef9 1540 /**
1541 * Process the legacy availability table record. This table does not exist
1542 * in Moodle 2.7+ but we still support restore.
1543 *
1544 * @param stdClass $data Record data
1545 */
71cbb251 1546 public function process_availability($data) {
71cbb251 1547 $data = (object)$data;
38674ef9 1548 // Simply going to store the whole availability record now, we'll process
1549 // all them later in the final task (once all activities have been restored)
1550 // Let's call the low level one to be able to store the whole object.
71cbb251 1551 $data->coursesectionid = $this->task->get_sectionid();
38674ef9 1552 restore_dbops::set_backup_ids_record($this->get_restoreid(),
1553 'section_availability', $data->id, 0, null, $data);
71cbb251
EL
1554 }
1555
38674ef9 1556 /**
1557 * Process the legacy availability fields table record. This table does not
1558 * exist in Moodle 2.7+ but we still support restore.
1559 *
1560 * @param stdClass $data Record data
1561 */
e01fbcf7
MN
1562 public function process_availability_field($data) {
1563 global $DB;
1564 $data = (object)$data;
1565 // Mark it is as passed by default
1566 $passed = true;
8ab1529d
SH
1567 $customfieldid = null;
1568
1569 // If a customfield has been used in order to pass we must be able to match an existing
1570 // customfield by name (data->customfield) and type (data->customfieldtype)
1571 if (is_null($data->customfield) xor is_null($data->customfieldtype)) {
1572 // xor is sort of uncommon. If either customfield is null or customfieldtype is null BUT not both.
1573 // If one is null but the other isn't something clearly went wrong and we'll skip this condition.
1574 $passed = false;
1575 } else if (!is_null($data->customfield)) {
1576 $params = array('shortname' => $data->customfield, 'datatype' => $data->customfieldtype);
1577 $customfieldid = $DB->get_field('user_info_field', 'id', $params);
1578 $passed = ($customfieldid !== false);
e01fbcf7 1579 }
8ab1529d 1580
e01fbcf7
MN
1581 if ($passed) {
1582 // Create the object to insert into the database
141d3c86
SH
1583 $availfield = new stdClass();
1584 $availfield->coursesectionid = $this->task->get_sectionid();
1585 $availfield->userfield = $data->userfield;
8ab1529d 1586 $availfield->customfieldid = $customfieldid;
141d3c86
SH
1587 $availfield->operator = $data->operator;
1588 $availfield->value = $data->value;
38674ef9 1589
1590 // Get showavailability option.
1591 $showrec = restore_dbops::get_backup_ids_record($this->get_restoreid(),
1592 'section_showavailability', $availfield->coursesectionid);
1593 if (!$showrec) {
1594 // Should not happen.
1595 throw new coding_exception('No matching showavailability record');
1596 }
1597 $show = $showrec->info->showavailability;
1598
1599 // The $availfield object is now in the format used in the old
1600 // system. Interpret this and convert to new system.
1601 $currentvalue = $DB->get_field('course_sections', 'availability',
1602 array('id' => $availfield->coursesectionid), MUST_EXIST);
1603 $newvalue = \core_availability\info::add_legacy_availability_field_condition(
1604 $currentvalue, $availfield, $show);
1605 $DB->set_field('course_sections', 'availability', $newvalue,
1606 array('id' => $availfield->coursesectionid));
e01fbcf7
MN
1607 }
1608 }
1609
03604430
MG
1610 public function process_course_format_options($data) {
1611 global $DB;
4012617f 1612 $courseid = $this->get_courseid();
27479b5c 1613 if (!array_key_exists($courseid, self::$courseformats)) {
4012617f 1614 // It is safe to have a static cache of course formats because format can not be changed after this point.
27479b5c 1615 self::$courseformats[$courseid] = $DB->get_field('course', 'format', array('id' => $courseid));
4012617f
MG
1616 }
1617 $data = (array)$data;
27479b5c 1618 if (self::$courseformats[$courseid] === $data['format']) {
4012617f
MG
1619 // Import section format options only if both courses (the one that was backed up
1620 // and the one we are restoring into) have same formats.
1621 $params = array(
1622 'courseid' => $this->get_courseid(),
1623 'sectionid' => $this->task->get_sectionid(),
1624 'format' => $data['format'],
1625 'name' => $data['name']
1626 );
1627 if ($record = $DB->get_record('course_format_options', $params, 'id, value')) {
1628 // Do not overwrite existing information.
1629 $newid = $record->id;
1630 } else {
1631 $params['value'] = $data['value'];
1632 $newid = $DB->insert_record('course_format_options', $params);
1633 }
1634 $this->set_mapping('course_format_options', $data['id'], $newid);
1635 }
03604430
MG
1636 }
1637
3223cc95
EL
1638 protected function after_execute() {
1639 // Add section related files, with 'course_section' itemid to match
1640 $this->add_related_files('course', 'section', 'course_section');
1641 }
1642}
1643
3223cc95 1644/**
482aac65 1645 * Structure step that will read the course.xml file, loading it and performing
395dae30
EL
1646 * various actions depending of the site/restore settings. Note that target
1647 * course always exist before arriving here so this step will be updating
1648 * the course record (never inserting)
482aac65
EL
1649 */
1650class restore_course_structure_step extends restore_structure_step {
9665ecd2
TH
1651 /**
1652 * @var bool this gets set to true by {@link process_course()} if we are
1653 * restoring an old coures that used the legacy 'module security' feature.
1654 * If so, we have to do more work in {@link after_execute()}.
1655 */
1656 protected $legacyrestrictmodules = false;
1657
1658 /**
1659 * @var array Used when {@link $legacyrestrictmodules} is true. This is an
1660 * array with array keys the module names ('forum', 'quiz', etc.). These are
1661 * the modules that are allowed according to the data in the backup file.
1662 * In {@link after_execute()} we then have to prevent adding of all the other
1663 * types of activity.
1664 */
1665 protected $legacyallowedmodules = array();
482aac65
EL
1666
1667 protected function define_structure() {
1668
4fda584f 1669 $course = new restore_path_element('course', '/course');
482aac65
EL
1670 $category = new restore_path_element('category', '/course/category');
1671 $tag = new restore_path_element('tag', '/course/tags/tag');
4fda584f 1672 $allowed_module = new restore_path_element('allowed_module', '/course/allowed_modules/module');
482aac65 1673
4fda584f
EL
1674 // Apply for 'format' plugins optional paths at course level
1675 $this->add_plugin_structure('format', $course);
1676
89213d00 1677 // Apply for 'theme' plugins optional paths at course level
1678 $this->add_plugin_structure('theme', $course);
1679
158e9e2a
PS
1680 // Apply for 'report' plugins optional paths at course level
1681 $this->add_plugin_structure('report', $course);
1682
5e0dae12 1683 // Apply for 'course report' plugins optional paths at course level
1684 $this->add_plugin_structure('coursereport', $course);
1685
571ae252
DM
1686 // Apply for plagiarism plugins optional paths at course level
1687 $this->add_plugin_structure('plagiarism', $course);
1688
a66e8bb3
SC
1689 // Apply for local plugins optional paths at course level
1690 $this->add_plugin_structure('local', $course);
1691
a495d1a1
FM
1692 // Apply for admin tool plugins optional paths at course level.
1693 $this->add_plugin_structure('tool', $course);
1694
4fda584f 1695 return array($course, $category, $tag, $allowed_module);
482aac65
EL
1696 }
1697
7f32340b
SH
1698 /**
1699 * Processing functions go here
1700 *
1701 * @global moodledatabase $DB
1702 * @param stdClass $data
1703 */
482aac65 1704 public function process_course($data) {
395dae30
EL
1705 global $CFG, $DB;
1706
1707 $data = (object)$data;
785d6603
SH
1708
1709 $fullname = $this->get_setting_value('course_fullname');
1710 $shortname = $this->get_setting_value('course_shortname');
b1eaf633 1711 $startdate = $this->get_setting_value('course_startdate');
395dae30
EL
1712
1713 // Calculate final course names, to avoid dupes
1714 list($fullname, $shortname) = restore_dbops::calculate_course_names($this->get_courseid(), $fullname, $shortname);
1715
1716 // Need to change some fields before updating the course record
1717 $data->id = $this->get_courseid();
1718 $data->fullname = $fullname;
1719 $data->shortname= $shortname;
7d7d82de 1720
7d908d33 1721 // Only allow the idnumber to be set if the user has permission and the idnumber is not already in use by
1722 // another course on this site.
a689cd1d 1723 $context = context::instance_by_id($this->task->get_contextid());
7d908d33 1724 if (!empty($data->idnumber) && has_capability('moodle/course:changeidnumber', $context, $this->task->get_userid()) &&
1725 $this->task->is_samesite() && !$DB->record_exists('course', array('idnumber' => $data->idnumber))) {
1726 // Do not reset idnumber.
7d7d82de 1727 } else {
7d908d33 1728 $data->idnumber = '';
7d7d82de 1729 }
7f32340b 1730
ee1dc835
EL
1731 // Any empty value for course->hiddensections will lead to 0 (default, show collapsed).
1732 // It has been reported that some old 1.9 courses may have it null leading to DB error. MDL-31532
1733 if (empty($data->hiddensections)) {
1734 $data->hiddensections = 0;
1735 }
1736
8149d624
SH
1737 // Set legacyrestrictmodules to true if the course was resticting modules. If so
1738 // then we will need to process restricted modules after execution.
9665ecd2 1739 $this->legacyrestrictmodules = !empty($data->restrictmodules);
e4f72d14 1740
395dae30
EL
1741 $data->startdate= $this->apply_date_offset($data->startdate);
1742 if ($data->defaultgroupingid) {
1743 $data->defaultgroupingid = $this->get_mappingid('grouping', $data->defaultgroupingid);
1744 }
5095f325 1745 if (empty($CFG->enablecompletion)) {
395dae30
EL
1746 $data->enablecompletion = 0;
1747 $data->completionstartonenrol = 0;
1748 $data->completionnotify = 0;
1749 }
1750 $languages = get_string_manager()->get_list_of_translations(); // Get languages for quick search
1751 if (!array_key_exists($data->lang, $languages)) {
1752 $data->lang = '';
1753 }
89213d00 1754
395dae30 1755 $themes = get_list_of_themes(); // Get themes for quick search later
89213d00 1756 if (!array_key_exists($data->theme, $themes) || empty($CFG->allowcoursethemes)) {
395dae30
EL
1757 $data->theme = '';
1758 }
1759
3d1808c6
DM
1760 // Check if this is an old SCORM course format.
1761 if ($data->format == 'scorm') {
1762 $data->format = 'singleactivity';
1763 $data->activitytype = 'scorm';
1764 }
1765
395dae30
EL
1766 // Course record ready, update it
1767 $DB->update_record('course', $data);
1768
d6cd57de
MG
1769 course_get_format($data)->update_course_format_options($data);
1770
4fda584f
EL
1771 // Role name aliases
1772 restore_dbops::set_course_role_names($this->get_restoreid(), $this->get_courseid());
1773 }
1774
1775 public function process_category($data) {
1776 // Nothing to do with the category. UI sets it before restore starts
1777 }
1778
1779 public function process_tag($data) {
1780 global $CFG, $DB;
1781
1782 $data = (object)$data;
1783
74fa9f76
MG
1784 core_tag_tag::add_item_tag('core', 'course', $this->get_courseid(),
1785 context_course::instance($this->get_courseid()), $data->rawname);
4fda584f
EL
1786 }
1787
1788 public function process_allowed_module($data) {
4fda584f
EL
1789 $data = (object)$data;
1790
9665ecd2
TH
1791 // Backwards compatiblity support for the data that used to be in the
1792 // course_allowed_modules table.
1793 if ($this->legacyrestrictmodules) {
1794 $this->legacyallowedmodules[$data->modulename] = 1;
395dae30 1795 }
482aac65
EL
1796 }
1797
395dae30 1798 protected function after_execute() {
9665ecd2
TH
1799 global $DB;
1800
395dae30
EL
1801 // Add course related files, without itemid to match
1802 $this->add_related_files('course', 'summary', null);
d1f8c1bd 1803 $this->add_related_files('course', 'overviewfiles', null);
9665ecd2
TH
1804
1805 // Deal with legacy allowed modules.
1806 if ($this->legacyrestrictmodules) {
1807 $context = context_course::instance($this->get_courseid());
1808
1809 list($roleids) = get_roles_with_cap_in_context($context, 'moodle/course:manageactivities');
1810 list($managerroleids) = get_roles_with_cap_in_context($context, 'moodle/site:config');
1811 foreach ($managerroleids as $roleid) {
1812 unset($roleids[$roleid]);
1813 }
1814
bd3b3bba 1815 foreach (core_component::get_plugin_list('mod') as $modname => $notused) {
9665ecd2
TH
1816 if (isset($this->legacyallowedmodules[$modname])) {
1817 // Module is allowed, no worries.
1818 continue;
1819 }
1820
1821 $capability = 'mod/' . $modname . ':addinstance';
1822 foreach ($roleids as $roleid) {
1823 assign_capability($capability, CAP_PREVENT, $roleid, $context);
1824 }
1825 }
1826 }
395dae30 1827 }
482aac65 1828}
024c288d 1829
c9deaa8e
EM
1830/**
1831 * Execution step that will migrate legacy files if present.
1832 */
1833class restore_course_legacy_files_step extends restore_execution_step {
1834 public function define_execution() {
1835 global $DB;
1836
1837 // Do a check for legacy files and skip if there are none.
1838 $sql = 'SELECT count(*)
1839 FROM {backup_files_temp}
1840 WHERE backupid = ?
1841 AND contextid = ?
1842 AND component = ?
1843 AND filearea = ?';
1844 $params = array($this->get_restoreid(), $this->task->get_old_contextid(), 'course', 'legacy');
1845
1846 if ($DB->count_records_sql($sql, $params)) {
1847 $DB->set_field('course', 'legacyfiles', 2, array('id' => $this->get_courseid()));
1848 restore_dbops::send_files_to_pool($this->get_basepath(), $this->get_restoreid(), 'course',
1849 'legacy', $this->task->get_old_contextid(), $this->task->get_userid());
1850 }
1851 }
1852}
024c288d
EL
1853
1854/*
1855 * Structure step that will read the roles.xml file (at course/activity/block levels)
7a7b8a1f 1856 * containing all the role_assignments and overrides for that context. If corresponding to
024c288d
EL
1857 * one mapped role, they will be applied to target context. Will observe the role_assignments
1858 * setting to decide if ras are restored.
7a7b8a1f
PS
1859 *
1860 * Note: this needs to be executed after all users are enrolled.
024c288d
EL
1861 */
1862class restore_ras_and_caps_structure_step extends restore_structure_step {
7a7b8a1f 1863 protected $plugins = null;
024c288d
EL
1864
1865 protected function define_structure() {
1866
1867 $paths = array();
1868
1869 // Observe the role_assignments setting
1870 if ($this->get_setting_value('role_assignments')) {
1871 $paths[] = new restore_path_element('assignment', '/roles/role_assignments/assignment');
1872 }
1873 $paths[] = new restore_path_element('override', '/roles/role_overrides/override');
1874
1875 return $paths;
1876 }
1877
f2a9be5f
EL
1878 /**
1879 * Assign roles
1880 *
1881 * This has to be called after enrolments processing.
1882 *
1883 * @param mixed $data
1884 * @return void
1885 */
024c288d 1886 public function process_assignment($data) {
28b6ff82
EL
1887 global $DB;
1888
024c288d
EL
1889 $data = (object)$data;
1890
1891 // Check roleid, userid are one of the mapped ones
f2a9be5f
EL
1892 if (!$newroleid = $this->get_mappingid('role', $data->roleid)) {
1893 return;
1894 }
1895 if (!$newuserid = $this->get_mappingid('user', $data->userid)) {
1896 return;
1897 }
1898 if (!$DB->record_exists('user', array('id' => $newuserid, 'deleted' => 0))) {
28b6ff82 1899 // Only assign roles to not deleted users
f2a9be5f
EL
1900 return;
1901 }
1902 if (!$contextid = $this->task->get_contextid()) {
1903 return;
1904 }
1905
1906 if (empty($data->component)) {
1907 // assign standard manual roles
1908 // TODO: role_assign() needs one userid param to be able to specify our restore userid
1909 role_assign($newroleid, $newuserid, $contextid);
1910
1911 } else if ((strpos($data->component, 'enrol_') === 0)) {
7a7b8a1f
PS
1912 // Deal with enrolment roles - ignore the component and just find out the instance via new id,
1913 // it is possible that enrolment was restored using different plugin type.
1914 if (!isset($this->plugins)) {
2fbfdfd0 1915 $this->plugins = enrol_get_plugins(true);
7a7b8a1f 1916 }
f2a9be5f 1917 if ($enrolid = $this->get_mappingid('enrol', $data->itemid)) {
7a7b8a1f 1918 if ($instance = $DB->get_record('enrol', array('id'=>$enrolid))) {
2fbfdfd0
PS
1919 if (isset($this->plugins[$instance->enrol])) {
1920 $this->plugins[$instance->enrol]->restore_role_assignment($instance, $newroleid, $newuserid, $contextid);
f2a9be5f
EL
1921 }
1922 }
28b6ff82 1923 }
7881024e
PS
1924
1925 } else {
1926 $data->roleid = $newroleid;
1927 $data->userid = $newuserid;
1928 $data->contextid = $contextid;
b0d1d941 1929 $dir = core_component::get_component_directory($data->component);
7881024e
PS
1930 if ($dir and is_dir($dir)) {
1931 if (component_callback($data->component, 'restore_role_assignment', array($this, $data), true)) {
1932 return;
1933 }
1934 }
1935 // Bad luck, plugin could not restore the data, let's add normal membership.
1936 role_assign($data->roleid, $data->userid, $data->contextid);
1937 $message = "Restore of '$data->component/$data->itemid' role assignments is not supported, using manual role assignments instead.";
7881024e 1938 $this->log($message, backup::LOG_WARNING);
024c288d
EL
1939 }
1940 }
1941
1942 public function process_override($data) {
1943 $data = (object)$data;
1944
1945 // Check roleid is one of the mapped ones
1946 $newroleid = $this->get_mappingid('role', $data->roleid);
b8e455a7
EL
1947 // If newroleid and context are valid assign it via API (it handles dupes and so on)
1948 if ($newroleid && $this->task->get_contextid()) {
024c288d 1949 // TODO: assign_capability() needs one userid param to be able to specify our restore userid
b8e455a7 1950 // TODO: it seems that assign_capability() doesn't check for valid capabilities at all ???
024c288d
EL
1951 assign_capability($data->capability, $data->permission, $newroleid, $this->task->get_contextid());
1952 }
1953 }
1954}
1955
4b75f49a
PS
1956/**
1957 * If no instances yet add default enrol methods the same way as when creating new course in UI.
1958 */
1959class restore_default_enrolments_step extends restore_execution_step {
03c39daa 1960
4b75f49a
PS
1961 public function define_execution() {
1962 global $DB;
1963
03c39daa
DM
1964 // No enrolments in front page.
1965 if ($this->get_courseid() == SITEID) {
1966 return;
1967 }
1968
4b75f49a
PS
1969 $course = $DB->get_record('course', array('id'=>$this->get_courseid()), '*', MUST_EXIST);
1970
1971 if ($DB->record_exists('enrol', array('courseid'=>$this->get_courseid(), 'enrol'=>'manual'))) {
1972 // Something already added instances, do not add default instances.
1973 $plugins = enrol_get_plugins(true);
1974 foreach ($plugins as $plugin) {
1975 $plugin->restore_sync_course($course);
1976 }
1977
1978 } else {
1979 // Looks like a newly created course.
1980 enrol_course_updated(true, $course, null);
1981 }
1982 }
1983}
1984
024c288d
EL
1985/**
1986 * This structure steps restores the enrol plugins and their underlying
1987 * enrolments, performing all the mappings and/or movements required
1988 */
1989class restore_enrolments_structure_step extends restore_structure_step {
7a7b8a1f
PS
1990 protected $enrolsynced = false;
1991 protected $plugins = null;
1992 protected $originalstatus = array();
024c288d 1993
9ab5df6b
EL
1994 /**
1995 * Conditionally decide if this step should be executed.
1996 *
1997 * This function checks the following parameter:
1998 *
1999 * 1. the course/enrolments.xml file exists
2000 *
2001 * @return bool true is safe to execute, false otherwise
2002 */
2003 protected function execute_condition() {
2004
03c39daa
DM
2005 if ($this->get_courseid() == SITEID) {
2006 return false;
2007 }
2008
9ab5df6b
EL
2009 // Check it is included in the backup
2010 $fullpath = $this->task->get_taskbasepath();
2011 $fullpath = rtrim($fullpath, '/') . '/' . $this->filename;
2012 if (!file_exists($fullpath)) {
2013 // Not found, can't restore enrolments info
2014 return false;
2015 }
2016
2017 return true;
2018 }
2019
024c288d
EL
2020 protected function define_structure() {
2021
f6199295
MP
2022 $enrol = new restore_path_element('enrol', '/enrolments/enrols/enrol');
2023 $enrolment = new restore_path_element('enrolment', '/enrolments/enrols/enrol/user_enrolments/enrolment');
2024 // Attach local plugin stucture to enrol element.
2025 $this->add_plugin_structure('enrol', $enrol);
024c288d 2026
f6199295 2027 return array($enrol, $enrolment);
024c288d
EL
2028 }
2029
f2a9be5f
EL
2030 /**
2031 * Create enrolment instances.
2032 *
2033 * This has to be called after creation of roles
2034 * and before adding of role assignments.
2035 *
2036 * @param mixed $data
2037 * @return void
2038 */
024c288d
EL
2039 public function process_enrol($data) {
2040 global $DB;
2041
2042 $data = (object)$data;
7a7b8a1f
PS
2043 $oldid = $data->id; // We'll need this later.
2044 unset($data->id);
024c288d 2045
7a7b8a1f 2046 $this->originalstatus[$oldid] = $data->status;
f2a9be5f 2047
7a7b8a1f 2048 if (!$courserec = $DB->get_record('course', array('id' => $this->get_courseid()))) {
f2a9be5f 2049 $this->set_mapping('enrol', $oldid, 0);
024c288d
EL
2050 return;
2051 }
2052
7a7b8a1f
PS
2053 if (!isset($this->plugins)) {
2054 $this->plugins = enrol_get_plugins(true);
024c288d 2055 }
7a7b8a1f
PS
2056
2057 if (!$this->enrolsynced) {
2058 // Make sure that all plugin may create instances and enrolments automatically
2059 // before the first instance restore - this is suitable especially for plugins
2060 // that synchronise data automatically using course->idnumber or by course categories.
2061 foreach ($this->plugins as $plugin) {
2062 $plugin->restore_sync_course($courserec);
2063 }
2064 $this->enrolsynced = true;
f2a9be5f
EL
2065 }
2066
7a7b8a1f
PS
2067 // Map standard fields - plugin has to process custom fields manually.
2068 $data->roleid = $this->get_mappingid('role', $data->roleid);
2069 $data->courseid = $courserec->id;
f2a9be5f 2070
7a7b8a1f
PS
2071 if ($this->get_setting_value('enrol_migratetomanual')) {
2072 unset($data->sortorder); // Remove useless sortorder from <2.4 backups.
2073 if (!enrol_is_enabled('manual')) {
2074 $this->set_mapping('enrol', $oldid, 0);
2075 return;
2076 }
2077 if ($instances = $DB->get_records('enrol', array('courseid'=>$data->courseid, 'enrol'=>'manual'), 'id')) {
2078 $instance = reset($instances);
2079 $this->set_mapping('enrol', $oldid, $instance->id);
024c288d 2080 } else {
7a7b8a1f
PS
2081 if ($data->enrol === 'manual') {
2082 $instanceid = $this->plugins['manual']->add_instance($courserec, (array)$data);
2083 } else {
2084 $instanceid = $this->plugins['manual']->add_default_instance($courserec);
2085 }
2086 $this->set_mapping('enrol', $oldid, $instanceid);
024c288d
EL
2087 }
2088
7a7b8a1f
PS
2089 } else {
2090 if (!enrol_is_enabled($data->enrol) or !isset($this->plugins[$data->enrol])) {
7a7b8a1f 2091 $this->set_mapping('enrol', $oldid, 0);
7881024e 2092 $message = "Enrol plugin '$data->enrol' data can not be restored because it is not enabled, use migration to manual enrolments";
7881024e 2093 $this->log($message, backup::LOG_WARNING);
7a7b8a1f
PS
2094 return;
2095 }
2096 if ($task = $this->get_task() and $task->get_target() == backup::TARGET_NEW_COURSE) {
2097 // Let's keep the sortorder in old backups.
2098 } else {
2099 // Prevent problems with colliding sortorders in old backups,
2100 // new 2.4 backups do not need sortorder because xml elements are ordered properly.
2101 unset($data->sortorder);
2102 }
2103 // Note: plugin is responsible for setting up the mapping, it may also decide to migrate to different type.
2104 $this->plugins[$data->enrol]->restore_instance($this, $data, $courserec, $oldid);
024c288d 2105 }
024c288d
EL
2106 }
2107
f2a9be5f 2108 /**
7a7b8a1f 2109 * Create user enrolments.
f2a9be5f
EL
2110 *
2111 * This has to be called after creation of enrolment instances
2112 * and before adding of role assignments.
2113 *
7a7b8a1f
PS
2114 * Roles are assigned in restore_ras_and_caps_structure_step::process_assignment() processing afterwards.
2115 *
f2a9be5f
EL
2116 * @param mixed $data
2117 * @return void
2118 */
024c288d
EL
2119 public function process_enrolment($data) {
2120 global $DB;
2121
7a7b8a1f
PS
2122 if (!isset($this->plugins)) {
2123 $this->plugins = enrol_get_plugins(true);
2124 }
2125
024c288d
EL
2126 $data = (object)$data;
2127
7a7b8a1f 2128 // Process only if parent instance have been mapped.
024c288d 2129 if ($enrolid = $this->get_new_parentid('enrol')) {
7a7b8a1f
PS
2130 $oldinstancestatus = ENROL_INSTANCE_ENABLED;
2131 $oldenrolid = $this->get_old_parentid('enrol');
2132 if (isset($this->originalstatus[$oldenrolid])) {
2133 $oldinstancestatus = $this->originalstatus[$oldenrolid];
2134 }
f2a9be5f 2135 if ($instance = $DB->get_record('enrol', array('id'=>$enrolid))) {
7a7b8a1f 2136 // And only if user is a mapped one.
f2a9be5f 2137 if ($userid = $this->get_mappingid('user', $data->userid)) {
7a7b8a1f
PS
2138 if (isset($this->plugins[$instance->enrol])) {
2139 $this->plugins[$instance->enrol]->restore_user_enrolment($this, $data, $instance, $userid, $oldinstancestatus);
2140 }
024c288d
EL
2141 }
2142 }
2143 }
2144 }
2145}
21e51c86
EL
2146
2147
73d000f3
PS
2148/**
2149 * Make sure the user restoring the course can actually access it.
2150 */
2151class restore_fix_restorer_access_step extends restore_execution_step {
2152 protected function define_execution() {
2153 global $CFG, $DB;
2154
2155 if (!$userid = $this->task->get_userid()) {
2156 return;
2157 }
2158
2159 if (empty($CFG->restorernewroleid)) {
2160 // Bad luck, no fallback role for restorers specified
2161 return;
2162 }
2163
2164 $courseid = $this->get_courseid();
2165 $context = context_course::instance($courseid);
2166
2167 if (is_enrolled($context, $userid, 'moodle/course:update', true) or is_viewing($context, $userid, 'moodle/course:update')) {
2168 // Current user may access the course (admin, category manager or restored teacher enrolment usually)
2169 return;
2170 }
2171
2172 // Try to add role only - we do not need enrolment if user has moodle/course:view or is already enrolled
2173 role_assign($CFG->restorernewroleid, $userid, $context);
2174
2175 if (is_enrolled($context, $userid, 'moodle/course:update', true) or is_viewing($context, $userid, 'moodle/course:update')) {
2176 // Extra role is enough, yay!
2177 return;
2178 }
2179
2180 // The last chance is to create manual enrol if it does not exist and and try to enrol the current user,
2181 // hopefully admin selected suitable $CFG->restorernewroleid ...
2182 if (!enrol_is_enabled('manual')) {
2183 return;
2184 }
2185 if (!$enrol = enrol_get_plugin('manual')) {
2186 return;
2187 }
2188 if (!$DB->record_exists('enrol', array('enrol'=>'manual', 'courseid'=>$courseid))) {
2189 $course = $DB->get_record('course', array('id'=>$courseid), '*', MUST_EXIST);
2190 $fields = array('status'=>ENROL_INSTANCE_ENABLED, 'enrolperiod'=>$enrol->get_config('enrolperiod', 0), 'roleid'=>$enrol->get_config('roleid', 0));
2191 $enrol->add_instance($course, $fields);
2192 }
2193
2194 enrol_try_internal_enrol($courseid, $userid);
2195 }
2196}
2197
2198
21e51c86
EL
2199/**
2200 * This structure steps restores the filters and their configs
2201 */
2202class restore_filters_structure_step extends restore_structure_step {
2203
2204 protected function define_structure() {
2205
2206 $paths = array();
2207
2208 $paths[] = new restore_path_element('active', '/filters/filter_actives/filter_active');
2209 $paths[] = new restore_path_element('config', '/filters/filter_configs/filter_config');
2210
2211 return $paths;
2212 }
2213
2214 public function process_active($data) {
2215
2216 $data = (object)$data;
2217
0662bd67
PS
2218 if (strpos($data->filter, 'filter/') === 0) {
2219 $data->filter = substr($data->filter, 7);
2220
2221 } else if (strpos($data->filter, '/') !== false) {
2222 // Unsupported old filter.
2223 return;
2224 }
2225
21e51c86
EL
2226 if (!filter_is_enabled($data->filter)) { // Not installed or not enabled, nothing to do
2227 return;
2228 }
2229 filter_set_local_state($data->filter, $this->task->get_contextid(), $data->active);
2230 }
2231
2232 public function process_config($data) {
2233
2234 $data = (object)$data;
2235
0662bd67
PS
2236 if (strpos($data->filter, 'filter/') === 0) {
2237 $data->filter = substr($data->filter, 7);
2238
2239 } else if (strpos($data->filter, '/') !== false) {
2240 // Unsupported old filter.
2241 return;
2242 }
2243
21e51c86
EL
2244 if (!filter_is_enabled($data->filter)) { // Not installed or not enabled, nothing to do
2245 return;
2246 }
2247 filter_set_local_config($data->filter, $this->task->get_contextid(), $data->name, $data->value);
2248 }
2249}
2250
2251
2252/**
2253 * This structure steps restores the comments
2254 * Note: Cannot use the comments API because defaults to USER->id.
2255 * That should change allowing to pass $userid
2256 */
2257class restore_comments_structure_step extends restore_structure_step {
2258
2259 protected function define_structure() {
2260
2261 $paths = array();
2262
2263 $paths[] = new restore_path_element('comment', '/comments/comment');
2264
2265 return $paths;
2266 }
2267
2268 public function process_comment($data) {
2269 global $DB;
2270
2271 $data = (object)$data;
2272
2273 // First of all, if the comment has some itemid, ask to the task what to map
2274 $mapping = false;
21e51c86 2275 if ($data->itemid) {
39aa0280
EL
2276 $mapping = $this->task->get_comment_mapping_itemname($data->commentarea);
2277 $data->itemid = $this->get_mappingid($mapping, $data->itemid);
21e51c86
EL
2278 }
2279 // Only restore the comment if has no mapping OR we have found the matching mapping
39aa0280 2280 if (!$mapping || $data->itemid) {
b8e455a7
EL
2281 // Only if user mapping and context
2282 $data->userid = $this->get_mappingid('user', $data->userid);
2283 if ($data->userid && $this->task->get_contextid()) {
21e51c86 2284 $data->contextid = $this->task->get_contextid();
b8e455a7
EL
2285 // Only if there is another comment with same context/user/timecreated
2286 $params = array('contextid' => $data->contextid, 'userid' => $data->userid, 'timecreated' => $data->timecreated);
2287 if (!$DB->record_exists('comments', $params)) {
2288 $DB->insert_record('comments', $data);
2289 }
2290 }
2291 }
2292 }
2293}
2294
2832093f
YB
2295/**
2296 * This structure steps restores the badges and their configs
2297 */
2298class restore_badges_structure_step extends restore_structure_step {
2299
2300 /**
2301 * Conditionally decide if this step should be executed.
2302 *
2303 * This function checks the following parameters:
2304 *
2305 * 1. Badges and course badges are enabled on the site.
2306 * 2. The course/badges.xml file exists.
2307 * 3. All modules are restorable.
2308 * 4. All modules are marked for restore.
2309 *
2310 * @return bool True is safe to execute, false otherwise
2311 */
2312 protected function execute_condition() {
2313 global $CFG;
2314
2315 // First check is badges and course level badges are enabled on this site.
2316 if (empty($CFG->enablebadges) || empty($CFG->badges_allowcoursebadges)) {
2317 // Disabled, don't restore course badges.
2318 return false;
2319 }
2320
2321 // Check if badges.xml is included in the backup.
2322 $fullpath = $this->task->get_taskbasepath();
2323 $fullpath = rtrim($fullpath, '/') . '/' . $this->filename;
2324 if (!file_exists($fullpath)) {
2325 // Not found, can't restore course badges.
2326 return false;
2327 }
2328
2329 // Check we are able to restore all backed up modules.
2330 if ($this->task->is_missing_modules()) {
2331 return false;
2332 }
2333
2334 // Finally check all modules within the backup are being restored.
2335 if ($this->task->is_excluding_activities()) {
2336 return false;
2337 }
2338
2339 return true;
2340 }
2341
2342 protected function define_structure() {
2343 $paths = array();
2344 $paths[] = new restore_path_element('badge', '/badges/badge');
2345 $paths[] = new restore_path_element('criterion', '/badges/badge/criteria/criterion');
2346 $paths[] = new restore_path_element('parameter', '/badges/badge/criteria/criterion/parameters/parameter');
bd0d2bdc 2347 $paths[] = new restore_path_element('manual_award', '/badges/badge/manual_awards/manual_award');
2832093f
YB
2348
2349 return $paths;
2350 }
2351
2352 public function process_badge($data) {
2353 global $DB, $CFG;
2354
bd0d2bdc 2355 require_once($CFG->libdir . '/badgeslib.php');
2832093f
YB
2356
2357 $data = (object)$data;
2358 $data->usercreated = $this->get_mappingid('user', $data->usercreated);
927ea484
DC
2359 if (empty($data->usercreated)) {
2360 $data->usercreated = $this->task->get_userid();
2361 }
2832093f 2362 $data->usermodified = $this->get_mappingid('user', $data->usermodified);
927ea484
DC
2363 if (empty($data->usermodified)) {
2364 $data->usermodified = $this->task->get_userid();
2365 }
2832093f
YB
2366
2367 // We'll restore the badge image.
2368 $restorefiles = true;
2369
2370 $courseid = $this->get_courseid();
2371
2372 $params = array(
2373 'name' => $data->name,
2374 'description' => $data->description,
2832093f
YB
2375 'timecreated' => $this->apply_date_offset($data->timecreated),
2376 'timemodified' => $this->apply_date_offset($data->timemodified),
2377 'usercreated' => $data->usercreated,
2378 'usermodified' => $data->usermodified,
2379 'issuername' => $data->issuername,
2380 'issuerurl' => $data->issuerurl,
2381 'issuercontact' => $data->issuercontact,
2382 'expiredate' => $this->apply_date_offset($data->expiredate),
2383 'expireperiod' => $data->expireperiod,
2384 'type' => BADGE_TYPE_COURSE,
2385 'courseid' => $courseid,
2386 'message' => $data->message,
2387 'messagesubject' => $data->messagesubject,
2388 'attachment' => $data->attachment,
2389 'notification' => $data->notification,
2390 'status' => BADGE_STATUS_INACTIVE,
2391 'nextcron' => $this->apply_date_offset($data->nextcron)
2392 );
2393
2394 $newid = $DB->insert_record('badge', $params);
2395 $this->set_mapping('badge', $data->id, $newid, $restorefiles);
2396 }
2397
2398 public function process_criterion($data) {
2399 global $DB;
2400
2401 $data = (object)$data;
2402
2403 $params = array(
fffeb03f
YB
2404 'badgeid' => $this->get_new_parentid('badge'),
2405 'criteriatype' => $data->criteriatype,
2406 'method' => $data->method,
7962f73e
EL
2407 'description' => isset($data->description) ? $data->description : '',
2408 'descriptionformat' => isset($data->descriptionformat) ? $data->descriptionformat : 0,
2832093f
YB
2409 );
2410 $newid = $DB->insert_record('badge_criteria', $params);
2411 $this->set_mapping('criterion', $data->id, $newid);
2412 }
2413
2414 public function process_parameter($data) {
2415 global $DB, $CFG;
bd0d2bdc
YB
2416
2417 require_once($CFG->libdir . '/badgeslib.php');
2832093f
YB
2418
2419 $data = (object)$data;
2420 $criteriaid = $this->get_new_parentid('criterion');
2421
2422 // Parameter array that will go to database.
2423 $params = array();
2424 $params['critid'] = $criteriaid;
2425
2426 $oldparam = explode('_', $data->name);
2427
2428 if ($data->criteriatype == BADGE_CRITERIA_TYPE_ACTIVITY) {
2429 $module = $this->get_mappingid('course_module', $oldparam[1]);
2430 $params['name'] = $oldparam[0] . '_' . $module;
2431 $params['value'] = $oldparam[0] == 'module' ? $module : $data->value;
2432 } else if ($data->criteriatype == BADGE_CRITERIA_TYPE_COURSE) {
2433 $params['name'] = $oldparam[0] . '_' . $this->get_courseid();
2434 $params['value'] = $oldparam[0] == 'course' ? $this->get_courseid() : $data->value;
2435 } else if ($data->criteriatype == BADGE_CRITERIA_TYPE_MANUAL) {
bd0d2bdc
YB
2436 $role = $this->get_mappingid('role', $data->value);
2437 if (!empty($role)) {
2438 $params['name'] = 'role_' . $role;
2439 $params['value'] = $role;
2440 } else {
2441 return;
2442 }
2832093f
YB
2443 }
2444
2445 if (!$DB->record_exists('badge_criteria_param', $params)) {
2446 $DB->insert_record('badge_criteria_param', $params);
2447 }
2448 }
2449
bd0d2bdc
YB
2450 public function process_manual_award($data) {
2451 global $DB;
2452
2453 $data = (object)$data;
2454 $role = $this->get_mappingid('role', $data->issuerrole);
2455
2456 if (!empty($role)) {
2457 $award = array(
2458 'badgeid' => $this->get_new_parentid('badge'),
2459 'recipientid' => $this->get_mappingid('user', $data->recipientid),
2460 'issuerid' => $this->get_mappingid('user', $data->issuerid),
2461 'issuerrole' => $role,
2462 'datemet' => $this->apply_date_offset($data->datemet)
2463 );
927ea484
DC
2464
2465 // Skip the manual award if recipient or issuer can not be mapped to.
2466 if (empty($award['recipientid']) || empty($award['issuerid'])) {
2467 return;
2468 }
2469
bd0d2bdc
YB
2470 $DB->insert_record('badge_manual_award', $award);
2471 }
2472 }
2473
2832093f
YB
2474 protected function after_execute() {
2475 // Add related files.
2476 $this->add_related_files('badges', 'badgeimage', 'badge');
2477 }
2478}
2479
8331a159
AA
2480/**
2481 * This structure steps restores the calendar events
2482 */
2483class restore_calendarevents_structure_step extends restore_structure_step {
2484
2485 protected function define_structure() {
2486
2487 $paths = array();
2488
2489 $paths[] = new restore_path_element('calendarevents', '/events/event');
2490
2491 return $paths;
2492 }
2493
2494 public function process_calendarevents($data) {
d983ac63 2495 global $DB, $SITE, $USER;
8331a159
AA
2496
2497 $data = (object)$data;
2498 $oldid = $data->id;
2499 $restorefiles = true; // We'll restore the files
d983ac63 2500 // Find the userid and the groupid associated with the event.
8331a159
AA
2501 $data->userid = $this->get_mappingid('user', $data->userid);
2502 if ($data->userid === false) {
d983ac63
AG
2503 // Blank user ID means that we are dealing with module generated events such as quiz starting times.
2504 // Use the current user ID for these events.
2505 $data->userid = $USER->id;
8331a159
AA
2506 }
2507 if (!empty($data->groupid)) {
2508 $data->groupid = $this->get_mappingid('group', $data->groupid);
2509 if ($data->groupid === false) {
2510 return;
2511 }
2512 }
686ca2f5
AA
2513 // Handle events with empty eventtype //MDL-32827
2514 if(empty($data->eventtype)) {
2515 if ($data->courseid == $SITE->id) { // Site event
2516 $data->eventtype = "site";
2517 } else if ($data->courseid != 0 && $data->groupid == 0 && ($data->modulename == 'assignment' || $data->modulename == 'assign')) {
2518 // Course assingment event
2519 $data->eventtype = "due";
2520 } else if ($data->courseid != 0 && $data->groupid == 0) { // Course event
2521 $data->eventtype = "course";
2522 } else if ($data->groupid) { // Group event
2523 $data->eventtype = "group";
2524 } else if ($data->userid) { // User event
2525 $data->eventtype = "user";
2526 } else {
2527 return;
2528 }
2529 }
8331a159
AA
2530
2531 $params = array(
2532 'name' => $data->name,
2533 'description' => $data->description,
2534 'format' => $data->format,
2535 'courseid' => $this->get_courseid(),
2536 'groupid' => $data->groupid,
2537 'userid' => $data->userid,
2538 'repeatid' => $data->repeatid,
2539 'modulename' => $data->modulename,
2540 'eventtype' => $data->eventtype,
2541 'timestart' => $this->apply_date_offset($data->timestart),
2542 'timeduration' => $data->timeduration,
2543 'visible' => $data->visible,
2544 'uuid' => $data->uuid,
2545 'sequence' => $data->sequence,
2546 'timemodified' => $this->apply_date_offset($data->timemodified));
2547 if ($this->name == 'activity_calendar') {
2548 $params['instance'] = $this->task->get_activityid();
2549 } else {
2550 $params['instance'] = 0;
2551 }
c7b3c10e
FM
2552 $sql = "SELECT id
2553 FROM {event}
2554 WHERE " . $DB->sql_compare_text('name', 255) . " = " . $DB->sql_compare_text('?', 255) . "
2555 AND courseid = ?
2556 AND repeatid = ?
2557 AND modulename = ?
2558 AND timestart = ?
2559 AND timeduration = ?
2560 AND " . $DB->sql_compare_text('description', 255) . " = " . $DB->sql_compare_text('?', 255);
8331a159
AA
2561 $arg = array ($params['name'], $params['courseid'], $params['repeatid'], $params['modulename'], $params['timestart'], $params['timeduration'], $params['description']);
2562 $result = $DB->record_exists_sql($sql, $arg);
2563 if (empty($result)) {
2564 $newitemid = $DB->insert_record('event', $params);
bc213518 2565 $this->set_mapping('event', $oldid, $newitemid);
8331a159
AA
2566 $this->set_mapping('event_description', $oldid, $newitemid, $restorefiles);
2567 }
2568
2569 }
2570 protected function after_execute() {
8331a159
AA
2571 // Add related files
2572 $this->add_related_files('calendar', 'event_description', 'event_description');
2573 }
6565d55a 2574}
8331a159 2575
bd39b6f2
SH
2576class restore_course_completion_structure_step extends restore_structure_step {
2577
2578 /**
2579 * Conditionally decide if this step should be executed.
2580 *
2581 * This function checks parameters that are not immediate settings to ensure
2582 * that the enviroment is suitable for the restore of course completion info.
2583 *
2584 * This function checks the following four parameters:
2585 *
2586 * 1. Course completion is enabled on the site
2587 * 2. The backup includes course completion information
2588 * 3. All modules are restorable
2589 * 4. All modules are marked for restore.
96e339cc 2590 * 5. No completion criteria already exist for the course.
bd39b6f2
SH
2591 *
2592 * @return bool True is safe to execute, false otherwise
2593 */
2594 protected function execute_condition() {
96e339cc 2595 global $CFG, $DB;
bd39b6f2
SH
2596
2597 // First check course completion is enabled on this site
2598 if (empty($CFG->enablecompletion)) {
2599 // Disabled, don't restore course completion
2600 return false;
2601 }
2602
03c39daa
DM
2603 // No course completion on the front page.
2604 if ($this->get_courseid() == SITEID) {
2605 return false;
2606 }
2607
bd39b6f2
SH
2608 // Check it is included in the backup
2609 $fullpath = $this->task->get_taskbasepath();
2610 $fullpath = rtrim($fullpath, '/') . '/' . $this->filename;
2611 if (!file_exists($fullpath)) {
2612 // Not found, can't restore course completion
2613 return false;
2614 }
2615
2616 // Check we are able to restore all backed up modules
2617 if ($this->task->is_missing_modules()) {
2618 return false;
2619 }
2620
96e339cc 2621 // Check all modules within the backup are being restored.
bd39b6f2
SH
2622 if ($this->task->is_excluding_activities()) {
2623 return false;
2624 }
2625
96e339cc
EV
2626 // Check that no completion criteria is already set for the course.
2627 if ($DB->record_exists('course_completion_criteria', array('course' => $this->get_courseid()))) {
2628 return false;
2629 }
2630
bd39b6f2
SH
2631 return true;
2632 }
2633
2634 /**
2635 * Define the course completion structure
2636 *
2637 * @return array Array of restore_path_element
2638 */
2639 protected function define_structure() {
2640
2641 // To know if we are including user completion info
2642 $userinfo = $this->get_setting_value('userscompletion');
2643
2644 $paths = array();
2645 $paths[] = new restore_path_element('course_completion_criteria', '/course_completion/course_completion_criteria');
bd39b6f2
SH
2646 $paths[] = new restore_path_element('course_completion_aggr_methd', '/course_completion/course_completion_aggr_methd');
2647
2648 if ($userinfo) {
2649 $paths[] = new restore_path_element('course_completion_crit_compl', '/course_completion/course_completion_criteria/course_completion_crit_completions/course_completion_crit_compl');
2650 $paths[] = new restore_path_element('course_completions', '/course_completion/course_completions');
2651 }
2652
2653 return $paths;
2654
2655 }
2656
2657 /**
2658 * Process course completion criteria
2659 *
2660 * @global moodle_database $DB
2661 * @param stdClass $data
2662 */
2663 public function process_course_completion_criteria($data) {
2664 global $DB;
2665
2666 $data = (object)$data;
2667 $data->course = $this->get_courseid();
2668
2669 // Apply the date offset to the time end field
2670 $data->timeend = $this->apply_date_offset($data->timeend);
2671
2672 // Map the role from the criteria
129e786c 2673 if (isset($data->role) && $data->role != '') {
11512101
AB
2674 // Newer backups should include roleshortname, which makes this much easier.
2675 if (!empty($data->roleshortname)) {
2676 $roleinstanceid = $DB->get_field('role', 'id', array('shortname' => $data->roleshortname));
2677 if (!$roleinstanceid) {
2678 $this->log(
2679 'Could not match the role shortname in course_completion_criteria, so skipping',
2680 backup::LOG_DEBUG
2681 );
2682 return;
129e786c 2683 }
11512101
AB
2684 $data->role = $roleinstanceid;
2685 } else {
2686 $data->role = $this->get_mappingid('role', $data->role);
129e786c 2687 }
bd39b6f2 2688
129e786c
AB
2689 // Check we have an id, otherwise it causes all sorts of bugs.
2690 if (!$data->role) {
11512101
AB
2691 $this->log(
2692 'Could not match role in course_completion_criteria, so skipping',
2693 backup::LOG_DEBUG
2694 );
129e786c
AB
2695 return;
2696 }
2697 }
aa548318 2698
bd39b6f2
SH
2699 // If the completion criteria is for a module we need to map the module instance
2700 // to the new module id.
2701 if (!empty($data->moduleinstance) && !empty($data->module)) {
2702 $data->moduleinstance = $this->get_mappingid('course_module', $data->moduleinstance);
aa548318 2703 if (empty($data->moduleinstance)) {
11512101
AB
2704 $this->log(
2705 'Could not match the module instance in course_completion_criteria, so skipping',
2706 backup::LOG_DEBUG
2707 );
129e786c 2708 return;
aa548318 2709 }
bd39b6f2
SH
2710 } else {
2711 $data->module = null;
2712 $data->moduleinstance = null;
2713 }
2714
2715 // We backup the course shortname rather than the ID so that we can match back to the course
bd39b6f2
SH
2716 if (!empty($data->courseinstanceshortname)) {
2717 $courseinstanceid = $DB->get_field('course', 'id', array('shortname'=>$data->courseinstanceshortname));
2718 if (!$courseinstanceid) {
11512101
AB
2719 $this->log(
2720 'Could not match the course instance in course_completion_criteria, so skipping',
2721 backup::LOG_DEBUG
2722 );
129e786c 2723 return;
bd39b6f2
SH
2724 }
2725 } else {
2726 $courseinstanceid = null;
2727 }
2728 $data->courseinstance = $courseinstanceid;
2729
129e786c
AB
2730 $params = array(
2731 'course' => $data->course,
2732 'criteriatype' => $data->criteriatype,
2733 'enrolperiod' => $data->enrolperiod,
2734 'courseinstance' => $data->courseinstance,
2735 'module' => $data->module,
2736 'moduleinstance' => $data->moduleinstance,
2737 'timeend' => $data->timeend,
2738 'gradepass' => $data->gradepass,
2739 'role' => $data->role
2740 );
2741 $newid = $DB->insert_record('course_completion_criteria', $params);
2742 $this->set_mapping('course_completion_criteria', $data->id, $newid);
bd39b6f2
SH
2743 }
2744
2745 /**
2746 * Processes course compltion criteria complete records
2747 *
2748 * @global moodle_database $DB
2749 * @param stdClass $data
2750 */
2751 public function process_course_completion_crit_compl($data) {
2752 global $DB;
2753
2754 $data = (object)$data;
2755
2756 // This may be empty if criteria could not be restored
2757 $data->criteriaid = $this->get_mappingid('course_completion_criteria', $data->criteriaid);
034ef761 2758
bd39b6f2
SH
2759 $data->course = $this->get_courseid();
2760 $data->userid = $this->get_mappingid('user', $data->userid);
2761
2762 if (!empty($data->criteriaid) && !empty($data->userid)) {
2763 $params = array(
2764 'userid' => $data->userid,
2765 'course' => $data->course,
2766 'criteriaid' => $data->criteriaid,
2767 'timecompleted' => $this->apply_date_offset($data->timecompleted)
2768 );
2769 if (isset($data->gradefinal)) {
2770 $params['gradefinal'] = $data->gradefinal;
2771 }
2772 if (isset($data->unenroled)) {
2773 $params['unenroled'] = $data->unenroled;
2774 }
bd39b6f2
SH
2775 $DB->insert_record('course_completion_crit_compl', $params);
2776 }
2777 }
2778
2779 /**
2780 * Process course completions
2781 *
2782 * @global moodle_database $DB
2783 * @param stdClass $data
2784 */
2785 public function process_course_completions($data) {
2786 global $DB;
2787
2788 $data = (object)$data;
2789
2790 $data->course = $this->get_courseid();
2791 $data->userid = $this->get_mappingid('user', $data->userid);
2792
2793 if (!empty($data->userid)) {
2794 $params = array(
2795 'userid' => $data->userid,
2796 'course' => $data->course,
bd39b6f2
SH
2797 'timeenrolled' => $this->apply_date_offset($data->timeenrolled),
2798 'timestarted' => $this->apply_date_offset($data->timestarted),
2799 'timecompleted' => $this->apply_date_offset($data->timecompleted),
2800 'reaggregate' => $data->reaggregate
2801 );
7a6ca49a
JJ
2802
2803 $existing = $DB->get_record('course_completions', array(
2804 'userid' => $data->userid,
2805 'course' => $data->course
2806 ));
2807
2808 // MDL-46651 - If cron writes out a new record before we get to it
2809 // then we should replace it with the Truth data from the backup.
2810 // This may be obsolete after MDL-48518 is resolved
2811 if ($existing) {
2812 $params['id'] = $existing->id;
2813 $DB->update_record('course_completions', $params);
2814 } else {
2815 $DB->insert_record('course_completions', $params);
2816 }
bd39b6f2
SH
2817 }
2818 }
2819
bd39b6f2
SH
2820 /**
2821 * Process course completion aggregate methods
2822 *
2823 * @global moodle_database $DB
2824 * @param stdClass $data
2825 */
2826 public function process_course_completion_aggr_methd($data) {
2827 global $DB;
2828
2829 $data = (object)$data;
2830
2831 $data->course = $this->get_courseid();
2832
4d856332
EL
2833 // Only create the course_completion_aggr_methd records if
2834 // the target course has not them defined. MDL-28180
2835 if (!$DB->record_exists('course_completion_aggr_methd', array(
2836 'course' => $data->course,
2837 'criteriatype' => $data->criteriatype))) {
2838 $params = array(
2839 'course' => $data->course,
2840 'criteriatype' => $data->criteriatype,
2841 'method' => $data->method,
2842 'value' => $data->value,
2843 );
2844 $DB->insert_record('course_completion_aggr_methd', $params);
2845 }
bd39b6f2 2846 }
bd39b6f2
SH
2847}
2848
0f66aced
EL
2849
2850/**
2851 * This structure step restores course logs (cmid = 0), delegating
2852 * the hard work to the corresponding {@link restore_logs_processor} passing the
2853 * collection of {@link restore_log_rule} rules to be observed as they are defined
2854 * by the task. Note this is only executed based in the 'logs' setting.
2855 *
2856 * NOTE: This is executed by final task, to have all the activities already restored
2857 *
2858 * NOTE: Not all course logs are being restored. For now only 'course' and 'user'
2859 * records are. There are others like 'calendar' and 'upload' that will be handled
2860 * later.
2861 *
2862 * NOTE: All the missing actions (not able to be restored) are sent to logs for
2863 * debugging purposes
2864 */
2865class restore_course_logs_structure_step extends restore_structure_step {
2866
2867 /**
2868 * Conditionally decide if this step should be executed.
2869 *
9ab5df6b 2870 * This function checks the following parameter:
0f66aced
EL
2871 *
2872 * 1. the course/logs.xml file exists
2873 *
2874 * @return bool true is safe to execute, false otherwise
2875 */
2876 protected function execute_condition() {
2877
2878 // Check it is included in the backup
2879 $fullpath = $this->task->get_taskbasepath();
2880 $fullpath = rtrim($fullpath, '/') . '/' . $this->filename;
2881 if (!file_exists($fullpath)) {
2882 // Not found, can't restore course logs
2883 return false;
2884 }
2885
2886 return true;
2887 }
2888
2889 protected function define_structure() {
2890
2891 $paths = array();
2892
2893 // Simple, one plain level of information contains them
2894 $paths[] = new restore_path_element('log', '/logs/log');
2895
2896 return $paths;
2897 }
2898
2899 protected function process_log($data) {
2900 global $DB;
2901
2902 $data = (object)($data);
2903
2904 $data->time = $this->apply_date_offset($data->time);
2905 $data->userid = $this->get_mappingid('user', $data->userid);
2906 $data->course = $this->get_courseid();
2907 $data->cmid = 0;
2908
2909 // For any reason user wasn't remapped ok, stop processing this
2910 if (empty($data->userid)) {
2911 return;
2912 }
2913
2914 // Everything ready, let's delegate to the restore_logs_processor
2915
2916 // Set some fixed values that will save tons of DB requests
2917 $values = array(
2918 'course' => $this->get_courseid());
2919 // Get instance and process log record
2920 $data = restore_logs_processor::get_instance($this->task, $values)->process_log_record($data);
2921
2922 // If we have data, insert it, else something went wrong in the restore_logs_processor
2923 if ($data) {
115e8964
MN
2924 if (empty($data->url)) {
2925 $data->url = '';
2926 }
2927 if (empty($data->info)) {
2928 $data->info = '';
2929 }
2930 // Store the data in the legacy log table if we are still using it.
2931 $manager = get_log_manager();
2932 if (method_exists($manager, 'legacy_add_to_log')) {
2933 $manager->legacy_add_to_log($data->course, $data->module, $data->action, $data->url,
362bc070 2934 $data->info, $data->cmid, $data->userid, $data->ip, $data->time);
115e8964 2935 }
0f66aced
EL
2936 }
2937 }
2938}
2939
2940/**
2941 * This structure step restores activity logs, extending {@link restore_course_logs_structure_step}
2942 * sharing its same structure but modifying the way records are handled
2943 */
2944class restore_activity_logs_structure_step extends restore_course_logs_structure_step {
2945
2946 protected function process_log($data) {
2947 global $DB;
2948
2949 $data = (object)($data);
2950
2951 $data->time = $this->apply_date_offset($data->time);
2952 $data->userid = $this->get_mappingid('user', $data->userid);
2953 $data->course = $this->get_courseid();
2954 $data->cmid = $this->task->get_moduleid();
2955
2956 // For any reason user wasn't remapped ok, stop processing this
2957 if (empty($data->userid)) {
2958 return;
2959 }
2960
2961 // Everything ready, let's delegate to the restore_logs_processor
2962
2963 // Set some fixed values that will save tons of DB requests
2964 $values = array(
2965 'course' => $this->get_courseid(),
2966 'course_module' => $this->task->get_moduleid(),
2967 $this->task->get_modulename() => $this->task->get_activityid());
2968 // Get instance and process log record
2969 $data = restore_logs_processor::get_instance($this->task, $values)->process_log_record($data);
2970
2971 // If we have data, insert it, else something went wrong in the restore_logs_processor
2972 if ($data) {
115e8964
MN
2973 if (empty($data->url)) {
2974 $data->url = '';
2975 }
2976 if (empty($data->info)) {
2977 $data->info = '';
2978 }
2979 // Store the data in the legacy log table if we are still using it.
2980 $manager = get_log_manager();
2981 if (method_exists($manager, 'legacy_add_to_log')) {
2982 $manager->legacy_add_to_log($data->course, $data->module, $data->action, $data->url,
362bc070 2983 $data->info, $data->cmid, $data->userid, $data->ip, $data->time);
115e8964 2984 }
0f66aced
EL
2985 }
2986 }
2987}
2988
ea6c5643
EL
2989/**
2990 * Structure step in charge of restoring the logstores.xml file for the course logs.
2991 *
2992 * This restore step will rebuild the logs for all the enabled logstore subplugins supporting
2993 * it, for logs belonging to the course level.
2994 */
2995class restore_course_logstores_structure_step extends restore_structure_step {
2996
2997 /**
2998 * Conditionally decide if this step should be executed.
2999 *
3000 * This function checks the following parameter:
3001 *
3002 * 1. the logstores.xml file exists
3003 *
3004 * @return bool true is safe to execute, false otherwise
3005 */
3006 protected function execute_condition() {
3007
3008 // Check it is included in the backup.
3009 $fullpath = $this->task->get_taskbasepath();
3010 $fullpath = rtrim($fullpath, '/') . '/' . $this->filename;
3011 if (!file_exists($fullpath)) {
3012 // Not found, can't restore logstores.xml information.
3013 return false;
3014 }
3015
3016 return true;
3017 }
3018
3019 /**
3020 * Return the elements to be processed on restore of logstores.
3021 *
3022 * @return restore_path_element[] array of elements to be processed on restore.
3023 */
3024 protected function define_structure() {
3025
3026 $paths = array();
3027
3028 $logstore = new restore_path_element('logstore', '/logstores/logstore');
3029 $paths[] = $logstore;
3030
3031 // Add logstore subplugin support to the 'logstore' element.
3032 $this->add_subplugin_structure('logstore', $logstore, 'tool', 'log');
3033
3034 return array($logstore);
3035 }
3036
3037 /**
3038 * Process the 'logstore' element,
3039 *
3040 * Note: This is empty by definition in backup, because stores do not share any
3041 * data between them, so there is nothing to process here.
3042 *
3043 * @param array $data element data
3044 */
3045 protected function process_logstore($data) {
3046 return;
3047 }
3048}
3049
3050/**
3051 * Structure step in charge of restoring the logstores.xml file for the activity logs.
3052 *
3053 * Note: Activity structure is completely equivalent to the course one, so just extend it.
3054 */
3055class restore_activity_logstores_structure_step extends restore_course_logstores_structure_step {
3056}
3057
8417c3a6
FM
3058/**
3059 * Restore course competencies structure step.
3060 */
3061class restore_course_competencies_structure_step extends restore_structure_step {
3062
3063 /**
3064 * Returns the structure.
3065 *
3066 * @return array
3067 */
3068 protected function define_structure() {
e9114a9e 3069 $userinfo = $this->get_setting_value('users');
8417c3a6
FM
3070 $paths = array(
3071 new restore_path_element('course_competency', '/course_competencies/competencies/competency'),
e9114a9e 3072 new restore_path_element('course_competency_settings', '/course_competencies/settings'),
8417c3a6 3073 );
e9114a9e
FM
3074 if ($userinfo) {
3075 $paths[] = new restore_path_element('user_competency_course',
3076 '/course_competencies/user_competencies/user_competency');
3077 }
8417c3a6
FM
3078 return $paths;
3079 }
3080
3081 /**
3082 * Process a course competency settings.
3083 *
3084 * @param array $data The data.
3085 */
3086 public function process_course_competency_settings($data) {
3087 global $DB;
8417c3a6 3088 $data = (object) $data;
e9114a9e
FM
3089
3090 // We do not restore the course settings during merge.
3091 $target = $this->get_task()->get_target();
3092 if ($target == backup::TARGET_CURRENT_ADDING || $target == backup::TARGET_EXISTING_ADDING) {
3093 return;
3094 }
3095
8417c3a6 3096 $courseid = $this->task->get_courseid();
e9114a9e
FM
3097 $exists = \core_competency\course_competency_settings::record_exists_select('courseid = :courseid',
3098 array('courseid' => $courseid));
8417c3a6 3099
e9114a9e 3100 // Strangely the course settings already exist, let's just leave them as is then.
8417c3a6 3101 if ($exists) {
e9114a9e
FM
3102 $this->log('Course competency settings not restored, existing settings have been found.', backup::LOG_WARNING);
3103 return;
8417c3a6 3104 }
e9114a9e
FM
3105
3106 $data = (object) array('courseid' => $courseid, 'pushratingstouserplans' => $data->pushratingstouserplans);
3107 $settings = new \core_competency\course_competency_settings(0, $data);
3108 $settings->create();
8417c3a6
FM
3109 }
3110
3111 /**
3112 * Process a course competency.
3113 *
3114 * @param array $data The data.
3115 */
3116 public function process_course_competency($data) {
3117 $data = (object) $data;
3118
3119 // Mapping the competency by ID numbers.
3120 $framework = \core_competency\competency_framework::get_record(array('idnumber' => $data->frameworkidnumber));
3121 if (!$framework) {
3122 return;
3123 }
3124 $competency = \core_competency\competency::get_record(array('idnumber' => $data->idnumber,
3125 'competencyframeworkid' => $framework->get_id()));
3126 if (!$competency) {
3127 return;
3128 }
e9114a9e 3129 $this->set_mapping(\core_competency\competency::TABLE, $data->id, $competency->get_id());
8417c3a6
FM
3130
3131 $params = array(
3132 'competencyid' => $competency->get_id(),
3133 'courseid' => $this->task->get_courseid()
3134 );
3135 $query = 'competencyid = :competencyid AND courseid = :courseid';
3136 $existing = \core_competency\course_competency::record_exists_select($query, $params);
3137
3138 if (!$existing) {
3139 // Sortorder is ignored by precaution, anyway we should walk through the records in the right order.
3140 $record = (object) $params;
3141 $record->ruleoutcome = $data->ruleoutcome;
3142 $coursecompetency = new \core_competency\course_competency(0, $record);
3143 $coursecompetency->create();
3144 }
3145 }
3146
e9114a9e
FM
3147 /**
3148 * Process the user competency course.
3149 *
3150 * @param array $data The data.
3151 */
3152 public function process_user_competency_course($data) {
3153 global $USER, $DB;
3154 $data = (object) $data;
3155
3156 $data->competencyid = $this->get_mappingid(\core_competency\competency::TABLE, $data->competencyid);
3157 if (!$data->competencyid) {
3158 // This is strange, the competency does not belong to the course.
3159 return;
3160 } else if ($data->grade === null) {
3161 // We do not need to do anything when there is no grade.
3162 return;
3163 }
3164
3165 $data->userid = $this->get_mappingid('user', $data->userid);
3166 $shortname = $DB->get_field('course', 'shortname', array('id' => $this->task->get_courseid()), MUST_EXIST);
3167
3168 // The method add_evidence also sets the course rating.
3169 \core_competency\api::add_evidence($data->userid,
3170 $data->competencyid,
3171 $this->task->get_contextid(),
3172 \core_competency\evidence::ACTION_OVERRIDE,
3173 'evidence_courserestored',
3174 'core_competency',
3175 $shortname,
3176 false,
3177 null,
3178 $data->grade,
3179 $USER->id);
3180 }
3181
8417c3a6
FM
3182 /**
3183 * Execute conditions.
3184 *
3185 * @return bool
3186 */
3187 protected function execute_condition() {
3188
56e1d9ba
FM
3189 // Do not restore when competencies are disabled.
3190 if (!\core_competency\api::is_enabled()) {
3191 return false;
3192 }
3193
8417c3a6
FM
3194 // Do not execute if the competencies XML file is not found.
3195 $fullpath = $this->task->get_taskbasepath();
3196 $fullpath = rtrim($fullpath, '/') . '/' . $this->filename;
3197 if (!file_exists($fullpath)) {
3198 return false;
3199 }
3200
3201 return true;
3202 }
3203}
3204
3205/**
3206 * Restore activity competencies structure step.
3207 */
3208class restore_activity_competencies_structure_step extends restore_structure_step {
3209
3210 /**
3211 * Defines the structure.
3212 *
3213 * @return array
3214 */
3215 protected function define_structure() {
3216 $paths = array(
3217 new restore_path_element('course_module_competency', '/course_module_competencies/competencies/competency')
3218 );
3219 return $paths;
3220 }
3221
3222 /**
3223 * Process a course module competency.
3224 *
3225 * @param array $data The data.
3226 */
3227 public function process_course_module_competency($data) {
3228 $data = (object) $data;
3229
3230 // Mapping the competency by ID numbers.
3231 $framework = \core_competency\competency_framework::get_record(array('idnumber' => $data->frameworkidnumber));
3232 if (!$framework) {
3233 return;
3234 }
3235 $competency = \core_competency\competency::get_record(array('idnumber' => $data->idnumber,
3236 'competencyframeworkid' => $framework->get_id()));
3237 if (!$competency) {
3238 return;
3239 }
3240
3241 $params = array(
3242 'competencyid' => $competency->get_id(),
3243 'cmid' => $this->task->get_moduleid()
3244 );
3245 $query = 'competencyid = :competencyid AND cmid = :cmid';
3246 $existing = \core_competency\course_module_competency::record_exists_select($query, $params);
3247
3248 if (!$existing) {
3249 // Sortorder is ignored by precaution, anyway we should walk through the records in the right order.
3250 $record = (object) $params;
3251 $record->ruleoutcome = $data->ruleoutcome;
3252 $coursemodulecompetency = new \core_competency\course_module_competency(0, $record);
3253 $coursemodulecompetency->create();
3254 }
3255 }
3256
3257 /**
3258 * Execute conditions.
3259 *
3260 * @return bool
3261 */
3262 protected function execute_condition() {
3263
56e1d9ba
FM
3264 // Do not restore when competencies are disabled.
3265 if (!\core_competency\api::is_enabled()) {
3266 return false;
3267 }
3268
8417c3a6
FM
3269 // Do not execute if the competencies XML file is not found.
3270 $fullpath = $this->task->get_taskbasepath();
3271 $fullpath = rtrim($fullpath, '/') . '/' . $this->filename;
3272 if (!file_exists($fullpath)) {
3273 return false;
3274 }
3275
3276 return true;
3277 }
3278}
37065c2e
DM
3279
3280/**
3281 * Defines the restore step for advanced grading methods attached to the activity module
3282 */
3283class restore_activity_grading_structure_step extends restore_structure_step {
3284
3319af85
DM
3285 /**
3286 * This step is executed only if the grading file is present
3287 */
3288 protected function execute_condition() {
3289
03c39daa
DM
3290 if ($this->get_courseid() == SITEID) {
3291 return false;
3292 }
3293
3319af85
DM
3294 $fullpath = $this->task->get_taskbasepath();
3295 $fullpath = rtrim($fullpath, '/') . '/' . $this->filename;
3296 if (!file_exists($fullpath)) {
3297 return false;
3298 }
3299
3300 return true;
3301 }
3302
3303
37065c2e
DM
3304 /**
3305 * Declares paths in the grading.xml file we are interested in
3306 */
3307 protected function define_structure() {
3308
3309 $paths = array();
3310 $userinfo = $this->get_setting_value('userinfo');
3311
a66e8bb3
SC
3312 $area = new restore_path_element('grading_area', '/areas/area');
3313 $paths[] = $area;
3314 // attach local plugin stucture to $area element
3315 $this->add_plugin_structure('local', $area);
37065c2e
DM
3316
3317 $definition = new restore_path_element('grading_definition', '/areas/area/definitions/definition');
3318 $paths[] = $definition;
3319 $this->add_plugin_structure('gradingform', $definition);
a66e8bb3
SC
3320 // attach local plugin stucture to $definition element
3321 $this->add_plugin_structure('local', $definition);
3322
37065c2e
DM
3323
3324 if ($userinfo) {
3325 $instance = new restore_path_element('grading_instance',
3326 '/areas/area/definitions/definition/instances/instance');
3327 $paths[] = $instance;
3328 $this->add_plugin_structure('gradingform', $instance);
a66e8bb3
SC
3329 // attach local plugin stucture to $intance element
3330 $this->add_plugin_structure('local', $instance);
37065c2e
DM
3331 }
3332
3333 return $paths;
3334 }
3335
3336 /**
3337 * Processes one grading area element
3338 *
3339 * @param array $data element data
3340 */
3341 protected function process_grading_area($data) {
3342 global $DB;
3343
3344 $task = $this->get_task();
3345 $data = (object)$data;
3346 $oldid = $data->id;
3347 $data->component = 'mod_'.$task->get_modulename();
3348