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