Merge branch 'MDL-68944-311' of https://github.com/juancs/moodle into MOODLE_311_STABLE
[moodle.git] / backup / backup.php
blobc68bbfa98828c49b6c8f0316a52e57bfad03a533
1 <?php
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.
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/>.
18 /**
19 * This script is used to configure and execute the backup proccess.
21 * @package core
22 * @subpackage backup
23 * @copyright Moodle
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 define('NO_OUTPUT_BUFFERING', true);
29 require_once('../config.php');
30 require_once($CFG->dirroot . '/backup/util/includes/backup_includes.php');
31 require_once($CFG->dirroot . '/backup/moodle2/backup_plan_builder.class.php');
33 // Backup of large courses requires extra memory. Use the amount configured
34 // in admin settings.
35 raise_memory_limit(MEMORY_EXTRA);
37 $courseid = required_param('id', PARAM_INT);
38 $sectionid = optional_param('section', null, PARAM_INT);
39 $cmid = optional_param('cm', null, PARAM_INT);
40 $cancel = optional_param('cancel', '', PARAM_ALPHA);
41 $previous = optional_param('previous', false, PARAM_BOOL);
42 /**
43 * Part of the forms in stages after initial, is POST never GET
45 $backupid = optional_param('backup', false, PARAM_ALPHANUM);
47 // Determine if we are performing realtime for asynchronous backups.
48 $backupmode = backup::MODE_GENERAL;
49 if (async_helper::is_async_enabled()) {
50 $backupmode = backup::MODE_ASYNC;
53 $courseurl = new moodle_url('/course/view.php', array('id' => $courseid));
54 $url = new moodle_url('/backup/backup.php', array('id'=>$courseid));
55 if ($sectionid !== null) {
56 $url->param('section', $sectionid);
58 if ($cmid !== null) {
59 $url->param('cm', $cmid);
61 $PAGE->set_url($url);
62 $PAGE->set_pagelayout('admin');
64 $id = $courseid;
65 $cm = null;
66 $course = $DB->get_record('course', array('id'=>$courseid), '*', MUST_EXIST);
67 $coursecontext = context_course::instance($course->id);
68 $contextid = $coursecontext->id;
69 $type = backup::TYPE_1COURSE;
70 if (!is_null($sectionid)) {
71 $section = $DB->get_record('course_sections', array('course'=>$course->id, 'id'=>$sectionid), '*', MUST_EXIST);
72 $type = backup::TYPE_1SECTION;
73 $id = $sectionid;
75 if (!is_null($cmid)) {
76 $cm = get_coursemodule_from_id(null, $cmid, $course->id, false, MUST_EXIST);
77 $type = backup::TYPE_1ACTIVITY;
78 $id = $cmid;
80 require_login($course, false, $cm);
82 switch ($type) {
83 case backup::TYPE_1COURSE :
84 require_capability('moodle/backup:backupcourse', $coursecontext);
85 $heading = get_string('backupcourse', 'backup', $course->shortname);
86 break;
87 case backup::TYPE_1SECTION :
88 require_capability('moodle/backup:backupsection', $coursecontext);
89 if ((string)$section->name !== '') {
90 $sectionname = format_string($section->name, true, array('context' => $coursecontext));
91 $heading = get_string('backupsection', 'backup', $sectionname);
92 $PAGE->navbar->add($sectionname);
93 } else {
94 $heading = get_string('backupsection', 'backup', $section->section);
95 $PAGE->navbar->add(get_string('section').' '.$section->section);
97 break;
98 case backup::TYPE_1ACTIVITY :
99 $activitycontext = context_module::instance($cm->id);
100 require_capability('moodle/backup:backupactivity', $activitycontext);
101 $contextid = $activitycontext->id;
102 $heading = get_string('backupactivity', 'backup', $cm->name);
103 break;
104 default :
105 print_error('unknownbackuptype');
108 $PAGE->set_title($heading);
109 $PAGE->set_heading($heading);
111 if (empty($cancel)) {
112 // Do not print the header if user cancelled the process, as we are going to redirect the user.
113 echo $OUTPUT->header();
116 // Only let user perform a backup if we aren't in async mode, or if we are
117 // and there are no pending backups for this item for this user.
118 if (!async_helper::is_async_pending($id, 'course', 'backup')) {
120 // The mix of business logic and display elements below makes me sad.
121 // This needs to refactored into the renderer and seperated out.
123 if (!($bc = backup_ui::load_controller($backupid))) {
124 $bc = new backup_controller($type, $id, backup::FORMAT_MOODLE,
125 backup::INTERACTIVE_YES, $backupmode, $USER->id, backup::RELEASESESSION_YES);
126 // The backup id did not relate to a valid controller so we made a new controller.
127 // Now we need to reset the backup id to match the new controller.
128 $backupid = $bc->get_backupid();
131 // Prepare a progress bar which can display optionally during long-running
132 // operations while setting up the UI.
133 $slowprogress = new \core\progress\display_if_slow(get_string('preparingui', 'backup'));
134 $renderer = $PAGE->get_renderer('core', 'backup');
135 $backup = new backup_ui($bc);
137 if ($backup->get_stage() == backup_ui::STAGE_SCHEMA && !$previous) {
138 // After schema stage, we are probably going to get to the confirmation stage,
139 // The confirmation stage has 2 sets of progress, so this is needed to prevent
140 // it showing 2 progress bars.
141 $twobars = true;
142 $slowprogress->start_progress('', 2);
143 } else {
144 $twobars = false;
146 $backup->get_controller()->set_progress($slowprogress);
147 $backup->process();
149 if ($backup->enforce_changed_dependencies()) {
150 debugging('Your settings have been altered due to unmet dependencies', DEBUG_DEVELOPER);
153 $loghtml = '';
154 if ($backup->get_stage() == backup_ui::STAGE_FINAL) {
156 // Before we perform the backup check settings to see if user
157 // or setting defaults are set to exclude files from the backup.
158 if ($backup->get_setting_value('files') == 0) {
159 $renderer->set_samesite_notification();
162 if ($backupmode != backup::MODE_ASYNC) {
163 // Synchronous backup handling.
165 // Display an extra backup step bar so that we can show the 'processing' step first.
166 echo html_writer::start_div('', array('id' => 'executionprogress'));
167 echo $renderer->progress_bar($backup->get_progress_bar());
168 $backup->get_controller()->set_progress(new \core\progress\display());
170 // Prepare logger and add to end of chain.
171 $logger = new core_backup_html_logger($CFG->debugdeveloper ? backup::LOG_DEBUG : backup::LOG_INFO);
172 $backup->get_controller()->add_logger($logger);
174 // Carry out actual backup.
175 $backup->execute();
177 // Backup controller gets saved/loaded so the logger object changes and we
178 // have to retrieve it.
179 $logger = $backup->get_controller()->get_logger();
180 while (!is_a($logger, 'core_backup_html_logger')) {
181 $logger = $logger->get_next();
184 // Get HTML from logger.
185 if ($CFG->debugdisplay) {
186 $loghtml = $logger->get_html();
189 // Hide the progress display and first backup step bar (the 'finished' step will show next).
190 echo html_writer::end_div();
191 echo html_writer::script('document.getElementById("executionprogress").style.display = "none";');
193 } else {
194 // Async backup handling.
195 $backup->get_controller()->finish_ui();
197 echo html_writer::start_div('', array('id' => 'executionprogress'));
198 echo $renderer->progress_bar($backup->get_progress_bar());
199 echo html_writer::end_div();
201 // Create adhoc task for backup.
202 $asynctask = new \core\task\asynchronous_backup_task();
203 $asynctask->set_blocking(false);
204 $asynctask->set_custom_data(array('backupid' => $backupid));
205 \core\task\manager::queue_adhoc_task($asynctask);
207 // Add ajax progress bar and initiate ajax via a template.
208 $restoreurl = new moodle_url('/backup/restorefile.php', array('contextid' => $contextid));
209 $progresssetup = array(
210 'backupid' => $backupid,
211 'contextid' => $contextid,
212 'courseurl' => $courseurl->out(),
213 'restoreurl' => $restoreurl->out(),
214 'headingident' => 'backup'
217 echo $renderer->render_from_template('core/async_backup_status', $progresssetup);
220 } else {
221 $backup->save_controller();
224 if ($backup->get_stage() != backup_ui::STAGE_FINAL) {
226 // Displaying UI can require progress reporting, so do it here before outputting
227 // the backup stage bar (as part of the existing progress bar, if required).
228 $ui = $backup->display($renderer);
229 if ($twobars) {
230 $slowprogress->end_progress();
233 echo $renderer->progress_bar($backup->get_progress_bar());
234 echo $ui;
236 // Display log data if there was any.
237 if ($loghtml != '' && $backupmode != backup::MODE_ASYNC) {
238 echo $renderer->log_display($loghtml);
242 $backup->destroy();
243 unset($backup);
245 } else { // User has a pending async operation.
246 echo $OUTPUT->notification(get_string('pendingasyncerror', 'backup'), 'error');
247 echo $OUTPUT->container(get_string('pendingasyncdetail', 'backup'));
248 echo $OUTPUT->continue_button($courseurl);
251 echo $OUTPUT->footer();