Log SQL errors.
[platal.git] / modules / core.php
CommitLineData
b62f8858 1<?php
2/***************************************************************************
179afa7f 3 * Copyright (C) 2003-2008 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'),
05d5ce15 32 'kill_sessions' => $this->make_hook('kill_sessions', AUTH_COOKIE, 'admin'),
f8eaef22 33 'sql_errors' => $this->make_hook('sqlerror', AUTH_COOKIE, 'admin'),
e74411f7 34 'get_rights' => $this->make_hook('get_rights', AUTH_MDP, 'admin'),
fdbeba4f 35
36 'wiki_help' => $this->make_hook('wiki_help', AUTH_PUBLIC),
37 'wiki_preview' => $this->make_hook('wiki_preview', AUTH_COOKIE, 'user', NO_AUTH),
7b14a2a0 38
39 'valid.html' => $this->make_hook('valid', AUTH_PUBLIC),
dc41059a 40 'favicon.ico' => $this->make_hook('favicon', AUTH_PUBLIC),
f8eb84b7 41 'robots.txt' => $this->make_hook('robotstxt', AUTH_PUBLIC, 'user', NO_HTTPS),
b62f8858 42 );
43 }
44
7b14a2a0 45 function handler_valid(&$page)
46 {
47 readfile($page->compile_dir.'/valid.html');
48 exit;
49 }
50
b62f8858 51 function handler_403(&$page)
52 {
338a5934 53 global $globals;
94c63478 54 header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden');
2aad1481 55 $page->trigError('Tu n\'as pas les permissions nécessaires pour accéder à cette page.');
7cb40d85 56 $page->coreTpl('403.tpl');
b62f8858 57 }
58
59 function handler_404(&$page)
60 {
338a5934 61 global $globals, $platal;
94c63478 62 header($_SERVER['SERVER_PROTOCOL'] . ' 404 Not Found');
7cb40d85 63 $page->coreTpl('404.tpl');
6b8d257b 64 $page->assign('near', $platal->near_hook());
2aad1481 65 $page->trigError('Cette page n\'existe pas !!!');
b62f8858 66 }
0889eb33 67
bb7af3cd 68 function handler_login(&$page)
69 {
70 $allkeys = func_get_args();
71 unset($allkeys[0]);
72 $url = join('/',$allkeys);
73 pl_redirect($url);
74 }
75
dc41059a 76 function handler_favicon(&$page)
77 {
ce41a714 78 $data = file_get_contents(dirname(__FILE__).'/../htdocs/images/favicon.ico');
79 header('Content-Type: image/x-icon');
dc41059a 80 echo $data;
81 exit;
82 }
83
f8eb84b7
VZ
84 function handler_robotstxt(&$page)
85 {
86 global $globals;
87 if (!$globals->core->restricted_platal) {
88 return PL_NOT_FOUND;
89 }
90
91 header('Content-Type: text/plain');
92 echo "User-agent: *\n";
93 echo "Disallow: /\n";
94 exit;
95 }
96
0889eb33 97 function handler_purge_cache(&$page)
98 {
40d428d8 99 S::assert_xsrf_token();
0889eb33 100
40d428d8 101 $page->clear_compiled_tpl();
1f16638f 102 PlWikiPage::clearCache();
0889eb33 103
40d428d8 104 http_redirect(empty($_SERVER['HTTP_REFERER']) ? './' : $_SERVER['HTTP_REFERER']);
0889eb33 105 }
e74411f7 106
05d5ce15
FB
107 function handler_kill_sessions(&$page)
108 {
109 kill_sessions();
110 }
111
e74411f7 112 function handler_get_rights(&$page, $level)
113 {
114 if (S::has('suid')) {
a7de4ef7 115 $page->kill('Déjà en SUID');
e74411f7 116 }
117
118 if (isset($_SESSION['log'])) {
99132dee
VZ
119 if (S::user()) {
120 S::logger()->log("suid_start", "login by " . S::user()->login());
121 } else {
122 // TODO(vzanotti): trash that code when support of forlife will be gone.
123 S::logger()->log("suid_start", "login by ".S::v('forlife'));
124 }
eaf30d86 125 }
732e5855
FB
126 Platal::session()->startSUID(S::i('uid'));
127 Platal::session()->makePerms($level);
e74411f7 128
129 pl_redirect('/');
130 }
8b1f8e12 131
132 function handler_bug(&$page)
133 {
97af9556 134 global $globals;
4d68bcde
FB
135
136 if (empty($_SERVER['HTTP_REFERER'])) {
137 // We don't have a valid referer, we need to use the url
138 list($currentPage, $location) = explode('//', $_SERVER['REQUEST_URI'], 2);
139
140 $location = 'http'.(empty($_SERVER['HTTPS']) ? '' : 's').'://'.$_SERVER['SERVER_NAME'].'/'.$location;
141 } else {
142 $location = $_SERVER['HTTP_REFERER'];
143 }
144
7cb40d85 145 $page->coreTpl('bug.tpl', SIMPLE);
4d68bcde 146 $page->assign('location', $location);
8b1f8e12 147 $page->addJsLink('close_on_esc.js');
4d68bcde 148
40d428d8
VZ
149 if (Env::has('send') && trim(Env::v('detailed_desc'))) {
150 S::assert_xsrf_token();
151
029135c8 152 // TODO(vzanotti): trash the 'forlife' bit when support of forlife will be gone.
5486a0d3 153 $body = wordwrap(Env::v('detailed_desc'), 78) . "\n\n"
154 . "----------------------------\n"
155 . "Page : " . Env::v('page') . "\n\n"
029135c8 156 . "Utilisateur : " . (S::user() ? S::user()->login() : S::v('forlife')) . "\n"
5c50e351 157 . "Navigateur : " . $_SERVER['HTTP_USER_AGENT'] . "\n"
158 . "Skin : " . S::v('skin') . "\n";
2aad1481
SJ
159 $page->assign('bug_sent', 1);
160 $page->trigSuccess('Ton message a bien été envoyé au support de ' . $globals->core->sitename
161 . ', tu devrais en recevoir une copie d\'ici quelques minutes. Nous allons '
162 . 'le traiter et y répondre dans les plus brefs délais.');
8b1f8e12 163 $mymail = new PlMailer();
029135c8
VZ
164 // TODO(vzanotti): trash the 'bestalias' bits when support of bestalias will be gone.
165 if (S::user()) {
166 $mymail->setFrom(sprintf('"%s" <%s>', S::user()->fullName(), S::user()->bestEmail()));
167 $mymail->addCc(sprintf('"%s" <%s>', S::user()->fullName(), S::user()->bestEmail()));
168 } else {
169 $mymail->setFrom('"'.S::v('prenom').' '.S::v('nom').'" <'.S::v('bestalias').'@' . $globals->mail->domain . '>');
170 $mymail->addCc('"'.S::v('prenom').' '.S::v('nom').'" <'.S::v('bestalias').'@' . $globals->mail->domain . '>');
171 }
1d55fe45 172 $mymail->addTo('support+platal@' . $globals->mail->domain);
8b1f8e12 173 $mymail->setSubject('Plat/al '.Env::v('task_type').' : '.Env::v('item_summary'));
5486a0d3 174 $mymail->setTxtBody($body);
8b1f8e12 175 $mymail->send();
e8dfa21c 176 } elseif (Env::has('send')) {
2aad1481 177 $page->trigError("Merci de remplir une explication du problème rencontré.");
8b1f8e12 178 }
179 }
72b2f8bb 180
181 function handler_wiki_help(&$page, $action = 'title')
182 {
7cb40d85 183 $page->coreTpl('wiki.help.tpl', SIMPLE);
72b2f8bb 184 $page->assign('wiki_help', MiniWiki::help($action == 'title'));
185 }
fdbeba4f 186
187 /// Shared handler for wiki syntax result preview
188 function handler_wiki_preview(&$page, $action = 'title')
189 {
190 header('Content-Type: text/html; charset=utf-8');
8b6e9f4e 191 $text = Env::v('text');
fdbeba4f 192 echo MiniWiki::wikiToHtml($text, $action == 'title');
193 exit;
194 }
f8eaef22
FB
195
196 function handler_sqlerror(&$page, $clear = null) {
197 global $globals;
198 $file = @fopen($globals->spoolroot . '/spool/tmp/query_errors', 'r');
199 if ($file !== false) {
200 echo '<html><body>';
201 fpassthru($file);
202 fclose($file);
203 echo '</html></body>';
204 }
205 if ($clear == 'clear') {
206 @unlink($globals->spoolroot . '/spool/tmp/query_errors');
207 }
208 exit;
209 }
b62f8858 210}
211
a7de4ef7 212// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
b62f8858 213?>