📄 moodle_binary_store.php
字号:
<?php // $Id: moodle_binary_store.php,v 1.5 2006/09/20 20:31:44 skodak Exp $/* This plugin intercepts some of the binary handling functions to store uploaded files (as is) into a dedicated directory. Because the ewiki database abstraction layer was not designed to hold large files (because it reads records in one chunk), you may need to use this, else large files may break. WARNING: this is actually a hack and not a database layer extension, so it will only work with the ewiki.php script itself. The database administration tools are not aware of this agreement and therefor cannot (for example) backup the externally stored data files! If you later choose to disable this extension, the uploaded (and thus externally stored) files then cannot be accessed any longer, of course. - You must load this plugin __before__ the main script, because the binary stuff in ewiki.php always engages automatically. - The store directory can be the same as for dbff (filenames differ). - All the administration tools/ are not aware of this hack, so __you__ must take care, when it comes to creating backups.*/#-- configdefine("EWIKI_DB_STORE_DIRECTORY", "/tmp"); // where to save binary filesdefine("EWIKI_DB_STORE_MINSIZE", 0); // send smaller files into dbdefine("EWIKI_DB_STORE_MAXSIZE", 32 <<20); // 32MB max per file (but // there is actually no way to upload such large files via HTTP)# define("EWIKI_DB_STORE_URL", "http://example.com/wiki/files/store/"); // allows clients to directly access stored plain data files, // without redirection through ewiki.php, RTFM#-- glue$ewiki_plugins["binary_store"][] = "moodle_binary_store_file";$ewiki_plugins["binary_get"][] = "moodle_binary_store_get_file";function moodle_binary_get_path($id, $meta, $course, $wiki, $userid, $groupid) { global $CFG; $entry=wiki_get_entry($wiki, $course, $userid, $groupid); if(!$entry) { error("Cannot get entry."); } $dir=make_upload_directory("$course->id/$CFG->moddata/wiki/$wiki->id/$entry->id/".$meta["section"]); if(substr($id, 0, strlen(EWIKI_IDF_INTERNAL))!=EWIKI_IDF_INTERNAL) { error("Binary entry does not start with ".EWIKI_IDF_INTERNAL.substr($id, 0, strlen(EWIKI_IDF_INTERNAL))); } $id = substr($id,strlen(EWIKI_IDF_INTERNAL)); $id = clean_filename($id); return "$dir/$id";}#-- uploadfunction moodle_binary_store_file(&$filename, &$id, &$meta, $ext=".bin") { # READ-Only global $_FILES, $CFG, $course, $wiki, $groupid, $userid, $ewiki_title, $cm; if(!$wiki->ewikiacceptbinary) { error("This wiki does not accept binaries"); return 0; } $entry=wiki_get_entry($wiki, $course, $userid, $groupid); if(!$entry->id) { error("Cannot get entry."); } require_once($CFG->dirroot.'/lib/uploadlib.php'); $um = new upload_manager('upload',false,false,$course,false,0,true,true); if ($um->process_file_uploads("$course->id/$CFG->moddata/wiki/$wiki->id/$entry->id/$ewiki_title")) { $filename = ''; // this to make sure we don't keep processing in the parent function if(!$id) { $newfilename = $um->get_new_filename(); $id = EWIKI_IDF_INTERNAL.$newfilename; } return true; } error($um->print_upload_log(true)); return false; }#-- downloadfunction moodle_binary_store_get_file($id, &$meta) { # READ-Only global $CFG, $cm, $course, $wiki, $groupid, $userid; #-- check for file if(!$wiki->ewikiacceptbinary) { error("This wiki does not accept binaries"); return 0; } $filepath=moodle_binary_get_path($id, $meta, $course, $wiki, $userid, $groupid); if (file_exists($filepath)) { readfile($filepath); return(true); } else { return(false); } //$dbfname = EWIKI_DB_STORE_DIRECTORY."/".rawurlencode($id); //if (file_exists($dbfname)) { // readfile($dbfname); // return(true); //} //else { // return(false); //}}?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -