removed mods directory from the ATutor codebase
[atutor.git] / mods / wiki / plugins / db / binary_store.php
diff --git a/mods/wiki/plugins/db/binary_store.php b/mods/wiki/plugins/db/binary_store.php
deleted file mode 100644 (file)
index 3e0024b..0000000
+++ /dev/null
@@ -1,88 +0,0 @@
-<?php
-
-/*
-   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 therefore
-   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.
-*/
-
-
-#-- config
-define("EWIKI_DB_STORE_DIRECTORY", "/tmp");    // where to save binary files
-define("EWIKI_DB_STORE_MINSIZE", 0);           // send smaller files into db
-define("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"][] = "ewiki_binary_store_file";
-$ewiki_plugins["binary_get"][] = "ewiki_binary_store_get_file";
-
-
-#-- upload
-function ewiki_binary_store_file(&$filename, &$id, &$meta, $ext=".bin") {
-
-   if (($meta["size"] >= EWIKI_DB_STORE_MINSIZE) && ($meta["size"] <= EWIKI_DB_STORE_MAXSIZE)) {
-
-      #-- generate internal://md5sum
-      if (empty($id)) {
-         $md5sum = md5_file($filename);
-         $id = EWIKI_IDF_INTERNAL . $md5sum . ".$ext";
-         ewiki_log("generated md5sum '$md5sum' from file content");
-      }
-
-      #-- move file to dest. location
-      $dbfname = EWIKI_DB_STORE_DIRECTORY."/".rawurlencode($id);
-      if (@rename($filename, $dbfname) || copy($filename, $dbfname) && unlink($filename)) {
-         $filename = "";
-         $meta["binary_store"] = 1;
-         return(true);
-      }
-      else {
-         ewiki_log("file store error with '$dbfname'", 0);
-      }
-   }
-
-   return(false);
-}
-
-
-#-- download
-function ewiki_binary_store_get_file($id, &$meta) {
-
-   if (@$meta["binary_store"]) {
-
-      #-- check for file
-      $dbfname = EWIKI_DB_STORE_DIRECTORY."/".rawurlencode($id);
-      if (file_exists($dbfname)) {
-         readfile($dbfname);
-         return(true);
-      }
-      else {
-         return(false);
-      }
-   }
-
-}
-
-
-?>
\ No newline at end of file