Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 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
/**
19
 * This script is used to configure and execute the backup proccess.
20
 *
21
 * @package    core
22
 * @subpackage backup
23
 * @copyright  Moodle
24
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25
 */
26
 
27
define('NO_OUTPUT_BUFFERING', true);
28
 
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');
32
 
33
// Backup of large courses requires extra memory. Use the amount configured
34
// in admin settings.
35
raise_memory_limit(MEMORY_EXTRA);
36
 
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
44
 */
45
$backupid = optional_param('backup', false, PARAM_ALPHANUM);
46
 
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;
51
}
52
 
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);
57
}
58
if ($cmid !== null) {
59
    $url->param('cm', $cmid);
60
}
61
$PAGE->set_url($url);
62
$PAGE->set_pagelayout('admin');
63
$id = $courseid;
64
$cm = null;
65
$course = $DB->get_record('course', array('id'=>$courseid), '*', MUST_EXIST);
66
$coursecontext = context_course::instance($course->id);
67
$contextid = $coursecontext->id;
68
$type = backup::TYPE_1COURSE;
69
if (!is_null($sectionid)) {
70
    $section = $DB->get_record('course_sections', array('course'=>$course->id, 'id'=>$sectionid), '*', MUST_EXIST);
71
    $type = backup::TYPE_1SECTION;
72
    $id = $sectionid;
73
}
74
if (!is_null($cmid)) {
75
    $cm = get_coursemodule_from_id(null, $cmid, $course->id, false, MUST_EXIST);
76
    $type = backup::TYPE_1ACTIVITY;
77
    $id = $cmid;
78
}
79
require_login($course, false, $cm);
80
 
81
switch ($type) {
82
    case backup::TYPE_1COURSE :
83
        require_capability('moodle/backup:backupcourse', $coursecontext);
84
        $heading = $course->fullname;
85
        $PAGE->set_secondary_active_tab('coursereuse');
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);
96
        }
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
        throw new \moodle_exception('unknownbackuptype');
106
}
107
 
108
$PAGE->set_title($heading);
109
$PAGE->set_heading($heading);
110
$PAGE->activityheader->disable();
111
 
112
if (empty($cancel)) {
113
    // Do not print the header if user cancelled the process, as we are going to redirect the user.
114
    echo $OUTPUT->header();
115
    \backup_helper::print_coursereuse_selector('backup');
116
    echo html_writer::tag('div', get_string('backupinfo'), ['class' => 'pb-3']);
117
}
118
 
