Access the _isso in a global manner
[isso.git] / template.php
1 <?php
2 /*=====================================================================*\
3 || ################################################################### ||
4 || # Iris Studios Shared Object Framework [#]version[#]
5 || # --------------------------------------------------------------- # ||
6 || # Copyright ©2002-[#]year[#] by Iris Studios, Inc. All Rights Reserved. # ||
7 || # This file may not be reproduced in any way without permission. # ||
8 || # --------------------------------------------------------------- # ||
9 || # User License Agreement at http://www.iris-studios.com/license/ # ||
10 || ################################################################### ||
11 \*=====================================================================*/
12
13 /**
14 * Database-Driven Template System
15 * template.php
16 *
17 * @package ISSO
18 */
19
20 $OBJECT = 'Database Template System';
21 $CLASS = 'DB_Template';
22 $OBJ = 'template';
23
24 /**
25 * Database-Driven Template System
26 *
27 * This framework is a backend to the database template engine and
28 * contains all the parsing algorithms.
29 *
30 * @author Iris Studios, Inc.
31 * @copyright Copyright ©2002 - [#]year[#], Iris Studios, Inc.
32 * @version $Revision$
33 * @package ISSO
34 *
35 */
36 class DB_Template
37 {
38 /**
39 * Name of the database table templates are in
40 * @var str
41 * @see _load()
42 */
43 var $templatetable = '';
44
45 /**
46 * Name of the table column template names are in
47 * @var str
48 * @see $templatetable, _load()
49 */
50 var $namecolumn = '';
51
52 /**
53 * Name of the table column templates are in
54 * @var str
55 * @see templatetable, _load()
56 */
57 var $datacolumn = '';
58
59 /**
60 * Additional WHERE clauses for the template fetch SQL
61 * @var str
62 * @see _load(), cache()
63 */
64 var $extrawhere = '';
65
66 /**
67 * The name of the function phrases are fetched with
68 * @var str
69 * @see _parse_phrases()
70 */
71 var $langcall = '$GLOBALS[\'_isso\']->lang->string';
72
73 /**
74 * The name of the function phrases are sprintf() parsed with
75 * @var str
76 * @see _parse_phrases()
77 */
78 var $langconst = 'sprintf';
79
80 /**
81 * Array of pre-compiled templates that are stored to decrease server load
82 * @var array
83 * @see cache()
84 */
85 var $cache = array();
86
87 /**
88 * A list of the number of times each template has been used
89 * @var array
90 * @see fetch()
91 */
92 var $usage = array();
93
94 /**
95 * A list of templates that weren't cached, but are still used
96 * @var array
97 * @see fetch()
98 */
99 var $uncached = array();
100
101 /**
102 * Whether or not the page has been flush()'d already
103 * @var bool
104 * @see flush()
105 */
106 var $doneflush = false;
107
108 /**
109 * Takes an array of template names, loads them, and then stores
110 * a parsed version for optimum speed.
111 *
112 * @param array List of template names to be cached
113 */
114 function cache($namearray)
115 {
116 global $_isso;
117
118 if (sizeof($this->cache) > 0)
119 {
120 trigger_error('You cannot cache templates more than once per initialization', ERR_WARNING);
121 }
122 else
123 {
124 $templates = $_isso->db->query("SELECT * FROM " . $this->tablename . " WHERE " . $this->namecolumn . " IN ('" . implode("', '", $namearray) . "')" . (($this->extrawhere) ? $this->extrawhere : ''));
125 while ($template = $_isso->db->fetch_array($templates))
126 {
127 $template = $this->_parse($template);
128 $this->cache[ $template[ $this->namecolumn ] ] = $template[ $this->datacolumn ];
129 $this->usage["$name"] = 0;
130 }
131 }
132 }
133
134 /**
135 * Loads a template from the cache or the _load function and
136 * stores the parsed version of it
137 *
138 * @param str The name of the template
139 *
140 * @return str A parsed and loaded template
141 */
142 function fetch($name)
143 {
144 global $_isso;
145
146 if (isset($this->cache["$name"]))
147 {
148 $template = $this->cache["$name"];
149 }
150 else
151 {
152 $this->uncached[] = $name;
153 $_isso->debug("Manually loading template `$name`");
154 $template = $this->_load($name);
155 $template = $this->_parse($template);
156 }
157
158 if (!isset($this->usage["$name"]))
159 {
160 $this->usage["$name"] = 0;
161 }
162
163 $this->usage["$name"]++;
164
165 return $template;
166 }
167
168 /**
169 * Output a template fully compiled to the browser
170 *
171 * @param str Compiled and ready template
172 */
173 function flush($template)
174 {
175 global $_isso;
176
177 ob_start();
178
179 if (empty($template))
180 {
181 trigger_error('There was no output to print', E_USER_ERROR);
182 exit;
183 }
184
185 if ($_isso->debug AND isset($_GET['query']))
186 {
187 if (is_array($_isso->db->history))
188 {
189 echo '<pre>';
190 foreach ($_isso->db->history AS $query)
191 {
192 echo $query . "\n\n<hr />\n\n";
193 }
194 echo '</pre>';
195 }
196 exit;
197 }
198
199 if ($this->doneflush)
200 {
201 trigger_error('A template has already been sent to the output buffer', E_USER_ERROR);
202 exit;
203 }
204
205 if ($_isso->debug)
206 {
207 // --- START
208 $debug = "\n<ul>";
209
210 // templates
211 $optlist = array();
212 $usage = array();
213 foreach ($this->usage AS $name => $count)
214 {
215 if (in_array($name, $this->uncached))
216 {
217 $optlist[] = $name . '[' . $count . ']';
218 }
219 $usage[] = $name . " ($count)";
220 }
221
222 $sizeof = sizeof($this->uncached);
223 if ($sizeof > 0)
224 {
225 $debug .= "\n\t<li><strong style=\"color: red\">Uncached Template(s):</strong> $sizeof ( " . implode(' &nbsp; ', $optlist) . " )</li>";
226 }
227
228 // source control
229 $scinfo = 'Not Under Source Control';
230 $possiblescms = array('cvs', 'svn', 'cvs_information', 'svn_information', 'scm', 'sc_information', 'scm_information');
231 foreach ($possiblescms AS $scm)
232 {
233 if (defined(strtoupper($scm)))
234 {
235 $scinfo = constant(strtoupper($scm));
236
237 $type = '';
238 // CVS
239 if (strpos($scinfo, 'RCSfile:') !== false)
240 {
241 $type = 'cvs';
242 }
243 else if (strpos($scinfo, ',v ') !== false)
244 {
245 $type = 'cvs';
246 }
247 // SVN
248 else if (strpos($scinfo, 'URL:') !== false)
249 {
250 $type = 'svn';
251 }
252 else if (strpos($scinfo, 'https://') !== false OR strpos($scinfo, 'http://') !== false)
253 {
254 $type= 'svn';
255 }
256 // not found so just return it
257 // try a SVN ID tag as we can't really tell if we're using it
258 else
259 {
260 $test = preg_replace('#\$' . 'Id: (.+?) (.+?) [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}(.+?) (.+?) \$#', '\\1 - SVN \\2', $scinfo);
261 if ($test == '$' . 'Id: $')
262 {
263 $scinfo = 'Not Under Source Control';
264 }
265 else
266 {
267 $scinfo = $test;
268 }
269 break;
270 }
271
272 if ($type == 'cvs')
273 {
274 $scinfo = preg_replace('#\$' . 'RCSfile: (.+?) \$#', '\\1', $scinfo);
275 $scinfo = preg_replace('#\$' . 'Revision: (.+?) \$#', 'CVS \\1', $scinfo);
276 $scinfo = preg_replace('#\$' . 'Id: (.+?) (.+?) [0-9]{4}/[0-9]{2}/[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2} (.+?) (.+?) \$#', '\\1 - CVS \\2', $scinfo);
277 }
278 else if ($type == 'svn')
279 {
280 $scinfo = preg_replace('#\$' . '(Head)?URL: (.+?) \$#e', "end(explode('/', '\\2'))", $scinfo);
281 $scinfo = preg_replace('#\$' . '(LastModified)?Revision: (.+?) \$#', 'SVN \\2', $scinfo);
282 $scinfo = preg_replace('#\$' . 'Id: (.+?) ([0-9].+?) [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}(.+?) (.+?) \$#', '\\1 - SVN \\2', $scinfo);
283 }
284 else
285 {
286 $scinfo = 'Not Under Source Control';
287 }
288 break;
289 }
290 }
291 $scinfo = trim($scinfo);
292 $debug .= "\n\t<li><strong>Source Control:</strong> $scinfo</li>";
293
294 // query information
295 if (isset($_isso->db) AND is_object($_isso->db))
296 {
297 $debug .= "\n\t<li><strong>Total Queries:</strong> " . sizeof($_isso->db->history) . " (<a href=\"" . $_isso->sanitize($_SERVER['REQUEST_URI']) . ((strpos($_SERVER['REQUEST_URI'], '?') !== false) ? '&amp;query=1' : '?query=1') . "\">?</a>)</li>";
298 }
299
300 // total execution time
301 if (defined('ISSO_MT_START'))
302 {
303 $_isso->load('functions');
304 $debug .= "\n\t<li><strong>Total Execution Time:</strong> " . round($_isso->funct->fetch_microtime_diff(ISSO_MT_START), 10) . "</li>";
305 }
306
307 // debug notices
308 $debug .= "\n\t<li>\n\t\t<select>\n\t\t\t<option>Debug Notices (" . sizeof($_isso->debuginfo) . ")</option>";
309 foreach ((array)$_isso->debuginfo AS $msg)
310 {
311 $debug .= "\n\t\t\t<option>--- $msg</option>";
312 }
313 $debug .= "\n\t\t</select>\n\t</li>";
314
315 // loaded modules
316 $modules = $_isso->show_modules(true);
317 $debug .= "\n\t<li>\n\t\t<select>\n\t\t\t<option>Loaded Modules (" . sizeof($modules) . ")</option>";
318 foreach ($modules AS $mod)
319 {
320 $debug .= "\n\t\t\t<option>--- $mod</option>";
321 }
322 $debug .= "\n\t\t</select>\n\t</li>";
323
324 // template usage
325 $debug .= "\n\t<li>\n\t\t<select>\n\t\t\t<option>Template Usage (" . array_sum($this->usage) . ")</option>";
326 foreach ($usage AS $tpl)
327 {
328 $debug .= "\n\t\t\t<option>--- $tpl</option>";
329 }
330 $debug .= "\n\t\t</select>\n\t</li>";
331
332 // --- END
333 $debug .= "\n</ul>";
334
335 $debug = "\n<hr />\n" . $_isso->_message('Debug Information', $debug, 1, true);
336 $template = str_replace('</body>', "\n\n<!-- dev debug -->\n<div align=\"center\">\n$debug\n</div>\n<!-- / dev debug -->\n\n</body>", $template);
337 }
338
339 print(stripslashes($template));
340 }
341
342 /**
343 * Loads an additional template from the database
344 *
345 * @param str The name of the template
346 *
347 * @return str Template data from the database
348 */
349 function _load($name)
350 {
351 global $_isso;
352 if ($template = $_isso->db->query("SELECT * FROM " . $this->tablename . " WHERE " . $this->namecolumn . " = '$name'" . (($this->extrawhere) ? $this->extrawhere : '')))
353 {
354 return $template[ $this->datacolumn ];
355 }
356 else
357 {
358 trigger_error("The template '$name' could not be loaded", E_USER_ERROR);
359 exit;
360 }
361 }
362
363 /**
364 * A wrapper for all the parsing functions and compiling functins
365 *
366 * @param str Unparsed template data
367 *
368 * @return str Parsed template data
369 */
370 function _parse($template)
371 {
372 $template = stripslashes($template);
373 $template = str_replace('"', '\"', $template);
374 $template = $this->_parse_phrases($template);
375 $template = $this->_parse_conditionals($template);
376 return $template;
377 }
378
379 /**
380 * Prepares language and locale information inside templates
381 *
382 * @param str Template data to be processed
383 *
384 * @return str Language-ready template data
385 */
386 function _parse_phrases($template)
387 {
388 $tag_start = '<lang ';
389 $tag_start_end = '\">';
390 $tag_end = '</lang>';
391
392 $location_start = -1;
393 $location_end = -1;
394
395 // Process the empty phrase objects -- do this now so we don't have to worry about it when we're parsing later
396 $template = preg_replace('#\{@\\\"(.*?)\\\"\}#i', '" . ' . $this->langcall . '(\'$1\') . "', $template);
397
398 while (1)
399 {
400 // Find the start language object tag
401 $location_start = strpos($template, $tag_start, $location_end + 1);
402 if ($location_start === false)
403 {
404 break;
405 }
406
407 // Find the end tag
408 $location_end = strpos($template, $tag_end, $location_end + strlen($tag_end));
409 if ($location_end === false)
410 {
411 break;
412 }
413
414 // Extract the language object
415 $phrase_bunch = substr($template, $location_start, ($location_end + strlen($tag_end)) - $location_start);
416
417 // Find the close to the opening <lang>
418 $close_of_open = strpos($phrase_bunch, $tag_start_end);
419 if ($close_of_open === false)
420 {
421 break;
422 }
423
424 // Extract the opening tag so it can be parsed
425 $init_tag = substr($phrase_bunch, 0, ($close_of_open + strlen($tag_start_end)));
426 $init_tag = str_replace($tag_start, '', $init_tag);
427 $init_tag = substr($init_tag, 0, strlen($init_tag) - 1);
428
429 // Get the args out of the tag
430 $args = preg_split('#([0-9].*?)=#', $init_tag);
431 foreach ($args AS $arg)
432 {
433 if ($arg AND $arg != ' ')
434 {
435 $arg = trim($arg);
436 $arg = substr($arg, 2);
437 $arg = substr($arg, 0, strlen($arg) - 2);
438 $arglist[] = $arg;
439 }
440 }
441
442 // Just get the phrase name
443 $phrase_name = preg_replace('#<lang(.*?)>(.*?)</lang>#i', '$2', $phrase_bunch);
444
445 // Wrap the parsed data into the build function
446 $function_wrap = '" . ' . $this->langconst . '("' . $phrase_name . '", "' . implode('", "', $arglist) . '") . "';
447
448 // Replace the fully-parsed string back into the template
449 $template = substr_replace($template, $function_wrap, $location_start, $location_end + strlen($tag_end) - $location_start);
450
451 unset($arglist);
452 }
453
454 return $template;
455 }
456
457 /**
458 * Parser for in-line template conditionals
459 *
460 * @param str Template data awaiting processing
461 *
462 * @return str Parsed template data
463 */
464 function _parse_conditionals($template)
465 {
466 global $_isso;
467
468 // tag data
469 $tag_start = '<if condition=\"';
470 $tag_start_end = '\">';
471 $tag_else = '<else />';
472 $tag_end = '</if>';
473
474 // tag stack
475 $stack = array();
476
477 // the information about the current active tag
478 $tag_full = array();
479 $parsed = array();
480
481 // start at 0
482 $offset = 0;
483
484 while (1)
485 {
486 if (strpos($template, $tag_start) === false)
487 {
488 break;
489 }
490
491 for ($i = $offset; $i < strlen($template); $i++)
492 {
493 // we've found ourselves a conditional!
494 if (substr($template, $i, strlen($tag_start)) == $tag_start)
495 {
496 // push the position into the tag stack
497 if ($tag_full)
498 {
499 array_push($stack, $i);
500 }
501 else
502 {
503 $tag_full['posi'] = $i;
504 }
505 }
506 // locate else tags
507 else if (substr($template, $i, strlen($tag_else)) == $tag_else)
508 {
509 if (count($stack) == 0 AND !isset($tag_full['else']))
510 {
511 $tag_full['else'] = $i;
512 }
513 }
514 // do we have an end tag?
515 else if (substr($template, $i, strlen($tag_end)) == $tag_end)
516 {
517 if (count($stack) != 0)
518 {
519 array_pop($stack);
520 continue;
521 }
522
523 // calculate the position of the end tag
524 $tag_full['posf'] = $i + strlen($tag_end) - 1;
525
526 // extract the entire conditional from the template
527 $fullspread = substr($template, $tag_full['posi'], $tag_full['posf'] - $tag_full['posi'] + 1);
528
529 // remove the beginning tag
530 $conditional = substr($fullspread, strlen($tag_start));
531
532 // find the end of the expression
533 $temp_end = strpos($conditional, $tag_start_end);
534
535 // save the expression
536 $parsed[0] = stripslashes(substr($conditional, 0, $temp_end));
537
538 // remove the expression from the conditional
539 $conditional = substr($conditional, strlen($parsed[0]) + strlen($tag_start_end));
540
541 // remove the tailing end tag
542 $conditional = substr($conditional, 0, strlen($conditional) - strlen($tag_end));
543
544 // handle the else
545 if (isset($tag_full['else']))
546 {
547 // now relative to the start of the <if>
548 $relpos = $tag_full['else'] - $tag_full['posi'];
549
550 // calculate the length of the expression and opening tag
551 $length = strlen($parsed[0]) + strlen($tag_start) + strlen($tag_start_end);
552
553 // relative to the start of iftrue
554 $elsepos = $relpos - $length;
555
556 $parsed[1] = substr($conditional, 0, $elsepos);
557 $parsed[2] = substr($conditional, $elsepos + strlen($tag_else));
558 }
559 // no else to handle
560 else
561 {
562 $parsed[1] = $conditional;
563 $parsed[2] = '';
564 }
565 #var_dump($parsed);
566
567 // final parsed output
568 $parsed = '" . ((' . stripslashes($parsed[0]) . ') ? "' . $parsed[1] . '" : "' . $parsed[2] . '") . "';
569
570 // replace the conditional
571 $template = str_replace($fullspread, $parsed, $template);
572
573 // reset the parser
574 $offset = $tag_full['posi'] + strlen($tag_start) + strlen($tag_start_end);
575 $tag_full = array();
576 $stack = array();
577 $parsed = array();
578 unset($fullspread, $conditional, $temp_end, $relpos, $length, $elsepos);
579 break;
580 }
581 }
582 }
583
584 return $template;
585 }
586 }
587
588 /**
589 * Debugging function used to print characters
590 * in a string that are around a certain position.
591 *
592 * @param string The haystack string
593 * @param integer Position to print around
594 */
595 function print_around($str, $pos)
596 {
597 echo '>>> PA >>>>>>>>[';
598 echo htmlspecialchars($str[ $pos - 5 ]);
599 echo htmlspecialchars($str[ $pos - 4 ]);
600 echo htmlspecialchars($str[ $pos - 3 ]);
601 echo htmlspecialchars($str[ $pos - 2 ]);
602 echo htmlspecialchars($str[ $pos - 1 ]);
603 echo '©';
604 echo htmlspecialchars($str[ $pos + 0 ]);
605 echo htmlspecialchars($str[ $pos + 1 ]);
606 echo htmlspecialchars($str[ $pos + 2 ]);
607 echo htmlspecialchars($str[ $pos + 3 ]);
608 echo htmlspecialchars($str[ $pos + 4 ]);
609 echo htmlspecialchars($str[ $pos + 5 ]);
610 echo ']<<<<<<<< PA <<<';
611 }
612
613 /*=====================================================================*\
614 || ###################################################################
615 || # $HeadURL$
616 || # $Id$
617 || ###################################################################
618 \*=====================================================================*/
619 ?>