Merge pull request #3439 from dokuwiki-translate/lang_update_275_1616098692
[dokuwiki.git] / inc / parserutils.php
blobc9aacd91d308e7804d9f05a343e45b3daf765d61
1 <?php
2 /**
3 * Utilities for accessing the parser
5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author Harry Fuecks <hfuecks@gmail.com>
7 * @author Andreas Gohr <andi@splitbrain.org>
8 */
10 use dokuwiki\Cache\CacheInstructions;
11 use dokuwiki\Cache\CacheRenderer;
12 use dokuwiki\ChangeLog\PageChangeLog;
13 use dokuwiki\Extension\PluginController;
14 use dokuwiki\Extension\Event;
15 use dokuwiki\Parsing\Parser;
17 /**
18 * How many pages shall be rendered for getting metadata during one request
19 * at maximum? Note that this limit isn't respected when METADATA_RENDER_UNLIMITED
20 * is passed as render parameter to p_get_metadata.
22 if (!defined('P_GET_METADATA_RENDER_LIMIT')) define('P_GET_METADATA_RENDER_LIMIT', 5);
24 /** Don't render metadata even if it is outdated or doesn't exist */
25 define('METADATA_DONT_RENDER', 0);
26 /**
27 * Render metadata when the page is really newer or the metadata doesn't exist.
28 * Uses just a simple check, but should work pretty well for loading simple
29 * metadata values like the page title and avoids rendering a lot of pages in
30 * one request. The P_GET_METADATA_RENDER_LIMIT is used in this mode.
31 * Use this if it is unlikely that the metadata value you are requesting
32 * does depend e.g. on pages that are included in the current page using
33 * the include plugin (this is very likely the case for the page title, but
34 * not for relation references).
36 define('METADATA_RENDER_USING_SIMPLE_CACHE', 1);
37 /**
38 * Render metadata using the metadata cache logic. The P_GET_METADATA_RENDER_LIMIT
39 * is used in this mode. Use this mode when you are requesting more complex
40 * metadata. Although this will cause rendering more often it might actually have
41 * the effect that less current metadata is returned as it is more likely than in
42 * the simple cache mode that metadata needs to be rendered for all pages at once
43 * which means that when the metadata for the page is requested that actually needs
44 * to be updated the limit might have been reached already.
46 define('METADATA_RENDER_USING_CACHE', 2);
47 /**
48 * Render metadata without limiting the number of pages for which metadata is
49 * rendered. Use this mode with care, normally it should only be used in places
50 * like the indexer or in cli scripts where the execution time normally isn't
51 * limited. This can be combined with the simple cache using
52 * METADATA_RENDER_USING_CACHE | METADATA_RENDER_UNLIMITED.
54 define('METADATA_RENDER_UNLIMITED', 4);
56 /**
57 * Returns the parsed Wikitext in XHTML for the given id and revision.
59 * If $excuse is true an explanation is returned if the file
60 * wasn't found
62 * @author Andreas Gohr <andi@splitbrain.org>
64 * @param string $id page id
65 * @param string|int $rev revision timestamp or empty string
66 * @param bool $excuse
67 * @param string $date_at
69 * @return null|string
71 function p_wiki_xhtml($id, $rev='', $excuse=true,$date_at=''){
72 $file = wikiFN($id,$rev);
73 $ret = '';
75 //ensure $id is in global $ID (needed for parsing)
76 global $ID;
77 $keep = $ID;
78 $ID = $id;
80 if($rev || $date_at){
81 if(file_exists($file)){
82 //no caching on old revisions
83 $ret = p_render('xhtml',p_get_instructions(io_readWikiPage($file,$id,$rev)),$info,$date_at);
84 }elseif($excuse){
85 $ret = p_locale_xhtml('norev');
87 }else{
88 if(file_exists($file)){
89 $ret = p_cached_output($file,'xhtml',$id);
90 }elseif($excuse){
91 //check if the page once existed
92 $changelog = new PageChangeLog($id);
93 if($changelog->hasRevisions()) {
94 $ret = p_locale_xhtml('onceexisted');
95 } else {
96 $ret = p_locale_xhtml('newpage');
101 //restore ID (just in case)
102 $ID = $keep;
104 return $ret;
108 * Returns the specified local text in parsed format
110 * @author Andreas Gohr <andi@splitbrain.org>
112 * @param string $id page id
113 * @return null|string
115 function p_locale_xhtml($id){
116 //fetch parsed locale
117 $html = p_cached_output(localeFN($id));
118 return $html;
122 * Returns the given file parsed into the requested output format
124 * @author Andreas Gohr <andi@splitbrain.org>
125 * @author Chris Smith <chris@jalakai.co.uk>
127 * @param string $file filename, path to file
128 * @param string $format
129 * @param string $id page id
130 * @return null|string
132 function p_cached_output($file, $format='xhtml', $id='') {
133 global $conf;
135 $cache = new CacheRenderer($id, $file, $format);
136 if ($cache->useCache()) {
137 $parsed = $cache->retrieveCache(false);
138 if($conf['allowdebug'] && $format=='xhtml') {
139 $parsed .= "\n<!-- cachefile {$cache->cache} used -->\n";
141 } else {
142 $parsed = p_render($format, p_cached_instructions($file,false,$id), $info);
144 if ($info['cache'] && $cache->storeCache($parsed)) { // storeCache() attempts to save cachefile
145 if($conf['allowdebug'] && $format=='xhtml') {
146 $parsed .= "\n<!-- no cachefile used, but created {$cache->cache} -->\n";
148 }else{
149 $cache->removeCache(); //try to delete cachefile
150 if($conf['allowdebug'] && $format=='xhtml') {
151 $parsed .= "\n<!-- no cachefile used, caching forbidden -->\n";
156 return $parsed;
160 * Returns the render instructions for a file
162 * Uses and creates a serialized cache file
164 * @author Andreas Gohr <andi@splitbrain.org>
166 * @param string $file filename, path to file
167 * @param bool $cacheonly
168 * @param string $id page id
169 * @return array|null
171 function p_cached_instructions($file,$cacheonly=false,$id='') {
172 static $run = null;
173 if(is_null($run)) $run = array();
175 $cache = new CacheInstructions($id, $file);
177 if ($cacheonly || $cache->useCache() || (isset($run[$file]) && !defined('DOKU_UNITTEST'))) {
178 return $cache->retrieveCache();
179 } else if (file_exists($file)) {
180 // no cache - do some work
181 $ins = p_get_instructions(io_readWikiPage($file,$id));
182 if ($cache->storeCache($ins)) {
183 $run[$file] = true; // we won't rebuild these instructions in the same run again
184 } else {
185 msg('Unable to save cache file. Hint: disk full; file permissions; safe_mode setting.',-1);
187 return $ins;
190 return null;
194 * turns a page into a list of instructions
196 * @author Harry Fuecks <hfuecks@gmail.com>
197 * @author Andreas Gohr <andi@splitbrain.org>
199 * @param string $text raw wiki syntax text
200 * @return array a list of instruction arrays
202 function p_get_instructions($text){
204 $modes = p_get_parsermodes();
206 // Create the parser and handler
207 $Parser = new Parser(new Doku_Handler());
209 //add modes to parser
210 foreach($modes as $mode){
211 $Parser->addMode($mode['mode'],$mode['obj']);
214 // Do the parsing
215 Event::createAndTrigger('PARSER_WIKITEXT_PREPROCESS', $text);
216 $p = $Parser->parse($text);
217 // dbg($p);
218 return $p;
222 * returns the metadata of a page
224 * @param string $id The id of the page the metadata should be returned from
225 * @param string $key The key of the metdata value that shall be read (by default everything)
226 * separate hierarchies by " " like "date created"
227 * @param int $render If the page should be rendererd - possible values:
228 * METADATA_DONT_RENDER, METADATA_RENDER_USING_SIMPLE_CACHE, METADATA_RENDER_USING_CACHE
229 * METADATA_RENDER_UNLIMITED (also combined with the previous two options),
230 * default: METADATA_RENDER_USING_CACHE
231 * @return mixed The requested metadata fields
233 * @author Esther Brunner <esther@kaffeehaus.ch>
234 * @author Michael Hamann <michael@content-space.de>
236 function p_get_metadata($id, $key='', $render=METADATA_RENDER_USING_CACHE){
237 global $ID;
238 static $render_count = 0;
239 // track pages that have already been rendered in order to avoid rendering the same page
240 // again
241 static $rendered_pages = array();
243 // cache the current page
244 // Benchmarking shows the current page's metadata is generally the only page metadata
245 // accessed several times. This may catch a few other pages, but that shouldn't be an issue.
246 $cache = ($ID == $id);
247 $meta = p_read_metadata($id, $cache);
249 if (!is_numeric($render)) {
250 if ($render) {
251 $render = METADATA_RENDER_USING_SIMPLE_CACHE;
252 } else {
253 $render = METADATA_DONT_RENDER;
257 // prevent recursive calls in the cache
258 static $recursion = false;
259 if (!$recursion && $render != METADATA_DONT_RENDER && !isset($rendered_pages[$id])&& page_exists($id)){
260 $recursion = true;
262 $cachefile = new CacheRenderer($id, wikiFN($id), 'metadata');
264 $do_render = false;
265 if ($render & METADATA_RENDER_UNLIMITED || $render_count < P_GET_METADATA_RENDER_LIMIT) {
266 if ($render & METADATA_RENDER_USING_SIMPLE_CACHE) {
267 $pagefn = wikiFN($id);
268 $metafn = metaFN($id, '.meta');
269 if (!file_exists($metafn) || @filemtime($pagefn) > @filemtime($cachefile->cache)) {
270 $do_render = true;
272 } elseif (!$cachefile->useCache()){
273 $do_render = true;
276 if ($do_render) {
277 if (!defined('DOKU_UNITTEST')) {
278 ++$render_count;
279 $rendered_pages[$id] = true;
281 $old_meta = $meta;
282 $meta = p_render_metadata($id, $meta);
283 // only update the file when the metadata has been changed
284 if ($meta == $old_meta || p_save_metadata($id, $meta)) {
285 // store a timestamp in order to make sure that the cachefile is touched
286 // this timestamp is also stored when the meta data is still the same
287 $cachefile->storeCache(time());
288 } else {
289 msg('Unable to save metadata file. Hint: disk full; file permissions; safe_mode setting.',-1);
293 $recursion = false;
296 $val = $meta['current'];
298 // filter by $key
299 foreach(preg_split('/\s+/', $key, 2, PREG_SPLIT_NO_EMPTY) as $cur_key) {
300 if (!isset($val[$cur_key])) {
301 return null;
303 $val = $val[$cur_key];
305 return $val;
309 * sets metadata elements of a page
311 * @see http://www.dokuwiki.org/devel:metadata#functions_to_get_and_set_metadata
313 * @param string $id is the ID of a wiki page
314 * @param array $data is an array with key ⇒ value pairs to be set in the metadata
315 * @param boolean $render whether or not the page metadata should be generated with the renderer
316 * @param boolean $persistent indicates whether or not the particular metadata value will persist through
317 * the next metadata rendering.
318 * @return boolean true on success
320 * @author Esther Brunner <esther@kaffeehaus.ch>
321 * @author Michael Hamann <michael@content-space.de>
323 function p_set_metadata($id, $data, $render=false, $persistent=true){
324 if (!is_array($data)) return false;
326 global $ID, $METADATA_RENDERERS;
328 // if there is currently a renderer change the data in the renderer instead
329 if (isset($METADATA_RENDERERS[$id])) {
330 $orig =& $METADATA_RENDERERS[$id];
331 $meta = $orig;
332 } else {
333 // cache the current page
334 $cache = ($ID == $id);
335 $orig = p_read_metadata($id, $cache);
337 // render metadata first?
338 $meta = $render ? p_render_metadata($id, $orig) : $orig;
341 // now add the passed metadata
342 $protected = array('description', 'date', 'contributor');
343 foreach ($data as $key => $value){
345 // be careful with sub-arrays of $meta['relation']
346 if ($key == 'relation'){
348 foreach ($value as $subkey => $subvalue){
349 if(isset($meta['current'][$key][$subkey]) && is_array($meta['current'][$key][$subkey])) {
350 $meta['current'][$key][$subkey] = array_replace($meta['current'][$key][$subkey], (array)$subvalue);
351 } else {
352 $meta['current'][$key][$subkey] = $subvalue;
354 if($persistent) {
355 if(isset($meta['persistent'][$key][$subkey]) && is_array($meta['persistent'][$key][$subkey])) {
356 $meta['persistent'][$key][$subkey] = array_replace(
357 $meta['persistent'][$key][$subkey],
358 (array) $subvalue
360 } else {
361 $meta['persistent'][$key][$subkey] = $subvalue;
366 // be careful with some senisitive arrays of $meta
367 } elseif (in_array($key, $protected)){
369 // these keys, must have subkeys - a legitimate value must be an array
370 if (is_array($value)) {
371 $meta['current'][$key] = !empty($meta['current'][$key]) ?
372 array_replace((array)$meta['current'][$key],$value) :
373 $value;
375 if ($persistent) {
376 $meta['persistent'][$key] = !empty($meta['persistent'][$key]) ?
377 array_replace((array)$meta['persistent'][$key],$value) :
378 $value;
382 // no special treatment for the rest
383 } else {
384 $meta['current'][$key] = $value;
385 if ($persistent) $meta['persistent'][$key] = $value;
389 // save only if metadata changed
390 if ($meta == $orig) return true;
392 if (isset($METADATA_RENDERERS[$id])) {
393 // set both keys individually as the renderer has references to the individual keys
394 $METADATA_RENDERERS[$id]['current'] = $meta['current'];
395 $METADATA_RENDERERS[$id]['persistent'] = $meta['persistent'];
396 return true;
397 } else {
398 return p_save_metadata($id, $meta);
403 * Purges the non-persistant part of the meta data
404 * used on page deletion
406 * @author Michael Klier <chi@chimeric.de>
408 * @param string $id page id
409 * @return bool success / fail
411 function p_purge_metadata($id) {
412 $meta = p_read_metadata($id);
413 foreach($meta['current'] as $key => $value) {
414 if(isset($meta[$key]) && is_array($meta[$key])) {
415 $meta['current'][$key] = array();
416 } else {
417 $meta['current'][$key] = '';
421 return p_save_metadata($id, $meta);
425 * read the metadata from source/cache for $id
426 * (internal use only - called by p_get_metadata & p_set_metadata)
428 * @author Christopher Smith <chris@jalakai.co.uk>
430 * @param string $id absolute wiki page id
431 * @param bool $cache whether or not to cache metadata in memory
432 * (only use for metadata likely to be accessed several times)
434 * @return array metadata
436 function p_read_metadata($id,$cache=false) {
437 global $cache_metadata;
439 if (isset($cache_metadata[(string)$id])) return $cache_metadata[(string)$id];
441 $file = metaFN($id, '.meta');
442 $meta = file_exists($file) ?
443 unserialize(io_readFile($file, false)) :
444 array('current'=>array(),'persistent'=>array());
446 if ($cache) {
447 $cache_metadata[(string)$id] = $meta;
450 return $meta;
454 * This is the backend function to save a metadata array to a file
456 * @param string $id absolute wiki page id
457 * @param array $meta metadata
459 * @return bool success / fail
461 function p_save_metadata($id, $meta) {
462 // sync cached copies, including $INFO metadata
463 global $cache_metadata, $INFO;
465 if (isset($cache_metadata[$id])) $cache_metadata[$id] = $meta;
466 if (!empty($INFO) && isset($INFO['id']) && ($id == $INFO['id'])) {
467 $INFO['meta'] = $meta['current'];
470 return io_saveFile(metaFN($id, '.meta'), serialize($meta));
474 * renders the metadata of a page
476 * @author Esther Brunner <esther@kaffeehaus.ch>
478 * @param string $id page id
479 * @param array $orig the original metadata
480 * @return array|null array('current'=> array,'persistent'=> array);
482 function p_render_metadata($id, $orig){
483 // make sure the correct ID is in global ID
484 global $ID, $METADATA_RENDERERS;
486 // avoid recursive rendering processes for the same id
487 if (isset($METADATA_RENDERERS[$id])) {
488 return $orig;
491 // store the original metadata in the global $METADATA_RENDERERS so p_set_metadata can use it
492 $METADATA_RENDERERS[$id] =& $orig;
494 $keep = $ID;
495 $ID = $id;
497 // add an extra key for the event - to tell event handlers the page whose metadata this is
498 $orig['page'] = $id;
499 $evt = new Event('PARSER_METADATA_RENDER', $orig);
500 if ($evt->advise_before()) {
502 // get instructions
503 $instructions = p_cached_instructions(wikiFN($id),false,$id);
504 if(is_null($instructions)){
505 $ID = $keep;
506 unset($METADATA_RENDERERS[$id]);
507 return null; // something went wrong with the instructions
510 // set up the renderer
511 $renderer = new Doku_Renderer_metadata();
512 $renderer->meta =& $orig['current'];
513 $renderer->persistent =& $orig['persistent'];
515 // loop through the instructions
516 foreach ($instructions as $instruction){
517 // execute the callback against the renderer
518 call_user_func_array(array(&$renderer, $instruction[0]), (array) $instruction[1]);
521 $evt->result = array('current'=>&$renderer->meta,'persistent'=>&$renderer->persistent);
523 $evt->advise_after();
525 // clean up
526 $ID = $keep;
527 unset($METADATA_RENDERERS[$id]);
528 return $evt->result;
532 * returns all available parser syntax modes in correct order
534 * @author Andreas Gohr <andi@splitbrain.org>
536 * @return array[] with for each plugin the array('sort' => sortnumber, 'mode' => mode string, 'obj' => plugin object)
538 function p_get_parsermodes(){
539 global $conf;
541 //reuse old data
542 static $modes = null;
543 if($modes != null && !defined('DOKU_UNITTEST')){
544 return $modes;
547 //import parser classes and mode definitions
548 require_once DOKU_INC . 'inc/parser/parser.php';
550 // we now collect all syntax modes and their objects, then they will
551 // be sorted and added to the parser in correct order
552 $modes = array();
554 // add syntax plugins
555 $pluginlist = plugin_list('syntax');
556 if(count($pluginlist)){
557 global $PARSER_MODES;
558 $obj = null;
559 foreach($pluginlist as $p){
560 /** @var \dokuwiki\Extension\SyntaxPlugin $obj */
561 if(!$obj = plugin_load('syntax',$p)) continue; //attempt to load plugin into $obj
562 $PARSER_MODES[$obj->getType()][] = "plugin_$p"; //register mode type
563 //add to modes
564 $modes[] = array(
565 'sort' => $obj->getSort(),
566 'mode' => "plugin_$p",
567 'obj' => $obj,
569 unset($obj); //remove the reference
573 // add default modes
574 $std_modes = array('listblock','preformatted','notoc','nocache',
575 'header','table','linebreak','footnote','hr',
576 'unformatted','php','html','code','file','quote',
577 'internallink','rss','media','externallink',
578 'emaillink','windowssharelink','eol');
579 if($conf['typography']){
580 $std_modes[] = 'quotes';
581 $std_modes[] = 'multiplyentity';
583 foreach($std_modes as $m){
584 $class = 'dokuwiki\\Parsing\\ParserMode\\'.ucfirst($m);
585 $obj = new $class();
586 $modes[] = array(
587 'sort' => $obj->getSort(),
588 'mode' => $m,
589 'obj' => $obj
593 // add formatting modes
594 $fmt_modes = array('strong','emphasis','underline','monospace',
595 'subscript','superscript','deleted');
596 foreach($fmt_modes as $m){
597 $obj = new \dokuwiki\Parsing\ParserMode\Formatting($m);
598 $modes[] = array(
599 'sort' => $obj->getSort(),
600 'mode' => $m,
601 'obj' => $obj
605 // add modes which need files
606 $obj = new \dokuwiki\Parsing\ParserMode\Smiley(array_keys(getSmileys()));
607 $modes[] = array('sort' => $obj->getSort(), 'mode' => 'smiley','obj' => $obj );
608 $obj = new \dokuwiki\Parsing\ParserMode\Acronym(array_keys(getAcronyms()));
609 $modes[] = array('sort' => $obj->getSort(), 'mode' => 'acronym','obj' => $obj );
610 $obj = new \dokuwiki\Parsing\ParserMode\Entity(array_keys(getEntities()));
611 $modes[] = array('sort' => $obj->getSort(), 'mode' => 'entity','obj' => $obj );
613 // add optional camelcase mode
614 if($conf['camelcase']){
615 $obj = new \dokuwiki\Parsing\ParserMode\Camelcaselink();
616 $modes[] = array('sort' => $obj->getSort(), 'mode' => 'camelcaselink','obj' => $obj );
619 //sort modes
620 usort($modes,'p_sort_modes');
622 return $modes;
626 * Callback function for usort
628 * @author Andreas Gohr <andi@splitbrain.org>
630 * @param array $a
631 * @param array $b
632 * @return int $a is lower/equal/higher than $b
634 function p_sort_modes($a, $b){
635 if($a['sort'] == $b['sort']) return 0;
636 return ($a['sort'] < $b['sort']) ? -1 : 1;
640 * Renders a list of instruction to the specified output mode
642 * In the $info array is information from the renderer returned
644 * @author Harry Fuecks <hfuecks@gmail.com>
645 * @author Andreas Gohr <andi@splitbrain.org>
647 * @param string $mode
648 * @param array|null|false $instructions
649 * @param array $info returns render info like enabled toc and cache
650 * @param string $date_at
651 * @return null|string rendered output
653 function p_render($mode,$instructions,&$info,$date_at=''){
654 if(is_null($instructions)) return '';
655 if($instructions === false) return '';
657 $Renderer = p_get_renderer($mode);
658 if (is_null($Renderer)) return null;
660 $Renderer->reset();
662 if($date_at) {
663 $Renderer->date_at = $date_at;
666 $Renderer->smileys = getSmileys();
667 $Renderer->entities = getEntities();
668 $Renderer->acronyms = getAcronyms();
669 $Renderer->interwiki = getInterwiki();
671 // Loop through the instructions
672 foreach ( $instructions as $instruction ) {
673 // Execute the callback against the Renderer
674 if(method_exists($Renderer, $instruction[0])){
675 call_user_func_array(array(&$Renderer, $instruction[0]), $instruction[1] ? $instruction[1] : array());
679 //set info array
680 $info = $Renderer->info;
682 // Post process and return the output
683 $data = array($mode,& $Renderer->doc);
684 Event::createAndTrigger('RENDERER_CONTENT_POSTPROCESS',$data);
685 return $Renderer->doc;
689 * Figure out the correct renderer class to use for $mode,
690 * instantiate and return it
692 * @param string $mode Mode of the renderer to get
693 * @return null|Doku_Renderer The renderer
695 * @author Christopher Smith <chris@jalakai.co.uk>
697 function p_get_renderer($mode) {
698 /** @var PluginController $plugin_controller */
699 global $conf, $plugin_controller;
701 $rname = !empty($conf['renderer_'.$mode]) ? $conf['renderer_'.$mode] : $mode;
702 $rclass = "Doku_Renderer_$rname";
704 // if requested earlier or a bundled renderer
705 if( class_exists($rclass) ) {
706 $Renderer = new $rclass();
707 return $Renderer;
710 // not bundled, see if its an enabled renderer plugin & when $mode is 'xhtml', the renderer can supply that format.
711 /** @var Doku_Renderer $Renderer */
712 $Renderer = $plugin_controller->load('renderer',$rname);
713 if ($Renderer && is_a($Renderer, 'Doku_Renderer') && ($mode != 'xhtml' || $mode == $Renderer->getFormat())) {
714 return $Renderer;
717 // there is a configuration error!
718 // not bundled, not a valid enabled plugin, use $mode to try to fallback to a bundled renderer
719 $rclass = "Doku_Renderer_$mode";
720 if ( class_exists($rclass) ) {
721 // viewers should see renderered output, so restrict the warning to admins only
722 $msg = "No renderer '$rname' found for mode '$mode', check your plugins";
723 if ($mode == 'xhtml') {
724 $msg .= " and the 'renderer_xhtml' config setting";
726 $msg .= ".<br/>Attempting to fallback to the bundled renderer.";
727 msg($msg,-1,'','',MSG_ADMINS_ONLY);
729 $Renderer = new $rclass;
730 $Renderer->nocache(); // fallback only (and may include admin alerts), don't cache
731 return $Renderer;
734 // fallback failed, alert the world
735 msg("No renderer '$rname' found for mode '$mode'",-1);
736 return null;
740 * Gets the first heading from a file
742 * @param string $id dokuwiki page id
743 * @param int $render rerender if first heading not known
744 * default: METADATA_RENDER_USING_SIMPLE_CACHE
745 * Possible values: METADATA_DONT_RENDER,
746 * METADATA_RENDER_USING_SIMPLE_CACHE,
747 * METADATA_RENDER_USING_CACHE,
748 * METADATA_RENDER_UNLIMITED
749 * @return string|null The first heading
751 * @author Andreas Gohr <andi@splitbrain.org>
752 * @author Michael Hamann <michael@content-space.de>
754 function p_get_first_heading($id, $render=METADATA_RENDER_USING_SIMPLE_CACHE){
755 return p_get_metadata(cleanID($id),'title',$render);
759 * Wrapper for GeSHi Code Highlighter, provides caching of its output
761 * @param string $code source code to be highlighted
762 * @param string $language language to provide highlighting
763 * @param string $wrapper html element to wrap the returned highlighted text
764 * @return string xhtml code
766 * @author Christopher Smith <chris@jalakai.co.uk>
767 * @author Andreas Gohr <andi@splitbrain.org>
769 function p_xhtml_cached_geshi($code, $language, $wrapper='pre', array $options=null) {
770 global $conf, $config_cascade, $INPUT;
771 $language = strtolower($language);
773 // remove any leading or trailing blank lines
774 $code = preg_replace('/^\s*?\n|\s*?\n$/','',$code);
776 $optionsmd5 = md5(serialize($options));
777 $cache = getCacheName($language.$code.$optionsmd5,".code");
778 $ctime = @filemtime($cache);
779 if($ctime && !$INPUT->bool('purge') &&
780 $ctime > filemtime(DOKU_INC.'vendor/composer/installed.json') && // libraries changed
781 $ctime > filemtime(reset($config_cascade['main']['default']))){ // dokuwiki changed
782 $highlighted_code = io_readFile($cache, false);
783 } else {
785 $geshi = new GeSHi($code, $language);
786 $geshi->set_encoding('utf-8');
787 $geshi->enable_classes();
788 $geshi->set_header_type(GESHI_HEADER_PRE);
789 $geshi->set_link_target($conf['target']['extern']);
790 if($options !== null) {
791 foreach ($options as $function => $params) {
792 if(is_callable(array($geshi, $function))) {
793 $geshi->$function($params);
798 // remove GeSHi's wrapper element (we'll replace it with our own later)
799 // we need to use a GeSHi wrapper to avoid <BR> throughout the highlighted text
800 $highlighted_code = trim(preg_replace('!^<pre[^>]*>|</pre>$!','',$geshi->parse_code()),"\n\r");
801 io_saveFile($cache,$highlighted_code);
804 // add a wrapper element if required
805 if ($wrapper) {
806 return "<$wrapper class=\"code $language\">$highlighted_code</$wrapper>";
807 } else {
808 return $highlighted_code;