<?php
/**
 * Renderer for text output
 *
 * @author Michael Hamann <michael@content-space.de>
 * @author Todd Augsburger <todd@rollerorgans.com>
 */

if(!defined('DOKU_INC')) define('DOKU_INC',fullpath(dirname(__FILE__).'/../../').'/');

if ( !defined('DOKU_LF') ) {
    define ('DOKU_LF',"\n");
}

require_once DOKU_INC . 'inc/parser/renderer.php';
require_once DOKU_INC . 'inc/parser/xhtml.php';
require_once DOKU_INC . 'inc/html.php';

class renderer_plugin_text extends Doku_Renderer_xhtml {

    // @access public
    var $nSpan = 0;
    var $separator = '';

    function getFormat(){
        return 'text';
    }

    /* Compatibility functions for the xhtml mode */
    public function startSectionEdit($start, $type, $title = NULL) {
    }
    public function finishSectionEdit($end = null, $hid = null) {
    }

    //handle plugin rendering
    function plugin($name, $data, $state = '', $match = '') {
        /** @var DokuWiki_Syntax_Plugin $plugin */
        $plugin = plugin_load('syntax', $name);
        if ($plugin != NULL) {
            if (!$plugin->render($this->getFormat(),$this,$data)) {

                // probably doesn't support text, so use stripped-down xhtml
                $tmpData = $this->doc;
                $this->doc = '';
                if ($plugin->render('xhtml',$this,$data) && ($this->doc != '')) {
                    $search = array('@<script[^>]*?>.*?</script>@si', // javascript
                      '@<style[^>]*?>.*?</style>@si',                // style tags
                      '@<[\/\!]*?[^<>]*?>@si',                        // HTML tags
                      '@<![\s\S]*?--[ \t\n\r]*>@',                    // multi-line comments
                      '@\s+@',                                         // extra whitespace
                    );
                    $this->doc = $tmpData . DOKU_LF .
                        trim(html_entity_decode(preg_replace($search,' ',$this->doc),ENT_QUOTES)) .
                        DOKU_LF;
                } else  $this->doc = $tmpData;
            }
        }
    }

    function document_start() {
        global $ID;

        $this->doc = '';
        $this->toc = array();
        $this->footnotes = array();
        $this->store = '';
        $this->nSpan = 0;
        $this->separator = '';

        $metaheader = array();
        $metaheader['Content-Type'] = 'text/plain; charset=utf-8';
        //$metaheader['Content-Disposition'] = 'attachment; filename="noname.txt"';
        $meta = array();
        $meta['format']['text'] = $metaheader;
        p_set_metadata($ID,$meta);
    }

    function document_end() {
        if ( count($this->footnotes) > 0 ) {
            $this->doc .= DOKU_LF;

            $id = 0;
            foreach ( $this->footnotes as $footnote ) {
                $id++;   // the number of the current footnote

                // check its not a placeholder that indicates actual footnote text is elsewhere
                if (substr($footnote, 0, 5) != "@@FNT") {
                    $this->doc .= $id.') ';
                    // get any other footnotes that use the same markup
                    $alt = array_keys($this->footnotes, "@@FNT$id");
                    if (count($alt)) {
                      foreach ($alt as $ref) {
                        $this->doc .= ($ref+1).') ';
                      }
                    }
                    $this->doc .= $footnote . DOKU_LF;
                }
            }
        }

        // Prepare the TOC
        global $conf;
        if($this->info['toc'] && is_array($this->toc) && $conf['tocminheads'] && count($this->toc) >= $conf['tocminheads']) {
            global $TOC;
            $TOC = $this->toc;
        }

        // make sure there are no empty paragraphs
        $this->doc = preg_replace('#'.DOKU_LF.'\s*'.DOKU_LF.'\s*'.DOKU_LF.'#',DOKU_LF.DOKU_LF,$this->doc);
    }

    function header($text, $level, $pos, $returnonly = false) {
        $this->doc .= DOKU_LF . $text . DOKU_LF;
    }

    function section_open($level) {
    }

    function section_close() {
        $this->doc .= DOKU_LF;
    }

    function cdata($text) {
        $this->doc .= $text;
    }

    function p_open() {
    }

    function p_close() {
        $this->doc .= DOKU_LF;
    }

    function linebreak() {
        $this->doc .= DOKU_LF;
    }

    function hr() {
        $this->doc .= '--------'.DOKU_LF;
    }

    /**
     * Start strong (bold) formatting
     */
    function strong_open() {
    }

    /**
     * Stop strong (bold) formatting
     */
    function strong_close() {
    }

    /**
     * Start emphasis (italics) formatting
     */
    function emphasis_open() {
    }

