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