2010-07-03 13:37:13 +00:00
|
|
|
<?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/>.
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Utility class for browsing of module files.
|
|
|
|
*
|
2012-02-15 12:48:57 +08:00
|
|
|
* @package core_files
|
2010-07-03 13:37:13 +00:00
|
|
|
* @copyright 2008 Petr Skoda (http://skodak.org)
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
|
|
|
|
/**
|
2012-02-15 12:48:57 +08:00
|
|
|
* Represents a module context in the tree navigated by {@link file_browser}.
|
2010-07-03 13:37:13 +00:00
|
|
|
*
|
2012-02-15 12:48:57 +08:00
|
|
|
* @package core_files
|
2010-07-03 13:37:13 +00:00
|
|
|
* @copyright 2008 Petr Skoda (http://skodak.org)
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
class file_info_context_module extends file_info {
|
2012-02-15 12:48:57 +08:00
|
|
|
/** @var stdClass Course object */
|
2010-07-03 13:37:13 +00:00
|
|
|
protected $course;
|
2012-02-15 12:48:57 +08:00
|
|
|
/** @var stdClass Course module object */
|
2010-07-03 13:37:13 +00:00
|
|
|
protected $cm;
|
2012-02-15 12:48:57 +08:00
|
|
|
/** @var string Module name */
|
2010-07-03 13:37:13 +00:00
|
|
|
protected $modname;
|
2012-02-15 12:48:57 +08:00
|
|
|
/** @var array Available file areas */
|
2010-07-03 13:37:13 +00:00
|
|
|
protected $areas;
|
|
|
|
|
2012-02-15 12:48:57 +08:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param file_browser $browser file browser instance
|
|
|
|
* @param stdClass $context context object
|
|
|
|
* @param stdClass $course course object
|
|
|
|
* @param stdClass $cm course module object
|
|
|
|
* @param string $modname module name
|
|
|
|
*/
|
2010-07-03 13:37:13 +00:00
|
|
|
public function __construct($browser, $context, $course, $cm, $modname) {
|
2010-09-18 10:28:12 +00:00
|
|
|
global $CFG;
|
2010-07-03 13:37:13 +00:00
|
|
|
|
|
|
|
parent::__construct($browser, $context);
|
|
|
|
$this->course = $course;
|
|
|
|
$this->cm = $cm;
|
|
|
|
$this->modname = $modname;
|
|
|
|
|
|
|
|
include_once("$CFG->dirroot/mod/$modname/lib.php");
|
|
|
|
|
|
|
|
//find out all supported areas
|
|
|
|
$functionname = 'mod_'.$modname.'_get_file_areas';
|
|
|
|
$functionname_old = $modname.'_get_file_areas';
|
|
|
|
|
|
|
|
if (function_exists($functionname)) {
|
|
|
|
$this->areas = $functionname($course, $cm, $context);
|
|
|
|
} else if (function_exists($functionname_old)) {
|
|
|
|
$this->areas = $functionname_old($course, $cm, $context);
|
|
|
|
} else {
|
|
|
|
$this->areas = array();
|
|
|
|
}
|
|
|
|
unset($this->areas['intro']); // hardcoded, ignore attempts to override it
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return information about this specific context level
|
|
|
|
*
|
2012-02-15 12:48:57 +08:00
|
|
|
* @param string $component component
|
|
|
|
* @param string $filearea file area
|
|
|
|
* @param int $itemid item ID
|
|
|
|
* @param string $filepath file path
|
|
|
|
* @param string $filename file name
|
|
|
|
* @return file_info|null
|
2010-07-03 13:37:13 +00:00
|
|
|
*/
|
|
|
|
public function get_file_info($component, $filearea, $itemid, $filepath, $filename) {
|
2011-08-06 15:45:18 +02:00
|
|
|
// try to emulate require_login() tests here
|
|
|
|
if (!isloggedin()) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$coursecontext = get_course_context($this->context);
|
|
|
|
if (!$this->course->visible and !has_capability('moodle/course:viewhiddencourses', $coursecontext)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!is_viewing($this->context) and !is_enrolled($this->context)) {
|
2010-07-03 13:37:13 +00:00
|
|
|
// no peaking here if not enrolled or inspector
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2011-08-06 15:45:18 +02:00
|
|
|
$modinfo = get_fast_modinfo($this->course);
|
|
|
|
$cminfo = $modinfo->get_cm($this->cm->id);
|
|
|
|
if (!$cminfo->uservisible) {
|
|
|
|
// activity hidden sorry
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2010-07-03 13:37:13 +00:00
|
|
|
if (empty($component)) {
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($component == 'mod_'.$this->modname and $filearea === 'intro') {
|
|
|
|
return $this->get_area_intro($itemid, $filepath, $filename);
|
|
|
|
} else if ($component == 'backup' and $filearea === 'activity') {
|
|
|
|
return $this->get_area_backup($itemid, $filepath, $filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
$functionname = 'mod_'.$this->modname.'_get_file_info';
|
|
|
|
$functionname_old = $this->modname.'_get_file_info';
|
|
|
|
|
|
|
|
if (function_exists($functionname)) {
|
|
|
|
return $functionname($this->browser, $this->areas, $this->course, $this->cm, $this->context, $filearea, $itemid, $filepath, $filename);
|
|
|
|
} else if (function_exists($functionname_old)) {
|
|
|
|
return $functionname_old($this->browser, $this->areas, $this->course, $this->cm, $this->context, $filearea, $itemid, $filepath, $filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2012-02-15 12:48:57 +08:00
|
|
|
/**
|
|
|
|
* Get a file from module intro area
|
|
|
|
*
|
|
|
|
* @param int $itemid item ID
|
|
|
|
* @param string $filepath file path
|
|
|
|
* @param string $filename file name
|
|
|
|
* @return file_info|null
|
|
|
|
*/
|
2010-07-03 13:37:13 +00:00
|
|
|
protected function get_area_intro($itemid, $filepath, $filename) {
|
|
|
|
global $CFG;
|
|
|
|
|
|
|
|
if (!plugin_supports('mod', $this->modname, FEATURE_MOD_INTRO, true) or !has_capability('moodle/course:managefiles', $this->context)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$fs = get_file_storage();
|
|
|
|
|
|
|
|
$filepath = is_null($filepath) ? '/' : $filepath;
|
|
|
|
$filename = is_null($filename) ? '.' : $filename;
|
|
|
|
if (!$storedfile = $fs->get_file($this->context->id, 'mod_'.$this->modname, 'intro', 0, $filepath, $filename)) {
|
|
|
|
if ($filepath === '/' and $filename === '.') {
|
|
|
|
$storedfile = new virtual_root_file($this->context->id, 'mod_'.$this->modname, 'intro', 0);
|
|
|
|
} else {
|
|
|
|
// not found
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$urlbase = $CFG->wwwroot.'/pluginfile.php';
|
|
|
|
return new file_info_stored($this->browser, $this->context, $storedfile, $urlbase, get_string('moduleintro'), false, true, true, false);
|
|
|
|
}
|
|
|
|
|
2012-02-15 12:48:57 +08:00
|
|
|
/**
|
|
|
|
* Get a file from module backup area
|
|
|
|
*
|
|
|
|
* @param int $itemid item ID
|
|
|
|
* @param string $filepath file path
|
|
|
|
* @param string $filename file name
|
|
|
|
* @return file_info|null
|
|
|
|
*/
|
2010-07-03 13:37:13 +00:00
|
|
|
protected function get_area_backup($itemid, $filepath, $filename) {
|
|
|
|
global $CFG;
|
|
|
|
|
|
|
|
if (!has_capability('moodle/backup:backupactivity', $this->context)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$fs = get_file_storage();
|
|
|
|
|
|
|
|
$filepath = is_null($filepath) ? '/' : $filepath;
|
|
|
|
$filename = is_null($filename) ? '.' : $filename;
|
|
|
|
if (!$storedfile = $fs->get_file($this->context->id, 'backup', 'activity', 0, $filepath, $filename)) {
|
|
|
|
if ($filepath === '/' and $filename === '.') {
|
|
|
|
$storedfile = new virtual_root_file($this->context->id, 'backup', 'activity', 0);
|
|
|
|
} else {
|
|
|
|
// not found
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$downloadable = has_capability('moodle/backup:downloadfile', $this->context);
|
|
|
|
$uploadable = has_capability('moodle/restore:uploadfile', $this->context);
|
|
|
|
|
|
|
|
$urlbase = $CFG->wwwroot.'/pluginfile.php';
|
|
|
|
return new file_info_stored($this->browser, $this->context, $storedfile, $urlbase, get_string('activitybackup', 'repository'), false, $downloadable, $uploadable, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns localised visible name.
|
2012-02-15 12:48:57 +08:00
|
|
|
*
|
2010-07-03 13:37:13 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_visible_name() {
|
|
|
|
return $this->cm->name.' ('.get_string('modulename', $this->cm->modname).')';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-02-15 12:48:57 +08:00
|
|
|
* Whether or not files or directories can be added
|
|
|
|
*
|
2010-07-03 13:37:13 +00:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function is_writable() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-09-12 12:29:32 +00:00
|
|
|
/**
|
2012-02-15 12:48:57 +08:00
|
|
|
* Whether or not this is an emtpy area
|
2010-09-12 12:29:32 +00:00
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function is_empty_area() {
|
|
|
|
if ($child = $this->get_area_backup(0, '/', '.')) {
|
|
|
|
if (!$child->is_empty_area()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($child = $this->get_area_intro(0, '/', '.')) {
|
|
|
|
if (!$child->is_empty_area()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($this->areas as $area=>$desctiption) {
|
|
|
|
if ($child = $this->get_file_info('mod_'.$this->modname, $area, null, null, null)) {
|
|
|
|
if (!$child->is_empty_area()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-07-03 13:37:13 +00:00
|
|
|
/**
|
2012-02-15 12:48:57 +08:00
|
|
|
* Whether or not this is a directory
|
|
|
|
*
|
2010-07-03 13:37:13 +00:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function is_directory() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns list of children.
|
2012-02-15 12:48:57 +08:00
|
|
|
*
|
2010-07-03 13:37:13 +00:00
|
|
|
* @return array of file_info instances
|
|
|
|
*/
|
|
|
|
public function get_children() {
|
|
|
|
$children = array();
|
|
|
|
|
|
|
|
if ($child = $this->get_area_backup(0, '/', '.')) {
|
|
|
|
$children[] = $child;
|
|
|
|
}
|
|
|
|
if ($child = $this->get_area_intro(0, '/', '.')) {
|
|
|
|
$children[] = $child;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($this->areas as $area=>$desctiption) {
|
|
|
|
if ($child = $this->get_file_info('mod_'.$this->modname, $area, null, null, null)) {
|
|
|
|
$children[] = $child;
|
|
|
|
}
|
|
|
|
}
|
2010-07-18 09:05:13 +00:00
|
|
|
|
2010-07-03 13:37:13 +00:00
|
|
|
return $children;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns parent file_info instance
|
2012-02-15 12:48:57 +08:00
|
|
|
*
|
|
|
|
* @return file_info|null file_info or null for root
|
2010-07-03 13:37:13 +00:00
|
|
|
*/
|
|
|
|
public function get_parent() {
|
|
|
|
$pcid = get_parent_contextid($this->context);
|
2012-08-21 15:02:40 +08:00
|
|
|
$parent = context::instance_by_id($pcid, IGNORE_MISSING);
|
2010-07-03 13:37:13 +00:00
|
|
|
return $this->browser->get_file_info($parent);
|
|
|
|
}
|
|
|
|
}
|