Add a RSS handler for site_errors.
[platal.git] / modules / core.php
CommitLineData
b62f8858 1<?php
2/***************************************************************************
e92ecb8c 3 * Copyright (C) 2003-2011 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(
1547b0f6 27 '400' => $this->make_hook('400', AUTH_PUBLIC),
b631d803
SJ
28 '403' => $this->make_hook('403', AUTH_PUBLIC),
29 '404' => $this->make_hook('404', AUTH_PUBLIC),
30 'login' => $this->make_hook('login', AUTH_COOKIE),
31 'send_bug' => $this->make_hook('bug', AUTH_COOKIE),
32 'purge_cache' => $this->make_hook('purge_cache', AUTH_COOKIE, 'admin'),
05d5ce15 33 'kill_sessions' => $this->make_hook('kill_sessions', AUTH_COOKIE, 'admin'),
7f6d1063
FB
34 'sql_errors' => $this->make_hook('siteerror', AUTH_COOKIE, 'admin'),
35 'assert_errors' => $this->make_hook('siteerror', AUTH_COOKIE, 'admin'),
36 'site_errors' => $this->make_hook('siteerror', AUTH_COOKIE, 'admin'),
ddc2d3fa 37 'site_errors/rss' => $this->make_token_hook('siteerror_rss', AUTH_COOKIE, 'admin'),
fdbeba4f 38
7299bfce
FB
39 'embedded' => $this->make_hook('embedded', AUTH_PUBLIC),
40
b631d803
SJ
41 'wiki_help' => $this->make_hook('wiki_help', AUTH_PUBLIC),
42 'wiki_preview' => $this->make_hook('wiki_preview', AUTH_COOKIE, 'user', NO_AUTH),
7b14a2a0 43
d1bdef74 44 'validator' => $this->make_hook('validator', AUTH_PUBLIC),
b631d803
SJ
45 'valid.html' => $this->make_hook('valid', AUTH_PUBLIC),
46 'favicon.ico' => $this->make_hook('favicon', AUTH_PUBLIC),
47 'robots.txt' => $this->make_hook('robotstxt', AUTH_PUBLIC, 'user', NO_HTTPS),
b62f8858 48 );
49 }
50
9e394323 51 function handler_valid($page)
7b14a2a0 52 {
53 readfile($page->compile_dir.'/valid.html');
54 exit;
55 }
56
d1bdef74
FB
57 function handler_validator($page)
58 {
59 global $globals;
60 exec($globals->spoolroot."/bin/devel/xhtml.validate.pl ".$page->compile_dir."/valid.html", $val);
61 $url = "<a href='http://validator.w3.org/check?uri={$globals->baseurl}/valid.html&amp;ss=1#result'>";
62 $replc = '<span style="color: #080;">HTML OK</span>';
63 foreach ($val as $h) {
64 if (preg_match("/^X-W3C-Validator-Errors: (\d+)$/", $h, $m)) {
65 if ($m[1]) {
66 $replc = "<span class='erreur'>$url{$m[1]} ERREUR(S) !!!</a></span>";
67 }
68 break;
69 }
70 }
71 echo $replc;
72 exit;
73 }
74
ed4f7de0 75 function handler_400(PlPage $page)
1547b0f6
VZ
76 {
77 header($_SERVER['SERVER_PROTOCOL'] . ' 400 Bad Request');
78 $page->coreTpl('40x.tpl');
79 $page->trigError('Ta requête est invalide.');
80 }
81
ed4f7de0 82 function handler_403(PlPage $page)
b62f8858 83 {
94c63478 84 header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden');
1547b0f6 85 $page->coreTpl('40x.tpl');
2aad1481 86 $page->trigError('Tu n\'as pas les permissions nécessaires pour accéder à cette page.');
b62f8858 87 }
88
ed4f7de0 89 function handler_404(PlPage $page)
b62f8858 90 {
1547b0f6 91 global $platal;
94c63478 92 header($_SERVER['SERVER_PROTOCOL'] . ' 404 Not Found');
7cb40d85 93 $page->coreTpl('404.tpl');
6b8d257b 94 $page->assign('near', $platal->near_hook());
2aad1481 95 $page->trigError('Cette page n\'existe pas !!!');
b62f8858 96 }
0889eb33 97
9e394323 98 function handler_login($page)
bb7af3cd 99 {
100 $allkeys = func_get_args();
101 unset($allkeys[0]);
102 $url = join('/',$allkeys);
103 pl_redirect($url);
104 }
105
9e394323 106 function handler_favicon($page)
dc41059a 107 {
2b1ac5ab 108 global $globals;
a286fc7a
VZ
109 pl_cached_content_headers("image/x-icon");
110 readfile($globals->spoolroot . '/htdocs/images/favicon.ico');
dc41059a 111 exit;
112 }
113
9e394323 114 function handler_robotstxt($page)
f8eb84b7
VZ
115 {
116 global $globals;
a12a0ce3
VZ
117
118 $disallowed_uris = array();
119 if ($globals->core->restricted_platal) {
120 $disallowed_uris[] = '/';
121 } else if (!empty($globals->core->robotstxt_disallowed_uris)) {
122 $disallowed_uris = preg_split('/[\s,]+/',
123 $globals->core->robotstxt_disallowed_uris,
124 -1, PREG_SPLIT_NO_EMPTY);
f8eb84b7
VZ
125 }
126
a12a0ce3 127 if (count($disallowed_uris) > 0) {
a286fc7a 128 pl_cached_content_headers("text/plain");
a12a0ce3
VZ
129 echo "User-agent: *\n";
130 foreach ($disallowed_uris as $uri) {
131 echo "Disallow: $uri\n";
132 }
133 exit;
134 }
135 return PL_NOT_FOUND;
f8eb84b7
VZ
136 }
137
9e394323 138 function handler_purge_cache($page)
0889eb33 139 {
40d428d8 140 S::assert_xsrf_token();
0889eb33 141
40d428d8 142 $page->clear_compiled_tpl();
1f16638f 143 PlWikiPage::clearCache();
c426670b 144 PlCache::clearAll();
0889eb33 145
40d428d8 146 http_redirect(empty($_SERVER['HTTP_REFERER']) ? './' : $_SERVER['HTTP_REFERER']);
0889eb33 147 }
e74411f7 148
9e394323 149 function handler_kill_sessions($page)
05d5ce15
FB
150 {
151 kill_sessions();
152 }
153
9e394323 154 function handler_bug($page)
8b1f8e12 155 {
97af9556 156 global $globals;
4d68bcde
FB
157
158 if (empty($_SERVER['HTTP_REFERER'])) {
159 // We don't have a valid referer, we need to use the url
160 list($currentPage, $location) = explode('//', $_SERVER['REQUEST_URI'], 2);
161
162 $location = 'http'.(empty($_SERVER['HTTPS']) ? '' : 's').'://'.$_SERVER['SERVER_NAME'].'/'.$location;
163 } else {
164 $location = $_SERVER['HTTP_REFERER'];
165 }
166
7cb40d85 167 $page->coreTpl('bug.tpl', SIMPLE);
4d68bcde 168 $page->assign('location', $location);
8b1f8e12 169 $page->addJsLink('close_on_esc.js');
4d68bcde 170
40d428d8
VZ
171 if (Env::has('send') && trim(Env::v('detailed_desc'))) {
172 S::assert_xsrf_token();
173
5486a0d3 174 $body = wordwrap(Env::v('detailed_desc'), 78) . "\n\n"
175 . "----------------------------\n"
176 . "Page : " . Env::v('page') . "\n\n"
30f983a1 177 . "Utilisateur : " . S::user()->login() . "\n"
5c50e351 178 . "Navigateur : " . $_SERVER['HTTP_USER_AGENT'] . "\n"
179 . "Skin : " . S::v('skin') . "\n";
2aad1481
SJ
180 $page->assign('bug_sent', 1);
181 $page->trigSuccess('Ton message a bien été envoyé au support de ' . $globals->core->sitename
182 . ', tu devrais en recevoir une copie d\'ici quelques minutes. Nous allons '
183 . 'le traiter et y répondre dans les plus brefs délais.');
8b1f8e12 184 $mymail = new PlMailer();
30f983a1
VZ
185 $mymail->setFrom(sprintf('"%s" <%s>', S::user()->fullName(), S::user()->bestEmail()));
186 $mymail->addCc(sprintf('"%s" <%s>', S::user()->fullName(), S::user()->bestEmail()));
1d55fe45 187 $mymail->addTo('support+platal@' . $globals->mail->domain);
8b1f8e12 188 $mymail->setSubject('Plat/al '.Env::v('task_type').' : '.Env::v('item_summary'));
5486a0d3 189 $mymail->setTxtBody($body);
8b1f8e12 190 $mymail->send();
e8dfa21c 191 } elseif (Env::has('send')) {
2aad1481 192 $page->trigError("Merci de remplir une explication du problème rencontré.");
8b1f8e12 193 }
194 }
72b2f8bb 195
9e394323 196 function handler_wiki_help($page, $action = 'title')
72b2f8bb 197 {
7cb40d85 198 $page->coreTpl('wiki.help.tpl', SIMPLE);
72b2f8bb 199 $page->assign('wiki_help', MiniWiki::help($action == 'title'));
200 }
fdbeba4f 201
202 /// Shared handler for wiki syntax result preview
9e394323 203 function handler_wiki_preview($page, $action = 'title')
fdbeba4f 204 {
a286fc7a 205 pl_content_headers("text/html");
8b6e9f4e 206 $text = Env::v('text');
fdbeba4f 207 echo MiniWiki::wikiToHtml($text, $action == 'title');
208 exit;
209 }
f8eaef22 210
ddc2d3fa
FB
211 function handler_siteerror($page)
212 {
f8eaef22 213 global $globals;
7f6d1063 214 $page->coreTpl('site_errors.tpl');
ddc2d3fa
FB
215 $page->setRssLink('Polytechnique.org :: Erreurs',
216 'site_errors/rss/' . S::v('hruid') . '/' . S::user()->token . '/rss.xml');
02c018dd 217 if (Post::has('clear')) {
40b79bfc 218 PlErrorReport::clear();
7f6d1063 219 $page->trigSuccess("Erreurs effacées.");
ec60dba7 220 }
71c1196e 221 $page->assign('errors', PlErrorReport::iterate());
ec60dba7 222 }
7299bfce 223
ddc2d3fa
FB
224 function handler_siteerror_rss(PlPage $page, PlUser $user)
225 {
226 return PlErrorReport::feed($page, $user);
227 }
228
7299bfce
FB
229 function handler_embedded($page)
230 {
231 global $platal, $globals;
232 $allkeys = func_get_args();
233 $mode = $allkeys[1];
234 unset($allkeys[0]);
235 unset($allkeys[1]);
bc02ceca 236 Env::set('display', $mode);
7299bfce
FB
237 $globals->baseurl .= '/embedded/' . $mode;
238 $platal->path = join('/', $allkeys);
239 $platal->run();
240 }
b62f8858 241}
242
a7de4ef7 243// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
b62f8858 244?>