mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
7d2a049292
This patch introduces two new blocks global_navigation_tree and settings_navigation_tree both of which have been designed to make full use of the new navigation objects available through the $PAGE object. Bulk of this code is within lib/navigationlib.php
384 lines
15 KiB
PHP
384 lines
15 KiB
PHP
<?php //$Id$
|
|
|
|
/*
|
|
* This file is used for special upgrade functions - for example groups and gradebook.
|
|
* These functions must use SQL and database related functions only- no other Moodle API,
|
|
* because it might depend on db structures that are not yet present during upgrade.
|
|
* (Do not use functions from accesslib.php, grades classes or group functions at all!)
|
|
*/
|
|
|
|
function upgrade_fix_category_depths() {
|
|
global $CFG, $DB;
|
|
|
|
// first fix incorrect parents
|
|
$sql = "SELECT c.id
|
|
FROM {course_categories} c
|
|
WHERE c.parent > 0 AND c.parent NOT IN (SELECT pc.id FROM {course_categories} pc)";
|
|
if ($rs = $DB->get_recordset_sql($sql)) {
|
|
foreach ($rs as $cat) {
|
|
$cat->depth = 1;
|
|
$cat->path = '/'.$cat->id;
|
|
$cat->parent = 0;
|
|
$DB->update_record('course_categories', $cat);
|
|
}
|
|
$rs->close();
|
|
}
|
|
|
|
// now add path and depth to top level categories
|
|
$sql = "UPDATE {course_categories}
|
|
SET depth = 1, path = ".$DB->sql_concat("'/'", "id")."
|
|
WHERE parent = 0";
|
|
$DB->execute($sql);
|
|
|
|
// now fix all other levels - slow but works in all supported dbs
|
|
$parentdepth = 1;
|
|
while ($DB->record_exists('course_categories', array('depth'=>0))) {
|
|
$sql = "SELECT c.id, pc.path
|
|
FROM {course_categories} c, {course_categories} pc
|
|
WHERE c.parent=pc.id AND c.depth=0 AND pc.depth=?";
|
|
if ($rs = $DB->get_recordset_sql($sql, array($parentdepth))) {
|
|
foreach ($rs as $cat) {
|
|
$cat->depth = $parentdepth+1;
|
|
$cat->path = $cat->path.'/'.$cat->id;
|
|
$DB->update_record('course_categories', $cat);
|
|
}
|
|
$rs->close();
|
|
}
|
|
$parentdepth++;
|
|
if ($parentdepth > 100) {
|
|
//something must have gone wrong - nobody can have more than 100 levels of categories, right?
|
|
debugging('Unknown error fixing category depths');
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Moves all course files except the moddata to new file storage
|
|
*
|
|
* Unfortunately this function uses core file related functions - it might be necessary to tweak it if something changes there :-(
|
|
*/
|
|
function upgrade_migrate_files_courses() {
|
|
global $DB, $CFG;
|
|
require_once($CFG->libdir.'/filelib.php');
|
|
|
|
$count = $DB->count_records('course');
|
|
$pbar = new progress_bar('migratecoursefiles', 500, true);
|
|
|
|
$rs = $DB->get_recordset('course');
|
|
$i = 0;
|
|
foreach ($rs as $course) {
|
|
$i++;
|
|
upgrade_set_timeout(60*5); // set up timeout, may also abort execution
|
|
$context = get_context_instance(CONTEXT_COURSE, $course->id);
|
|
upgrade_migrate_files_course($context, '/', true);
|
|
$pbar->update($i, $count, "Migrated course files - course $i/$count.");
|
|
}
|
|
$rs->close();
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Internal function - do not use directly
|
|
*/
|
|
function upgrade_migrate_files_course($context, $path, $delete) {
|
|
global $CFG, $OUTPUT;
|
|
|
|
$fullpathname = $CFG->dataroot.'/'.$context->instanceid.$path;
|
|
if (!file_exists($fullpathname)) {
|
|
return;
|
|
}
|
|
$items = new DirectoryIterator($fullpathname);
|
|
$fs = get_file_storage();
|
|
|
|
foreach ($items as $item) {
|
|
if ($item->isDot()) {
|
|
continue;
|
|
}
|
|
|
|
if ($item->isLink()) {
|
|
// do not delete symbolic links or its children
|
|
$delete_this = false;
|
|
} else {
|
|
$delete_this = $delete;
|
|
}
|
|
|
|
if (strpos($path, '/backupdata/') === 0) {
|
|
$filearea = 'course_backup';
|
|
$filepath = substr($path, strlen('/backupdata'));
|
|
} else {
|
|
$filearea = 'course_content';
|
|
$filepath = $path;
|
|
}
|
|
|
|
if ($item->isFile()) {
|
|
if (!$item->isReadable()) {
|
|
echo $OUTPUT->notification(" File not readable, skipping: ".$fullpathname.$item->getFilename());
|
|
continue;
|
|
}
|
|
|
|
$filepath = clean_param($filepath, PARAM_PATH);
|
|
$filename = clean_param($item->getFilename(), PARAM_FILE);
|
|
|
|
if ($filename === '') {
|
|
//unsupported chars, sorry
|
|
continue;
|
|
}
|
|
|
|
if (!$fs->file_exists($context->id, $filearea, '0', $filepath, $filename)) {
|
|
$file_record = array('contextid'=>$context->id, 'filearea'=>$filearea, 'itemid'=>0, 'filepath'=>$filepath, 'filename'=>$filename,
|
|
'timecreated'=>$item->getCTime(), 'timemodified'=>$item->getMTime());
|
|
if ($fs->create_file_from_pathname($file_record, $fullpathname.$item->getFilename())) {
|
|
if ($delete_this) {
|
|
@unlink($fullpathname.$item->getFilename());
|
|
}
|
|
}
|
|
}
|
|
|
|
} else {
|
|
if ($path == '/' and $item->getFilename() == 'moddata') {
|
|
continue; // modules are responsible
|
|
}
|
|
|
|
$dirname = clean_param($item->getFilename(), PARAM_PATH);
|
|
if ($dirname === '') {
|
|
//unsupported chars, sorry
|
|
continue;
|
|
}
|
|
$filepath = ($filepath.$dirname.'/');
|
|
if ($filepath !== '/backupdata/') {
|
|
$fs->create_directory($context->id, $filearea, 0, $filepath);
|
|
}
|
|
|
|
//migrate recursively all subdirectories
|
|
upgrade_migrate_files_course($context, $path.$item->getFilename().'/', $delete_this);
|
|
if ($delete_this) {
|
|
// delete dir if empty
|
|
@rmdir($fullpathname.$item->getFilename());
|
|
}
|
|
}
|
|
}
|
|
unset($items); //release file handles
|
|
}
|
|
|
|
/**
|
|
* Moves all block attachments
|
|
*
|
|
* Unfortunately this function uses core file related functions - it might be necessary to tweak it if something changes there :-(
|
|
*/
|
|
function upgrade_migrate_files_blog() {
|
|
global $DB, $CFG, $OUTPUT;
|
|
|
|
$fs = get_file_storage();
|
|
|
|
$count = $DB->count_records_select('post', "module='blog' AND attachment IS NOT NULL AND attachment <> '1'");
|
|
|
|
if ($rs = $DB->get_recordset_select('post', "module='blog' AND attachment IS NOT NULL AND attachment <> '1'")) {
|
|
|
|
upgrade_set_timeout(60*20); // set up timeout, may also abort execution
|
|
|
|
$pbar = new progress_bar('migrateblogfiles', 500, true);
|
|
|
|
$i = 0;
|
|
foreach ($rs as $entry) {
|
|
$i++;
|
|
$pathname = "$CFG->dataroot/blog/attachments/$entry->id/$entry->attachment";
|
|
if (!file_exists($pathname)) {
|
|
$entry->attachment = NULL;
|
|
$DB->update_record('post', $entry);
|
|
continue;
|
|
}
|
|
|
|
$filename = clean_param($entry->attachment, PARAM_FILE);
|
|
if ($filename === '') {
|
|
// weird file name, ignore it
|
|
$entry->attachment = NULL;
|
|
$DB->update_record('post', $entry);
|
|
continue;
|
|
}
|
|
|
|
if (!is_readable($pathname)) {
|
|
echo $OUTPUT->notification(" File not readable, skipping: ".$pathname);
|
|
continue;
|
|
}
|
|
|
|
if (!$fs->file_exists(SYSCONTEXTID, 'blog', $entry->id, '/', $filename)) {
|
|
$file_record = array('contextid'=>SYSCONTEXTID, 'filearea'=>'blog', 'itemid'=>$entry->id, 'filepath'=>'/', 'filename'=>$filename,
|
|
'timecreated'=>filectime($pathname), 'timemodified'=>filemtime($pathname), 'userid'=>$entry->userid);
|
|
$fs->create_file_from_pathname($file_record, $pathname);
|
|
}
|
|
@unlink($pathname);
|
|
@rmdir("$CFG->dataroot/blog/attachments/$entry->id/");
|
|
|
|
$entry->attachment = 1; // file name not needed there anymore
|
|
$DB->update_record('post', $entry);
|
|
$pbar->update($i, $count, "Migrated blog attachments - $i/$count.");
|
|
}
|
|
$rs->close();
|
|
}
|
|
|
|
@rmdir("$CFG->dataroot/blog/attachments/");
|
|
@rmdir("$CFG->dataroot/blog/");
|
|
}
|
|
|
|
/**
|
|
* This function will fix the status of the localhost/all records in the mnet_host table
|
|
* checking they exist and adding them if missing + redefine CFG->mnet_localhost_id and
|
|
* CFG->mnet_all_hosts_id if needed + update all the users having non-existent mnethostid
|
|
* to correct CFG->mnet_localhost_id
|
|
*
|
|
* Implemented because, at some point, specially in old installations upgraded along
|
|
* multiple versions, sometimes the stuff above has ended being inconsistent, causing
|
|
* problems here and there (noticeablely in backup/restore). MDL-16879
|
|
*/
|
|
function upgrade_fix_incorrect_mnethostids() {
|
|
|
|
global $CFG, $DB;
|
|
|
|
/// Get current $CFG/mnet_host records
|
|
$old_mnet_localhost_id = !empty($CFG->mnet_localhost_id) ? $CFG->mnet_localhost_id : 0;
|
|
$old_mnet_all_hosts_id = !empty($CFG->mnet_all_hosts_id) ? $CFG->mnet_all_hosts_id : 0;
|
|
|
|
$current_mnet_localhost_host = $DB->get_record('mnet_host', array('wwwroot' => $CFG->wwwroot)); /// By wwwroot
|
|
$current_mnet_all_hosts_host = $DB->get_record_select('mnet_host', $DB->sql_isempty('mnet_host', 'wwwroot', false, false)); /// By empty wwwroot
|
|
|
|
/// Create localhost_host if necessary (pretty improbable but better to be 100% in the safe side)
|
|
/// Code stolen from mnet_environment->init
|
|
if (!$current_mnet_localhost_host) {
|
|
$current_mnet_localhost_host = new stdClass();
|
|
$current_mnet_localhost_host->wwwroot = $CFG->wwwroot;
|
|
$current_mnet_localhost_host->ip_address = '';
|
|
$current_mnet_localhost_host->public_key = '';
|
|
$current_mnet_localhost_host->public_key_expires = 0;
|
|
$current_mnet_localhost_host->last_connect_time = 0;
|
|
$current_mnet_localhost_host->last_log_id = 0;
|
|
$current_mnet_localhost_host->deleted = 0;
|
|
$current_mnet_localhost_host->name = '';
|
|
/// Get the ip of the server
|
|
if (empty($_SERVER['SERVER_ADDR'])) {
|
|
/// SERVER_ADDR is only returned by Apache-like webservers
|
|
$count = preg_match("@^(?:http[s]?://)?([A-Z0-9\-\.]+).*@i", $current_mnet_localhost_host->wwwroot, $matches);
|
|
$my_hostname = $count > 0 ? $matches[1] : false;
|
|
$my_ip = gethostbyname($my_hostname); // Returns unmodified hostname on failure. DOH!
|
|
if ($my_ip == $my_hostname) {
|
|
$current_mnet_localhost_host->ip_address = 'UNKNOWN';
|
|
} else {
|
|
$current_mnet_localhost_host->ip_address = $my_ip;
|
|
}
|
|
} else {
|
|
$current_mnet_localhost_host->ip_address = $_SERVER['SERVER_ADDR'];
|
|
}
|
|
$current_mnet_localhost_host->id = $DB->insert_record('mnet_host', $current_mnet_localhost_host, true);
|
|
}
|
|
|
|
/// Create all_hosts_host if necessary (pretty improbable but better to be 100% in the safe side)
|
|
/// Code stolen from mnet_environment->init
|
|
if (!$current_mnet_all_hosts_host) {
|
|
$current_mnet_all_hosts_host = new stdClass();
|
|
$current_mnet_all_hosts_host->wwwroot = '';
|
|
$current_mnet_all_hosts_host->ip_address = '';
|
|
$current_mnet_all_hosts_host->public_key = '';
|
|
$current_mnet_all_hosts_host->public_key_expires = 0;
|
|
$current_mnet_all_hosts_host->last_connect_time = 0;
|
|
$current_mnet_all_hosts_host->last_log_id = 0;
|
|
$current_mnet_all_hosts_host->deleted = 0;
|
|
$current_mnet_all_hosts_host->name = 'All Hosts';
|
|
$current_mnet_all_hosts_host->id = $DB->insert_record('mnet_host', $current_mnet_all_hosts_host, true);
|
|
}
|
|
|
|
/// Compare old_mnet_localhost_id and current_mnet_localhost_host
|
|
|
|
if ($old_mnet_localhost_id != $current_mnet_localhost_host->id) { /// Different = problems
|
|
/// Update $CFG->mnet_localhost_id to correct value
|
|
set_config('mnet_localhost_id', $current_mnet_localhost_host->id);
|
|
|
|
/// Delete $old_mnet_localhost_id if exists (users will be assigned to new one below)
|
|
$DB->delete_records('mnet_host', array('id' => $old_mnet_localhost_id));
|
|
}
|
|
|
|
/// Compare old_mnet_all_hosts_id and current_mnet_all_hosts_host
|
|
|
|
if ($old_mnet_all_hosts_id != $current_mnet_all_hosts_host->id) { /// Different = problems
|
|
/// Update $CFG->mnet_localhost_id to correct value
|
|
set_config('mnet_all_hosts_id', $current_mnet_all_hosts_host->id);
|
|
|
|
/// Delete $old_mnet_all_hosts_id if exists
|
|
$DB->delete_records('mnet_host', array('id' => $old_mnet_all_hosts_id));
|
|
}
|
|
|
|
/// Finally, update all the incorrect user->mnethostid to the correct CFG->mnet_localhost_id, preventing UIX dupes
|
|
$hosts = $DB->get_records_menu('mnet_host', null, '', 'id, id AS id2');
|
|
list($in_sql, $in_params) = $DB->get_in_or_equal($hosts, SQL_PARAMS_QM, null, false);
|
|
|
|
$sql = "SELECT id
|
|
FROM {user} u1
|
|
WHERE u1.mnethostid $in_sql
|
|
AND NOT EXISTS (
|
|
SELECT 'x'
|
|
FROM {user} u2
|
|
WHERE u2.username = u1.username
|
|
AND u2.mnethostid = ?)";
|
|
|
|
$params = array_merge($in_params, array($current_mnet_localhost_host->id));
|
|
|
|
if ($rs = $DB->get_recordset_sql($sql, $params)) {
|
|
foreach ($rs as $rec) {
|
|
$DB->set_field('user', 'mnethostid', $current_mnet_localhost_host->id, array('id' => $rec->id));
|
|
upgrade_set_timeout(60); /// Give upgrade at least 60 more seconds
|
|
}
|
|
$rs->close();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* This function is used as part of the great navigation upgrade of 20090828
|
|
* It is used to clean up contexts that are unique to a blocks that are about
|
|
* to be removed.
|
|
*
|
|
*
|
|
* Look at {@link blocklib.php::blocks_delete_instance()} the function from
|
|
* which I based this code. It is important to mention one very important fact
|
|
* before doing this I checked that the blocks did not override the
|
|
* {@link block_base::instance_delete()} method. Should this function ever
|
|
* be repeated check this again
|
|
*
|
|
* @link lib/db/upgrade.php
|
|
*
|
|
* @since navigation upgrade 20090828
|
|
* @param array $contextidarray An array of block instance context ids
|
|
* @return bool
|
|
*/
|
|
function upgrade_cleanup_unwanted_block_contexts($contextidarray) {
|
|
global $DB;
|
|
|
|
if (!is_array($contextidarray) || count($contextidarray)===0) {
|
|
// Ummmm no instances?
|
|
return true;
|
|
}
|
|
|
|
$contextidstring = join(',', $contextidarray);
|
|
|
|
$blockcontexts = $DB->get_recordset_select('context', 'contextlevel = '.CONTEXT_BLOCK.' AND id IN ('.$contextidstring.')', array(), '', 'id, contextlevel');
|
|
$blockcontextids = array();
|
|
foreach ($blockcontexts as $blockcontext) {
|
|
$blockcontextids[] = $blockcontext->id;
|
|
}
|
|
|
|
if (count($blockcontextids)===0) {
|
|
// None of the instances have unique contexts
|
|
return true;
|
|
}
|
|
|
|
$blockcontextidsstring = join(',', $blockcontextids);
|
|
|
|
$outcome1 = $DB->delete_records_select('role_assignments', 'contextid IN ('.$blockcontextidsstring.')');
|
|
$outcome2 = $DB->delete_records_select('role_capabilities', 'contextid IN ('.$blockcontextidsstring.')');
|
|
$outcome3 = $DB->delete_records_select('role_names', 'contextid IN ('.$blockcontextidsstring.')');
|
|
$outcome4 = $DB->delete_records_select('context', 'id IN ('.$blockcontextidsstring.')');
|
|
|
|
return ($outcome1 && $outcome2 && $outcome4 && $outcome4);
|
|
}
|
|
|
|
?>
|