119
// Only let user perform a backup if we aren't in async mode, or if we are
120
// and there are no pending backups for this item for this user.
121
if (!async_helper::is_async_pending($id, 'course', 'backup')) {
122
 
123
    // The mix of business logic and display elements below makes me sad.
124
    // This needs to refactored into the renderer and seperated out.
125
 
126
    if (!($bc = backup_ui::load_controller($backupid))) {
127
        $bc = new backup_controller($type, $id, backup::FORMAT_MOODLE,
128
                backup::INTERACTIVE_YES, $backupmode, $USER->id, backup::RELEASESESSION_YES);
129
        // The backup id did not relate to a valid controller so we made a new controller.
130
        // Now we need to reset the backup id to match the new controller.
131
        $backupid = $bc->get_backupid();
132
    }
133
 
134
    // Prepare a progress bar which can display optionally during long-running
135
    // operations while setting up the UI.
136
    $slowprogress = new \core\progress\display_if_slow(get_string('preparingui', 'backup'));
137
    $renderer = $PAGE->get_renderer('core', 'backup');
138
    $backup = new backup_ui($bc);
139
 
140
    if ($backup->get_stage() == backup_ui::STAGE_SCHEMA && !$previous) {
141
        // After schema stage, we are probably going to get to the confirmation stage,
142
        // The confirmation stage has 2 sets of progress, so this is needed to prevent
143
        // it showing 2 progress bars.
144
        $twobars = true;
145
        $slowprogress->start_progress('', 2);
146
    } else {
147
        $twobars = false;
148
    }
149
    $backup->get_controller()->set_progress($slowprogress);
150
    $backup->process();
151
 
152
    if ($backup->enforce_changed_dependencies()) {
153
        debugging('Your settings have been altered due to unmet dependencies', DEBUG_DEVELOPER);
154
    }
155
 
156
    $loghtml = '';
157
    if ($backup->get_stage() == backup_ui::STAGE_FINAL) {
158
 
159
        // Before we perform the backup check settings to see if user
160
        // or setting defaults are set to exclude files from the backup.
161
        if ($backup->get_setting_value('files') == 0) {
162
            $renderer->set_samesite_notification();
163
        }
164
 
165
        if ($backupmode != backup::MODE_ASYNC) {
166
            // Synchronous backup handling.
167
 
168
            // Display an extra backup step bar so that we can show the 'processing' step first.
169
            echo html_writer::start_div('', array('id' => 'executionprogress'));
170
            echo $renderer->progress_bar($backup->get_progress_bar());
171
            $backup->get_controller()->set_progress(new \core\progress\display());
172
 
173
            // Prepare logger and add to end of chain.
174
            $logger = new core_backup_html_logger($CFG->debugdeveloper ? backup::LOG_DEBUG : backup::LOG_INFO);
175
            $backup->get_controller()->add_logger($logger);
176
 
177
            // Carry out actual backup.
178
            $backup->execute();
179
 
180
            // Backup controller gets saved/loaded so the logger object changes and we
181
            // have to retrieve it.
182
            $logger = $backup->get_controller()->get_logger();
183
            while (!is_a($logger, 'core_backup_html_logger')) {
184
                $logger = $logger->get_next();
185
            }
186
 
187
            // Get HTML from logger.
188
            if ($CFG->debugdisplay) {
189
                $loghtml = $logger->get_html();
190
            }
191
 
192
            // Hide the progress display and first backup step bar (the 'finished' step will show next).
193
            echo html_writer::end_div();
194
            echo html_writer::script('document.getElementById("executionprogress").style.display = "none";');
195
 
196
        } else {
197
            // Async backup handling.
198
            $backup->get_controller()->finish_ui();
199
 
200
            echo html_writer::start_div('', array('id' => 'executionprogress'));
201
            echo $renderer->progress_bar($backup->get_progress_bar());
202
            echo html_writer::end_div();
203
 
204
            // Create adhoc task for backup.
205
            $asynctask = new \core\task\asynchronous_backup_task();
206
            $asynctask->set_custom_data(array('backupid' => $backupid));
207
            $asynctask->set_userid($USER->id);
208
            \core\task\manager::queue_adhoc_task($asynctask);
209
 
210
            // Add ajax progress bar and initiate ajax via a template.
211
            $restoreurl = new moodle_url('/backup/restorefile.php', array('contextid' => $contextid));
212
            $progresssetup = array(
213
                    'backupid' => $backupid,
214
                    'contextid' => $contextid,
215
                    'courseurl' => $courseurl->out(),
216
                    'restoreurl' => $restoreurl->out(),
217
                    'headingident' => 'backup'
218
            );
219
 
220
            echo $renderer->render_from_template('core/async_backup_status', $progresssetup);
221
        }
222
 
223
    } else {
224
        $backup->save_controller();
225
    }
226
 
227
    if ($backup->get_stage() != backup_ui::STAGE_FINAL) {
228
 
229
        // Displaying UI can require progress reporting, so do it here before outputting
230
        // the backup stage bar (as part of the existing progress bar, if required).
231
        $ui = $backup->display($renderer);
232
        if ($twobars) {
233
            $slowprogress->end_progress();
234
        }
235
 
236
        echo $renderer->progress_bar($backup->get_progress_bar());
237
        echo $ui;
238
 
239
        // Display log data if there was any.
240
        if ($loghtml != '' && $backupmode != backup::MODE_ASYNC) {
241
            echo $renderer->log_display($loghtml);
242
        }
243
    }
244
 
245
    $backup->destroy();
246
    unset($backup);
247
 
248
} else { // User has a pending async operation.
249
    echo $OUTPUT->notification(get_string('pendingasyncerror', 'backup'), 'error');
250
    echo $OUTPUT->container(get_string('pendingasyncdetail', 'backup'));
251
    echo $OUTPUT->continue_button($courseurl);
252
}
253
 
254
echo $OUTPUT->footer();