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