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