Load jquery.js on all pages.
[platal.git] / classes / platalpage.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2008 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 require_once 'smarty/libs/Smarty.class.php';
23
24 abstract class PlatalPage extends Smarty
25 {
26 private $_page_type;
27 private $_tpl;
28 private $_errors;
29 private $_failure;
30 private $_jsonVars;
31
32 // {{{ function PlatalPage()
33
34 public function __construct($tpl, $type = SKINNED)
35 {
36 parent::Smarty();
37
38 global $globals;
39
40 $this->caching = false;
41 $this->config_overwrite = false;
42 $this->use_sub_dirs = false;
43 $this->template_dir = $globals->spoolroot."/templates/";
44 $this->compile_dir = $globals->spoolroot."/spool/templates_c/";
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
50 $this->changeTpl($tpl, $type);
51 $this->_errors = array();
52 $this->_jsonVars = array();
53 $this->_failure = false;
54
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 }
59 $this->register_prefilter('at_to_globals');
60 $this->addJsLink('xorg.js');
61 $this->addJsLink('jquery.js');
62 }
63
64 // }}}
65 // {{{ function changeTpl()
66
67 public function changeTpl($tpl, $type = SKINNED)
68 {
69 $this->_tpl = $tpl;
70 $this->_page_type = $type;
71 $this->assign('xorg_tpl', $tpl);
72 }
73
74 // }}}
75 // {{{ function raw()
76
77 public function raw()
78 {
79 global $globals;
80 $this->assign('globals', $globals);
81 return $this->fetch($this->_tpl);
82 }
83
84 // }}}
85 // {{{ function _run()
86
87 protected function _run($skin)
88 {
89 global $globals, $TIME_BEGIN;
90
91 session_write_close();
92
93 $this->register_prefilter('trimwhitespace');
94 $this->register_prefilter('form_force_encodings');
95 $this->register_prefilter('wiki_include');
96 $this->register_prefilter('if_has_perms');
97 $this->assign('xorg_errors', $this->_errors);
98 $this->assign('xorg_failure', $this->_failure);
99 $this->assign('globals', $globals);
100
101 if (Env::has('json') && count($this->_jsonVars)) {
102 return $this->jsonDisplay();
103 }
104
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
113 switch ($this->_page_type) {
114 case NO_SKIN:
115 if (!($globals->debug & DEBUG_SMARTY)) {
116 error_reporting(0);
117 }
118 $this->display($this->_tpl);
119 exit;
120
121 case SIMPLE:
122 $this->assign('simple', true);
123
124 case SKINNED:
125 $this->register_modifier('escape_html', 'escape_html');
126 $this->default_modifiers = Array('@escape_html');
127 }
128 if (S::i('auth') <= AUTH_PUBLIC) {
129 $this->register_outputfilter('hide_emails');
130 }
131 $this->addJsLink('wiki.js');
132 header("Accept-Charset: utf-8");
133 if (Env::v('forceXml')) {
134 header("Content-Type: text/xml; charset=utf-8");
135 }
136
137 if (!$globals->debug) {
138 error_reporting(0);
139 $this->display($skin);
140 exit;
141 }
142
143 $this->assign('validate', true);
144 if (!($globals->debug & DEBUG_SMARTY)) {
145 error_reporting(0);
146 }
147 $START_SMARTY = microtime(true);
148 $result = $this->fetch($skin);
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);
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 }
159
160 $replc = "<span class='erreur'>VALIDATION HTML INACTIVE</span><br />";
161 if ($globals->debug & DEBUG_VALID) {
162 $fd = fopen($this->compile_dir."/valid.html","w");
163 fwrite($fd, $result);
164 fclose($fd);
165
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 />";
173 }
174 break;
175 }
176 }
177 }
178
179 echo str_replace("@HOOK@", $ttime.$replc, $result);
180 exit;
181 }
182
183 abstract public function run();
184
185 // }}}
186 // {{{ function nb_errs()
187
188 public function nb_errs()
189 {
190 return count($this->_errors);
191 }
192
193 // }}}
194 // {{{ function trig()
195
196 public function trig($msg)
197 {
198 $this->_errors[] = $msg;
199 }
200
201 // }}}
202 // {{{ function kill()
203
204 public function kill($msg)
205 {
206 global $platal;
207
208 $this->assign('platal', $platal);
209 $this->trig($msg);
210 $this->_failure = true;
211 $this->run();
212 }
213
214 // }}}
215 // {{{ function addJsLink
216
217 public function addJsLink($path)
218 {
219 $this->append('xorg_js', $path);
220 }
221
222 // }}}
223 // {{{ function addCssLink
224
225 public function addCssLink($path)
226 {
227 $this->append('xorg_css', $path);
228 }
229
230 // }}}
231 // {{{ function addCssInline
232
233 public function addCssInline($css)
234 {
235 if (!empty($css)) {
236 $this->append('xorg_inline_css', $css);
237 }
238 }
239
240 // }}}
241 // {{{ function setRssLink
242
243 public function setRssLink($title, $path)
244 {
245 $this->assign('xorg_rss', array('title' => $title, 'href' => $path));
246 }
247
248 // }}}
249 // {{{ function jsonDisplay
250 protected function jsonDisplay()
251 {
252 header("Content-type: text/javascript; charset=utf-8");
253 array_walk_recursive($this->_jsonVars, "escape_xorgDB");
254 $jsonbegin = Env::v('jsonBegin');
255 $jsonend = Env::v('jsonEnd');
256 if (Env::has('jsonVar')) {
257 $jsonbegin = Env::v('jsonVar').' = ';
258 $jsonend = ';';
259 } elseif (Env::has('jsonFunc')) {
260 $jsonbegin = Env::v('jsonFunc').'(';
261 $jsonend = ');';
262 }
263 echo $jsonbegin, json_encode($this->_jsonVars), $jsonend;
264 exit;
265 }
266 // }}}
267 // {{{ function jsonAssign
268 public function jsonAssign($var, $value)
269 {
270 $this->_jsonVars[$var] = $value;
271 }
272
273 // }}}
274 }
275
276 function escape_xorgDB(&$item, $key)
277 {
278 if (is_a($item, 'XOrgDBIterator')) {
279 $expanded = array();
280 while ($a = $item->next()) {
281 $expanded[] = $a;
282 }
283 $item = $expanded;
284 }
285 }
286
287 // {{{ function escape_html ()
288
289 /**
290 * default smarty plugin, used to auto-escape dangerous html.
291 *
292 * < --> &lt;
293 * > --> &gt;
294 * " --> &quot;
295 * & not followed by some entity --> &amp;
296 */
297 function escape_html($string)
298 {
299 if (is_string($string)) {
300 return htmlspecialchars($string, ENT_QUOTES, 'UTF-8');
301 } else {
302 return $string;
303 }
304 }
305
306 // }}}
307 // {{{ function at_to_globals()
308
309 /**
310 * helper
311 */
312
313 function _to_globals($s) {
314 global $globals;
315 $t = explode('.',$s);
316 if (count($t) == 1) {
317 return var_export($globals->$t[0],true);
318 } else {
319 return var_export($globals->$t[0]->$t[1],true);
320 }
321 }
322
323 /**
324 * compilation plugin used to import $globals confing through #globals.foo.bar# directives
325 */
326
327 function at_to_globals($tpl_source, &$smarty)
328 {
329 return preg_replace('/#globals\.([a-zA-Z0-9_.]+?)#/e', '_to_globals(\'\\1\')', $tpl_source);
330 }
331
332 // }}}
333 // {{{ function trimwhitespace
334
335 function trimwhitespace($source, &$smarty)
336 {
337 $tags = '(script|pre|textarea)';
338 preg_match_all("!<$tags.*?>.*?</(\\1)>!ius", $source, $tagsmatches);
339 $source = preg_replace("!<$tags.*?>.*?</(\\1)>!ius", "&&&tags&&&", $source);
340
341 // remove all leading spaces, tabs and carriage returns NOT
342 // preceeded by a php close tag.
343 $source = preg_replace('/((?<!\?>)\n)[\s]+/m', '\1', $source);
344 $source = preg_replace("!&&&tags&&&!e", 'array_shift($tagsmatches[0])', $source);
345
346 return $source;
347 }
348
349 // }}}
350 // {{{ function wiki_include
351
352 function wiki_include($source, &$smarty)
353 {
354 return preg_replace('/\{include( [^}]*)? wiki=([^} ]+)(.*?)\}/ui',
355 '{include\1 file="../spool/wiki.d/cache_\2.tpl"\3 included=1}',
356 $source);
357 }
358
359 // }}}
360 //{{{ function hasPerm
361
362 function if_has_perms($source, &$smarty)
363 {
364 $source = preg_replace('/\{if([^}]*) (\!?)hasPerms\(([^)]+)\)([^}]*)\}/',
365 '{if\1 \2$smarty.session.perms->hasFlagCombination(\3)\4}',
366 $source);
367 return preg_replace('/\{if([^}]*) (\!?)hasPerm\(([^)]+)\)([^}]*)\}/',
368 '{if\1 \2($smarty.session.perms && $smarty.session.perms->hasFlag(\3))\4}',
369 $source);
370 }
371
372 // }}}
373 // {{{
374
375 function form_force_encodings($source, &$smarty)
376 {
377 return preg_replace('/<form[^\w]/',
378 '\0 accept-charset="utf-8" ',
379 $source);
380 }
381
382 // }}}
383 // {{{ function hide_emails
384
385 function _hide_email($source)
386 {
387 $source = str_replace("\n", '', $source);
388 return '<script type="text/javascript">//<![CDATA[' . "\n" .
389 'Nix.decode("' . addslashes(str_rot13($source)) . '");' . "\n" .
390 '//]]></script>';
391 }
392
393 function hide_emails($source, &$smarty)
394 {
395 if (!strpos($source, '@')) {
396 return $source;
397 }
398
399 //prevent email replacement in <script> and <textarea>
400 $tags = '(script|textarea|select)';
401 preg_match_all("!<$tags.*?>.*?</(\\1)>!ius", $source, $tagsmatches);
402 $source = preg_replace("!<$tags.*?>.*?</(\\1)>!ius", "&&&tags&&&", $source);
403
404 //catch all emails in <a href="mailto:...">
405 preg_match_all("!<a[^>]+href=[\"'][^\"']*[-a-z0-9+_.]+@[-a-z0-9_.]+[^\"']*[\"'].*?>.*?</a>!ius", $source, $ahref);
406 $source = preg_replace("!<a[^>]+href=[\"'][^\"']*[-a-z0-9+_.]+@[-a-z0-9_.]+[^\"']*[\"'].*?>.*?</a>!ius", '&&&ahref&&&', $source);
407
408 //prevant replacement in tag attributes
409 preg_match_all("!<[^>]+[-a-z0-9_+.]+@[-a-z0-9_.]+.+?>!ius", $source, $misc);
410 $source = preg_replace("!<[^>]+[-a-z0-9_+.]+@[-a-z0-9_.]+.+?>!ius", '&&&misc&&&', $source);
411
412 //catch !
413 $source = preg_replace('!([-a-z0-9_+.]+@[-a-z0-9_.]+)!iue', '_hide_email("\1")', $source);
414 $source = preg_replace('!&&&ahref&&&!e', '_hide_email(array_shift($ahref[0]))', $source);
415
416 // restore data
417 $source = preg_replace('!&&&misc&&&!e', 'array_shift($misc[0])', $source);
418 $source = preg_replace("!&&&tags&&&!e", 'array_shift($tagsmatches[0])', $source);
419
420 return $source;
421 }
422
423 // }}}
424
425 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
426 ?>