pending commit, finished during MQ/S download ...
[platal.git] / classes / Platal.php
index 92604db..88c6fd1 100644 (file)
@@ -19,8 +19,6 @@
  *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                *
  ***************************************************************************/
 
-define('PL_OK', 0);
-define('PL_NEEDLOGIN', 1);
 define('PL_FORBIDDEN', 403);
 define('PL_NOT_FOUND', 404);
 
@@ -29,32 +27,26 @@ class Platal
     var $__mods;
     var $__hooks;
 
+    var $ns;
     var $path;
     var $argv;
 
     function Platal()
     {
+        $modules    = func_get_args();
         $this->path = trim(Get::_get('p', null), '/');
 
         $this->__mods  = array();
         $this->__hooks = array();
 
-        foreach (glob(dirname(__FILE__).'/../modules/*.php') as $module) {
-            $module = basename($module, '.php');
-            $m =& PLModule::factory($this, $module);
-            $this->__mods[$module] =& $m;
+        array_unshift($modules, 'core');
+        foreach ($modules as $module) {
+            $this->__mods[$module] = $m = PLModule::factory($this, $module);
             $this->__hooks += $m->handlers();
         }
-
-        krsort($this->__hooks);
     }
 
-    function load_class($cls)
-    {
-        require_once dirname(__FILE__).'/../classes/'.$cls.'.php';
-    }
-
-    function call_hook(&$page)
+    function find_hook()
     {
         $p = $this->path;
 
@@ -64,24 +56,39 @@ class Platal
 
             $p = substr($p, 0, strrpos($p, '/'));
         }
+
         if (empty($this->__hooks[$p])) {
-            return PL_NOT_FOUND;
+            return null;
         }
 
         $hook = $this->__hooks[$p];
 
         if (!is_callable($hook['hook'])) {
+            return null;
+        }
+
+        $this->argv    = explode('/', substr($this->path, strlen($p)));
+        $this->argv[0] = $p;
+
+        return $hook;
+    }
+
+    function call_hook(&$page)
+    {
+        $hook = $this->find_hook();
+
+        if (is_null($hook)) {
             return PL_NOT_FOUND;
         }
 
-        $args       = explode('/', substr($this->path, strlen($p)));
-        $args[0]    = $p;
-        $this->argv = $args;
-        $args[0]    = &$page;
+        $args    = $this->argv;
+        $args[0] = &$page;
 
-        if ($hook['auth'] > Session::get('auth', AUTH_PUBLIC)) {
+        if ($hook['auth'] > S::v('auth', AUTH_PUBLIC)) {
+            // FIXME: don't use 'session' object anymore
             $_SESSION['session']->doAuth($page);
         }
+
         return call_user_func_array($hook['hook'], $args);
     }
 
@@ -92,8 +99,9 @@ class Platal
         new_skinned_page('index.tpl', AUTH_PUBLIC);
 
         if (empty($this->path)) {
-            $this->__mods['core']->handler_index($page);
-        } else
+            $this->path = 'index';
+        }
+
         switch ($this->call_hook($page)) {
           case PL_FORBIDDEN:
             $this->__mods['core']->handler_403($page);