$page is not anymore a global variable.
[platal.git] / modules / core.php
index a18d20c..dad9b02 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /***************************************************************************
- *  Copyright (C) 2003-2006 Polytechnique.org                              *
+ *  Copyright (C) 2003-2008 Polytechnique.org                              *
  *  http://opensource.polytechnique.org/                                   *
  *                                                                         *
  *  This program is free software; you can redistribute it and/or modify   *
@@ -24,90 +24,146 @@ class CoreModule extends PLModule
     function handlers()
     {
         return array(
-            '403'  => $this->make_hook('403', AUTH_PUBLIC),
-            '404'  => $this->make_hook('404', AUTH_PUBLIC),
-            'exit' => $this->make_hook('exit', AUTH_PUBLIC),
-            'purge_cache' => $this->make_hook('purge_cache', AUTH_COOKIE, 'admin')
+            '403'         => $this->make_hook('403', AUTH_PUBLIC),
+            '404'         => $this->make_hook('404', AUTH_PUBLIC),
+            'login'       => $this->make_hook('login',      AUTH_COOKIE),
+            'send_bug'    => $this->make_hook('bug', AUTH_COOKIE),
+            'purge_cache' => $this->make_hook('purge_cache', AUTH_COOKIE, 'admin'),
+            'kill_sessions' => $this->make_hook('kill_sessions', AUTH_COOKIE, 'admin'),
+            'get_rights'  => $this->make_hook('get_rights', AUTH_MDP, 'admin'),
+
+            'wiki_help'    => $this->make_hook('wiki_help', AUTH_PUBLIC),
+            'wiki_preview' => $this->make_hook('wiki_preview', AUTH_COOKIE, 'user', NO_AUTH),
+
+            'valid.html'  => $this->make_hook('valid', AUTH_PUBLIC),
+            'favicon.ico' => $this->make_hook('favicon', AUTH_PUBLIC),
+            'robots.txt'  => $this->make_hook('robotstxt', AUTH_PUBLIC, 'user', NO_HTTPS),
         );
     }
 
-    function handler_index(&$page)
+    function handler_valid(&$page)
     {
-        if (logged()) {
-            redirect("login.php");
-        }
+        readfile($page->compile_dir.'/valid.html');
+        exit;
+    }
 
-        return PL_OK;
+    function handler_403(&$page)
+    {
+        global $globals;
+        header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden');
+        $page->changeTpl('core/403.tpl');
     }
 
-    function handler_exit(&$page, $level = null)
+    function handler_404(&$page)
     {
-        if (Session::has('suid')) {
-            if (Session::has('suid')) {
-                $a4l  = Session::get('forlife');
-                $suid = Session::getMixed('suid');
-                $log  = Session::getMixed('log');
-                $log->log("suid_stop", Session::get('forlife') . " by " . $suid['forlife']);
-                $_SESSION = $suid;
-                Session::kill('suid');
-                redirect($globals->baseurl.'/admin/utilisateurs.php?login='.$a4l);
-            } else {
-                redirect("login.php");
-            }
-        }
+        global $globals, $platal;
+        header($_SERVER['SERVER_PROTOCOL'] . ' 404 Not Found');
+        $page->changeTpl('core/404.tpl');
+        $page->assign('near', $platal->near_hook());
+    }
 
-        if ($level == 'forget' || $level == 'forgetall') {
-            setcookie('ORGaccess', '', time() - 3600, '/', '', 0);
-            Cookie::kill('ORGaccess');
-            if (isset($_SESSION['log']))
-                $_SESSION['log']->log("cookie_off");
-        }
+    function handler_login(&$page)
+    {
+        $allkeys = func_get_args();
+        unset($allkeys[0]);
+        $url = join('/',$allkeys);
+        pl_redirect($url);
+    }
 
-        if ($level == 'forgetuid' || $level == 'forgetall') {
-            setcookie('ORGuid', '', time() - 3600, '/', '', 0);
-            Cookie::kill('ORGuid');
-            setcookie('ORGdomain', '', time() - 3600, '/', '', 0);
-            Cookie::kill('ORGdomain');
-        }
+    function handler_favicon(&$page)
+    {
+        $data = file_get_contents(dirname(__FILE__).'/../htdocs/images/favicon.ico');
+        header('Content-Type: image/x-icon');
+        echo $data;
+        exit;
+    }
 
-        if (isset($_SESSION['log'])) {
-            $ref = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '';
-            $_SESSION['log']->log('deconnexion',$ref);
+    function handler_robotstxt(&$page)
+    {
+        global $globals;
+        if (!$globals->core->restricted_platal) {
+            return PL_NOT_FOUND;
         }
 
-        XorgSession::destroy();
+        header('Content-Type: text/plain');
+        echo "User-agent: *\n";
+        echo "Disallow: /\n";
+        exit;
+    }
 
-        if (Get::has('redirect')) {
-            redirect(rawurldecode(Get::get('redirect')));
-        } else {
-            $page->changeTpl('exit.tpl');
-        }
-        return PL_OK;
+    function handler_purge_cache(&$page)
+    {
+        require_once 'wiki.inc.php';
+        S::assert_xsrf_token();
+
+        $page->clear_compiled_tpl();
+        wiki_clear_all_cache();
+
+        http_redirect(empty($_SERVER['HTTP_REFERER']) ? './' : $_SERVER['HTTP_REFERER']);
     }
 
-    function handler_403(&$page)
+    function handler_kill_sessions(&$page)
     {
-        header('HTTP/1.0 403 Forbidden');
-        $page->changeTpl('403.tpl');
-        return PL_OK;
+        kill_sessions();
     }
 
-    function handler_404(&$page)
+    function handler_get_rights(&$page, $level)
     {
-        header('HTTP/1.0 404 Not Found');
-        $page->changeTpl('404.tpl');
-        return PL_OK;
+        if (S::has('suid')) {
+            $page->kill('Déjà en SUID');
+        }
+
+        if (isset($_SESSION['log'])) {
+            S::logger()->log("suid_start", "login by ".S::v('forlife'));
+        }
+        Platal::session()->startSUID(S::i('uid'));
+        Platal::session()->makePerms($level);
+
+        pl_redirect('/');
     }
 
-    function handler_purge_cache(&$page)
+    function handler_bug(&$page)
     {
-        require_once 'wiki.inc.php';
+        global $globals;
+        $page->changeTpl('core/bug.tpl', SIMPLE);
+        $page->addJsLink('close_on_esc.js');
+        if (Env::has('send') && trim(Env::v('detailed_desc'))) {
+            S::assert_xsrf_token();
 
-        $page->clear_compiled_tpl();
-        wiki_clear_all_cache();
+            $body = wordwrap(Env::v('detailed_desc'), 78) . "\n\n"
+                  . "----------------------------\n"
+                  . "Page        : " . Env::v('page') . "\n\n"
+                  . "Utilisateur : " . S::v('forlife') . "\n"
+                  . "Navigateur  : " . $_SERVER['HTTP_USER_AGENT'] . "\n"
+                  . "Skin        : " . S::v('skin') . "\n";
+            $page->assign('bug_sent',1);
+            $mymail = new PlMailer();
+            $mymail->setFrom('"'.S::v('prenom').' '.S::v('nom').'" <'.S::v('bestalias').'@' . $globals->mail->domain . '>');
+            $mymail->addTo('support+platal@' . $globals->mail->domain);
+            $mymail->addCc('"'.S::v('prenom').' '.S::v('nom').'" <'.S::v('bestalias').'@' . $globals->mail->domain . '>');
+            $mymail->setSubject('Plat/al '.Env::v('task_type').' : '.Env::v('item_summary'));
+            $mymail->setTxtBody($body);
+            $mymail->send();
+        } elseif (Env::has('send')) {
+            $page->trigError("Merci de remplir une explication du problème rencontré");
+        }
+    }
 
-        redirect(empty($_SERVER['HTTP_REFERER']) ? './' : $_SERVER['HTTP_REFERER']);
+    function handler_wiki_help(&$page, $action = 'title')
+    {
+        $page->changeTpl('core/wiki.help.tpl', SIMPLE);
+        $page->assign('wiki_help', MiniWiki::help($action == 'title'));
+    }
+
+    /// Shared handler for wiki syntax result preview
+    function handler_wiki_preview(&$page, $action = 'title')
+    {
+        header('Content-Type: text/html; charset=utf-8');
+        $text = Get::v('text');
+        echo MiniWiki::wikiToHtml($text, $action == 'title');
+        exit;
     }
 }
 
+// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
 ?>