Differences Between: [Versions 310 and 402] [Versions 311 and 402] [Versions 39 and 402] [Versions 400 and 402] [Versions 401 and 402]
1 <?php 2 // This file is part of Moodle - http://moodle.org/ 3 // 4 // Moodle is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // Moodle is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>. 16 17 /** 18 * Adhoc task that performs asynchronous course copies. 19 * 20 * @package core 21 * @copyright 2020 onward The Moodle Users Association <https://moodleassociation.org/> 22 * @author Matt Porritt <mattp@catalyst-au.net> 23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later 24 */ 25 26 namespace core\task; 27 28 use async_helper; 29 30 defined('MOODLE_INTERNAL') || die(); 31 32 global $CFG; 33 require_once($CFG->dirroot . '/backup/util/includes/backup_includes.php'); 34 require_once($CFG->dirroot . '/backup/moodle2/backup_plan_builder.class.php'); 35 36 /** 37 * Adhoc task that performs asynchronous course copies. 38 * 39 * @package core 40 * @copyright 2020 onward The Moodle Users Association <https://moodleassociation.org/> 41 * @author Matt Porritt <mattp@catalyst-au.net> 42 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later 43 */ 44 class asynchronous_copy_task extends adhoc_task { 45 46 /** 47 * Run the adhoc task and preform the backup. 48 */ 49 public function execute() { 50 global $CFG, $DB; 51 $started = time(); 52 53 $backupid = $this->get_custom_data()->backupid; 54 $restoreid = $this->get_custom_data()->restoreid; 55 $backuprecord = $DB->get_record('backup_controllers', array('backupid' => $backupid), 'id, itemid', MUST_EXIST); 56 $restorerecord = $DB->get_record('backup_controllers', array('backupid' => $restoreid), 'id, itemid', MUST_EXIST); 57 58 // First backup the course. 59 mtrace('Course copy: Processing asynchronous course copy for course id: ' . $backuprecord->itemid); 60 try { 61 $bc = \backup_controller::load_controller($backupid); // Get the backup controller by backup id. 62 } catch (\backup_dbops_exception $e) { 63 mtrace('Course copy: Can not load backup controller for copy, marking job as failed'); 64 delete_course($restorerecord->itemid, false); // Clean up partially created destination course. 65 return; // Return early as we can't continue. 66 } 67 68 $rc = \restore_controller::load_controller($restoreid); // Get the restore controller by restore id. 69 $bc->set_progress(new \core\progress\db_updater($backuprecord->id, 'backup_controllers', 'progress')); 70 $copyinfo = $rc->get_copy(); 71 $backupplan = $bc->get_plan(); 72 73 $keepuserdata = (bool)$copyinfo->userdata; 74 $keptroles = $copyinfo->keptroles; 75 76 $bc->set_kept_roles($keptroles); 77 78 // If we are not keeping user data don't include users or data in the backup. 79 // In this case we'll add the user enrolments at the end. 80 // Also if we have no roles to keep don't backup users. 81 if (empty($keptroles) || !$keepuserdata) { 82 $backupplan->get_setting('users')->set_status(\backup_setting::NOT_LOCKED); 83 $backupplan->get_setting('users')->set_value('0'); 84 } else { 85 $backupplan->get_setting('users')->set_value('1'); 86 } 87 88 // Do some preflight checks on the backup. 89 $status = $bc->get_status(); 90 $execution = $bc->get_execution(); 91 // Check that the backup is in the correct status and 92 // that is set for asynchronous execution. 93 if ($status == \backup::STATUS_AWAITING && $execution == \backup::EXECUTION_DELAYED) { 94 // Execute the backup. 95 mtrace('Course copy: Backing up course, id: ' . $backuprecord->itemid); 96 $bc->execute_plan(); 97 98 } else { 99 // If status isn't 700, it means the process has failed. 100 // Retrying isn't going to fix it, so marked operation as failed. 101 mtrace('Course copy: Bad backup controller status, is: ' . $status . ' should be 700, marking job as failed.'); 102 $bc->set_status(\backup::STATUS_FINISHED_ERR); 103 delete_course($restorerecord->itemid, false); // Clean up partially created destination course. 104 $bc->destroy(); 105 return; // Return early as we can't continue. 106 107 } 108 109 $results = $bc->get_results(); 110 $backupbasepath = $backupplan->get_basepath(); 111 $file = $results['backup_destination']; 112 $file->extract_to_pathname(get_file_packer('application/vnd.moodle.backup'), $backupbasepath); 113 // Start the restore process. 114 $rc->set_progress(new \core\progress\db_updater($restorerecord->id, 'backup_controllers', 'progress')); 115 $rc->prepare_copy(); 116 117 // Set the course settings we can do now (the remaining settings will be done after restore completes). 118 $plan = $rc->get_plan(); 119 120 $startdate = $plan->get_setting('course_startdate'); 121 $startdate->set_value($copyinfo->startdate); 122 $fullname = $plan->get_setting('course_fullname'); 123 $fullname->set_value($copyinfo->fullname); 124 $shortname = $plan->get_setting('course_shortname'); 125 $shortname->set_value($copyinfo->shortname); 126 127 // Do some preflight checks on the restore. 128 $rc->execute_precheck(); 129 $status = $rc->get_status(); 130 $execution = $rc->get_execution(); 131 132 // Check that the restore is in the correct status and 133 // that is set for asynchronous execution. 134 if ($status == \backup::STATUS_AWAITING && $execution == \backup::EXECUTION_DELAYED) { 135 // Execute the restore. 136 mtrace('Course copy: Restoring into course, id: ' . $restorerecord->itemid); 137 $rc->execute_plan(); 138 139 } else { 140 // If status isn't 700, it means the process has failed. 141 // Retrying isn't going to fix it, so marked operation as failed. 142 mtrace('Course copy: Bad backup controller status, is: ' . $status . ' should be 700, marking job as failed.'); 143 $rc->set_status(\backup::STATUS_FINISHED_ERR); 144 delete_course($restorerecord->itemid, false); // Clean up partially created destination course. 145 $file->delete(); 146 if (empty($CFG->keeptempdirectoriesonbackup)) { 147 fulldelete($backupbasepath); 148 } 149 $rc->destroy(); 150 return; // Return early as we can't continue. 151 152 } 153 154 // Copy user enrolments from source course to destination. 155 if (!empty($keptroles) && !$keepuserdata) { 156 mtrace('Course copy: Creating user enrolments in destination course.'); 157 $context = \context_course::instance($backuprecord->itemid); 158 159 $enrol = enrol_get_plugin('manual'); 160 $instance = null; 161 $enrolinstances = enrol_get_instances($restorerecord->itemid, true); 162 foreach ($enrolinstances as $courseenrolinstance) { 163 if ($courseenrolinstance->enrol == 'manual') { 164 $instance = $courseenrolinstance; 165 break; 166 } 167 } 168 169 // Abort if there enrolment plugin problems. 170 if (empty($enrol) || empty($instance)) { 171 mtrace('Course copy: Could not enrol users in course.');; 172 delete_course($restorerecord->itemid, false); 173 return; 174 } 175 176 // Enrol the users from the source course to the destination. 177 foreach ($keptroles as $roleid) { 178 $sourceusers = get_role_users($roleid, $context); 179 foreach ($sourceusers as $sourceuser) { 180 $enrol->enrol_user($instance, $sourceuser->id, $roleid); 181 } 182 } 183 } 184 185 // Set up remaining course settings. 186 $course = $DB->get_record('course', array('id' => $restorerecord->itemid), '*', MUST_EXIST); 187 $course->visible = $copyinfo->visible; 188 $course->idnumber = $copyinfo->idnumber; 189 $course->enddate = $copyinfo->enddate; 190 191 $DB->update_record('course', $course); 192 193 // Send message to user if enabled. 194 $messageenabled = (bool)get_config('backup', 'backup_async_message_users'); 195 if ($messageenabled && $rc->get_status() == \backup::STATUS_FINISHED_OK) { 196 mtrace('Course copy: Sending user notification.'); 197 $asynchelper = new async_helper('copy', $restoreid); 198 $messageid = $asynchelper->send_message(); 199 mtrace('Course copy: Sent message: ' . $messageid); 200 } 201 202 // Cleanup. 203 $bc->destroy(); 204 $rc->destroy(); 205 $file->delete(); 206 if (empty($CFG->keeptempdirectoriesonbackup)) { 207 fulldelete($backupbasepath); 208 } 209 210 $duration = time() - $started; 211 mtrace('Course copy: Copy completed in: ' . $duration . ' seconds'); 212 } 213 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body