Lots of little changes, basic structure now looking pretty good
[glcas.git] / www / index.php
index d42091a..e6e6f95 100644 (file)
@@ -1,17 +1,64 @@
-<?php 
+<?php
 
-require_once("../lib/lib.php");
+$WEB_ROOT_FS = realpath(dirname(__FILE__));
+$BASE_URL = dirname($_SERVER["PHP_SELF"]);
 
+global $WEB_ROOT_FS, $URL_HANDLERS, $BASE_URL;
 
-if(function_exists("goWebProcessor")) {
-       $calls = urlInterpretter();
-       goWebProcessor($calls);
-       exit(0);
+// add libglcas as if it were a path in ../libglcas
+if(file_exists("../libglcas")) {
+       $path = realpath($WEB_ROOT_FS."/../");
+       error_log("added glcas path as $path");
+       set_include_path(get_include_path().PATH_SEPARATOR.$path);
 }
 
-?>
-<html>
-<body>
-No Web Component Installed
-</body>
-</html>
+// include the based library
+require_once("libglcas/lib.php");
+
+// load plugins
+glcas_pluginLoader();
+
+// find our config
+$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");
+       }
+}
+
+
+$glconfig = new GLCASConfig();
+$glconfig->loadConfig($configpath);
+$webResponder = new GLCASWeb($glconfig);
+$webResponder->go($URL_HANDLERS);
+
+
+/*
+echo "<pre>";
+echo "BASEURL: $BASE_URL\n";
+echo "CUSTOM\n";
+print_r($_SERVER);
+
+$vars = get_defined_vars();
+foreach($vars as $var => $vkey) {
+       echo "VAR $var is:\n";
+       var_dump($$var);
+       echo "\n\n";
+}
+
+echo "</pre>";
+/**/
+
+?>
\ No newline at end of file