X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=classes%2FPlatal.php;h=c34d34d0e7d3e915f8d8c48743e8a94c6a145fc0;hb=c99ef281118de7ab4b45de299701925ad5ebb26c;hp=68c7f8104a46f11454357b4b0e9d5bcfc05b8a54;hpb=7c6e0aff436315e844c17e13ab470be86ee60694;p=platal.git diff --git a/classes/Platal.php b/classes/Platal.php index 68c7f81..c34d34d 100644 --- a/classes/Platal.php +++ b/classes/Platal.php @@ -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,24 +27,39 @@ class Platal var $__mods; var $__hooks; + var $ns; var $path; var $argv; function Platal() { - $this->path = trim(Get::_get('p', null), '/'); + $modules = func_get_args(); + $this->path = trim(Get::_get('n', 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($module); $this->__hooks += $m->handlers(); } } + function pl_self($n = null) + { + if (is_null($n)) + return $this->path; + + if ($n >= 0) + return join('/', array_slice($this->argv, 0, $n + 1)); + + if ($n <= -count($this->argv)) + return $this->argv[0]; + + return join('/', array_slice($this->argv, 0, $n)); + } + function find_hook() { $p = $this->path; @@ -85,22 +98,38 @@ class Platal $args = $this->argv; $args[0] = &$page; - if ($hook['auth'] > Session::get('auth', AUTH_PUBLIC)) { - $_SESSION['session']->doAuth($page); + if ($hook['auth'] > S::v('auth', AUTH_PUBLIC)) { + // FIXME: don't use 'session' object anymore + if (!$_SESSION['session']->doAuth()) { + $this->force_login($page); + } } return call_user_func_array($hook['hook'], $args); } + function force_login(&$page) + { + if (S::logged() and !$new_name) { + $page->changeTpl('password_prompt_logged.tpl'); + $page->addJsLink('do_challenge_response_logged.js'); + } else { + $page->changeTpl('password_prompt.tpl'); + $page->addJsLink('do_challenge_response.js'); + } + $page->run(); + } + function run() { global $page; - new_skinned_page('index.tpl', AUTH_PUBLIC); + new_skinned_page('index.tpl'); 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); @@ -113,6 +142,16 @@ class Platal $page->assign_by_ref('platal', $this); $page->run(); } + + function on_subscribe($forlife, $uid, $promo, $pass) + { + $args = func_get_args(); + foreach ($this->__mods as $mod) { + if (!is_callable($mod, 'on_subscribe')) + continue; + call_user_func_array(array($mod, 'on_subscribe'), $args); + } + } } ?>