    /**
     * Stop emphasis (italics) formatting
     */
    function emphasis_close() {
    }

    /**
     * Start underline formatting
     */
    function underline_open() {
    }

    /**
     * Stop underline formatting
     */
    function underline_close() {
    }

    /**
     * Start monospace formatting
     */
    function monospace_open() {
    }

    /**
     * Stop monospace formatting
     */
    function monospace_close() {
    }

    /**
     * Start a subscript
     */
    function subscript_open() {
    }

    /**
     * Stop a subscript
     */
    function subscript_close() {
    }

    /**
     * Start a superscript
     */
    function superscript_open() {
    }

    /**
     * Stop a superscript
     */
    function superscript_close() {
    }

    /**
     * Start deleted (strike-through) formatting
     */
    function deleted_open() {
    }

    /**
     * Stop deleted (strike-through) formatting
     */
    function deleted_close() {
    }

    /**
     * Callback for footnote start syntax
     *
     * All following content will go to the footnote instead of
     * the document. To achieve this the previous rendered content
     * is moved to $store and $doc is cleared
     *
     * @author Andreas Gohr <andi@splitbrain.org>
     */
    function footnote_open() {

        // move current content to store and record footnote
        $this->store = $this->doc;
        $this->doc   = '';
    }

    /**
     * Callback for footnote end syntax
     *
     * All rendered content is moved to the $footnotes array and the old
     * content is restored from $store again
     *
     * @author Andreas Gohr
     */
    function footnote_close() {

        // recover footnote into the stack and restore old content
        $footnote = $this->doc;
        $this->doc = $this->store;
        $this->store = '';

        // check to see if this footnote has been seen before
        $i = array_search($footnote, $this->footnotes);

        if ($i === false) {
            // its a new footnote, add it to the $footnotes array
            $id = count($this->footnotes)+1;
            $this->footnotes[count($this->footnotes)] = $footnote;
        } else {
            // seen this one before, translate the index to an id and save a placeholder
            $i++;
            $id = count($this->footnotes)+1;
            $this->footnotes[count($this->footnotes)] = "@@FNT".($i);
        }

        // output the footnote reference and link
        $this->doc .= ' '.$id.')';
    }

    /**
     * Open an unordered list
     */
    function listu_open($classes = NULL) {
    }

    function listu_close() {
        $this->doc .= DOKU_LF;
    }

    /**
     * Open an ordered list
     */
    function listo_open($classes = NULL) {
    }

    /**
     * Close an ordered list
     */
    function listo_close() {
        $this->doc .= DOKU_LF;
    }

    /**
     * Open a list item
     *
     * @param int $level the nesting level
     * @param bool $node true when a node; false when a leaf
     */
    function listitem_open($level, $node=false) {
    }

    /**
     * Close a list item
     */
    function listitem_close() {
    }

    /**
     * Start the content of a list item
     */
    function listcontent_open() {
    }

    function listcontent_close() {
        $this->doc .= DOKU_LF;
    }

    function unformatted($text) {
        $this->doc .= $text;
    }

    function php($text, $wrapper='code') {
        global $conf;

        if ($conf['phpok']) {
            ob_start();
            eval($text);
            $this->html(ob_get_contents());
            ob_end_clean();
        } else {
            $this->cdata($text);
        }
    }

    function phpblock($text) {
        $this->doc .= $text;
    }

    function html($text, $wrapper='code') {
        $this->doc .= strip_tags($text);
    }

    function htmlblock($text) {
        $this->html($text);
    }

    /**
     * Start a block quote
     */
    function quote_open() {
    }

    /**
     * Stop a block quote
     */
    function quote_close() {
        $this->doc .= DOKU_LF;
    }

    function preformatted($text) {
        $this->doc .= $text.DOKU_LF;
    }

    function file($text, $language = null, $filename = null, $options = null) {
        $this->doc .= $text.DOKU_LF;
    }

    function code($text, $language = null, $filename = null, $options = null) {
        $this->preformatted($text);
    }

    function acronym($acronym) {
        if ( array_key_exists($acronym, $this->acronyms) ) {
            $title = $this->acronyms[$acronym];
            $this->doc .= $acronym.' ('.$title.')';
        } else {
            $this->doc .= $acronym;
        }
    }

    function smiley($smiley) {
        $this->doc .= $smiley;
    }

    function entity($entity) {
        if ( array_key_exists($entity, $this->entities) ) {
            $this->doc .= $this->entities[$entity];
        } else {
            $this->doc .= $entity;
        }
    }

    function multiplyentity($x, $y) {
        $this->doc .= $x.'x'.$y;
    }

    function singlequoteopening() {
        global $lang;
        $this->doc .= $lang['singlequoteopening'];
    }

