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