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