Clear cache link in menu also clear PlCache.
[platal.git] / modules / core.php
CommitLineData
b62f8858 1<?php
2/***************************************************************************
2ab75571 3 * Copyright (C) 2003-2010 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(
b631d803
SJ
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'),
05d5ce15 32 'kill_sessions' => $this->make_hook('kill_sessions', AUTH_COOKIE, 'admin'),
7f6d1063
FB
33 'sql_errors' => $this->make_hook('siteerror', AUTH_COOKIE, 'admin'),
34 'assert_errors' => $this->make_hook('siteerror', AUTH_COOKIE, 'admin'),
35 'site_errors' => $this->make_hook('siteerror', AUTH_COOKIE, 'admin'),
fdbeba4f 36
b631d803
SJ
37 'wiki_help' => $this->make_hook('wiki_help', AUTH_PUBLIC),
38 'wiki_preview' => $this->make_hook('wiki_preview', AUTH_COOKIE, 'user', NO_AUTH),
7b14a2a0 39
b631d803
SJ
40 'valid.html' => $this->make_hook('valid', AUTH_PUBLIC),
41 'favicon.ico' => $this->make_hook('favicon', AUTH_PUBLIC),
42 'robots.txt' => $this->make_hook('robotstxt', AUTH_PUBLIC, 'user', NO_HTTPS),
b62f8858 43 );
44 }
45
9e394323 46 function handler_valid($page)
7b14a2a0 47 {
48 readfile($page->compile_dir.'/valid.html');
49 exit;
50 }
51
9e394323 52 function handler_403($page)
b62f8858 53 {
338a5934 54 global $globals;
94c63478 55 header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden');
2aad1481 56 $page->trigError('Tu n\'as pas les permissions nécessaires pour accéder à cette page.');
7cb40d85 57 $page->coreTpl('403.tpl');
b62f8858 58 }
59
9e394323 60 function handler_404($page)
b62f8858 61 {
338a5934 62 global $globals, $platal;
94c63478 63 header($_SERVER['SERVER_PROTOCOL'] . ' 404 Not Found');
7cb40d85 64 $page->coreTpl('404.tpl');
6b8d257b 65 $page->assign('near', $platal->near_hook());
2aad1481 66 $page->trigError('Cette page n\'existe pas !!!');
b62f8858 67 }
0889eb33 68
9e394323 69 function handler_login($page)
bb7af3cd 70 {
71 $allkeys = func_get_args();
72 unset($allkeys[0]);
73 $url = join('/',$allkeys);
74 pl_redirect($url);
75 }
76
9e394323 77 function handler_favicon($page)
dc41059a 78 {
2b1ac5ab 79 global $globals;
a286fc7a
VZ
80 pl_cached_content_headers("image/x-icon");
81 readfile($globals->spoolroot . '/htdocs/images/favicon.ico');
dc41059a 82 exit;
83 }
84
9e394323 85 function handler_robotstxt($page)
f8eb84b7
VZ
86 {
87 global $globals;
a12a0ce3
VZ
88
89 $disallowed_uris = array();
90 if ($globals->core->restricted_platal) {
91 $disallowed_uris[] = '/';
92 } else if (!empty($globals->core->robotstxt_disallowed_uris)) {
93 $disallowed_uris = preg_split('/[\s,]+/',
94 $globals->core->robotstxt_disallowed_uris,
95 -1, PREG_SPLIT_NO_EMPTY);
f8eb84b7
VZ
96 }
97
a12a0ce3 98 if (count($disallowed_uris) > 0) {
a286fc7a 99 pl_cached_content_headers("text/plain");
a12a0ce3
VZ
100 echo "User-agent: *\n";
101 foreach ($disallowed_uris as $uri) {
102 echo "Disallow: $uri\n";
103 }
104 exit;
105 }
106 return PL_NOT_FOUND;
f8eb84b7
VZ
107 }
108
9e394323 109 function handler_purge_cache($page)
0889eb33 110 {
40d428d8 111 S::assert_xsrf_token();
0889eb33 112
40d428d8 113 $page->clear_compiled_tpl();
1f16638f 114 PlWikiPage::clearCache();
c426670b 115 PlCache::clearAll();
0889eb33 116
40d428d8 117 http_redirect(empty($_SERVER['HTTP_REFERER']) ? './' : $_SERVER['HTTP_REFERER']);
0889eb33 118 }
e74411f7 119
9e394323 120 function handler_kill_sessions($page)
05d5ce15
FB
121 {
122 kill_sessions();
123 }
124
9e394323 125 function handler_bug($page)
8b1f8e12 126 {
97af9556 127 global $globals;
4d68bcde
FB
128
129 if (empty($_SERVER['HTTP_REFERER'])) {
130 // We don't have a valid referer, we need to use the url
131 list($currentPage, $location) = explode('//', $_SERVER['REQUEST_URI'], 2);
132
133 $location = 'http'.(empty($_SERVER['HTTPS']) ? '' : 's').'://'.$_SERVER['SERVER_NAME'].'/'.$location;
134 } else {
135 $location = $_SERVER['HTTP_REFERER'];
136 }
137
7cb40d85 138 $page->coreTpl('bug.tpl', SIMPLE);
4d68bcde 139 $page->assign('location', $location);
8b1f8e12 140 $page->addJsLink('close_on_esc.js');
4d68bcde 141
40d428d8
VZ
142 if (Env::has('send') && trim(Env::v('detailed_desc'))) {
143 S::assert_xsrf_token();
144
5486a0d3 145 $body = wordwrap(Env::v('detailed_desc'), 78) . "\n\n"
146 . "----------------------------\n"
147 . "Page : " . Env::v('page') . "\n\n"
30f983a1 148 . "Utilisateur : " . S::user()->login() . "\n"
5c50e351 149 . "Navigateur : " . $_SERVER['HTTP_USER_AGENT'] . "\n"
150 . "Skin : " . S::v('skin') . "\n";
2aad1481
SJ
151 $page->assign('bug_sent', 1);
152 $page->trigSuccess('Ton message a bien été envoyé au support de ' . $globals->core->sitename
153 . ', tu devrais en recevoir une copie d\'ici quelques minutes. Nous allons '
154 . 'le traiter et y répondre dans les plus brefs délais.');
8b1f8e12 155 $mymail = new PlMailer();
30f983a1
VZ
156 $mymail->setFrom(sprintf('"%s" <%s>', S::user()->fullName(), S::user()->bestEmail()));
157 $mymail->addCc(sprintf('"%s" <%s>', S::user()->fullName(), S::user()->bestEmail()));
1d55fe45 158 $mymail->addTo('support+platal@' . $globals->mail->domain);
8b1f8e12 159 $mymail->setSubject('Plat/al '.Env::v('task_type').' : '.Env::v('item_summary'));
5486a0d3 160 $mymail->setTxtBody($body);
8b1f8e12 161 $mymail->send();
e8dfa21c 162 } elseif (Env::has('send')) {
2aad1481 163 $page->trigError("Merci de remplir une explication du problème rencontré.");
8b1f8e12 164 }
165 }
72b2f8bb 166
9e394323 167 function handler_wiki_help($page, $action = 'title')
72b2f8bb 168 {
7cb40d85 169 $page->coreTpl('wiki.help.tpl', SIMPLE);
72b2f8bb 170 $page->assign('wiki_help', MiniWiki::help($action == 'title'));
171 }
fdbeba4f 172
173 /// Shared handler for wiki syntax result preview
9e394323 174 function handler_wiki_preview($page, $action = 'title')
fdbeba4f 175 {
a286fc7a 176 pl_content_headers("text/html");
8b6e9f4e 177 $text = Env::v('text');
fdbeba4f 178 echo MiniWiki::wikiToHtml($text, $action == 'title');
179 exit;
180 }
f8eaef22 181
9e394323 182 function handler_siteerror($page) {
f8eaef22 183 global $globals;
7f6d1063 184 $page->coreTpl('site_errors.tpl');
40b79bfc 185 $page->assign('errors', PlErrorReport::iterate());
02c018dd 186 if (Post::has('clear')) {
40b79bfc 187 PlErrorReport::clear();
7f6d1063 188 $page->trigSuccess("Erreurs effacées.");
ec60dba7
RB
189 }
190 }
b62f8858 191}
192
a7de4ef7 193// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
b62f8858 194?>