    function singlequoteclosing() {
        global $lang;
        $this->doc .= $lang['singlequoteclosing'];
    }

    function apostrophe() {
        global $lang;
        $this->doc .= $lang['apostrophe'];
    }

    function doublequoteopening() {
        global $lang;
        $this->doc .= $lang['doublequoteopening'];
    }

    function doublequoteclosing() {
        global $lang;
        $this->doc .= $lang['doublequoteclosing'];
    }

    function camelcaselink($link, $returnonly=false) {
        $this->internallink($link,$link);
    }

    function locallink($hash, $name = NULL, $returnonly=false){
        $name  = $this->_getLinkTitle($name, $hash, $isImage);
        $this->doc .= $name;;
    }

    function internallink($id, $name = null, $search = null, $returnonly = false, $linktype = 'content') {
        global $ID;
        // default name is based on $id as given
        $default = $this->_simpleTitle($id);
        resolve_pageid(getNS($ID),$id,$exists);
        $name = $this->_getLinkTitle($name, $default, $isImage, $id, $linktype);
        if ($returnonly) {
            return $name;
        } else {
            $this->doc .= $name;
        }
    }

    function externallink($url, $name = NULL, $returnonly=false) {
        $this->doc .= $this->_getLinkTitle($name, $url, $isImage);
    }

    function interwikilink($match, $name = NULL, $wikiName, $wikiUri, $returnonly=false) {
        $this->doc .= $this->_getLinkTitle($name, $wikiUri, $isImage);
    }

    function windowssharelink($url, $name = NULL, $returnonly=false) {
        $this->doc .= $this->_getLinkTitle($name, $url, $isImage);
    }

    function emaillink($address, $name = NULL, $returnonly=false) {
        $name = $this->_getLinkTitle($name, '', $isImage);
        $address = html_entity_decode(obfuscate($address),ENT_QUOTES,'UTF-8');
        if (empty($name)) {
            $name = $address;
        }
        $this->doc .= $name;
    }

    function internalmedia ($src, $title=NULL, $align=NULL, $width=NULL,
                            $height=NULL, $cache=NULL, $linking=NULL, $return=false) {
        $this->doc .= $title;
    }

    function externalmedia ($src, $title=NULL, $align=NULL, $width=NULL,
                            $height=NULL, $cache=NULL, $linking=NULL, $return=false) {
        $this->doc .= $title;
    }

    function rss($url, $params) {
    }

    /**
     * Start a table
     *
     * @param int $maxcols maximum number of columns
     * @param int $numrows NOT IMPLEMENTED
     * @param int $pos     byte position in the original source
     */
    function table_open($maxcols = null, $numrows = null, $pos = null, $classes = null) {
    }

    function table_close($pos = NULL) {
        $this->doc .= DOKU_LF;
    }

    /**
     * Open a table header
     */
    function tablethead_open() {
    }

    /**
     * Close a table header
     */
    function tablethead_close() {
    }

    /**
     * Open a table body
     */
    function tabletbody_open() {
    }

    /**
     * Close a table body
     */
    function tabletbody_close() {
    }

    function tablerow_open($classes=NULL) {
        $this->separator = '';
    }

    function tablerow_close() {
        $this->doc .= DOKU_LF;
    }

    function tableheader_open($colspan = 1, $align = NULL, $rowspan = 1, $classes = null) {
        $this->tablecell_open();
    }

    function tableheader_close() {
        $this->tablecell_close();
    }

    function tablecell_open($colspan = 1, $align = NULL, $rowspan = 1, $classes = null) {
        $this->nSpan = $colspan;
        $this->doc .= $this->separator;
        $this->separator = ', ';
    }

    function tablecell_close() {
        if ($this->nSpan > 0) {
            $this->doc .= str_repeat(',', $this->nSpan - 1);
        }
        $this->nSpan = 0;
    }

    function _getLinkTitle($title, $default, &$isImage, $id = null, $linktype = 'content') {
        $isImage = false;
        if(is_array($title)) {
            $isImage = true;
            if (!is_null($default) && ($default != $title['title']))
                return $default." ".$title['title'];
            else
                return $title['title'];
        } elseif(is_null($title) || trim($title) == '') {
            if(useHeading($linktype) && $id) {
                $heading = p_get_first_heading($id);
                if($heading) {
                    return $this->_xmlEntities($heading);
                }
            }
            return $this->_xmlEntities($default);
        } else {
            return $this->_xmlEntities($title);
        }
    }

    function _xmlEntities($string) {
        return $string; // nothing to do for text
    }

    function _formatLink($link) {
        if (!empty($link['name']))
            return $link['name'];
        elseif (!empty($link['title']))
            return $link['title'];
        return $link['url'];
    }
}
