xref: /dokuwiki/inc/parser/metadata.php (revision 57d757d195f73c836bb15fc1cd1d01fa0dcc75b1)
139a89382SEsther Brunner<?php
239a89382SEsther Brunner/**
339a89382SEsther Brunner * Renderer for metadata
439a89382SEsther Brunner *
539a89382SEsther Brunner * @author Esther Brunner <wikidesign@gmail.com>
639a89382SEsther Brunner */
739a89382SEsther Brunner
839a89382SEsther Brunnerif(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__).'/../../').'/');
939a89382SEsther Brunner
1039a89382SEsther Brunnerif ( !defined('DOKU_LF') ) {
1139a89382SEsther Brunner    // Some whitespace to help View > Source
1239a89382SEsther Brunner    define ('DOKU_LF',"\n");
1339a89382SEsther Brunner}
1439a89382SEsther Brunner
1539a89382SEsther Brunnerif ( !defined('DOKU_TAB') ) {
1639a89382SEsther Brunner    // Some whitespace to help View > Source
1739a89382SEsther Brunner    define ('DOKU_TAB',"\t");
1839a89382SEsther Brunner}
1939a89382SEsther Brunner
2039a89382SEsther Brunnerrequire_once DOKU_INC . 'inc/parser/renderer.php';
2139a89382SEsther Brunner
2239a89382SEsther Brunner/**
2339a89382SEsther Brunner * The Renderer
2439a89382SEsther Brunner */
2539a89382SEsther Brunnerclass Doku_Renderer_metadata extends Doku_Renderer {
2639a89382SEsther Brunner
2739a89382SEsther Brunner  var $doc  = '';
2839a89382SEsther Brunner  var $meta = array();
290a7e3bceSchris  var $persistent = array();
3039a89382SEsther Brunner
3139a89382SEsther Brunner  var $headers = array();
3239a89382SEsther Brunner  var $capture = true;
3339a89382SEsther Brunner  var $store   = '';
3439a89382SEsther Brunner
355f70445dSAndreas Gohr  function getFormat(){
365f70445dSAndreas Gohr    return 'metadata';
375f70445dSAndreas Gohr  }
385f70445dSAndreas Gohr
3939a89382SEsther Brunner  function document_start(){
400a7e3bceSchris    // reset metadata to persistent values
410a7e3bceSchris    $this->meta = $this->persistent;
4239a89382SEsther Brunner  }
4339a89382SEsther Brunner
4439a89382SEsther Brunner  function document_end(){
4539a89382SEsther Brunner    if (!$this->meta['description']['abstract']){
4639a89382SEsther Brunner      // cut off too long abstracts
4739a89382SEsther Brunner      $this->doc = trim($this->doc);
4839a89382SEsther Brunner      if (strlen($this->doc) > 500)
4939a89382SEsther Brunner        $this->doc = substr($this->doc, 0, 500).'…';
5039a89382SEsther Brunner      $this->meta['description']['abstract'] = $this->doc;
5139a89382SEsther Brunner    }
5239a89382SEsther Brunner  }
5339a89382SEsther Brunner
54e7856beaSchris  function toc_additem($id, $text, $level) {
5539a89382SEsther Brunner    global $conf;
5639a89382SEsther Brunner
57e7856beaSchris    //only add items within configured levels
5839a89382SEsther Brunner    if($level >= $conf['toptoclevel'] && $level <= $conf['maxtoclevel']){
5939a89382SEsther Brunner      // the TOC is one of our standard ul list arrays ;-)
6039a89382SEsther Brunner      $this->meta['description']['tableofcontents'][] = array(
61e7856beaSchris        'hid'   => $id,
6239a89382SEsther Brunner        'title' => $text,
6339a89382SEsther Brunner        'type'  => 'ul',
6439a89382SEsther Brunner        'level' => $level-$conf['toptoclevel']+1
6539a89382SEsther Brunner      );
6639a89382SEsther Brunner    }
6739a89382SEsther Brunner
68e7856beaSchris  }
69e7856beaSchris
70e7856beaSchris  function header($text, $level, $pos) {
71e7856beaSchris
72e7856beaSchris    if (!$this->meta['title']) $this->meta['title'] = $text;
73e7856beaSchris
74e7856beaSchris    // add the header to the TOC
75e7856beaSchris    $hid = $this->_headerToLink($text,'true');
76e7856beaSchris    $this->toc_additem($hid, $text, $level);
77e7856beaSchris
7839a89382SEsther Brunner    // add to summary
7939a89382SEsther Brunner    if ($this->capture && ($level > 1)) $this->doc .= DOKU_LF.$text.DOKU_LF;
8039a89382SEsther Brunner  }
8139a89382SEsther Brunner
8239a89382SEsther Brunner  function section_open($level){}
8339a89382SEsther Brunner  function section_close(){}
8439a89382SEsther Brunner
8539a89382SEsther Brunner  function cdata($text){
8639a89382SEsther Brunner    if ($this->capture) $this->doc .= $text;
8739a89382SEsther Brunner  }
8839a89382SEsther Brunner
8939a89382SEsther Brunner  function p_open(){
9039a89382SEsther Brunner    if ($this->capture) $this->doc .= DOKU_LF;
9139a89382SEsther Brunner  }
9239a89382SEsther Brunner
9339a89382SEsther Brunner  function p_close(){
9439a89382SEsther Brunner    if ($this->capture){
9539a89382SEsther Brunner      if (strlen($this->doc) > 250) $this->capture = false;
9639a89382SEsther Brunner      else $this->doc .= DOKU_LF;
9739a89382SEsther Brunner    }
9839a89382SEsther Brunner  }
9939a89382SEsther Brunner
10039a89382SEsther Brunner  function linebreak(){
10139a89382SEsther Brunner    if ($this->capture) $this->doc .= DOKU_LF;
10239a89382SEsther Brunner  }
10339a89382SEsther Brunner
10439a89382SEsther Brunner  function hr(){
10539a89382SEsther Brunner    if ($this->capture){
10639a89382SEsther Brunner      if (strlen($this->doc) > 250) $this->capture = false;
10739a89382SEsther Brunner      else $this->doc .= DOKU_LF.'----------'.DOKU_LF;
10839a89382SEsther Brunner    }
10939a89382SEsther Brunner  }
11039a89382SEsther Brunner
11139a89382SEsther Brunner  function strong_open(){}
11239a89382SEsther Brunner  function strong_close(){}
11339a89382SEsther Brunner
11439a89382SEsther Brunner  function emphasis_open(){}
11539a89382SEsther Brunner  function emphasis_close(){}
11639a89382SEsther Brunner
11739a89382SEsther Brunner  function underline_open(){}
11839a89382SEsther Brunner  function underline_close(){}
11939a89382SEsther Brunner
12039a89382SEsther Brunner  function monospace_open(){}
12139a89382SEsther Brunner  function monospace_close(){}
12239a89382SEsther Brunner
12339a89382SEsther Brunner  function subscript_open(){}
12439a89382SEsther Brunner  function subscript_close(){}
12539a89382SEsther Brunner
12639a89382SEsther Brunner  function superscript_open(){}
12739a89382SEsther Brunner  function superscript_close(){}
12839a89382SEsther Brunner
12939a89382SEsther Brunner  function deleted_open(){}
13039a89382SEsther Brunner  function deleted_close(){}
13139a89382SEsther Brunner
13239a89382SEsther Brunner  /**
13339a89382SEsther Brunner   * Callback for footnote start syntax
13439a89382SEsther Brunner   *
13539a89382SEsther Brunner   * All following content will go to the footnote instead of
13639a89382SEsther Brunner   * the document. To achieve this the previous rendered content
13739a89382SEsther Brunner   * is moved to $store and $doc is cleared
13839a89382SEsther Brunner   *
13939a89382SEsther Brunner   * @author Andreas Gohr <andi@splitbrain.org>
14039a89382SEsther Brunner   */
14139a89382SEsther Brunner  function footnote_open() {
14239a89382SEsther Brunner    if ($this->capture){
14339a89382SEsther Brunner      // move current content to store and record footnote
14439a89382SEsther Brunner      $this->store = $this->doc;
14539a89382SEsther Brunner      $this->doc   = '';
14639a89382SEsther Brunner    }
14739a89382SEsther Brunner  }
14839a89382SEsther Brunner
14939a89382SEsther Brunner  /**
15039a89382SEsther Brunner   * Callback for footnote end syntax
15139a89382SEsther Brunner   *
15239a89382SEsther Brunner   * All rendered content is moved to the $footnotes array and the old
15339a89382SEsther Brunner   * content is restored from $store again
15439a89382SEsther Brunner   *
15539a89382SEsther Brunner   * @author Andreas Gohr
15639a89382SEsther Brunner   */
15739a89382SEsther Brunner  function footnote_close() {
15839a89382SEsther Brunner    if ($this->capture){
15939a89382SEsther Brunner      // restore old content
16039a89382SEsther Brunner      $this->doc = $this->store;
16139a89382SEsther Brunner      $this->store = '';
16239a89382SEsther Brunner    }
16339a89382SEsther Brunner  }
16439a89382SEsther Brunner
16539a89382SEsther Brunner  function listu_open(){
16639a89382SEsther Brunner    if ($this->capture) $this->doc .= DOKU_LF;
16739a89382SEsther Brunner  }
16839a89382SEsther Brunner
16939a89382SEsther Brunner  function listu_close(){
17039a89382SEsther Brunner    if ($this->capture && (strlen($this->doc) > 250)) $this->capture = false;
17139a89382SEsther Brunner  }
17239a89382SEsther Brunner
17339a89382SEsther Brunner  function listo_open(){
17439a89382SEsther Brunner    if ($this->capture) $this->doc .= DOKU_LF;
17539a89382SEsther Brunner  }
17639a89382SEsther Brunner
17739a89382SEsther Brunner  function listo_close(){
17839a89382SEsther Brunner    if ($this->capture && (strlen($this->doc) > 250)) $this->capture = false;
17939a89382SEsther Brunner  }
18039a89382SEsther Brunner
18139a89382SEsther Brunner  function listitem_open($level){
18239a89382SEsther Brunner    if ($this->capture) $this->doc .= str_repeat(DOKU_TAB, $level).'* ';
18339a89382SEsther Brunner  }
18439a89382SEsther Brunner
18539a89382SEsther Brunner  function listitem_close(){
18639a89382SEsther Brunner    if ($this->capture) $this->doc .= DOKU_LF;
18739a89382SEsther Brunner  }
18839a89382SEsther Brunner
18939a89382SEsther Brunner  function listcontent_open(){}
19039a89382SEsther Brunner  function listcontent_close(){}
19139a89382SEsther Brunner
19239a89382SEsther Brunner  function unformatted($text){
19339a89382SEsther Brunner    if ($this->capture) $this->doc .= $text;
19439a89382SEsther Brunner  }
19539a89382SEsther Brunner
19639a89382SEsther Brunner  function php($text){}
19739a89382SEsther Brunner
19839a89382SEsther Brunner  function html($text){}
19939a89382SEsther Brunner
20039a89382SEsther Brunner  function preformatted($text){
20139a89382SEsther Brunner    if ($this->capture) $this->doc .= $text;
20239a89382SEsther Brunner  }
20339a89382SEsther Brunner
20439a89382SEsther Brunner  function file($text){
20539a89382SEsther Brunner    if ($this->capture){
20639a89382SEsther Brunner      $this->doc .= DOKU_LF.$text;
20739a89382SEsther Brunner      if (strlen($this->doc) > 250) $this->capture = false;
20839a89382SEsther Brunner      else $this->doc .= DOKU_LF;
20939a89382SEsther Brunner    }
21039a89382SEsther Brunner  }
21139a89382SEsther Brunner
21239a89382SEsther Brunner  function quote_open(){
21371b40da2SAnika Henke    if ($this->capture) $this->doc .= DOKU_LF.DOKU_TAB.'"';
21439a89382SEsther Brunner  }
21539a89382SEsther Brunner
21639a89382SEsther Brunner  function quote_close(){
21739a89382SEsther Brunner    if ($this->capture){
21871b40da2SAnika Henke      $this->doc .= '"';
21939a89382SEsther Brunner      if (strlen($this->doc) > 250) $this->capture = false;
22039a89382SEsther Brunner      else $this->doc .= DOKU_LF;
22139a89382SEsther Brunner    }
22239a89382SEsther Brunner  }
22339a89382SEsther Brunner
22439a89382SEsther Brunner  function code($text, $language = NULL){
22539a89382SEsther Brunner    if ($this->capture){
22639a89382SEsther Brunner      $this->doc .= DOKU_LF.$text;
22739a89382SEsther Brunner      if (strlen($this->doc) > 250) $this->capture = false;
22839a89382SEsther Brunner      else $this->doc .= DOKU_LF;
22939a89382SEsther Brunner    }
23039a89382SEsther Brunner  }
23139a89382SEsther Brunner
23239a89382SEsther Brunner  function acronym($acronym){
23339a89382SEsther Brunner    if ($this->capture) $this->doc .= $acronym;
23439a89382SEsther Brunner  }
23539a89382SEsther Brunner
23639a89382SEsther Brunner  function smiley($smiley){
23739a89382SEsther Brunner    if ($this->capture) $this->doc .= $smiley;
23839a89382SEsther Brunner  }
23939a89382SEsther Brunner
24039a89382SEsther Brunner  function entity($entity){
24139a89382SEsther Brunner    if ($this->capture) $this->doc .= $entity;
24239a89382SEsther Brunner  }
24339a89382SEsther Brunner
24439a89382SEsther Brunner  function multiplyentity($x, $y){
24539a89382SEsther Brunner    if ($this->capture) $this->doc .= $x.'×'.$y;
24639a89382SEsther Brunner  }
24739a89382SEsther Brunner
24839a89382SEsther Brunner  function singlequoteopening(){
24971b40da2SAnika Henke    global $lang;
25071b40da2SAnika Henke    if ($this->capture) $this->doc .= $lang['singlequoteopening'];
25139a89382SEsther Brunner  }
25239a89382SEsther Brunner
25339a89382SEsther Brunner  function singlequoteclosing(){
25471b40da2SAnika Henke    global $lang;
25571b40da2SAnika Henke    if ($this->capture) $this->doc .= $lang['singlequoteclosing'];
25639a89382SEsther Brunner  }
25739a89382SEsther Brunner
258*57d757d1SAndreas Gohr  function apostrophe() {
259*57d757d1SAndreas Gohr    global $lang;
260*57d757d1SAndreas Gohr    $this->doc .= $lang['apostrophe'];
261*57d757d1SAndreas Gohr  }
262*57d757d1SAndreas Gohr
26339a89382SEsther Brunner  function doublequoteopening(){
26471b40da2SAnika Henke    global $lang;
26571b40da2SAnika Henke    if ($this->capture) $this->doc .= $lang['doublequoteopening'];
26639a89382SEsther Brunner  }
26739a89382SEsther Brunner
26839a89382SEsther Brunner  function doublequoteclosing(){
26971b40da2SAnika Henke    global $lang;
27071b40da2SAnika Henke    if ($this->capture) $this->doc .= $lang['doublequoteclosing'];
27139a89382SEsther Brunner  }
27239a89382SEsther Brunner
27339a89382SEsther Brunner  function camelcaselink($link) {
27439a89382SEsther Brunner    $this->internallink($link, $link);
27539a89382SEsther Brunner  }
27639a89382SEsther Brunner
27739a89382SEsther Brunner  function locallink($hash, $name = NULL){}
27839a89382SEsther Brunner
27939a89382SEsther Brunner  /**
28039a89382SEsther Brunner   * keep track of internal links in $this->meta['relation']['references']
28139a89382SEsther Brunner   */
28239a89382SEsther Brunner  function internallink($id, $name = NULL){
28339a89382SEsther Brunner    global $ID;
28439a89382SEsther Brunner
28539a89382SEsther Brunner    $default = $this->_simpleTitle($id);
28639a89382SEsther Brunner
28739a89382SEsther Brunner    // first resolve and clean up the $id
28839a89382SEsther Brunner    resolve_pageid(getNS($ID), $id, $exists);
2893be6e394Schris    list($page, $hash) = split('#', $id, 2);
29039a89382SEsther Brunner
29139a89382SEsther Brunner    // set metadata
2923be6e394Schris    $this->meta['relation']['references'][$page] = $exists;
29339a89382SEsther Brunner    // $data = array('relation' => array('isreferencedby' => array($ID => true)));
29439a89382SEsther Brunner    // p_set_metadata($id, $data);
29539a89382SEsther Brunner
29639a89382SEsther Brunner    // add link title to summary
29739a89382SEsther Brunner    if ($this->capture){
29839a89382SEsther Brunner      $name = $this->_getLinkTitle($name, $default, $id);
29939a89382SEsther Brunner      $this->doc .= $name;
30039a89382SEsther Brunner    }
30139a89382SEsther Brunner  }
30239a89382SEsther Brunner
30339a89382SEsther Brunner  function externallink($url, $name = NULL){
30439a89382SEsther Brunner    if ($this->capture){
30539a89382SEsther Brunner      if ($name) $this->doc .= $name;
30639a89382SEsther Brunner      else $this->doc .= '<'.$url.'>';
30739a89382SEsther Brunner    }
30839a89382SEsther Brunner  }
30939a89382SEsther Brunner
31039a89382SEsther Brunner  function interwikilink($match, $name = NULL, $wikiName, $wikiUri){
31139a89382SEsther Brunner    if ($this->capture){
31239a89382SEsther Brunner      list($wikiUri, $hash) = explode('#', $wikiUri, 2);
31339a89382SEsther Brunner      $name = $this->_getLinkTitle($name, $wikiName.'>'.$wikiUri);
31439a89382SEsther Brunner      $this->doc .= $name;
31539a89382SEsther Brunner    }
31639a89382SEsther Brunner  }
31739a89382SEsther Brunner
31839a89382SEsther Brunner  function windowssharelink($url, $name = NULL){
31939a89382SEsther Brunner    if ($this->capture){
32039a89382SEsther Brunner      if ($name) $this->doc .= $name;
32139a89382SEsther Brunner      else $this->doc .= '<'.$url.'>';
32239a89382SEsther Brunner    }
32339a89382SEsther Brunner  }
32439a89382SEsther Brunner
32539a89382SEsther Brunner  function emaillink($address, $name = NULL){
32639a89382SEsther Brunner    if ($this->capture){
32739a89382SEsther Brunner      if ($name) $this->doc .= $name;
32839a89382SEsther Brunner      else $this->doc .= '<'.$address.'>';
32939a89382SEsther Brunner    }
33039a89382SEsther Brunner  }
33139a89382SEsther Brunner
33239a89382SEsther Brunner  function internalmedia($src, $title=NULL, $align=NULL, $width=NULL,
33339a89382SEsther Brunner                         $height=NULL, $cache=NULL, $linking=NULL){
33439a89382SEsther Brunner    if ($this->capture && $title) $this->doc .= '['.$title.']';
33539a89382SEsther Brunner  }
33639a89382SEsther Brunner
33739a89382SEsther Brunner  function externalmedia($src, $title=NULL, $align=NULL, $width=NULL,
33839a89382SEsther Brunner                         $height=NULL, $cache=NULL, $linking=NULL){
33939a89382SEsther Brunner    if ($this->capture && $title) $this->doc .= '['.$title.']';
34039a89382SEsther Brunner  }
34139a89382SEsther Brunner
342ce6b63d9Schris  function rss($url,$params) {
343ce6b63d9Schris    $this->meta['relation']['haspart'][$url] = true;
34464e9144aSchris
34564e9144aSchris    $this->meta['date']['valid']['age'] =
34664e9144aSchris            isset($this->meta['date']['valid']['age']) ?
34764e9144aSchris                min($this->meta['date']['valid']['age'],$params['refresh']) :
34864e9144aSchris                $params['refresh'];
349ce6b63d9Schris  }
35039a89382SEsther Brunner
35139a89382SEsther Brunner  function table_open($maxcols = NULL, $numrows = NULL){}
35239a89382SEsther Brunner  function table_close(){}
35339a89382SEsther Brunner
35439a89382SEsther Brunner  function tablerow_open(){}
35539a89382SEsther Brunner  function tablerow_close(){}
35639a89382SEsther Brunner
35739a89382SEsther Brunner  function tableheader_open($colspan = 1, $align = NULL){}
35839a89382SEsther Brunner  function tableheader_close(){}
35939a89382SEsther Brunner
36039a89382SEsther Brunner  function tablecell_open($colspan = 1, $align = NULL){}
36139a89382SEsther Brunner  function tablecell_close(){}
36239a89382SEsther Brunner
36339a89382SEsther Brunner  //----------------------------------------------------------
36439a89382SEsther Brunner  // Utils
36539a89382SEsther Brunner
36639a89382SEsther Brunner  /**
36739a89382SEsther Brunner   * Removes any Namespace from the given name but keeps
36839a89382SEsther Brunner   * casing and special chars
36939a89382SEsther Brunner   *
37039a89382SEsther Brunner   * @author Andreas Gohr <andi@splitbrain.org>
37139a89382SEsther Brunner   */
37239a89382SEsther Brunner  function _simpleTitle($name){
37339a89382SEsther Brunner    global $conf;
37439a89382SEsther Brunner
3759bee852eSAndreas Gohr    if(is_array($name)) return '';
3769bee852eSAndreas Gohr
37739a89382SEsther Brunner    if($conf['useslash']){
37839a89382SEsther Brunner        $nssep = '[:;/]';
37939a89382SEsther Brunner    }else{
38039a89382SEsther Brunner        $nssep = '[:;]';
38139a89382SEsther Brunner    }
38239a89382SEsther Brunner    $name = preg_replace('!.*'.$nssep.'!','',$name);
3833be6e394Schris    //if there is a hash we use the anchor name only
38439a89382SEsther Brunner    $name = preg_replace('!.*#!','',$name);
38539a89382SEsther Brunner    return $name;
38639a89382SEsther Brunner  }
38739a89382SEsther Brunner
38839a89382SEsther Brunner  /**
38939a89382SEsther Brunner   * Creates a linkid from a headline
39039a89382SEsther Brunner   *
39139a89382SEsther Brunner   * @param string  $title   The headline title
39239a89382SEsther Brunner   * @param boolean $create  Create a new unique ID?
39339a89382SEsther Brunner   * @author Andreas Gohr <andi@splitbrain.org>
39439a89382SEsther Brunner   */
39539a89382SEsther Brunner  function _headerToLink($title, $create=false) {
3965fe80182Schris    $title = str_replace(':','',cleanID($title));
39739a89382SEsther Brunner    $title = ltrim($title,'0123456789._-');
39839a89382SEsther Brunner    if(empty($title)) $title='section';
39939a89382SEsther Brunner
40039a89382SEsther Brunner    if($create){
40139a89382SEsther Brunner      // make sure tiles are unique
40239a89382SEsther Brunner      $num = '';
40339a89382SEsther Brunner      while(in_array($title.$num,$this->headers)){
40439a89382SEsther Brunner        ($num) ? $num++ : $num = 1;
40539a89382SEsther Brunner      }
40639a89382SEsther Brunner      $title = $title.$num;
40739a89382SEsther Brunner      $this->headers[] = $title;
40839a89382SEsther Brunner    }
40939a89382SEsther Brunner
41039a89382SEsther Brunner    return $title;
41139a89382SEsther Brunner  }
41239a89382SEsther Brunner
41339a89382SEsther Brunner  /**
41439a89382SEsther Brunner   * Construct a title and handle images in titles
41539a89382SEsther Brunner   *
41639a89382SEsther Brunner   * @author Harry Fuecks <hfuecks@gmail.com>
41739a89382SEsther Brunner   */
41839a89382SEsther Brunner  function _getLinkTitle($title, $default, $id=NULL) {
41939a89382SEsther Brunner    global $conf;
42039a89382SEsther Brunner
42144881bd0Shenning.noren    $isImage = false;
42239a89382SEsther Brunner    if (is_null($title)){
42339a89382SEsther Brunner      if ($conf['useheading'] && $id){
424fc18c0fbSchris        $heading = p_get_first_heading($id,false);
42539a89382SEsther Brunner        if ($heading) return $heading;
42639a89382SEsther Brunner      }
42739a89382SEsther Brunner      return $default;
42839a89382SEsther Brunner    } else if (is_string($title)){
42939a89382SEsther Brunner      return $title;
43039a89382SEsther Brunner    } else if (is_array($title)){
43139a89382SEsther Brunner      return '['.$title.']';
43239a89382SEsther Brunner    }
43339a89382SEsther Brunner  }
43439a89382SEsther Brunner
43539a89382SEsther Brunner}
43639a89382SEsther Brunner
43739a89382SEsther Brunner//Setup VIM: ex: et ts=4 enc=utf-8 :
438