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