Happy new year!
[platal.git] / modules / core.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2008 Polytechnique.org *
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
22 class CoreModule extends PLModule
23 {
24 function handlers()
25 {
26 return array(
27 '403' => $this->make_hook('403', AUTH_PUBLIC),
28 '404' => $this->make_hook('404', AUTH_PUBLIC),
29 'login' => $this->make_hook('login', AUTH_COOKIE),
30 'send_bug' => $this->make_hook('bug', AUTH_COOKIE),
31 'purge_cache' => $this->make_hook('purge_cache', AUTH_COOKIE, 'admin'),
32 'get_rights' => $this->make_hook('get_rights', AUTH_MDP, 'admin'),
33
34 'wiki_help' => $this->make_hook('wiki_help', AUTH_PUBLIC),
35 'wiki_preview' => $this->make_hook('wiki_preview', AUTH_COOKIE, 'user', NO_AUTH),
36
37 'valid.html' => $this->make_hook('valid', AUTH_PUBLIC),
38 'favicon.ico' => $this->make_hook('favicon', AUTH_PUBLIC),
39 );
40 }
41
42 function handler_valid(&$page)
43 {
44 readfile($page->compile_dir.'/valid.html');
45 exit;
46 }
47
48 function handler_403(&$page)
49 {
50 global $globals;
51 header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden');
52 $page->changeTpl('core/403.tpl');
53 }
54
55 function handler_404(&$page)
56 {
57 global $globals, $platal;
58 header($_SERVER['SERVER_PROTOCOL'] . ' 404 Not Found');
59 $page->changeTpl('core/404.tpl');
60 $page->assign('near', $platal->near_hook());
61 }
62
63 function handler_login(&$page)
64 {
65 $allkeys = func_get_args();
66 unset($allkeys[0]);
67 $url = join('/',$allkeys);
68 pl_redirect($url);
69 }
70
71 function handler_favicon(&$page)
72 {
73 $data = file_get_contents(dirname(__FILE__).'/../htdocs/images/favicon.ico');
74 header('Content-Type: image/x-icon');
75 echo $data;
76 exit;
77 }
78
79 function handler_purge_cache(&$page)
80 {
81 require_once 'wiki.inc.php';
82
83 $page->clear_compiled_tpl();
84 wiki_clear_all_cache();
85
86 http_redirect(empty($_SERVER['HTTP_REFERER']) ? './' : $_SERVER['HTTP_REFERER']);
87 }
88
89 function handler_get_rights(&$page, $level)
90 {
91 if (S::has('suid')) {
92 $page->kill('Déjà en SUID');
93 }
94
95 if (isset($_SESSION['log'])) {
96 $_SESSION['log']->log("suid_start", "login by ".S::v('forlife'));
97 }
98 $_SESSION['suid'] = $_SESSION;
99 $_SESSION['perms'] =& XorgSession::make_perms($level);
100
101 pl_redirect('/');
102 }
103
104 function handler_bug(&$page)
105 {
106 global $globals;
107 $page->changeTpl('core/bug.tpl', SIMPLE);
108 $page->addJsLink('close_on_esc.js');
109 if (Env::has('send') && trim(Env::v('detailed_desc'))) {
110 $body = wordwrap(Env::v('detailed_desc'), 78) . "\n\n"
111 . "----------------------------\n"
112 . "Page : " . Env::v('page') . "\n\n"
113 . "Utilisateur : " . S::v('forlife') . "\n"
114 . "Navigateur : " . $_SERVER['HTTP_USER_AGENT'] . "\n"
115 . "Skin : " . S::v('skin') . "\n";
116 $page->assign('bug_sent',1);
117 $mymail = new PlMailer();
118 $mymail->setFrom('"'.S::v('prenom').' '.S::v('nom').'" <'.S::v('bestalias').'@' . $globals->mail->domain . '>');
119 $mymail->addTo('support+platal@' . $globals->mail->domain);
120 $mymail->addCc('"'.S::v('prenom').' '.S::v('nom').'" <'.S::v('bestalias').'@' . $globals->mail->domain . '>');
121 $mymail->setSubject('Plat/al '.Env::v('task_type').' : '.Env::v('item_summary'));
122 $mymail->setTxtBody($body);
123 $mymail->send();
124 } elseif (Env::has('send')) {
125 $page->trig("Merci de remplir une explication du problème rencontré");
126 }
127 }
128
129 function handler_wiki_help(&$page, $action = 'title')
130 {
131 $page->changeTpl('core/wiki.help.tpl', SIMPLE);
132 $page->assign('wiki_help', MiniWiki::help($action == 'title'));
133 }
134
135 /// Shared handler for wiki syntax result preview
136 function handler_wiki_preview(&$page, $action = 'title')
137 {
138 header('Content-Type: text/html; charset=utf-8');
139 $text = Get::v('text');
140 echo MiniWiki::wikiToHtml($text, $action == 'title');
141 exit;
142 }
143 }
144
145 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
146 ?>