. /** * Base for all file browsing classes. * * @package moodlecore * @subpackage file-browser * @copyright 2008 Petr Skoda (http://skodak.org) * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ /** * Base class for things in the tree navigated by @see{file_browser}. */ abstract class file_info { protected $context; protected $browser; public function __construct($browser, $context) { $this->browser = $browser; $this->context = $context; } /** * Returns list of standard virtual file/directory identification. * The difference from stored_file parameters is that null values * are allowed in all fields * @return array with keys contextid, filearea, itemid, filepath and filename */ public abstract function get_params(); /** * Returns localised visible name. * @return string */ public abstract function get_visible_name(); /** * Is directory? * @return bool */ public abstract function is_directory(); /** * Returns list of children. * @return array of file_info instances */ public abstract function get_children(); /** * Returns parent file_info instance * @return file_info or null for root */ public abstract function get_parent(); /** * Returns array of url encoded params. * @return array with numeric keys */ public function get_params_rawencoded() { $params = $this->get_params(); $encoded = array(); $encoded[] = 'contextid='.$params['contextid']; $encoded[] = 'filearea='.$params['filearea']; $encoded[] = 'itemid='.(is_null($params['itemid']) ? -1 : $params['itemid']); $encoded[] = 'filepath='.(is_null($params['filepath']) ? '' : rawurlencode($params['filepath'])); $encoded[] = 'filename='.((is_null($params['filename']) or $params['filename'] === '.') ? '' : rawurlencode($params['filename'])); return $encoded; } /** * Returns file download url * @param bool $forcedownload * @param bool $htts force https * @return string url */ public function get_url($forcedownload=false, $https=false) { return null; } /** * Can I read content of this file or enter directory? * @return bool */ public function is_readable() { return true; } /** * Can I add new files or directories? * @return bool */ public function is_writable() { return true; } /** * Returns file size in bytes, null for directories * @return int bytes or null if not known */ public function get_filesize() { return null; } /** * Returns mimetype * @return string mimetype or null if not known */ public function get_mimetype() { return null; } /** * Returns time created unix timestamp if known * @return int timestamp or null */ public function get_timecreated() { return null; } /** * Returns time modified unix timestamp if known * @return int timestamp or null */ public function get_timemodified() { return null; } /** * Create new directory, may throw exception - make sure * params are valid. * @param string $newdirname name of new directory * @param int id of author, default $USER->id * @return file_info new directory */ public function create_directory($newdirname, $userid=null) { return null; } /** * Create new file from string - make sure * params are valid. * @param string $newfilename name of new file * @param string $content of file * @param int id of author, default $USER->id * @return file_info new file */ public function create_file_from_string($newfilename, $content, $userid=null) { return null; } /** * Create new file from pathname - make sure * params are valid. * @param string $newfilename name of new file * @param string $pathname location of file * @param int id of author, default $USER->id * @return file_info new file */ public function create_file_from_pathname($newfilename, $pathname, $userid=null) { return null; } /** * Create new file from stored file - make sure * params are valid. * @param string $newfilename name of new file * @param mixed dile id or stored_file of file * @param int id of author, default $USER->id * @return file_info new file */ public function create_file_from_storedfile($newfilename, $fid, $userid=null) { return null; } /** * Delete file, make sure file is deletable first. * @return bool success */ public function delete() { return false; } /** * Copy content of this file to local storage, overriding current file if needed. * @param int $contextid * @param string $filearea * @param int $itemid * @param string $filepath * @param string $filename * @return boolean success */ public function copy_to_storage($contextid, $filearea, $itemid, $filepath, $filename) { return false; } /** * Copy content of this file to local storage, overriding current file if needed. * @param string $pathname real local full file name * @return boolean success */ public function copy_to_pathname($pathname) { return false; } //TODO: following methods are not implemented yet ;-) //public abstract function move(location params); //public abstract function rename(new name); //public abstract function unzip(location params); //public abstract function zip(zip file, file info); }