. // // // /////////////////////////////////////////////////////////////////////////// /* * @package course * @subpackage publish * @author Jerome Mouneyrac * @license http://www.gnu.org/copyleft/gpl.html GNU GPL * @copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com * * This page display the publication backup form */ require_once('../../config.php'); require_once($CFG->dirroot . '/backup/util/includes/backup_includes.php'); require_once($CFG->dirroot . '/backup/moodle2/backup_plan_builder.class.php'); require_once($CFG->dirroot . '/' . $CFG->admin . '/registration/lib.php'); require_once($CFG->dirroot . '/course/publish/lib.php'); require_once($CFG->libdir . '/filelib.php'); //retrieve initial page parameters $id = required_param('id', PARAM_INT); $hubcourseid = required_param('hubcourseid', PARAM_INT); $huburl = required_param('huburl', PARAM_URL); $hubname = optional_param('hubname', '', PARAM_TEXT); //some permissions and parameters checking $course = $DB->get_record('course', array('id'=>$id), '*', MUST_EXIST); require_login($course); if (!has_capability('moodle/course:publish', get_context_instance(CONTEXT_COURSE, $id)) or !confirm_sesskey()) { throw new moodle_exception('nopermission'); } //page settings $PAGE->set_url('/course/publish/backup.php'); $PAGE->set_pagelayout('course'); $PAGE->set_title(get_string('course') . ': ' . $course->fullname); $PAGE->set_heading($course->fullname); //BEGIN backup processing $backupid = optional_param('backup', false, PARAM_ALPHANUM); if (!($bc = backup_ui::load_controller($backupid))) { $bc = new backup_controller(backup::TYPE_1COURSE, $id, backup::FORMAT_MOODLE, backup::INTERACTIVE_YES, backup::MODE_HUB, $USER->id); } $backup = new backup_ui($bc, array('id' => $id, 'hubcourseid' => $hubcourseid, 'huburl' => $huburl, 'hubname' => $hubname)); $backup->process(); if ($backup->get_stage() == backup_ui::STAGE_FINAL) { $backup->execute(); } else { $backup->save_controller(); } if ($backup->get_stage() !== backup_ui::STAGE_COMPLETE) { $renderer = $PAGE->get_renderer('core', 'backup'); echo $OUTPUT->header(); echo $OUTPUT->heading(get_string('publishcourseon', 'hub', !empty($hubname)?$hubname:$huburl), 3, 'main'); if ($backup->enforce_changed_dependencies()) { echo $renderer->dependency_notification(get_string('dependenciesenforced', 'backup')); } echo $renderer->progress_bar($backup->get_progress_bar()); echo $backup->display(); echo $OUTPUT->footer(); die(); } //$backupfile = $backup->get_stage_results(); $backupfile = $bc->get_results(); $backupfile = $backupfile['backup_destination']; //END backup processing //retrieve the token to call the hub $registrationmanager = new registration_manager(); $registeredhub = $registrationmanager->get_registeredhub($huburl); //display the sending file page echo $OUTPUT->header(); echo $OUTPUT->heading(get_string('sendingcourse', 'hub'), 3, 'main'); $renderer = $PAGE->get_renderer('core', 'publish'); echo $renderer->sendingbackupinfo($backupfile); if (ob_get_level()) { ob_flush(); } flush(); //send backup file to the hub $curl = new curl(); $params = array(); $params['filetype'] = HUB_BACKUP_FILE_TYPE; $params['courseid'] = $hubcourseid; $params['file'] = $backupfile; $params['token'] = $registeredhub->token; $curl->post($huburl . "/local/hub/webservice/upload.php", $params); //delete the temp backup file from user_tohub aera $backupfile->delete(); $bc->destroy(); //Output sending success echo $renderer->sentbackupinfo($id, $huburl, $hubname); echo $OUTPUT->footer();