New main page of the site with a multi-topic site preview based on PlWizard
[platal.git] / classes / platalpage.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
5ddeb07c 3 * Copyright (C) 2003-2007 Polytechnique.org *
0337d704 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
f12af8ad 22require_once 'smarty/libs/Smarty.class.php';
0337d704 23
1490093c 24abstract class PlatalPage extends Smarty
0337d704 25{
2b1ee50b 26 private $_page_type;
27 private $_tpl;
28 private $_errors;
29 private $_failure;
4a8a1e0a 30 private $_jsonVars;
0337d704 31
0337d704 32 // {{{ function PlatalPage()
33
2b1ee50b 34 public function __construct($tpl, $type = SKINNED)
0337d704 35 {
2b1ee50b 36 parent::Smarty();
0337d704 37
2b1ee50b 38 global $globals;
796aea34 39
abe7e055 40 $this->caching = false;
41 $this->config_overwrite = false;
42 $this->use_sub_dirs = false;
0337d704 43 $this->template_dir = $globals->spoolroot."/templates/";
7faf6e6a 44 $this->compile_dir = $globals->spoolroot."/spool/templates_c/";
0337d704 45 array_unshift($this->plugins_dir, $globals->spoolroot."/plugins/");
46 $this->config_dir = $globals->spoolroot."/configs/";
47
48 $this->compile_check = !empty($globals->debug);
49
1490093c 50 $this->changeTpl($tpl, $type);
860fdaec 51 $this->_errors = array();
4a8a1e0a 52 $this->_jsonVars = array();
860fdaec 53 $this->_failure = false;
0337d704 54
fe556813
FB
55 if ($globals->mode != 'rw') {
56 $this->_errors[] = "En raison d'une maintenance, une partie des fonctionnalités du site sont actuellement"
57 . " désactivée, en particuliers aucune donnée ne sera sauvegardée";
58 }
0337d704 59 $this->register_prefilter('at_to_globals');
60979eb7 60 $this->addJsLink('xorg.js');
0337d704 61 }
62
63 // }}}
64 // {{{ function changeTpl()
65
2b1ee50b 66 public function changeTpl($tpl, $type = SKINNED)
0337d704 67 {
c1895524
FB
68 $this->_tpl = $tpl;
69 $this->_page_type = $type;
70 $this->assign('xorg_tpl', $tpl);
0337d704 71 }
72
73 // }}}
e654517d 74 // {{{ function raw()
75
76 public function raw()
77 {
78 global $globals;
79 $this->assign('globals', $globals);
80 return $this->fetch($this->_tpl);
81 }
82
83 // }}}
0337d704 84 // {{{ function _run()
85
2b1ee50b 86 protected function _run($skin)
0337d704 87 {
88 global $globals, $TIME_BEGIN;
36f114ef 89
90 session_write_close();
91
e654517d 92 $this->register_prefilter('trimwhitespace');
93 $this->register_prefilter('form_force_encodings');
7a3f546b 94 $this->register_prefilter('wiki_include');
6995a9b9 95 $this->assign('xorg_errors', $this->_errors);
96 $this->assign('xorg_failure', $this->_failure);
d083f500 97 $this->assign('globals', $globals);
a3a049fc 98
4a8a1e0a 99 if (Env::has('json') && count($this->_jsonVars)) {
100 return $this->jsonDisplay();
101 }
eaf30d86 102
8a105df2 103 if (Env::v('display') == 'light') {
104 $this->_page_type = SIMPLE;
105 } elseif (Env::v('display') == 'raw') {
106 $this->_page_type = NO_SKIN;
107 } elseif (Env::v('display') == 'full') {
108 $this->_page_typ = SKINNED;
109 }
110
62a66dfc 111 switch ($this->_page_type) {
112 case NO_SKIN:
81e9c63f 113 if (!($globals->debug & DEBUG_SMARTY)) {
114 error_reporting(0);
115 }
0337d704 116 $this->display($this->_tpl);
117 exit;
62a66dfc 118
119 case SIMPLE:
c6db254a 120 $this->assign('simple', true);
bf2e1ab0 121
62a66dfc 122 case SKINNED:
c1895524
FB
123 $this->register_modifier('escape_html', 'escape_html');
124 $this->default_modifiers = Array('@escape_html');
0337d704 125 }
bf2e1ab0 126 $this->register_outputfilter('hide_emails');
127 $this->addJsLink('wiki.js');
493b6abe 128 header("Accept-Charset: utf-8");
4a8a1e0a 129 if (Env::v('forceXml')) {
130 header("Content-Type: text/xml; charset=utf-8");
131 }
b4315e15 132
133 if (!$globals->debug) {
6995a9b9 134 error_reporting(0);
b4315e15 135 $this->display($skin);
136 exit;
137 }
a3a049fc 138
81e9c63f 139 if ($globals->debug & DEBUG_BT) {
d3f26be9 140 PlBacktrace::clean();
141 $this->assign_by_ref('backtraces', PlBacktrace::$bt);
b4315e15 142 }
0337d704 143
7da8ef90 144 $this->assign('validate', true);
81e9c63f 145 if (!($globals->debug & DEBUG_SMARTY)) {
146 error_reporting(0);
147 }
b4315e15 148 $result = $this->fetch($skin);
9b2e77de 149 $ttime = sprintf('Temps total: %.02fs - Mémoire totale : %dKo<br />', microtime(true) - $TIME_BEGIN
c895e7a4 150 , memory_get_peak_usage(true) / 1024);
b4315e15 151 $replc = "<span class='erreur'>VALIDATION HTML INACTIVE</span><br />";
0337d704 152
81e9c63f 153 if ($globals->debug & DEBUG_VALID) {
b4315e15 154 $fd = fopen($this->compile_dir."/valid.html","w");
155 fwrite($fd, $result);
156 fclose($fd);
a3a049fc 157
b4315e15 158 exec($globals->spoolroot."/bin/devel/xhtml.validate.pl ".$this->compile_dir."/valid.html", $val);
159 foreach ($val as $h) {
160 if (preg_match("/^X-W3C-Validator-Errors: (\d+)$/", $h, $m)) {
161 $replc = '<span style="color: #080;">HTML OK</span><br />';
162 if ($m[1]) {
163 $replc = "<span class='erreur'><a href='http://validator.w3.org/check?uri={$globals->baseurl}"
164 ."/valid.html&amp;ss=1#result'>{$m[1]} ERREUR(S) !!!</a></span><br />";
0337d704 165 }
b4315e15 166 break;
0337d704 167 }
168 }
0337d704 169 }
170
b4315e15 171 echo str_replace("@HOOK@", $ttime.$replc, $result);
0337d704 172 exit;
173 }
174
1490093c 175 abstract public function run();
176
0337d704 177 // }}}
0337d704 178 // {{{ function nb_errs()
179
2b1ee50b 180 public function nb_errs()
0337d704 181 {
860fdaec 182 return count($this->_errors);
0337d704 183 }
184
185 // }}}
186 // {{{ function trig()
187
2b1ee50b 188 public function trig($msg)
0337d704 189 {
860fdaec 190 $this->_errors[] = $msg;
0337d704 191 }
192
193 // }}}
0337d704 194 // {{{ function kill()
195
2b1ee50b 196 public function kill($msg)
0337d704 197 {
90eba1aa 198 global $platal;
199
200 $this->assign('platal', $platal);
0fcbe8d0 201 $this->trig($msg);
202 $this->_failure = true;
0337d704 203 $this->run();
204 }
205
206 // }}}
0337d704 207 // {{{ function addJsLink
208
2b1ee50b 209 public function addJsLink($path)
0337d704 210 {
211 $this->append('xorg_js', $path);
212 }
213
214 // }}}
215 // {{{ function addCssLink
216
2b1ee50b 217 public function addCssLink($path)
0337d704 218 {
219 $this->append('xorg_css', $path);
220 }
221
222 // }}}
ea626742 223 // {{{ function addCssInline
224
2b1ee50b 225 public function addCssInline($css)
ea626742 226 {
227 if (!empty($css)) {
228 $this->append('xorg_inline_css', $css);
eaf30d86 229 }
ea626742 230 }
231
232 // }}}
162370e7 233 // {{{ function setRssLink
234
2b1ee50b 235 public function setRssLink($title, $path)
162370e7 236 {
237 $this->assign('xorg_rss', array('title' => $title, 'href' => $path));
238 }
239
240 // }}}
4a8a1e0a 241 // {{{ function jsonDisplay
242 protected function jsonDisplay()
243 {
244 header("Content-type: text/javascript; charset=utf-8");
245 array_walk_recursive($this->_jsonVars, "escape_xorgDB");
246 $jsonbegin = Env::v('jsonBegin');
247 $jsonend = Env::v('jsonEnd');
248 if (Env::has('jsonVar')) {
249 $jsonbegin = Env::v('jsonVar').' = ';
250 $jsonend = ';';
251 } elseif (Env::has('jsonFunc')) {
252 $jsonbegin = Env::v('jsonFunc').'(';
253 $jsonend = ');';
254 }
255 echo $jsonbegin, json_encode($this->_jsonVars), $jsonend;
256 exit;
257 }
258 // }}}
259 // {{{ function jsonAssign
260 public function jsonAssign($var, $value)
261 {
262 $this->_jsonVars[$var] = $value;
263 }
fba760d2 264
265 // }}}
4a8a1e0a 266}
267
268function escape_xorgDB(&$item, $key)
269{
270 if (is_a($item, 'XOrgDBIterator')) {
271 $expanded = array();
272 while ($a = $item->next()) {
273 $expanded[] = $a;
274 }
275 $item = $expanded;
276 }
0337d704 277}
278
b76f0797 279// {{{ function escape_html ()
280
281/**
282 * default smarty plugin, used to auto-escape dangerous html.
eaf30d86 283 *
b76f0797 284 * < --> &lt;
285 * > --> &gt;
286 * " --> &quot;
287 * & not followed by some entity --> &amp;
288 */
289function escape_html($string)
290{
291 if (is_string($string)) {
c1895524 292 return htmlspecialchars($string, ENT_QUOTES, 'UTF-8');
b76f0797 293 } else {
c1895524 294 return $string;
b76f0797 295 }
296}
297
298// }}}
299// {{{ function at_to_globals()
300
301/**
302 * helper
303 */
304
305function _to_globals($s) {
306 global $globals;
307 $t = explode('.',$s);
308 if (count($t) == 1) {
309 return var_export($globals->$t[0],true);
310 } else {
311 return var_export($globals->$t[0]->$t[1],true);
312 }
313}
314
315/**
316 * compilation plugin used to import $globals confing through #globals.foo.bar# directives
317 */
318
319function at_to_globals($tpl_source, &$smarty)
320{
321 return preg_replace('/#globals\.([a-zA-Z0-9_.]+?)#/e', '_to_globals(\'\\1\')', $tpl_source);
322}
323
324// }}}
325// {{{ function trimwhitespace
326
327function trimwhitespace($source, &$smarty)
328{
120bd636 329 $tags = '(script|pre|textarea)';
abe7e055 330 preg_match_all("!<$tags.*?>.*?</(\\1)>!ius", $source, $tagsmatches);
331 $source = preg_replace("!<$tags.*?>.*?</(\\1)>!ius", "&&&tags&&&", $source);
b76f0797 332
333 // remove all leading spaces, tabs and carriage returns NOT
334 // preceeded by a php close tag.
335 $source = preg_replace('/((?<!\?>)\n)[\s]+/m', '\1', $source);
120bd636 336 $source = preg_replace("!&&&tags&&&!e", 'array_shift($tagsmatches[0])', $source);
b76f0797 337
eaf30d86 338 return $source;
b76f0797 339}
340
341// }}}
7a3f546b 342// {{{ function wiki_include
343
344function wiki_include($source, &$smarty)
345{
346 return preg_replace('/\{include( [^}]*)? wiki=([^} ]+)(.*?)\}/ui',
347 '{include\1 file="../spool/wiki.d/cache_\2.tpl"\3 included=1}',
348 $source);
349}
350
351// }}}
edc636b8 352// {{{
353
354function form_force_encodings($source, &$smarty)
355{
356 return preg_replace('/<form[^\w]/',
a7de4ef7 357 '\0 accept-charset="utf-8" ',
edc636b8 358 $source);
359}
360
361// }}}
bf2e1ab0 362// {{{ function hide_emails
363
364function _hide_email($source)
365{
1bd2bc7e 366 $source = str_replace("\n", '', $source);
6b8d257b 367 return '<script type="text/javascript">//<![CDATA[' . "\n" .
368 'Nix.decode("' . addslashes(str_rot13($source)) . '");' . "\n" .
eaf30d86 369 '//]]></script>';
bf2e1ab0 370}
371
372function hide_emails($source, &$smarty)
373{
a18afbdc 374 if (!strpos($source, '@')) {
375 return $source;
376 }
377
bf2e1ab0 378 //prevent email replacement in <script> and <textarea>
120bd636 379 $tags = '(script|textarea|select)';
abe7e055 380 preg_match_all("!<$tags.*?>.*?</(\\1)>!ius", $source, $tagsmatches);
381 $source = preg_replace("!<$tags.*?>.*?</(\\1)>!ius", "&&&tags&&&", $source);
bf2e1ab0 382
383 //catch all emails in <a href="mailto:...">
a14159bf 384 preg_match_all("!<a[^>]+href=[\"'][^\"']*[-a-z0-9+_.]+@[-a-z0-9_.]+[^\"']*[\"'].*?>.*?</a>!ius", $source, $ahref);
385 $source = preg_replace("!<a[^>]+href=[\"'][^\"']*[-a-z0-9+_.]+@[-a-z0-9_.]+[^\"']*[\"'].*?>.*?</a>!ius", '&&&ahref&&&', $source);
bf2e1ab0 386
387 //prevant replacement in tag attributes
abe7e055 388 preg_match_all("!<[^>]+[-a-z0-9_+.]+@[-a-z0-9_.]+.+?>!ius", $source, $misc);
389 $source = preg_replace("!<[^>]+[-a-z0-9_+.]+@[-a-z0-9_.]+.+?>!ius", '&&&misc&&&', $source);
bf2e1ab0 390
391 //catch !
eaf30d86 392 $source = preg_replace('!([-a-z0-9_+.]+@[-a-z0-9_.]+)!iue', '_hide_email("\1")', $source);
bf2e1ab0 393 $source = preg_replace('!&&&ahref&&&!e', '_hide_email(array_shift($ahref[0]))', $source);
bf2e1ab0 394
395 // restore data
2456ea61 396 $source = preg_replace('!&&&misc&&&!e', 'array_shift($misc[0])', $source);
120bd636 397 $source = preg_replace("!&&&tags&&&!e", 'array_shift($tagsmatches[0])', $source);
bf2e1ab0 398
399 return $source;
400}
401
402// }}}
b76f0797 403
a7de4ef7 404// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 405?>