not entirely sure, think its all the messaging components
[glcas.git] / www / index.php
index e6e6f95..621c61d 100644 (file)
@@ -22,29 +22,32 @@ glcas_pluginLoader();
 $configpath = "";
 
 // TODO: do this better
-if(file_exists($WEB_ROOT_FS."/../var")) {
-       
-       // is it there?
-       if(file_exists($WEB_ROOT_FS."/../var/glcas/webconfig")) {
-               $configpath = realpath("$WEB_ROOT_FS/../var/glcas/webconfig");
-       } else {        
-               // if not, attempt to create
-               if(!file_exists($WEB_ROOT_FS."/../var/glcas")) {
-                       mkdir($WEB_ROOT_FS."/../var/glcas");
-               }
-               // success!
-               touch("$WEB_ROOT_FS/../var/glcas/webconfig");
-               $configpath = realpath("$WEB_ROOT_FS/../var/glcas/webconfig");
-       }
-}
+$configpath = glcas_getWebConfigPath();
+header("Accept-Ranges: bytes");
 
+if($configpath == false) {
+       glcas_startInstaller();
+       return;
+}
 
 $glconfig = new GLCASConfig();
+global $glconfig;
 $glconfig->loadConfig($configpath);
+
+// the global action handler
+if(isset($_REQUEST["glcasbasesendmsg"])) {
+       GLCASAddMessage($_REQUEST["msglev"], $_REQUEST["message"]);
+       header("Location: ".$_SERVER["HTTP_REFERER"]);
+       return;
+}
+
+// step up to the web responder
 $webResponder = new GLCASWeb($glconfig);
 $webResponder->go($URL_HANDLERS);
 
 
+
+
 /*
 echo "<pre>";
 echo "BASEURL: $BASE_URL\n";