mirror of
https://github.com/moodle/moodle.git
synced 2025-02-11 03:03:43 +01:00
93 lines
3.3 KiB
PHP
93 lines
3.3 KiB
PHP
<?php
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Folder module upgrade related helper functions
|
|
*
|
|
* @package mod-folder
|
|
* @copyright 2009 Petr Skoda (http://skodak.org)
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
/**
|
|
* Migrate folder module data from 1.9 resource_old table to new older table
|
|
* @return void
|
|
*/
|
|
function folder_20_migrate() {
|
|
global $CFG, $DB;
|
|
require_once("$CFG->libdir/filelib.php");
|
|
require_once("$CFG->dirroot/course/lib.php");
|
|
|
|
if (!file_exists("$CFG->dirroot/mod/resource/db/upgradelib.php")) {
|
|
// bad luck, somebody deleted resource module
|
|
return;
|
|
}
|
|
|
|
require_once("$CFG->dirroot/mod/resource/db/upgradelib.php");
|
|
|
|
// create resource_old table and copy resource table there if needed
|
|
if (!resource_20_prepare_migration()) {
|
|
// no modules or fresh install
|
|
return;
|
|
}
|
|
|
|
if (!$candidates = $DB->get_recordset('resource_old', array('type'=>'directory', 'migrated'=>0))) {
|
|
return;
|
|
}
|
|
|
|
$fs = get_file_storage();
|
|
|
|
foreach ($candidates as $candidate) {
|
|
upgrade_set_timeout();
|
|
|
|
$directory = '/'.trim($candidate->reference, '/').'/';
|
|
$directory = str_replace('//', '/', $directory);
|
|
|
|
$folder = new object();
|
|
$folder->course = $candidate->course;
|
|
$folder->name = $candidate->name;
|
|
$folder->intro = $candidate->intro;
|
|
$folder->introformat = $candidate->introformat;
|
|
$folder->revision = 1;
|
|
$folder->timemodified = time();
|
|
|
|
if (!$folder = resource_migrate_to_module('folder', $candidate, $folder)) {
|
|
continue;
|
|
}
|
|
|
|
// copy files in given directory, skip moddata and backups!
|
|
$context = get_context_instance(CONTEXT_MODULE, $candidate->cmid);
|
|
$coursecontext = get_context_instance(CONTEXT_COURSE, $candidate->course);
|
|
$files = $fs->get_directory_files($coursecontext->id, 'course_content', 0, $directory, true, true);
|
|
$file_record = array('contextid'=>$context->id, 'filearea'=>'folder_content', 'itemid'=>0);
|
|
foreach ($files as $file) {
|
|
$path = $file->get_filepath();
|
|
if (stripos($path, '/backupdata/') === 0 or stripos($path, '/moddata/') === 0) {
|
|
// do not publish protected data!
|
|
continue;
|
|
}
|
|
$relpath = substr($path, strlen($directory) - 1); // keep only subfolder paths
|
|
$file_record['filepath'] = $relpath;
|
|
$fs->create_file_from_storedfile($file_record, $file);
|
|
}
|
|
}
|
|
|
|
$candidates->close();
|
|
|
|
// clear all course modinfo caches
|
|
rebuild_course_cache(0, true);
|
|
} |