PlFlagset and PlDBTableEntry are exportable.
[platal.git] / classes / plpage.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
2ab75571 3 * Copyright (C) 2003-2010 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
5640f093
FB
22if (!@include_once 'smarty/libs/Smarty.class.php') {
23 require_once 'smarty/Smarty.class.php';
24}
0337d704 25
04334c61 26abstract class PlPage extends Smarty
0337d704 27{
2b1ee50b 28 private $_page_type;
29 private $_tpl;
30 private $_errors;
31 private $_failure;
4a8a1e0a 32 private $_jsonVars;
0337d704 33
04334c61 34 // {{{ function PlPage()
0337d704 35
abde67b1 36 public function __construct()
0337d704 37 {
2b1ee50b 38 parent::Smarty();
0337d704 39
2b1ee50b 40 global $globals;
796aea34 41
abe7e055 42 $this->caching = false;
43 $this->config_overwrite = false;
44 $this->use_sub_dirs = false;
a33955e4
FB
45 $this->template_dir = $globals->spoolroot . '/templates/';
46 $this->compile_dir = $globals->spoolroot . '/spool/templates_c/';
47 array_unshift($this->plugins_dir,
48 $globals->spoolroot . '/core/plugins/',
49 $globals->spoolroot . '/plugins/');
50 $this->config_dir = $globals->spoolroot . '/configs/';
0337d704 51
b5e56a71 52 $this->compile_check = !empty($globals->debug) || $globals->smarty_autocompile;
0337d704 53
71a753d3 54 $this->_errors = array('errors' => array());
4a8a1e0a 55 $this->_jsonVars = array();
860fdaec 56 $this->_failure = false;
0337d704 57
fe556813 58 if ($globals->mode != 'rw') {
d27380cd
AA
59 $this->trigError("En raison d'une maintenance, une partie des fonctionnalités du site est"
60 . " actuellement désactivée, en particulier aucune donnée ne sera sauvegardée");
fe556813 61 }
0337d704 62 $this->register_prefilter('at_to_globals');
0337d704 63 }
64
65 // }}}
66 // {{{ function changeTpl()
67
2b1ee50b 68 public function changeTpl($tpl, $type = SKINNED)
0337d704 69 {
91ebb7ff
FB
70 $this->_tpl = $tpl;
71 $this->_page_type = $type;
72 $this->assign('pl_tpl', $tpl);
0337d704 73 }
74
75 // }}}
7cb40d85
FB
76 // {{{ function getCoreTpl()
77
78 public static function getCoreTpl($tpl)
79 {
80 global $globals;
81 return $globals->spoolroot . '/core/templates/' . $tpl;
82 }
83
84 // }}}
85 // {{{ function coreTpl()
86
87 /** Use a template from the core.
88 */
89 public function coreTpl($tpl, $type = SKINNED)
90 {
91 global $globals;
92 $this->changeTpl(self::getCoreTpl($tpl), $type);
93 }
94
95 // }}}
e654517d 96 // {{{ function raw()
97
98 public function raw()
99 {
100 global $globals;
101 $this->assign('globals', $globals);
102 return $this->fetch($this->_tpl);
103 }
104
105 // }}}
0337d704 106 // {{{ function _run()
107
2b1ee50b 108 protected function _run($skin)
0337d704 109 {
80d0423e 110 global $globals, $platal, $TIME_BEGIN;
36f114ef 111
732e5855 112 Platal::session()->close();
36f114ef 113
e654517d 114 $this->register_prefilter('trimwhitespace');
115 $this->register_prefilter('form_force_encodings');
7a3f546b 116 $this->register_prefilter('wiki_include');
7cb40d85 117 $this->register_prefilter('core_include');
b6ec30c5 118 $this->register_prefilter('if_rewrites');
91ebb7ff
FB
119 $this->assign('pl_triggers', $this->_errors);
120 $this->assign('pl_errors', $this->nb_errs());
121 $this->assign('pl_failure', $this->_failure);
80d0423e 122 $this->assign_by_ref('platal', $platal);
08d7cc45 123 $this->assign_by_ref('globals', $globals);
a3a049fc 124
4a8a1e0a 125 if (Env::has('json') && count($this->_jsonVars)) {
126 return $this->jsonDisplay();
127 }
eaf30d86 128
8a105df2 129 if (Env::v('display') == 'light') {
130 $this->_page_type = SIMPLE;
131 } elseif (Env::v('display') == 'raw') {
132 $this->_page_type = NO_SKIN;
133 } elseif (Env::v('display') == 'full') {
134 $this->_page_typ = SKINNED;
135 }
136
d58e3be0
SJ
137 if ($this->_page_type == SIMPLE) {
138 $this->assign('simple', true);
139 } else {
140 $this->assign('simple', false);
141 }
142
62a66dfc 143 switch ($this->_page_type) {
144 case NO_SKIN:
81e9c63f 145 if (!($globals->debug & DEBUG_SMARTY)) {
146 error_reporting(0);
147 }
0337d704 148 $this->display($this->_tpl);
149 exit;
62a66dfc 150
151 case SIMPLE:
62a66dfc 152 case SKINNED:
b4ee37a4
FB
153 $this->register_modifier('escape_html', 'escape_html');
154 $this->default_modifiers = Array('@escape_html');
0337d704 155 }
5aa58639
FB
156 if (S::i('auth') <= AUTH_PUBLIC) {
157 $this->register_outputfilter('hide_emails');
158 }
493b6abe 159 header("Accept-Charset: utf-8");
4a8a1e0a 160 if (Env::v('forceXml')) {
a286fc7a 161 pl_content_headers("text/xml");
4a8a1e0a 162 }
b4315e15 163
164 if (!$globals->debug) {
6995a9b9 165 error_reporting(0);
b4315e15 166 $this->display($skin);
c67e49ea 167 pl_print_errors(true);
b4315e15 168 exit;
169 }
a3a049fc 170
7da8ef90 171 $this->assign('validate', true);
81e9c63f 172 if (!($globals->debug & DEBUG_SMARTY)) {
173 error_reporting(0);
174 }
040a594c 175 $START_SMARTY = microtime(true);
b4315e15 176 $result = $this->fetch($skin);
040a594c
FB
177 $ttime = sprintf('Temps total: %.02fs (Smarty %.02fs) - Mémoire totale : %dKo<br />',
178 microtime(true) - $TIME_BEGIN, microtime(true) - $START_SMARTY,
179 memory_get_peak_usage(true) / 1024);
b4ee37a4
FB
180 if ($globals->debug & DEBUG_BT) {
181 PlBacktrace::clean();
182 $this->assign_by_ref('backtraces', PlBacktrace::$bt);
7cb40d85
FB
183 $result = str_replace('@@BACKTRACE@@',
184 $this->fetch(self::getCoreTpl('backtrace.tpl')),
185 $result);
b4ee37a4
FB
186 } else {
187 $result = str_replace('@@BACKTRACE@@', '', $result);
188 }
0337d704 189
b4ee37a4 190 $replc = "<span class='erreur'>VALIDATION HTML INACTIVE</span><br />";
81e9c63f 191 if ($globals->debug & DEBUG_VALID) {
b4315e15 192 $fd = fopen($this->compile_dir."/valid.html","w");
193 fwrite($fd, $result);
194 fclose($fd);
a3a049fc 195
b4315e15 196 exec($globals->spoolroot."/bin/devel/xhtml.validate.pl ".$this->compile_dir."/valid.html", $val);
197 foreach ($val as $h) {
198 if (preg_match("/^X-W3C-Validator-Errors: (\d+)$/", $h, $m)) {
199 $replc = '<span style="color: #080;">HTML OK</span><br />';
200 if ($m[1]) {
201 $replc = "<span class='erreur'><a href='http://validator.w3.org/check?uri={$globals->baseurl}"
202 ."/valid.html&amp;ss=1#result'>{$m[1]} ERREUR(S) !!!</a></span><br />";
0337d704 203 }
b4315e15 204 break;
0337d704 205 }
206 }
0337d704 207 }
208
b4315e15 209 echo str_replace("@HOOK@", $ttime.$replc, $result);
0337d704 210 exit;
211 }
212
1490093c 213 abstract public function run();
214
0337d704 215 // }}}
0337d704 216 // {{{ function nb_errs()
217
2b1ee50b 218 public function nb_errs()
0337d704 219 {
71a753d3 220 return count($this->_errors['errors']);
0337d704 221 }
222
223 // }}}
224 // {{{ function trig()
225
a7d35093 226 private function trig($msg, $type = 'errors')
0337d704 227 {
71a753d3
FB
228 if (!isset($this->_errors[$type])) {
229 $this->_errors[$type] = array();
230 }
231 $this->_errors[$type][] = $msg;
232 }
233
234 public function trigError($msg)
235 {
236 $this->trig($msg, 'errors');
237 }
238
e00bc67e
FB
239 public function trigWarning($msg)
240 {
241 $this->trig($msg, 'warnings');
242 }
243
71a753d3
FB
244 public function trigSuccess($msg)
245 {
246 $this->trig($msg, 'success');
0337d704 247 }
248
249 // }}}
8adfe956
RB
250 // {{{ function trigRedirect
251
252 // Acts as trig(), but replaces the template with a simple one displaying
253 // the error messages and a "continue" link.
254 private function trigRedirect($msg, $continue, $type = 'errors')
255 {
256 $this->trig($msg, $type);
257 $this->coreTpl('msgredirect.tpl');
258 $this->assign('continue', $continue);
259 $this->run();
260 }
261
262 public function trigErrorRedirect($msg, $continue)
263 {
264 $this->trigRedirect($msg, $continue, 'errors');
265 }
266
267 public function trigWarningRedirect($msg, $continue)
268 {
269 $this->trigRedirect($msg, $continue, 'warnings');
270 }
271
272 public function trigSuccessRedirect($msg, $continue)
273 {
274 $this->trigRedirect($msg, $continue, 'success');
275 }
276
277 // }}}
0337d704 278 // {{{ function kill()
279
ca476935 280 public function kill($msg, $type = 'errors')
0337d704 281 {
36f472dc
FB
282 // PHP is used on command line... do not run the whole page stuff.
283 if (php_sapi_name() == 'cli') {
284 echo $msg . "\n";
fc2cfa65 285 exit(-1);
36f472dc
FB
286 }
287
90eba1aa 288 global $platal;
289
ca476935 290 $this->trig($msg, $type);
0fcbe8d0 291 $this->_failure = true;
0337d704 292 $this->run();
293 }
294
ca476935
SJ
295 public function killError($msg)
296 {
297 $this->kill($msg, 'errors');
298 }
299
300 public function killWarning($msg)
301 {
302 $this->kill($msg, 'warnings');
303 }
304
305 public function killSuccess($msg)
306 {
307 $this->kill($msg, 'success');
308 }
309
0337d704 310 // }}}
9902e47b
FB
311 // {{{ function setTitle
312
313 public function setTitle($title)
314 {
380e2a5a
FB
315 global $globals;
316 if (isset($globals->core->sitename)) {
317 $title = $globals->core->sitename . ' :: ' . $title;
318 }
9902e47b
FB
319 $this->assign('pl_title', $title);
320 }
321
322 // }}}
0337d704 323 // {{{ function addJsLink
324
47a44ed0 325 public function addJsLink($filename, $static_content = true)
0337d704 326 {
47a44ed0
VZ
327 if ($static_content) {
328 $this->append('pl_js', pl_static_content_path("javascript/", $filename));
329 } else {
330 $this->append('pl_js', "javascript/$filename");
331 }
0337d704 332 }
333
334 // }}}
335 // {{{ function addCssLink
336
2b1ee50b 337 public function addCssLink($path)
0337d704 338 {
91ebb7ff 339 $this->append('pl_css', $path);
0337d704 340 }
341
342 // }}}
1e9a1d99
AA
343 // {{{ function addLink
344
345 public function addLink($rel, $path)
346 {
347 $this->append('pl_link', array('rel' => $rel, 'href' => $path));
348 }
349
350
351 // }}}
ea626742 352 // {{{ function addCssInline
353
2b1ee50b 354 public function addCssInline($css)
ea626742 355 {
356 if (!empty($css)) {
91ebb7ff 357 $this->append('pl_inline_css', $css);
eaf30d86 358 }
ea626742 359 }
360
361 // }}}
162370e7 362 // {{{ function setRssLink
363
2b1ee50b 364 public function setRssLink($title, $path)
162370e7 365 {
91ebb7ff 366 $this->assign('pl_rss', array('title' => $title, 'href' => $path));
162370e7 367 }
368
369 // }}}
4a8a1e0a 370 // {{{ function jsonDisplay
371 protected function jsonDisplay()
372 {
a286fc7a 373 pl_content_headers("text/javascript");
c67e49ea
FB
374 if (!empty(PlBacktrace::$bt)) {
375 $this->jsonAssign('pl_backtraces', PlBacktrace::$bt);
641802fe 376 }
b00a702a 377 array_walk_recursive($this->_jsonVars, "escape_XDB");
4a8a1e0a 378 $jsonbegin = Env::v('jsonBegin');
379 $jsonend = Env::v('jsonEnd');
380 if (Env::has('jsonVar')) {
381 $jsonbegin = Env::v('jsonVar').' = ';
382 $jsonend = ';';
383 } elseif (Env::has('jsonFunc')) {
384 $jsonbegin = Env::v('jsonFunc').'(';
385 $jsonend = ');';
386 }
387 echo $jsonbegin, json_encode($this->_jsonVars), $jsonend;
388 exit;
389 }
390 // }}}
c67e49ea
FB
391
392 public function runJSon()
393 {
394 pl_content_headers("text/javascript");
395 if (!empty(PlBacktrace::$bt)) {
396 $this->jsonAssign('pl_backtraces', PlBacktrace::$bt);
397 }
398 echo json_encode($this->_jsonVars);
399 exit;
400 }
401
4a8a1e0a 402 // {{{ function jsonAssign
403 public function jsonAssign($var, $value)
404 {
405 $this->_jsonVars[$var] = $value;
406 }
fba760d2 407
408 // }}}
4a8a1e0a 409}
410
b00a702a 411function escape_XDB(&$item, $key)
4a8a1e0a 412{
b00a702a 413 if ($item instanceof XDBIterator) {
4a8a1e0a 414 $expanded = array();
415 while ($a = $item->next()) {
416 $expanded[] = $a;
417 }
418 $item = $expanded;
419 }
0337d704 420}
421
b76f0797 422// {{{ function escape_html ()
423
424/**
425 * default smarty plugin, used to auto-escape dangerous html.
eaf30d86 426 *
b76f0797 427 * < --> &lt;
428 * > --> &gt;
429 * " --> &quot;
430 * & not followed by some entity --> &amp;
431 */
432function escape_html($string)
433{
434 if (is_string($string)) {
c1895524 435 return htmlspecialchars($string, ENT_QUOTES, 'UTF-8');
b76f0797 436 } else {
c1895524 437 return $string;
b76f0797 438 }
439}
440
441// }}}
442// {{{ function at_to_globals()
443
444/**
445 * helper
446 */
447
448function _to_globals($s) {
449 global $globals;
450 $t = explode('.',$s);
451 if (count($t) == 1) {
452 return var_export($globals->$t[0],true);
453 } else {
454 return var_export($globals->$t[0]->$t[1],true);
455 }
456}
457
458/**
459 * compilation plugin used to import $globals confing through #globals.foo.bar# directives
460 */
461
462function at_to_globals($tpl_source, &$smarty)
463{
464 return preg_replace('/#globals\.([a-zA-Z0-9_.]+?)#/e', '_to_globals(\'\\1\')', $tpl_source);
7cb40d85 465}
b76f0797 466
7cb40d85
FB
467// }}}
468// {{{ function trimwhitespace
b76f0797 469
7cb40d85
FB
470function trimwhitespace($source, &$smarty)
471{
472 $tags = '(script|pre|textarea)';
473 preg_match_all("!<$tags.*?>.*?</(\\1)>!ius", $source, $tagsmatches);
474 $source = preg_replace("!<$tags.*?>.*?</(\\1)>!ius", "&&&tags&&&", $source);
b76f0797 475
7cb40d85
FB
476 // remove all leading spaces, tabs and carriage returns NOT
477 // preceeded by a php close tag.
478 $source = preg_replace('/((?<!\?>)\n)[\s]+/m', '\1', $source);
479 $source = preg_replace("!&&&tags&&&!e", 'array_shift($tagsmatches[0])', $source);
b76f0797 480
7cb40d85
FB
481 return $source;
482}
b76f0797 483
7cb40d85
FB
484// }}}
485// {{{ function wiki_include
7a3f546b 486
487function wiki_include($source, &$smarty)
488{
7cb40d85 489 global $globals;
7a3f546b 490 return preg_replace('/\{include( [^}]*)? wiki=([^} ]+)(.*?)\}/ui',
7cb40d85
FB
491 '{include\1 file="' . $globals->spoolroot . '/spool/wiki.d/cache_\2.tpl"\3 included=1}',
492 $source);
493}
494
495function core_include($source, &$smarty)
496{
497 global $globals;
498 return preg_replace('/\{include( [^}]*)? core=([^} ]+)(.*?)\}/ui',
499 '{include\1 file="' . $globals->spoolroot . '/core/templates/\2"\3}',
7a3f546b 500 $source);
501}
502
503// }}}
908db125
FB
504//{{{ function hasPerm
505
b6ec30c5 506function if_rewrites($source, &$smarty)
908db125 507{
a2efe30f
FB
508 $perms = 'isset($smarty.session.user|smarty:nodefaults) && $smarty.session.user';
509 return preg_replace(array('/\{(else)?if([^}]*) (\!?)hasPerms?\(([^)]+)\)([^}]*)\}/',
510 '/\{(else)?if([^}]*) (\!?)t\(([^)]+)\)([^}]*)\}/'),
511 array('{\1if\2 \3(' . $perms . '->checkPerms(\4))\5}',
512 '{\1if\2 \3(isset(\4|smarty:nodefaults) && (\4|smarty:nodefaults))\5}'),
7cb40d85 513 $source);
908db125
FB
514}
515
516// }}}
edc636b8 517// {{{
518
519function form_force_encodings($source, &$smarty)
520{
521 return preg_replace('/<form[^\w]/',
a7de4ef7 522 '\0 accept-charset="utf-8" ',
edc636b8 523 $source);
524}
525
526// }}}
bf2e1ab0 527// {{{ function hide_emails
528
529function _hide_email($source)
530{
1bd2bc7e 531 $source = str_replace("\n", '', $source);
6b8d257b 532 return '<script type="text/javascript">//<![CDATA[' . "\n" .
91ebb7ff
FB
533 'Nix.decode("' . addslashes(str_rot13($source)) . '");' . "\n" .
534 '//]]></script>';
bf2e1ab0 535}
536
537function hide_emails($source, &$smarty)
538{
a18afbdc 539 if (!strpos($source, '@')) {
540 return $source;
541 }
542
bf2e1ab0 543 //prevent email replacement in <script> and <textarea>
120bd636 544 $tags = '(script|textarea|select)';
abe7e055 545 preg_match_all("!<$tags.*?>.*?</(\\1)>!ius", $source, $tagsmatches);
546 $source = preg_replace("!<$tags.*?>.*?</(\\1)>!ius", "&&&tags&&&", $source);
bf2e1ab0 547
548 //catch all emails in <a href="mailto:...">
a14159bf 549 preg_match_all("!<a[^>]+href=[\"'][^\"']*[-a-z0-9+_.]+@[-a-z0-9_.]+[^\"']*[\"'].*?>.*?</a>!ius", $source, $ahref);
550 $source = preg_replace("!<a[^>]+href=[\"'][^\"']*[-a-z0-9+_.]+@[-a-z0-9_.]+[^\"']*[\"'].*?>.*?</a>!ius", '&&&ahref&&&', $source);
bf2e1ab0 551
552 //prevant replacement in tag attributes
abe7e055 553 preg_match_all("!<[^>]+[-a-z0-9_+.]+@[-a-z0-9_.]+.+?>!ius", $source, $misc);
554 $source = preg_replace("!<[^>]+[-a-z0-9_+.]+@[-a-z0-9_.]+.+?>!ius", '&&&misc&&&', $source);
bf2e1ab0 555
556 //catch !
eaf30d86 557 $source = preg_replace('!([-a-z0-9_+.]+@[-a-z0-9_.]+)!iue', '_hide_email("\1")', $source);
bf2e1ab0 558 $source = preg_replace('!&&&ahref&&&!e', '_hide_email(array_shift($ahref[0]))', $source);
bf2e1ab0 559
560 // restore data
2456ea61 561 $source = preg_replace('!&&&misc&&&!e', 'array_shift($misc[0])', $source);
120bd636 562 $source = preg_replace("!&&&tags&&&!e", 'array_shift($tagsmatches[0])', $source);
bf2e1ab0 563
564 return $source;
565}
566
567// }}}
b76f0797 568
a7de4ef7 569// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 570?>