require_once unused, class autoloaded
[platal.git] / modules / core.php
CommitLineData
b62f8858 1<?php
2/***************************************************************************
5ddeb07c 3 * Copyright (C) 2003-2007 Polytechnique.org *
b62f8858 4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22class CoreModule extends PLModule
23{
b62f8858 24 function handlers()
25 {
26 return array(
4c28beb2 27 '403' => $this->make_hook('403', AUTH_PUBLIC),
28 '404' => $this->make_hook('404', AUTH_PUBLIC),
bb7af3cd 29 'login' => $this->make_hook('login', AUTH_COOKIE),
30 'send_bug' => $this->make_hook('bug', AUTH_COOKIE),
7b14a2a0 31 'purge_cache' => $this->make_hook('purge_cache', AUTH_COOKIE, 'admin'),
e74411f7 32 'get_rights' => $this->make_hook('get_rights', AUTH_MDP, 'admin'),
fdbeba4f 33
34 'wiki_help' => $this->make_hook('wiki_help', AUTH_PUBLIC),
35 'wiki_preview' => $this->make_hook('wiki_preview', AUTH_COOKIE, 'user', NO_AUTH),
7b14a2a0 36
37 'valid.html' => $this->make_hook('valid', AUTH_PUBLIC),
dc41059a 38 'favicon.ico' => $this->make_hook('favicon', AUTH_PUBLIC),
b62f8858 39 );
40 }
41
7b14a2a0 42 function handler_valid(&$page)
43 {
44 readfile($page->compile_dir.'/valid.html');
45 exit;
46 }
47
b62f8858 48 function handler_403(&$page)
49 {
338a5934 50 global $globals;
94c63478 51 header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden');
5777e7fc 52 if (!empty($GLOBALS['IS_XNET_SITE']) && $globals->asso()) {
338a5934 53 new_skinned_page('core/403.tpl');
54 } else {
55 $page->changeTpl('core/403.tpl');
56 }
b62f8858 57 }
58
59 function handler_404(&$page)
60 {
338a5934 61 global $globals, $platal;
94c63478 62 header($_SERVER['SERVER_PROTOCOL'] . ' 404 Not Found');
5777e7fc 63 if (!empty($GLOBALS['IS_XNET_SITE']) && $globals->asso()) {
338a5934 64 new_group_open_page('core/404.tpl');
65 } else {
66 $page->changeTpl('core/404.tpl');
67 }
6b8d257b 68 $page->assign('near', $platal->near_hook());
b62f8858 69 }
0889eb33 70
bb7af3cd 71 function handler_login(&$page)
72 {
73 $allkeys = func_get_args();
74 unset($allkeys[0]);
75 $url = join('/',$allkeys);
76 pl_redirect($url);
77 }
78
dc41059a 79 function handler_favicon(&$page)
80 {
ce41a714 81 $data = file_get_contents(dirname(__FILE__).'/../htdocs/images/favicon.ico');
82 header('Content-Type: image/x-icon');
dc41059a 83 echo $data;
84 exit;
85 }
86
0889eb33 87 function handler_purge_cache(&$page)
88 {
89 require_once 'wiki.inc.php';
90
91 $page->clear_compiled_tpl();
92 wiki_clear_all_cache();
93
8b00e0e0 94 http_redirect(empty($_SERVER['HTTP_REFERER']) ? './' : $_SERVER['HTTP_REFERER']);
0889eb33 95 }
e74411f7 96
97 function handler_get_rights(&$page, $level)
98 {
99 if (S::has('suid')) {
a7de4ef7 100 $page->kill('Déjà en SUID');
e74411f7 101 }
102
103 if (isset($_SESSION['log'])) {
104 $_SESSION['log']->log("suid_start", "login by ".S::v('forlife'));
105 }
106 $_SESSION['suid'] = $_SESSION;
bf517daf 107 $_SESSION['perms'] =& XorgSession::make_perms($level);
e74411f7 108
109 pl_redirect('/');
110 }
8b1f8e12 111
112 function handler_bug(&$page)
113 {
72b2f8bb 114 $page->changeTpl('core/bug.tpl', SIMPLE);
8b1f8e12 115 $page->addJsLink('close_on_esc.js');
5486a0d3 116 if (Env::has('send') && trim(Env::v('detailed_desc'))) {
117 $body = wordwrap(Env::v('detailed_desc'), 78) . "\n\n"
118 . "----------------------------\n"
119 . "Page : " . Env::v('page') . "\n\n"
120 . "Utilisateur : " . S::v('forlife') . "\n"
5c50e351 121 . "Navigateur : " . $_SERVER['HTTP_USER_AGENT'] . "\n"
122 . "Skin : " . S::v('skin') . "\n";
8b1f8e12 123 $page->assign('bug_sent',1);
124 $mymail = new PlMailer();
125 $mymail->setFrom('"'.S::v('prenom').' '.S::v('nom').'" <'.S::v('bestalias').'@polytechnique.org>');
126 $mymail->addTo('support+platal@polytechnique.org');
127 $mymail->setSubject('Plat/al '.Env::v('task_type').' : '.Env::v('item_summary'));
5486a0d3 128 $mymail->setTxtBody($body);
8b1f8e12 129 $mymail->send();
5486a0d3 130 } elseif (Env::has('send')) {
a7de4ef7 131 $page->trig("Merci de remplir une explication du problème rencontré");
8b1f8e12 132 }
133 }
72b2f8bb 134
135 function handler_wiki_help(&$page, $action = 'title')
136 {
137 $page->changeTpl('core/wiki.help.tpl', SIMPLE);
138 $page->assign('wiki_help', MiniWiki::help($action == 'title'));
139 }
fdbeba4f 140
141 /// Shared handler for wiki syntax result preview
142 function handler_wiki_preview(&$page, $action = 'title')
143 {
144 header('Content-Type: text/html; charset=utf-8');
145 $text = Get::v('text');
146 echo MiniWiki::wikiToHtml($text, $action == 'title');
147 exit;
148 }
b62f8858 149}
150
a7de4ef7 151// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
b62f8858 152?>