Merge branch 'MDL-65436-master' of git://github.com/sarjona/moodle
[moodle.git] / backup / backup.php
blobe0606d1b3846066c51a371e474c04fca7fae58a4
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);
128 // Prepare a progress bar which can display optionally during long-running
129 // operations while setting up the UI.
130 $slowprogress = new \core\progress\display_if_slow(get_string('preparingui', 'backup'));
131 $renderer = $PAGE->get_renderer('core', 'backup');
132 $backup = new backup_ui($bc);
134 if ($backup->get_stage() == backup_ui::STAGE_SCHEMA && !$previous) {
135 // After schema stage, we are probably going to get to the confirmation stage,
136 // The confirmation stage has 2 sets of progress, so this is needed to prevent
137 // it showing 2 progress bars.
138 $twobars = true;
139 $slowprogress->start_progress('', 2);
140 } else {
141 $twobars = false;
143 $backup->get_controller()->set_progress($slowprogress);
144 $backup->process();
146 if ($backup->enforce_changed_dependencies()) {
147 debugging('Your settings have been altered due to unmet dependencies', DEBUG_DEVELOPER);
150 $loghtml = '';
151 if ($backup->get_stage() == backup_ui::STAGE_FINAL) {
153 if ($backupmode != backup::MODE_ASYNC) {
154 // Synchronous backup handling.
156 // Display an extra backup step bar so that we can show the 'processing' step first.
157 echo html_writer::start_div('', array('id' => 'executionprogress'));
158 echo $renderer->progress_bar($backup->get_progress_bar());
159 $backup->get_controller()->set_progress(new \core\progress\display());
161 // Prepare logger and add to end of chain.
162 $logger = new core_backup_html_logger($CFG->debugdeveloper ? backup::LOG_DEBUG : backup::LOG_INFO);
163 $backup->get_controller()->add_logger($logger);
165 // Carry out actual backup.
166 $backup->execute();
168 // Backup controller gets saved/loaded so the logger object changes and we
169 // have to retrieve it.
170 $logger = $backup->get_controller()->get_logger();
171 while (!is_a($logger, 'core_backup_html_logger')) {
172 $logger = $logger->get_next();
175 // Get HTML from logger.
176 if ($CFG->debugdisplay) {
177 $loghtml = $logger->get_html();
180 // Hide the progress display and first backup step bar (the 'finished' step will show next).
181 echo html_writer::end_div();
182 echo html_writer::script('document.getElementById("executionprogress").style.display = "none";');
183 } else {
184 // Async backup handling.
185 $backup->get_controller()->finish_ui();
187 echo html_writer::start_div('', array('id' => 'executionprogress'));
188 echo $renderer->progress_bar($backup->get_progress_bar());
189 echo html_writer::end_div();
191 // Create adhoc task for backup.
192 $asynctask = new \core\task\asynchronous_backup_task();
193 $asynctask->set_blocking(false);
194 $asynctask->set_custom_data(array('backupid' => $backupid));
195 \core\task\manager::queue_adhoc_task($asynctask);
197 // Add ajax progress bar and initiate ajax via a template.
198 $restoreurl = new moodle_url('/backup/restorefile.php', array('contextid' => $contextid));
199 $progresssetup = array(
200 'backupid' => $backupid,
201 'contextid' => $contextid,
202 'courseurl' => $courseurl->out(),
203 'restoreurl' => $restoreurl->out(),
204 'headingident' => 'backup'
206 echo $renderer->render_from_template('core/async_backup_status', $progresssetup);
209 } else {
210 $backup->save_controller();
213 if ($backup->get_stage() != backup_ui::STAGE_FINAL) {
215 // Displaying UI can require progress reporting, so do it here before outputting
216 // the backup stage bar (as part of the existing progress bar, if required).
217 $ui = $backup->display($renderer);
218 if ($twobars) {
219 $slowprogress->end_progress();
222 echo $renderer->progress_bar($backup->get_progress_bar());
223 echo $ui;
225 // Display log data if there was any.
226 if ($loghtml != '' && $backupmode != backup::MODE_ASYNC) {
227 echo $renderer->log_display($loghtml);
231 $backup->destroy();
232 unset($backup);
234 } else { // User has a pending async operation.
235 echo $OUTPUT->notification(get_string('pendingasyncerror', 'backup'), 'error');
236 echo $OUTPUT->container(get_string('pendingasyncdetail', 'backup'));
237 echo $OUTPUT->continue_button($courseurl);
240 echo $OUTPUT->footer();