Arrange templates by module
[platal.git] / modules / core.php
index 618c0e5..0fec9e2 100644 (file)
@@ -24,69 +24,83 @@ 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),
+            '403'         => $this->make_hook('403', AUTH_PUBLIC),
+            '404'         => $this->make_hook('404', AUTH_PUBLIC),
+            'send_bug'       => $this->make_hook('bug', AUTH_COOKIE),
+            'purge_cache' => $this->make_hook('purge_cache', AUTH_COOKIE, 'admin'),
+            'get_rights'  => $this->make_hook('get_rights', AUTH_MDP, 'admin'),
+
+            'valid.html'  => $this->make_hook('valid', AUTH_PUBLIC),
+            'favicon.ico' => $this->make_hook('favicon', AUTH_PUBLIC),
         );
     }
 
-    function handler_exit(&$page, $level = null)
+    function handler_valid(&$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");
-            }
-        }
+        readfile($page->compile_dir.'/valid.html');
+        exit;
+    }
 
-        if ($level == 'forget' || $level == 'forgetall') {
-            setcookie('ORGaccess', '', time() - 3600, '/', '', 0);
-            Cookie::kill('ORGaccess');
-            if (isset($_SESSION['log']))
-                $_SESSION['log']->log("cookie_off");
-        }
+    function handler_403(&$page)
+    {
+        header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden');
+        $page->changeTpl('core/403.tpl');
+    }
 
-        if ($level == 'forgetuid' || $level == 'forgetall') {
-            setcookie('ORGuid', '', time() - 3600, '/', '', 0);
-            Cookie::kill('ORGuid');
-            setcookie('ORGdomain', '', time() - 3600, '/', '', 0);
-            Cookie::kill('ORGdomain');
-        }
+    function handler_404(&$page)
+    {
+        global $platal;
+        header($_SERVER['SERVER_PROTOCOL'] . ' 404 Not Found');
+        $page->assign('near', $platal->near_hook());
+        $page->changeTpl('core/404.tpl');
+    }
 
-        if (isset($_SESSION['log'])) {
-            $ref = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '';
-            $_SESSION['log']->log('deconnexion',$ref);
-        }
+    function handler_favicon(&$page)
+    {
+        $data = file_get_contents(dirname(__FILE__).'/../htdocs/images/favicon.ico');
+        header('Content-Type: image/x-icon');
+        echo $data;
+        exit;
+    }
+
+    function handler_purge_cache(&$page)
+    {
+        require_once 'wiki.inc.php';
 
-        XorgSession::destroy();
+        $page->clear_compiled_tpl();
+        wiki_clear_all_cache();
 
-        if (Get::has('redirect')) {
-            redirect(rawurldecode(Get::get('redirect')));
-        } else {
-            $page->changeTpl('exit.tpl');
-        }
-        return PL_OK;
+        http_redirect(empty($_SERVER['HTTP_REFERER']) ? './' : $_SERVER['HTTP_REFERER']);
     }
 
-    function handler_403(&$page)
+    function handler_get_rights(&$page, $level)
     {
-        header('HTTP/1.0 403 Forbidden');
-        $page->changeTpl('403.tpl');
-        return PL_OK;
+        if (S::has('suid')) {
+            $page->kill('Déjà en SUID');
+        }
+
+        if (isset($_SESSION['log'])) {
+            $_SESSION['log']->log("suid_start", "login by ".S::v('forlife'));
+        }    
+        $_SESSION['suid'] = $_SESSION;
+        $_SESSION['perms'] = $level;
+
+        pl_redirect('/');
     }
 
-    function handler_404(&$page)
+    function handler_bug(&$page)
     {
-        header('HTTP/1.0 404 Not Found');
-        $page->changeTpl('404.tpl');
-        return PL_OK;
+        $page->changeTpl('core/bug.tpl',SIMPLE);
+        $page->addJsLink('close_on_esc.js');
+        if (Env::has('send')) {
+            $page->assign('bug_sent',1);
+            $mymail = new PlMailer();
+            $mymail->setFrom('"'.S::v('prenom').' '.S::v('nom').'" <'.S::v('bestalias').'@polytechnique.org>');
+            $mymail->addTo('support+platal@polytechnique.org');
+            $mymail->setSubject('Plat/al '.Env::v('task_type').' : '.Env::v('item_summary'));
+            $mymail->setTxtBody(Env::v('detailed_desc'));
+            $mymail->send();
+        }
     }
 }