0ce18ee0463e938faf417004106fdb1b1190e80d
[platal.git] / modules / core.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2006 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 function bugize($list)
23 {
24 $list = split(',', $list);
25 $ans = array();
26
27 foreach ($list as $bug) {
28 $clean = str_replace('#', '', $bug);
29 $ans[] = "<a href='http://trackers.polytechnique.org/task/$clean'>$bug</a>";
30 }
31
32 return join(',', $ans);
33 }
34
35
36 class CoreModule extends PLModule
37 {
38 function handlers()
39 {
40 return array(
41 '403' => $this->make_hook('403', AUTH_PUBLIC),
42 '404' => $this->make_hook('404', AUTH_PUBLIC),
43 'exit' => $this->make_hook('exit', AUTH_PUBLIC),
44 'cacert.pem' => $this->make_hook('cacert', AUTH_PUBLIC),
45 'changelog' => $this->make_hook('changelog', AUTH_PUBLIC),
46 'purge_cache' => $this->make_hook('purge_cache', AUTH_COOKIE, 'admin'),
47
48 'valid.html' => $this->make_hook('valid', AUTH_PUBLIC),
49 );
50 }
51
52 function handler_valid(&$page)
53 {
54 readfile($page->compile_dir.'/valid.html');
55 exit;
56 }
57
58 function handler_index(&$page)
59 {
60 if (logged()) {
61 redirect("events");
62 }
63
64 return PL_OK;
65 }
66
67 function handler_cacert(&$page)
68 {
69 $data = file_get_contents('/etc/ssl/xorgCA/cacert.pem');
70 header('Content-Type: application/x-x509-ca-cert');
71 header('Content-Length: '.strlen($data));
72 echo $data;
73 exit;
74 }
75
76 function handler_changelog(&$page)
77 {
78 $page->changeTpl('changeLog.tpl');
79
80 $clog = htmlentities(file_get_contents(dirname(__FILE__).'/../ChangeLog'));
81 $clog = preg_replace('!(#[0-9]+(,[0-9]+)*)!e', 'bugize("\1")', $clog);
82 $page->assign('ChangeLog', $clog);
83 }
84
85 function handler_exit(&$page, $level = null)
86 {
87 if (Session::has('suid')) {
88 if (Session::has('suid')) {
89 $a4l = Session::get('forlife');
90 $suid = Session::getMixed('suid');
91 $log = Session::getMixed('log');
92 $log->log("suid_stop", Session::get('forlife') . " by " . $suid['forlife']);
93 $_SESSION = $suid;
94 Session::kill('suid');
95 redirect($globals->baseurl.'/admin/utilisateurs.php?login='.$a4l);
96 } else {
97 redirect("events");
98 }
99 }
100
101 if ($level == 'forget' || $level == 'forgetall') {
102 setcookie('ORGaccess', '', time() - 3600, '/', '', 0);
103 Cookie::kill('ORGaccess');
104 if (isset($_SESSION['log']))
105 $_SESSION['log']->log("cookie_off");
106 }
107
108 if ($level == 'forgetuid' || $level == 'forgetall') {
109 setcookie('ORGuid', '', time() - 3600, '/', '', 0);
110 Cookie::kill('ORGuid');
111 setcookie('ORGdomain', '', time() - 3600, '/', '', 0);
112 Cookie::kill('ORGdomain');
113 }
114
115 if (isset($_SESSION['log'])) {
116 $ref = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '';
117 $_SESSION['log']->log('deconnexion',$ref);
118 }
119
120 XorgSession::destroy();
121
122 if (Get::has('redirect')) {
123 redirect(rawurldecode(Get::get('redirect')));
124 } else {
125 $page->changeTpl('exit.tpl');
126 }
127 return PL_OK;
128 }
129
130 function handler_403(&$page)
131 {
132 header('HTTP/1.0 403 Forbidden');
133 $page->changeTpl('403.tpl');
134 return PL_OK;
135 }
136
137 function handler_404(&$page)
138 {
139 header('HTTP/1.0 404 Not Found');
140 $page->changeTpl('404.tpl');
141 return PL_OK;
142 }
143
144 function handler_purge_cache(&$page)
145 {
146 require_once 'wiki.inc.php';
147
148 $page->clear_compiled_tpl();
149 wiki_clear_all_cache();
150
151 redirect(empty($_SERVER['HTTP_REFERER']) ? './' : $_SERVER['HTTP_REFERER']);
152 }
153 }
154
155 ?>