xref: /plugin/siteexport/syntax/toctools.php (revision c119896723cad44de4a4c6920da2520a6f3979b9)
1300ce4a2SGerry Weißbach<?php
2300ce4a2SGerry Weißbach/**
3300ce4a2SGerry Weißbach * Siteexport Plugin
4300ce4a2SGerry Weißbach *
5300ce4a2SGerry Weißbach * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6300ce4a2SGerry Weißbach * @author     i-net software <tools@inetsoftware.de>
7300ce4a2SGerry Weißbach * @author     Gerry Weissbach <gweissbach@inetsoftware.de>
8300ce4a2SGerry Weißbach */
9300ce4a2SGerry Weißbach
10a8c17ab5Si-net /// softwareif (!defined('DOKU_INC')) define('DOKU_INC', /** @scrutinizer ignore-type */ realpath(dirname(__FILE__) . '/../../') . '/');
11300ce4a2SGerry Weißbachif (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN', DOKU_INC . 'lib/plugins/');
12300ce4a2SGerry Weißbachrequire_once(DOKU_PLUGIN . 'syntax.php');
13300ce4a2SGerry Weißbach
14300ce4a2SGerry Weißbach/**
15300ce4a2SGerry Weißbach * All DokuWiki plugins to extend the parser/rendering mechanism
16300ce4a2SGerry Weißbach * need to inherit from this class
17300ce4a2SGerry Weißbach */
18300ce4a2SGerry Weißbachclass syntax_plugin_siteexport_toctools extends DokuWiki_Syntax_Plugin {
19300ce4a2SGerry Weißbach
2074627711SGerry Weißbach    protected $special_pattern = '<mergehint\b[^>\r\n]*?/>';
2174627711SGerry Weißbach    protected $entry_pattern   = '<mergehint\b.*?>(?=.*?</mergehint>)';
2274627711SGerry Weißbach    protected $exit_pattern    = '</mergehint>';
23300ce4a2SGerry Weißbach
243d79496eSGerry Weißbach    private $checkArray = array();
253d79496eSGerry Weißbach
26774ba46fSGerry Weißbach    public function getType(){ return 'substition';}
27774ba46fSGerry Weißbach    public function getAllowedTypes() { return array('container', 'formatting', 'substition', 'protected', 'disabled', 'paragraphs'); }
28774ba46fSGerry Weißbach    public function getPType(){ return 'stack';}
29774ba46fSGerry Weißbach    public function getSort(){ return 999; }
30300ce4a2SGerry Weißbach
31300ce4a2SGerry Weißbach    /**
32300ce4a2SGerry Weißbach     * Connect pattern to lexer
33300ce4a2SGerry Weißbach     */
34774ba46fSGerry Weißbach    public function connectTo($mode) {
3574627711SGerry Weißbach        $this->Lexer->addSpecialPattern($this->special_pattern,$mode,'plugin_siteexport_toctools');
3674627711SGerry Weißbach        $this->Lexer->addEntryPattern($this->entry_pattern,$mode,'plugin_siteexport_toctools');
3774627711SGerry Weißbach    }
3874627711SGerry Weißbach
39774ba46fSGerry Weißbach    public function postConnect() {
4074627711SGerry Weißbach        $this->Lexer->addExitPattern($this->exit_pattern, 'plugin_siteexport_toctools');
41300ce4a2SGerry Weißbach    }
42300ce4a2SGerry Weißbach
43268cf88bSGerry Weißbach    private function findPreviousSectionOpen( Doku_Handler $handler ) {
44268cf88bSGerry Weißbach        foreach( array_reverse( $handler->calls ) as $call ) {
45*c1198967SGerry Weißbach            if ( $calls[0] == 'section_open' ) {
46*c1198967SGerry Weißbach                return $calls[1][0];
47268cf88bSGerry Weißbach            }
48268cf88bSGerry Weißbach        }
49268cf88bSGerry Weißbach        return 1;
50268cf88bSGerry Weißbach    }
51268cf88bSGerry Weißbach
52268cf88bSGerry Weißbach    private function addInstructionstoHandler( $match, $state, $pos, Doku_Handler $handler, $instructions ) {
53268cf88bSGerry Weißbach
54538f2ac6SGerry Weißbach        // Switch for DW Hogfather+
55538f2ac6SGerry Weißbach        if ( ( method_exists( $handler, 'getStatus') && $handler->getStatus('section') ) || $handler->status['section'] ) {
56268cf88bSGerry Weißbach            $handler->_addCall('section_close', array(), $pos);
57268cf88bSGerry Weißbach        }
58268cf88bSGerry Weißbach
59268cf88bSGerry Weißbach        // We need to add the current plugin first and then open the section again.
60268cf88bSGerry Weißbach        $level = $this->findPreviousSectionOpen( $handler );
61268cf88bSGerry Weißbach        $handler->_addCall('plugin', array('siteexport_toctools', $instructions, $state), $pos);
62268cf88bSGerry Weißbach        $handler->_addCall('section_open', array($level), $pos+strlen($match) );
63268cf88bSGerry Weißbach    }
64268cf88bSGerry Weißbach
65300ce4a2SGerry Weißbach    /**
66300ce4a2SGerry Weißbach     * Handle the match
67300ce4a2SGerry Weißbach     */
68774ba46fSGerry Weißbach    public function handle($match, $state, $pos, Doku_Handler $handler){
6974627711SGerry Weißbach        global $conf;
7074627711SGerry Weißbach        switch ($state) {
7174627711SGerry Weißbach            case DOKU_LEXER_ENTER:
7274627711SGerry Weißbach            case DOKU_LEXER_SPECIAL:
7374627711SGerry Weißbach                $data = trim(substr($match,strpos($match,' '),-1)," \t\n/");
74d3a16081SGerry Weißbach                $this->addInstructionstoHandler( $match, $state, $pos, $handler, array('mergehint', 'start', $data, sectionID( $data, $this->checkArray ) ) );
75268cf88bSGerry Weißbach                break;
7674627711SGerry Weißbach            case DOKU_LEXER_UNMATCHED:
7774627711SGerry Weißbach                $handler->_addCall('cdata', array($match), $pos);
7874627711SGerry Weißbach                break;
7974627711SGerry Weißbach            case DOKU_LEXER_EXIT:
80268cf88bSGerry Weißbach                $this->addInstructionstoHandler( $match, $state, $pos, $handler, array('mergehint', 'end', 'syntax' ) );
8174627711SGerry Weißbach                break;
8274627711SGerry Weißbach        }
8374627711SGerry Weißbach        return false;
84300ce4a2SGerry Weißbach    }
85300ce4a2SGerry Weißbach
86300ce4a2SGerry Weißbach    /**
87300ce4a2SGerry Weißbach     * Create output
88300ce4a2SGerry Weißbach     */
89a8c17ab5Si-net /// software    public function render($mode, Doku_Renderer $renderer, $data) {
90644c76feSGerry Weißbach
91300ce4a2SGerry Weißbach        list( $type, $pos, $title, $id ) = $data;
92644c76feSGerry Weißbach        if ($mode == 'xhtml') {
93300ce4a2SGerry Weißbach            if ( $type == 'mergehint' ) {
94*c1198967SGerry Weißbach
95*c1198967SGerry Weißbach                $startHint = '<!-- MergeHint Start for "' . $title . '" -->';
96*c1198967SGerry Weißbach                $lastDiv = '<div class="mergehintcontent">';
97*c1198967SGerry Weißbach
98300ce4a2SGerry Weißbach                if ( $pos == 'start' ) {
99*c1198967SGerry Weißbach                    $renderer->doc .= $startHint;
100*c1198967SGerry Weißbach                    $renderer->doc .= '<div id="' . $id . '" class="siteexport mergehintwrapper"><aside class="mergehint">' . $title . '</aside>' . $lastDiv;
101*c1198967SGerry Weißbach                } else {
102*c1198967SGerry Weißbach
103*c1198967SGerry Weißbach                    // check if anything was inserted. We have to strip all tags,
104*c1198967SGerry Weißbach                    // we're just looking for real content here
105*c1198967SGerry Weißbach                    $lastPos = strrpos($renderer->doc, $lastDiv);
106*c1198967SGerry Weißbach                    if ( $lastPos !== false ) {
107*c1198967SGerry Weißbach
108*c1198967SGerry Weißbach                        $remaining = substr( $renderer->doc, $lastPos + strlen($lastDiv) );
109*c1198967SGerry Weißbach                        $remaining = strip_tags( $remaining );
110*c1198967SGerry Weißbach                        $remaining = trim($remaining);
111*c1198967SGerry Weißbach                        if ( strlen( $remaining ) == 0 ) {
112*c1198967SGerry Weißbach                            // empty
113*c1198967SGerry Weißbach                            $lastPos = strrpos($renderer->doc, $startHint);
114*c1198967SGerry Weißbach                            $renderer->doc = substr($renderer->doc, 0, $lastPos);
115300ce4a2SGerry Weißbach                        } else {
11606a81c5cSGerry Weißbach                            $renderer->doc .= '</div></div>';
117300ce4a2SGerry Weißbach                            $renderer->doc .= '<!-- MergeHint End for "' . $title . '" -->';
118300ce4a2SGerry Weißbach                        }
119*c1198967SGerry Weißbach                    }
120*c1198967SGerry Weißbach                }
121300ce4a2SGerry Weißbach            } else {
122300ce4a2SGerry Weißbach                $renderer->doc .= "<br style=\"page-break-after:always;\" />";
123300ce4a2SGerry Weißbach            }
124300ce4a2SGerry Weißbach            return true;
125644c76feSGerry Weißbach        } else if ( $mode = 'markdown' && $type == 'mergehint' && $pos == 'start' ) {
126644c76feSGerry Weißbach            $renderer->doc .= DOKU_LF . '##### ' . $title . DOKU_LF;
127644c76feSGerry Weißbach            return true;
128300ce4a2SGerry Weißbach        }
129300ce4a2SGerry Weißbach        return false;
130300ce4a2SGerry Weißbach    }
131300ce4a2SGerry Weißbach}
132300ce4a2SGerry Weißbach
133300ce4a2SGerry Weißbach//Setup VIM: ex: et ts=4 enc=utf-8 :