xref: /dokuwiki/inc/parser/handler.php (revision cbb44eabe033d70affb048ec0daf4e579e09dd20)
10cecf9d5Sandi<?php
25c2aad12SAndreas Gohr
3*cbb44eabSAndreas Gohruse dokuwiki\Extension\Event;
4e1d9dcc8SAndreas Gohruse dokuwiki\Extension\SyntaxPlugin;
5be906b56SAndreas Gohruse dokuwiki\Parsing\Handler\Block;
6be906b56SAndreas Gohruse dokuwiki\Parsing\Handler\CallWriter;
7be906b56SAndreas Gohruse dokuwiki\Parsing\Handler\CallWriterInterface;
8be906b56SAndreas Gohruse dokuwiki\Parsing\Handler\Lists;
9be906b56SAndreas Gohruse dokuwiki\Parsing\Handler\Nest;
10be906b56SAndreas Gohruse dokuwiki\Parsing\Handler\Preformatted;
11be906b56SAndreas Gohruse dokuwiki\Parsing\Handler\Quote;
12be906b56SAndreas Gohruse dokuwiki\Parsing\Handler\Table;
135c2aad12SAndreas Gohr
148b1b81beSAndreas Gohr/**
158b1b81beSAndreas Gohr * Class Doku_Handler
168b1b81beSAndreas Gohr */
170cecf9d5Sandiclass Doku_Handler {
188b1b81beSAndreas Gohr    /** @var CallWriterInterface */
198b1b81beSAndreas Gohr    protected $callWriter = null;
200cecf9d5Sandi
218b1b81beSAndreas Gohr    /** @var array The current CallWriter will write directly to this list of calls, Parser reads it */
228b1b81beSAndreas Gohr    public $calls = array();
230cecf9d5Sandi
248b1b81beSAndreas Gohr    /** @var array internal status holders for some modes */
258b1b81beSAndreas Gohr    protected $status = array(
2644881bd0Shenning.noren        'section' => false,
27e950d12fSChristopher Smith        'doublequote' => 0,
280cecf9d5Sandi    );
290cecf9d5Sandi
308b1b81beSAndreas Gohr    /** @var bool should blocks be rewritten? FIXME seems to always be true */
318b1b81beSAndreas Gohr    protected $rewriteBlocks = true;
32b7c441b9SHarry Fuecks
338b1b81beSAndreas Gohr    /**
348b1b81beSAndreas Gohr     * Doku_Handler constructor.
358b1b81beSAndreas Gohr     */
36e1cdd96cSAndreas Gohr    public function __construct() {
378b1b81beSAndreas Gohr        $this->callWriter = new CallWriter($this);
380cecf9d5Sandi    }
390cecf9d5Sandi
40276820f7SScrutinizer Auto-Fixer    /**
418b1b81beSAndreas Gohr     * Add a new call by passing it to the current CallWriter
428b1b81beSAndreas Gohr     *
438b1b81beSAndreas Gohr     * @param string $handler handler method name (see mode handlers below)
448b1b81beSAndreas Gohr     * @param mixed $args arguments for this call
458b1b81beSAndreas Gohr     * @param int $pos  byte position in the original source file
46276820f7SScrutinizer Auto-Fixer     */
478b1b81beSAndreas Gohr    protected function addCall($handler, $args, $pos) {
480cecf9d5Sandi        $call = array($handler,$args, $pos);
498b1b81beSAndreas Gohr        $this->callWriter->writeCall($call);
500cecf9d5Sandi    }
510cecf9d5Sandi
528b1b81beSAndreas Gohr    /**
538b1b81beSAndreas Gohr     * Similar to addCall, but adds a plugin call
548b1b81beSAndreas Gohr     *
558b1b81beSAndreas Gohr     * @param string $plugin name of the plugin
568b1b81beSAndreas Gohr     * @param mixed $args arguments for this call
578b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
588b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
598b1b81beSAndreas Gohr     * @param string $match matched syntax
608b1b81beSAndreas Gohr     */
618b1b81beSAndreas Gohr    protected function addPluginCall($plugin, $args, $state, $pos, $match) {
6282d61635Spierre.spring        $call = array('plugin',array($plugin, $args, $state, $match), $pos);
638b1b81beSAndreas Gohr        $this->callWriter->writeCall($call);
6404ebd214Schris    }
6504ebd214Schris
668b1b81beSAndreas Gohr    /**
678b1b81beSAndreas Gohr     * Finishes handling
688b1b81beSAndreas Gohr     *
698b1b81beSAndreas Gohr     * Called from the parser. Calls finalise() on the call writer, closes open
708b1b81beSAndreas Gohr     * sections, rewrites blocks and adds document_start and document_end calls.
718b1b81beSAndreas Gohr     *
728b1b81beSAndreas Gohr     * @triggers PARSER_HANDLER_DONE
738b1b81beSAndreas Gohr     */
748b1b81beSAndreas Gohr    public function finalize(){
758b1b81beSAndreas Gohr        $this->callWriter->finalise();
76f4f02a0fSchris
77e1c10e4dSchris        if ( $this->status['section'] ) {
78e1c10e4dSchris            $last_call = end($this->calls);
79e1c10e4dSchris            array_push($this->calls,array('section_close',array(), $last_call[2]));
800cecf9d5Sandi        }
810cecf9d5Sandi
82b7c441b9SHarry Fuecks        if ( $this->rewriteBlocks ) {
835c2aad12SAndreas Gohr            $B = new Block();
840cecf9d5Sandi            $this->calls = $B->process($this->calls);
85b7c441b9SHarry Fuecks        }
86e0ad864eSchris
87*cbb44eabSAndreas Gohr        Event::createAndTrigger('PARSER_HANDLER_DONE',$this);
880cecf9d5Sandi
890cecf9d5Sandi        array_unshift($this->calls,array('document_start',array(),0));
900cecf9d5Sandi        $last_call = end($this->calls);
910cecf9d5Sandi        array_push($this->calls,array('document_end',array(),$last_call[2]));
920cecf9d5Sandi    }
930cecf9d5Sandi
949e491c01SAndreas Gohr    /**
959e491c01SAndreas Gohr     * fetch the current call and advance the pointer to the next one
969e491c01SAndreas Gohr     *
978b1b81beSAndreas Gohr     * @fixme seems to be unused?
989e491c01SAndreas Gohr     * @return bool|mixed
999e491c01SAndreas Gohr     */
1008b1b81beSAndreas Gohr    public function fetch() {
1019e491c01SAndreas Gohr        $call = current($this->calls);
1029e491c01SAndreas Gohr        if($call !== false) {
1039e491c01SAndreas Gohr            next($this->calls); //advance the pointer
1049e491c01SAndreas Gohr            return $call;
1050cecf9d5Sandi        }
10644881bd0Shenning.noren        return false;
1070cecf9d5Sandi    }
108ee20e7d1Sandi
109ee20e7d1Sandi
110ee20e7d1Sandi    /**
111e2d88156SLarsDW223     * Internal function for parsing highlight options.
112e2d88156SLarsDW223     * $options is parsed for key value pairs separated by commas.
113e2d88156SLarsDW223     * A value might also be missing in which case the value will simple
114e2d88156SLarsDW223     * be set to true. Commas in strings are ignored, e.g. option="4,56"
115e2d88156SLarsDW223     * will work as expected and will only create one entry.
116e2d88156SLarsDW223     *
11754f741e8SAndreas Gohr     * @param string $options space separated list of key-value pairs,
118e2d88156SLarsDW223     *                        e.g. option1=123, option2="456"
119e2d88156SLarsDW223     * @return array|null     Array of key-value pairs $array['key'] = 'value';
120e2d88156SLarsDW223     *                        or null if no entries found
121e2d88156SLarsDW223     */
122e2d88156SLarsDW223    protected function parse_highlight_options($options) {
123e2d88156SLarsDW223        $result = array();
12454f741e8SAndreas Gohr        preg_match_all('/(\w+(?:="[^"]*"))|(\w+(?:=[^\s]*))|(\w+[^=\s\]])(?:\s*)/', $options, $matches, PREG_SET_ORDER);
125e2d88156SLarsDW223        foreach ($matches as $match) {
126e2d88156SLarsDW223            $equal_sign = strpos($match [0], '=');
127e2d88156SLarsDW223            if ($equal_sign === false) {
12854f741e8SAndreas Gohr                $key = trim($match[0]);
129e2d88156SLarsDW223                $result [$key] = 1;
130e2d88156SLarsDW223            } else {
131e2d88156SLarsDW223                $key = substr($match[0], 0, $equal_sign);
132e2d88156SLarsDW223                $value = substr($match[0], $equal_sign+1);
133e2d88156SLarsDW223                $value = trim($value, '"');
134e2d88156SLarsDW223                if (strlen($value) > 0) {
135e2d88156SLarsDW223                    $result [$key] = $value;
136e2d88156SLarsDW223                } else {
137e2d88156SLarsDW223                    $result [$key] = 1;
138e2d88156SLarsDW223                }
139e2d88156SLarsDW223            }
140e2d88156SLarsDW223        }
141e2d88156SLarsDW223
142e2d88156SLarsDW223        // Check for supported options
143e2d88156SLarsDW223        $result = array_intersect_key(
144e2d88156SLarsDW223            $result,
145e2d88156SLarsDW223            array_flip(array(
146e2d88156SLarsDW223                           'enable_line_numbers',
147e2d88156SLarsDW223                           'start_line_numbers_at',
148e2d88156SLarsDW223                           'highlight_lines_extra',
149e2d88156SLarsDW223                           'enable_keyword_links')
150e2d88156SLarsDW223            )
151e2d88156SLarsDW223        );
152e2d88156SLarsDW223
153e2d88156SLarsDW223        // Sanitize values
154e2d88156SLarsDW223        if(isset($result['enable_line_numbers'])) {
15554f741e8SAndreas Gohr            if($result['enable_line_numbers'] === 'false') {
15654f741e8SAndreas Gohr                $result['enable_line_numbers'] = false;
15754f741e8SAndreas Gohr            }
158e2d88156SLarsDW223            $result['enable_line_numbers'] = (bool) $result['enable_line_numbers'];
159e2d88156SLarsDW223        }
160e2d88156SLarsDW223        if(isset($result['highlight_lines_extra'])) {
161e2d88156SLarsDW223            $result['highlight_lines_extra'] = array_map('intval', explode(',', $result['highlight_lines_extra']));
162e2d88156SLarsDW223            $result['highlight_lines_extra'] = array_filter($result['highlight_lines_extra']);
163e2d88156SLarsDW223            $result['highlight_lines_extra'] = array_unique($result['highlight_lines_extra']);
164e2d88156SLarsDW223        }
165e2d88156SLarsDW223        if(isset($result['start_line_numbers_at'])) {
166e2d88156SLarsDW223            $result['start_line_numbers_at'] = (int) $result['start_line_numbers_at'];
167e2d88156SLarsDW223        }
168e2d88156SLarsDW223        if(isset($result['enable_keyword_links'])) {
16954f741e8SAndreas Gohr            if($result['enable_keyword_links'] === 'false') {
17054f741e8SAndreas Gohr                $result['enable_keyword_links'] = false;
17154f741e8SAndreas Gohr            }
17254f741e8SAndreas Gohr            $result['enable_keyword_links'] = (bool) $result['enable_keyword_links'];
173e2d88156SLarsDW223        }
174e2d88156SLarsDW223        if (count($result) == 0) {
175e2d88156SLarsDW223            return null;
176e2d88156SLarsDW223        }
177e2d88156SLarsDW223
178e2d88156SLarsDW223        return $result;
179e2d88156SLarsDW223    }
180e2d88156SLarsDW223
1818b1b81beSAndreas Gohr    /**
1828b1b81beSAndreas Gohr     * Simplifies handling for the formatting tags which all behave the same
1838b1b81beSAndreas Gohr     *
1848b1b81beSAndreas Gohr     * @param string $match matched syntax
1858b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
1868b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
1878b1b81beSAndreas Gohr     * @param string $name actual mode name
1888b1b81beSAndreas Gohr     */
1898b1b81beSAndreas Gohr    protected function nestingTag($match, $state, $pos, $name) {
1908b1b81beSAndreas Gohr        switch ( $state ) {
1918b1b81beSAndreas Gohr            case DOKU_LEXER_ENTER:
1928b1b81beSAndreas Gohr                $this->addCall($name.'_open', array(), $pos);
1938b1b81beSAndreas Gohr                break;
1948b1b81beSAndreas Gohr            case DOKU_LEXER_EXIT:
1958b1b81beSAndreas Gohr                $this->addCall($name.'_close', array(), $pos);
1968b1b81beSAndreas Gohr                break;
1978b1b81beSAndreas Gohr            case DOKU_LEXER_UNMATCHED:
1988b1b81beSAndreas Gohr                $this->addCall('cdata', array($match), $pos);
1998b1b81beSAndreas Gohr                break;
2008b1b81beSAndreas Gohr        }
2018b1b81beSAndreas Gohr    }
2028b1b81beSAndreas Gohr
2038b1b81beSAndreas Gohr
2048b1b81beSAndreas Gohr    /**
2058b1b81beSAndreas Gohr     * The following methods define the handlers for the different Syntax modes
2068b1b81beSAndreas Gohr     *
207be906b56SAndreas Gohr     * The handlers are called from dokuwiki\Parsing\Lexer\Lexer\invokeParser()
2088b1b81beSAndreas Gohr     *
2098b1b81beSAndreas Gohr     * @todo it might make sense to move these into their own class or merge them with the
2108b1b81beSAndreas Gohr     *       ParserMode classes some time.
2118b1b81beSAndreas Gohr     */
2128b1b81beSAndreas Gohr    // region mode handlers
2138b1b81beSAndreas Gohr
2148b1b81beSAndreas Gohr    /**
2158b1b81beSAndreas Gohr     * Special plugin handler
2168b1b81beSAndreas Gohr     *
2178b1b81beSAndreas Gohr     * This handler is called for all modes starting with 'plugin_'.
2188b1b81beSAndreas Gohr     * An additional parameter with the plugin name is passed. The plugin's handle()
2198b1b81beSAndreas Gohr     * method is called here
2208b1b81beSAndreas Gohr     *
2218b1b81beSAndreas Gohr     * @author Andreas Gohr <andi@splitbrain.org>
2228b1b81beSAndreas Gohr     *
2238b1b81beSAndreas Gohr     * @param string $match matched syntax
2248b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
2258b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
2268b1b81beSAndreas Gohr     * @param string $pluginname name of the plugin
2278b1b81beSAndreas Gohr     * @return bool mode handled?
2288b1b81beSAndreas Gohr     */
2298b1b81beSAndreas Gohr    public function plugin($match, $state, $pos, $pluginname){
2308b1b81beSAndreas Gohr        $data = array($match);
231e1d9dcc8SAndreas Gohr        /** @var SyntaxPlugin $plugin */
2328b1b81beSAndreas Gohr        $plugin = plugin_load('syntax',$pluginname);
2338b1b81beSAndreas Gohr        if($plugin != null){
2348b1b81beSAndreas Gohr            $data = $plugin->handle($match, $state, $pos, $this);
2358b1b81beSAndreas Gohr        }
2368b1b81beSAndreas Gohr        if ($data !== false) {
2378b1b81beSAndreas Gohr            $this->addPluginCall($pluginname,$data,$state,$pos,$match);
2388b1b81beSAndreas Gohr        }
2398b1b81beSAndreas Gohr        return true;
2408b1b81beSAndreas Gohr    }
2418b1b81beSAndreas Gohr
2428b1b81beSAndreas Gohr    /**
2438b1b81beSAndreas Gohr     * @param string $match matched syntax
2448b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
2458b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
2468b1b81beSAndreas Gohr     * @return bool mode handled?
2478b1b81beSAndreas Gohr     */
2488b1b81beSAndreas Gohr    public function base($match, $state, $pos) {
2498b1b81beSAndreas Gohr        switch ( $state ) {
2508b1b81beSAndreas Gohr            case DOKU_LEXER_UNMATCHED:
2518b1b81beSAndreas Gohr                $this->addCall('cdata', array($match), $pos);
2528b1b81beSAndreas Gohr                return true;
2538b1b81beSAndreas Gohr            break;
2548b1b81beSAndreas Gohr        }
2558b1b81beSAndreas Gohr        return false;
2568b1b81beSAndreas Gohr    }
2578b1b81beSAndreas Gohr
2588b1b81beSAndreas Gohr    /**
2598b1b81beSAndreas Gohr     * @param string $match matched syntax
2608b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
2618b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
2628b1b81beSAndreas Gohr     * @return bool mode handled?
2638b1b81beSAndreas Gohr     */
2648b1b81beSAndreas Gohr    public function header($match, $state, $pos) {
2658b1b81beSAndreas Gohr        // get level and title
2668b1b81beSAndreas Gohr        $title = trim($match);
2678b1b81beSAndreas Gohr        $level = 7 - strspn($title,'=');
2688b1b81beSAndreas Gohr        if($level < 1) $level = 1;
2698b1b81beSAndreas Gohr        $title = trim($title,'=');
2708b1b81beSAndreas Gohr        $title = trim($title);
2718b1b81beSAndreas Gohr
2728b1b81beSAndreas Gohr        if ($this->status['section']) $this->addCall('section_close', array(), $pos);
2738b1b81beSAndreas Gohr
2748b1b81beSAndreas Gohr        $this->addCall('header', array($title, $level, $pos), $pos);
2758b1b81beSAndreas Gohr
2768b1b81beSAndreas Gohr        $this->addCall('section_open', array($level), $pos);
2778b1b81beSAndreas Gohr        $this->status['section'] = true;
2788b1b81beSAndreas Gohr        return true;
2798b1b81beSAndreas Gohr    }
2808b1b81beSAndreas Gohr
2818b1b81beSAndreas Gohr    /**
2828b1b81beSAndreas Gohr     * @param string $match matched syntax
2838b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
2848b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
2858b1b81beSAndreas Gohr     * @return bool mode handled?
2868b1b81beSAndreas Gohr     */
2878b1b81beSAndreas Gohr    public function notoc($match, $state, $pos) {
2888b1b81beSAndreas Gohr        $this->addCall('notoc', array(), $pos);
2898b1b81beSAndreas Gohr        return true;
2908b1b81beSAndreas Gohr    }
2918b1b81beSAndreas Gohr
2928b1b81beSAndreas Gohr    /**
2938b1b81beSAndreas Gohr     * @param string $match matched syntax
2948b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
2958b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
2968b1b81beSAndreas Gohr     * @return bool mode handled?
2978b1b81beSAndreas Gohr     */
2988b1b81beSAndreas Gohr    public function nocache($match, $state, $pos) {
2998b1b81beSAndreas Gohr        $this->addCall('nocache', array(), $pos);
3008b1b81beSAndreas Gohr        return true;
3018b1b81beSAndreas Gohr    }
3028b1b81beSAndreas Gohr
3038b1b81beSAndreas Gohr    /**
3048b1b81beSAndreas Gohr     * @param string $match matched syntax
3058b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
3068b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
3078b1b81beSAndreas Gohr     * @return bool mode handled?
3088b1b81beSAndreas Gohr     */
3098b1b81beSAndreas Gohr    public function linebreak($match, $state, $pos) {
3108b1b81beSAndreas Gohr        $this->addCall('linebreak', array(), $pos);
3118b1b81beSAndreas Gohr        return true;
3128b1b81beSAndreas Gohr    }
3138b1b81beSAndreas Gohr
3148b1b81beSAndreas Gohr    /**
3158b1b81beSAndreas Gohr     * @param string $match matched syntax
3168b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
3178b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
3188b1b81beSAndreas Gohr     * @return bool mode handled?
3198b1b81beSAndreas Gohr     */
3208b1b81beSAndreas Gohr    public function eol($match, $state, $pos) {
3218b1b81beSAndreas Gohr        $this->addCall('eol', array(), $pos);
3228b1b81beSAndreas Gohr        return true;
3238b1b81beSAndreas Gohr    }
3248b1b81beSAndreas Gohr
3258b1b81beSAndreas Gohr    /**
3268b1b81beSAndreas Gohr     * @param string $match matched syntax
3278b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
3288b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
3298b1b81beSAndreas Gohr     * @return bool mode handled?
3308b1b81beSAndreas Gohr     */
3318b1b81beSAndreas Gohr    public function hr($match, $state, $pos) {
3328b1b81beSAndreas Gohr        $this->addCall('hr', array(), $pos);
3338b1b81beSAndreas Gohr        return true;
3348b1b81beSAndreas Gohr    }
3358b1b81beSAndreas Gohr
3368b1b81beSAndreas Gohr    /**
3378b1b81beSAndreas Gohr     * @param string $match matched syntax
3388b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
3398b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
3408b1b81beSAndreas Gohr     * @return bool mode handled?
3418b1b81beSAndreas Gohr     */
3428b1b81beSAndreas Gohr    public function strong($match, $state, $pos) {
3438b1b81beSAndreas Gohr        $this->nestingTag($match, $state, $pos, 'strong');
3448b1b81beSAndreas Gohr        return true;
3458b1b81beSAndreas Gohr    }
3468b1b81beSAndreas Gohr
3478b1b81beSAndreas Gohr    /**
3488b1b81beSAndreas Gohr     * @param string $match matched syntax
3498b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
3508b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
3518b1b81beSAndreas Gohr     * @return bool mode handled?
3528b1b81beSAndreas Gohr     */
3538b1b81beSAndreas Gohr    public function emphasis($match, $state, $pos) {
3548b1b81beSAndreas Gohr        $this->nestingTag($match, $state, $pos, 'emphasis');
3558b1b81beSAndreas Gohr        return true;
3568b1b81beSAndreas Gohr    }
3578b1b81beSAndreas Gohr
3588b1b81beSAndreas Gohr    /**
3598b1b81beSAndreas Gohr     * @param string $match matched syntax
3608b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
3618b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
3628b1b81beSAndreas Gohr     * @return bool mode handled?
3638b1b81beSAndreas Gohr     */
3648b1b81beSAndreas Gohr    public function underline($match, $state, $pos) {
3658b1b81beSAndreas Gohr        $this->nestingTag($match, $state, $pos, 'underline');
3668b1b81beSAndreas Gohr        return true;
3678b1b81beSAndreas Gohr    }
3688b1b81beSAndreas Gohr
3698b1b81beSAndreas Gohr    /**
3708b1b81beSAndreas Gohr     * @param string $match matched syntax
3718b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
3728b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
3738b1b81beSAndreas Gohr     * @return bool mode handled?
3748b1b81beSAndreas Gohr     */
3758b1b81beSAndreas Gohr    public function monospace($match, $state, $pos) {
3768b1b81beSAndreas Gohr        $this->nestingTag($match, $state, $pos, 'monospace');
3778b1b81beSAndreas Gohr        return true;
3788b1b81beSAndreas Gohr    }
3798b1b81beSAndreas Gohr
3808b1b81beSAndreas Gohr    /**
3818b1b81beSAndreas Gohr     * @param string $match matched syntax
3828b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
3838b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
3848b1b81beSAndreas Gohr     * @return bool mode handled?
3858b1b81beSAndreas Gohr     */
3868b1b81beSAndreas Gohr    public function subscript($match, $state, $pos) {
3878b1b81beSAndreas Gohr        $this->nestingTag($match, $state, $pos, 'subscript');
3888b1b81beSAndreas Gohr        return true;
3898b1b81beSAndreas Gohr    }
3908b1b81beSAndreas Gohr
3918b1b81beSAndreas Gohr    /**
3928b1b81beSAndreas Gohr     * @param string $match matched syntax
3938b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
3948b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
3958b1b81beSAndreas Gohr     * @return bool mode handled?
3968b1b81beSAndreas Gohr     */
3978b1b81beSAndreas Gohr    public function superscript($match, $state, $pos) {
3988b1b81beSAndreas Gohr        $this->nestingTag($match, $state, $pos, 'superscript');
3998b1b81beSAndreas Gohr        return true;
4008b1b81beSAndreas Gohr    }
4018b1b81beSAndreas Gohr
4028b1b81beSAndreas Gohr    /**
4038b1b81beSAndreas Gohr     * @param string $match matched syntax
4048b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
4058b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
4068b1b81beSAndreas Gohr     * @return bool mode handled?
4078b1b81beSAndreas Gohr     */
4088b1b81beSAndreas Gohr    public function deleted($match, $state, $pos) {
4098b1b81beSAndreas Gohr        $this->nestingTag($match, $state, $pos, 'deleted');
4108b1b81beSAndreas Gohr        return true;
4118b1b81beSAndreas Gohr    }
4128b1b81beSAndreas Gohr
4138b1b81beSAndreas Gohr    /**
4148b1b81beSAndreas Gohr     * @param string $match matched syntax
4158b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
4168b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
4178b1b81beSAndreas Gohr     * @return bool mode handled?
4188b1b81beSAndreas Gohr     */
4198b1b81beSAndreas Gohr    public function footnote($match, $state, $pos) {
4208b1b81beSAndreas Gohr        if (!isset($this->_footnote)) $this->_footnote = false;
4218b1b81beSAndreas Gohr
4228b1b81beSAndreas Gohr        switch ( $state ) {
4238b1b81beSAndreas Gohr            case DOKU_LEXER_ENTER:
4248b1b81beSAndreas Gohr                // footnotes can not be nested - however due to limitations in lexer it can't be prevented
4258b1b81beSAndreas Gohr                // we will still enter a new footnote mode, we just do nothing
4268b1b81beSAndreas Gohr                if ($this->_footnote) {
4278b1b81beSAndreas Gohr                    $this->addCall('cdata', array($match), $pos);
4288b1b81beSAndreas Gohr                    break;
4298b1b81beSAndreas Gohr                }
4308b1b81beSAndreas Gohr                $this->_footnote = true;
4318b1b81beSAndreas Gohr
4328b1b81beSAndreas Gohr                $this->callWriter = new Nest($this->callWriter, 'footnote_close');
4338b1b81beSAndreas Gohr                $this->addCall('footnote_open', array(), $pos);
4348b1b81beSAndreas Gohr            break;
4358b1b81beSAndreas Gohr            case DOKU_LEXER_EXIT:
4368b1b81beSAndreas Gohr                // check whether we have already exitted the footnote mode, can happen if the modes were nested
4378b1b81beSAndreas Gohr                if (!$this->_footnote) {
4388b1b81beSAndreas Gohr                    $this->addCall('cdata', array($match), $pos);
4398b1b81beSAndreas Gohr                    break;
4408b1b81beSAndreas Gohr                }
4418b1b81beSAndreas Gohr
4428b1b81beSAndreas Gohr                $this->_footnote = false;
4438b1b81beSAndreas Gohr                $this->addCall('footnote_close', array(), $pos);
4448b1b81beSAndreas Gohr
4458b1b81beSAndreas Gohr                /** @var Nest $reWriter */
4468b1b81beSAndreas Gohr                $reWriter = $this->callWriter;
4478b1b81beSAndreas Gohr                $this->callWriter = $reWriter->process();
4488b1b81beSAndreas Gohr            break;
4498b1b81beSAndreas Gohr            case DOKU_LEXER_UNMATCHED:
4508b1b81beSAndreas Gohr                $this->addCall('cdata', array($match), $pos);
4518b1b81beSAndreas Gohr            break;
4528b1b81beSAndreas Gohr        }
4538b1b81beSAndreas Gohr        return true;
4548b1b81beSAndreas Gohr    }
4558b1b81beSAndreas Gohr
4568b1b81beSAndreas Gohr    /**
4578b1b81beSAndreas Gohr     * @param string $match matched syntax
4588b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
4598b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
4608b1b81beSAndreas Gohr     * @return bool mode handled?
4618b1b81beSAndreas Gohr     */
4628b1b81beSAndreas Gohr    public function listblock($match, $state, $pos) {
4638b1b81beSAndreas Gohr        switch ( $state ) {
4648b1b81beSAndreas Gohr            case DOKU_LEXER_ENTER:
4658b1b81beSAndreas Gohr                $this->callWriter = new Lists($this->callWriter);
4668b1b81beSAndreas Gohr                $this->addCall('list_open', array($match), $pos);
4678b1b81beSAndreas Gohr            break;
4688b1b81beSAndreas Gohr            case DOKU_LEXER_EXIT:
4698b1b81beSAndreas Gohr                $this->addCall('list_close', array(), $pos);
4708b1b81beSAndreas Gohr                /** @var Lists $reWriter */
4718b1b81beSAndreas Gohr                $reWriter = $this->callWriter;
4728b1b81beSAndreas Gohr                $this->callWriter = $reWriter->process();
4738b1b81beSAndreas Gohr            break;
4748b1b81beSAndreas Gohr            case DOKU_LEXER_MATCHED:
4758b1b81beSAndreas Gohr                $this->addCall('list_item', array($match), $pos);
4768b1b81beSAndreas Gohr            break;
4778b1b81beSAndreas Gohr            case DOKU_LEXER_UNMATCHED:
4788b1b81beSAndreas Gohr                $this->addCall('cdata', array($match), $pos);
4798b1b81beSAndreas Gohr            break;
4808b1b81beSAndreas Gohr        }
4818b1b81beSAndreas Gohr        return true;
4828b1b81beSAndreas Gohr    }
4838b1b81beSAndreas Gohr
4848b1b81beSAndreas Gohr    /**
4858b1b81beSAndreas Gohr     * @param string $match matched syntax
4868b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
4878b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
4888b1b81beSAndreas Gohr     * @return bool mode handled?
4898b1b81beSAndreas Gohr     */
4908b1b81beSAndreas Gohr    public function unformatted($match, $state, $pos) {
4918b1b81beSAndreas Gohr        if ( $state == DOKU_LEXER_UNMATCHED ) {
4928b1b81beSAndreas Gohr            $this->addCall('unformatted', array($match), $pos);
4938b1b81beSAndreas Gohr        }
4948b1b81beSAndreas Gohr        return true;
4958b1b81beSAndreas Gohr    }
4968b1b81beSAndreas Gohr
4978b1b81beSAndreas Gohr    /**
4988b1b81beSAndreas Gohr     * @param string $match matched syntax
4998b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
5008b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
5018b1b81beSAndreas Gohr     * @return bool mode handled?
5028b1b81beSAndreas Gohr     */
5038b1b81beSAndreas Gohr    public function php($match, $state, $pos) {
5048b1b81beSAndreas Gohr        if ( $state == DOKU_LEXER_UNMATCHED ) {
5058b1b81beSAndreas Gohr            $this->addCall('php', array($match), $pos);
5068b1b81beSAndreas Gohr        }
5078b1b81beSAndreas Gohr        return true;
5088b1b81beSAndreas Gohr    }
5098b1b81beSAndreas Gohr
5108b1b81beSAndreas Gohr    /**
5118b1b81beSAndreas Gohr     * @param string $match matched syntax
5128b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
5138b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
5148b1b81beSAndreas Gohr     * @return bool mode handled?
5158b1b81beSAndreas Gohr     */
5168b1b81beSAndreas Gohr    public function phpblock($match, $state, $pos) {
5178b1b81beSAndreas Gohr        if ( $state == DOKU_LEXER_UNMATCHED ) {
5188b1b81beSAndreas Gohr            $this->addCall('phpblock', array($match), $pos);
5198b1b81beSAndreas Gohr        }
5208b1b81beSAndreas Gohr        return true;
5218b1b81beSAndreas Gohr    }
5228b1b81beSAndreas Gohr
5238b1b81beSAndreas Gohr    /**
5248b1b81beSAndreas Gohr     * @param string $match matched syntax
5258b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
5268b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
5278b1b81beSAndreas Gohr     * @return bool mode handled?
5288b1b81beSAndreas Gohr     */
5298b1b81beSAndreas Gohr    public function html($match, $state, $pos) {
5308b1b81beSAndreas Gohr        if ( $state == DOKU_LEXER_UNMATCHED ) {
5318b1b81beSAndreas Gohr            $this->addCall('html', array($match), $pos);
5328b1b81beSAndreas Gohr        }
5338b1b81beSAndreas Gohr        return true;
5348b1b81beSAndreas Gohr    }
5358b1b81beSAndreas Gohr
5368b1b81beSAndreas Gohr    /**
5378b1b81beSAndreas Gohr     * @param string $match matched syntax
5388b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
5398b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
5408b1b81beSAndreas Gohr     * @return bool mode handled?
5418b1b81beSAndreas Gohr     */
5428b1b81beSAndreas Gohr    public function htmlblock($match, $state, $pos) {
5438b1b81beSAndreas Gohr        if ( $state == DOKU_LEXER_UNMATCHED ) {
5448b1b81beSAndreas Gohr            $this->addCall('htmlblock', array($match), $pos);
5458b1b81beSAndreas Gohr        }
5468b1b81beSAndreas Gohr        return true;
5478b1b81beSAndreas Gohr    }
5488b1b81beSAndreas Gohr
5498b1b81beSAndreas Gohr    /**
5508b1b81beSAndreas Gohr     * @param string $match matched syntax
5518b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
5528b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
5538b1b81beSAndreas Gohr     * @return bool mode handled?
5548b1b81beSAndreas Gohr     */
5558b1b81beSAndreas Gohr    public function preformatted($match, $state, $pos) {
5568b1b81beSAndreas Gohr        switch ( $state ) {
5578b1b81beSAndreas Gohr            case DOKU_LEXER_ENTER:
5588b1b81beSAndreas Gohr                $this->callWriter = new Preformatted($this->callWriter);
5598b1b81beSAndreas Gohr                $this->addCall('preformatted_start', array(), $pos);
5608b1b81beSAndreas Gohr            break;
5618b1b81beSAndreas Gohr            case DOKU_LEXER_EXIT:
5628b1b81beSAndreas Gohr                $this->addCall('preformatted_end', array(), $pos);
5638b1b81beSAndreas Gohr                /** @var Preformatted $reWriter */
5648b1b81beSAndreas Gohr                $reWriter = $this->callWriter;
5658b1b81beSAndreas Gohr                $this->callWriter = $reWriter->process();
5668b1b81beSAndreas Gohr            break;
5678b1b81beSAndreas Gohr            case DOKU_LEXER_MATCHED:
5688b1b81beSAndreas Gohr                $this->addCall('preformatted_newline', array(), $pos);
5698b1b81beSAndreas Gohr            break;
5708b1b81beSAndreas Gohr            case DOKU_LEXER_UNMATCHED:
5718b1b81beSAndreas Gohr                $this->addCall('preformatted_content', array($match), $pos);
5728b1b81beSAndreas Gohr            break;
5738b1b81beSAndreas Gohr        }
5748b1b81beSAndreas Gohr
5758b1b81beSAndreas Gohr        return true;
5768b1b81beSAndreas Gohr    }
5778b1b81beSAndreas Gohr
5788b1b81beSAndreas Gohr    /**
5798b1b81beSAndreas Gohr     * @param string $match matched syntax
5808b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
5818b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
5828b1b81beSAndreas Gohr     * @return bool mode handled?
5838b1b81beSAndreas Gohr     */
5848b1b81beSAndreas Gohr    public function quote($match, $state, $pos) {
5858b1b81beSAndreas Gohr
5868b1b81beSAndreas Gohr        switch ( $state ) {
5878b1b81beSAndreas Gohr
5888b1b81beSAndreas Gohr            case DOKU_LEXER_ENTER:
5898b1b81beSAndreas Gohr                $this->callWriter = new Quote($this->callWriter);
5908b1b81beSAndreas Gohr                $this->addCall('quote_start', array($match), $pos);
5918b1b81beSAndreas Gohr            break;
5928b1b81beSAndreas Gohr
5938b1b81beSAndreas Gohr            case DOKU_LEXER_EXIT:
5948b1b81beSAndreas Gohr                $this->addCall('quote_end', array(), $pos);
5958b1b81beSAndreas Gohr                /** @var Lists $reWriter */
5968b1b81beSAndreas Gohr                $reWriter = $this->callWriter;
5978b1b81beSAndreas Gohr                $this->callWriter = $reWriter->process();
5988b1b81beSAndreas Gohr            break;
5998b1b81beSAndreas Gohr
6008b1b81beSAndreas Gohr            case DOKU_LEXER_MATCHED:
6018b1b81beSAndreas Gohr                $this->addCall('quote_newline', array($match), $pos);
6028b1b81beSAndreas Gohr            break;
6038b1b81beSAndreas Gohr
6048b1b81beSAndreas Gohr            case DOKU_LEXER_UNMATCHED:
6058b1b81beSAndreas Gohr                $this->addCall('cdata', array($match), $pos);
6068b1b81beSAndreas Gohr            break;
6078b1b81beSAndreas Gohr
6088b1b81beSAndreas Gohr        }
6098b1b81beSAndreas Gohr
6108b1b81beSAndreas Gohr        return true;
6118b1b81beSAndreas Gohr    }
6128b1b81beSAndreas Gohr
6138b1b81beSAndreas Gohr    /**
6148b1b81beSAndreas Gohr     * @param string $match matched syntax
6158b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
6168b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
6178b1b81beSAndreas Gohr     * @return bool mode handled?
6188b1b81beSAndreas Gohr     */
6198b1b81beSAndreas Gohr    public function file($match, $state, $pos) {
6203d491f75SAndreas Gohr        return $this->code($match, $state, $pos, 'file');
6213d491f75SAndreas Gohr    }
6223d491f75SAndreas Gohr
6238b1b81beSAndreas Gohr    /**
6248b1b81beSAndreas Gohr     * @param string $match matched syntax
6258b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
6268b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
6278b1b81beSAndreas Gohr     * @param string $type either 'code' or 'file'
6288b1b81beSAndreas Gohr     * @return bool mode handled?
6298b1b81beSAndreas Gohr     */
6308b1b81beSAndreas Gohr    public function code($match, $state, $pos, $type='code') {
6313d491f75SAndreas Gohr        if ( $state == DOKU_LEXER_UNMATCHED ) {
6324b7f9e70STom N Harris            $matches = explode('>',$match,2);
633e2d88156SLarsDW223            // Cut out variable options enclosed in []
634e2d88156SLarsDW223            preg_match('/\[.*\]/', $matches[0], $options);
635e2d88156SLarsDW223            if (!empty($options[0])) {
636e2d88156SLarsDW223                $matches[0] = str_replace($options[0], '', $matches[0]);
637e2d88156SLarsDW223            }
6380139312bSAdrian Lang            $param = preg_split('/\s+/', $matches[0], 2, PREG_SPLIT_NO_EMPTY);
6390139312bSAdrian Lang            while(count($param) < 2) array_push($param, null);
6400139312bSAdrian Lang            // We shortcut html here.
6410139312bSAdrian Lang            if ($param[0] == 'html') $param[0] = 'html4strict';
6420139312bSAdrian Lang            if ($param[0] == '-') $param[0] = null;
6430139312bSAdrian Lang            array_unshift($param, $matches[1]);
644e2d88156SLarsDW223            if (!empty($options[0])) {
645e2d88156SLarsDW223                $param [] = $this->parse_highlight_options ($options[0]);
646e2d88156SLarsDW223            }
6478b1b81beSAndreas Gohr            $this->addCall($type, $param, $pos);
6480cecf9d5Sandi        }
64944881bd0Shenning.noren        return true;
6500cecf9d5Sandi    }
6510cecf9d5Sandi
6528b1b81beSAndreas Gohr    /**
6538b1b81beSAndreas Gohr     * @param string $match matched syntax
6548b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
6558b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
6568b1b81beSAndreas Gohr     * @return bool mode handled?
6578b1b81beSAndreas Gohr     */
6588b1b81beSAndreas Gohr    public function acronym($match, $state, $pos) {
6598b1b81beSAndreas Gohr        $this->addCall('acronym', array($match), $pos);
66044881bd0Shenning.noren        return true;
6610cecf9d5Sandi    }
6620cecf9d5Sandi
6638b1b81beSAndreas Gohr    /**
6648b1b81beSAndreas Gohr     * @param string $match matched syntax
6658b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
6668b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
6678b1b81beSAndreas Gohr     * @return bool mode handled?
6688b1b81beSAndreas Gohr     */
6698b1b81beSAndreas Gohr    public function smiley($match, $state, $pos) {
6708b1b81beSAndreas Gohr        $this->addCall('smiley', array($match), $pos);
67144881bd0Shenning.noren        return true;
6720cecf9d5Sandi    }
6730cecf9d5Sandi
6748b1b81beSAndreas Gohr    /**
6758b1b81beSAndreas Gohr     * @param string $match matched syntax
6768b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
6778b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
6788b1b81beSAndreas Gohr     * @return bool mode handled?
6798b1b81beSAndreas Gohr     */
6808b1b81beSAndreas Gohr    public function wordblock($match, $state, $pos) {
6818b1b81beSAndreas Gohr        $this->addCall('wordblock', array($match), $pos);
68244881bd0Shenning.noren        return true;
6830cecf9d5Sandi    }
6840cecf9d5Sandi
6858b1b81beSAndreas Gohr    /**
6868b1b81beSAndreas Gohr     * @param string $match matched syntax
6878b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
6888b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
6898b1b81beSAndreas Gohr     * @return bool mode handled?
6908b1b81beSAndreas Gohr     */
6918b1b81beSAndreas Gohr    public function entity($match, $state, $pos) {
6928b1b81beSAndreas Gohr        $this->addCall('entity', array($match), $pos);
69344881bd0Shenning.noren        return true;
6940cecf9d5Sandi    }
6950cecf9d5Sandi
6968b1b81beSAndreas Gohr    /**
6978b1b81beSAndreas Gohr     * @param string $match matched syntax
6988b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
6998b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
7008b1b81beSAndreas Gohr     * @return bool mode handled?
7018b1b81beSAndreas Gohr     */
7028b1b81beSAndreas Gohr    public function multiplyentity($match, $state, $pos) {
7030cecf9d5Sandi        preg_match_all('/\d+/',$match,$matches);
7048b1b81beSAndreas Gohr        $this->addCall('multiplyentity', array($matches[0][0], $matches[0][1]), $pos);
70544881bd0Shenning.noren        return true;
7060cecf9d5Sandi    }
7070cecf9d5Sandi
7088b1b81beSAndreas Gohr    /**
7098b1b81beSAndreas Gohr     * @param string $match matched syntax
7108b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
7118b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
7128b1b81beSAndreas Gohr     * @return bool mode handled?
7138b1b81beSAndreas Gohr     */
7148b1b81beSAndreas Gohr    public function singlequoteopening($match, $state, $pos) {
7158b1b81beSAndreas Gohr        $this->addCall('singlequoteopening', array(), $pos);
71644881bd0Shenning.noren        return true;
7170cecf9d5Sandi    }
7180cecf9d5Sandi
7198b1b81beSAndreas Gohr    /**
7208b1b81beSAndreas Gohr     * @param string $match matched syntax
7218b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
7228b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
7238b1b81beSAndreas Gohr     * @return bool mode handled?
7248b1b81beSAndreas Gohr     */
7258b1b81beSAndreas Gohr    public function singlequoteclosing($match, $state, $pos) {
7268b1b81beSAndreas Gohr        $this->addCall('singlequoteclosing', array(), $pos);
72744881bd0Shenning.noren        return true;
7280cecf9d5Sandi    }
7290cecf9d5Sandi
7308b1b81beSAndreas Gohr    /**
7318b1b81beSAndreas Gohr     * @param string $match matched syntax
7328b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
7338b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
7348b1b81beSAndreas Gohr     * @return bool mode handled?
7358b1b81beSAndreas Gohr     */
7368b1b81beSAndreas Gohr    public function apostrophe($match, $state, $pos) {
7378b1b81beSAndreas Gohr        $this->addCall('apostrophe', array(), $pos);
73857d757d1SAndreas Gohr        return true;
73957d757d1SAndreas Gohr    }
74057d757d1SAndreas Gohr
7418b1b81beSAndreas Gohr    /**
7428b1b81beSAndreas Gohr     * @param string $match matched syntax
7438b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
7448b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
7458b1b81beSAndreas Gohr     * @return bool mode handled?
7468b1b81beSAndreas Gohr     */
7478b1b81beSAndreas Gohr    public function doublequoteopening($match, $state, $pos) {
7488b1b81beSAndreas Gohr        $this->addCall('doublequoteopening', array(), $pos);
749e950d12fSChristopher Smith        $this->status['doublequote']++;
75044881bd0Shenning.noren        return true;
7510cecf9d5Sandi    }
7520cecf9d5Sandi
7538b1b81beSAndreas Gohr    /**
7548b1b81beSAndreas Gohr     * @param string $match matched syntax
7558b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
7568b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
7578b1b81beSAndreas Gohr     * @return bool mode handled?
7588b1b81beSAndreas Gohr     */
7598b1b81beSAndreas Gohr    public function doublequoteclosing($match, $state, $pos) {
760e950d12fSChristopher Smith        if ($this->status['doublequote'] <= 0) {
761e950d12fSChristopher Smith            $this->doublequoteopening($match, $state, $pos);
762e950d12fSChristopher Smith        } else {
7638b1b81beSAndreas Gohr            $this->addCall('doublequoteclosing', array(), $pos);
764e950d12fSChristopher Smith            $this->status['doublequote'] = max(0, --$this->status['doublequote']);
765e950d12fSChristopher Smith        }
76644881bd0Shenning.noren        return true;
7670cecf9d5Sandi    }
7680cecf9d5Sandi
7698b1b81beSAndreas Gohr    /**
7708b1b81beSAndreas Gohr     * @param string $match matched syntax
7718b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
7728b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
7738b1b81beSAndreas Gohr     * @return bool mode handled?
7748b1b81beSAndreas Gohr     */
7758b1b81beSAndreas Gohr    public function camelcaselink($match, $state, $pos) {
7768b1b81beSAndreas Gohr        $this->addCall('camelcaselink', array($match), $pos);
77744881bd0Shenning.noren        return true;
7780cecf9d5Sandi    }
7790cecf9d5Sandi
7808b1b81beSAndreas Gohr    /**
7818b1b81beSAndreas Gohr     * @param string $match matched syntax
7828b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
7838b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
7848b1b81beSAndreas Gohr     * @return bool mode handled?
7850cecf9d5Sandi     */
7868b1b81beSAndreas Gohr    public function internallink($match, $state, $pos) {
7870cecf9d5Sandi        // Strip the opening and closing markup
7880cecf9d5Sandi        $link = preg_replace(array('/^\[\[/','/\]\]$/u'),'',$match);
7890cecf9d5Sandi
7900cecf9d5Sandi        // Split title from URL
7914b7f9e70STom N Harris        $link = explode('|',$link,2);
7920cecf9d5Sandi        if ( !isset($link[1]) ) {
7930ea51e63SMatt Perry            $link[1] = null;
7940cecf9d5Sandi        } else if ( preg_match('/^\{\{[^\}]+\}\}$/',$link[1]) ) {
7955578eb8fSandi            // If the title is an image, convert it to an array containing the image details
796b625487dSandi            $link[1] = Doku_Handler_Parse_Media($link[1]);
7970cecf9d5Sandi        }
7980b7c14c2Sandi        $link[0] = trim($link[0]);
7990cecf9d5Sandi
8000e1c636eSandi        //decide which kind of link it is
8010e1c636eSandi
8026efc45a2SDmitry Katsubo        if ( link_isinterwiki($link[0]) ) {
8030e1c636eSandi            // Interwiki
8044b7f9e70STom N Harris            $interwiki = explode('>',$link[0],2);
8058b1b81beSAndreas Gohr            $this->addCall(
8060cecf9d5Sandi                'interwikilink',
8070cecf9d5Sandi                array($link[0],$link[1],strtolower($interwiki[0]),$interwiki[1]),
8080cecf9d5Sandi                $pos
8090cecf9d5Sandi                );
81015f1b77cSAndreas Gohr        }elseif ( preg_match('/^\\\\\\\\[^\\\\]+?\\\\/u',$link[0]) ) {
8110e1c636eSandi            // Windows Share
8128b1b81beSAndreas Gohr            $this->addCall(
8130cecf9d5Sandi                'windowssharelink',
8140cecf9d5Sandi                array($link[0],$link[1]),
8150cecf9d5Sandi                $pos
8160cecf9d5Sandi                );
8174468cb4cSAndreas Gohr        }elseif ( preg_match('#^([a-z0-9\-\.+]+?)://#i',$link[0]) ) {
8180e1c636eSandi            // external link (accepts all protocols)
8198b1b81beSAndreas Gohr            $this->addCall(
8200cecf9d5Sandi                    'externallink',
8210cecf9d5Sandi                    array($link[0],$link[1]),
8220cecf9d5Sandi                    $pos
8230cecf9d5Sandi                    );
8240a1d30bfSchris        }elseif ( preg_match('<'.PREG_PATTERN_VALID_EMAIL.'>',$link[0]) ) {
8250a1d30bfSchris            // E-Mail (pattern above is defined in inc/mail.php)
8268b1b81beSAndreas Gohr            $this->addCall(
827a6755281Sandi                'emaillink',
828a6755281Sandi                array($link[0],$link[1]),
829a6755281Sandi                $pos
830a6755281Sandi                );
8310b7c14c2Sandi        }elseif ( preg_match('!^#.+!',$link[0]) ){
8320b7c14c2Sandi            // local link
8338b1b81beSAndreas Gohr            $this->addCall(
8340b7c14c2Sandi                'locallink',
8350b7c14c2Sandi                array(substr($link[0],1),$link[1]),
8360b7c14c2Sandi                $pos
8370b7c14c2Sandi                );
8380e1c636eSandi        }else{
8390e1c636eSandi            // internal link
8408b1b81beSAndreas Gohr            $this->addCall(
8410e1c636eSandi                'internallink',
8420e1c636eSandi                array($link[0],$link[1]),
8430e1c636eSandi                $pos
8440e1c636eSandi                );
8450cecf9d5Sandi        }
8460e1c636eSandi
84744881bd0Shenning.noren        return true;
8480cecf9d5Sandi    }
8490cecf9d5Sandi
8508b1b81beSAndreas Gohr    /**
8518b1b81beSAndreas Gohr     * @param string $match matched syntax
8528b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
8538b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
8548b1b81beSAndreas Gohr     * @return bool mode handled?
8558b1b81beSAndreas Gohr     */
8568b1b81beSAndreas Gohr    public function filelink($match, $state, $pos) {
8578b1b81beSAndreas Gohr        $this->addCall('filelink', array($match, null), $pos);
85844881bd0Shenning.noren        return true;
8590cecf9d5Sandi    }
8600cecf9d5Sandi
8618b1b81beSAndreas Gohr    /**
8628b1b81beSAndreas Gohr     * @param string $match matched syntax
8638b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
8648b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
8658b1b81beSAndreas Gohr     * @return bool mode handled?
8668b1b81beSAndreas Gohr     */
8678b1b81beSAndreas Gohr    public function windowssharelink($match, $state, $pos) {
8688b1b81beSAndreas Gohr        $this->addCall('windowssharelink', array($match, null), $pos);
86944881bd0Shenning.noren        return true;
8700cecf9d5Sandi    }
8710cecf9d5Sandi
8728b1b81beSAndreas Gohr    /**
8738b1b81beSAndreas Gohr     * @param string $match matched syntax
8748b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
8758b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
8768b1b81beSAndreas Gohr     * @return bool mode handled?
8778b1b81beSAndreas Gohr     */
8788b1b81beSAndreas Gohr    public function media($match, $state, $pos) {
8790cecf9d5Sandi        $p = Doku_Handler_Parse_Media($match);
8800cecf9d5Sandi
8818b1b81beSAndreas Gohr        $this->addCall(
8820cecf9d5Sandi              $p['type'],
883dc673a5bSjoe.lapp              array($p['src'], $p['title'], $p['align'], $p['width'],
884dc673a5bSjoe.lapp                     $p['height'], $p['cache'], $p['linking']),
8850cecf9d5Sandi              $pos
8860cecf9d5Sandi             );
88744881bd0Shenning.noren        return true;
8880cecf9d5Sandi    }
8890cecf9d5Sandi
8908b1b81beSAndreas Gohr    /**
8918b1b81beSAndreas Gohr     * @param string $match matched syntax
8928b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
8938b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
8948b1b81beSAndreas Gohr     * @return bool mode handled?
8958b1b81beSAndreas Gohr     */
8968b1b81beSAndreas Gohr    public function rss($match, $state, $pos) {
897b625487dSandi        $link = preg_replace(array('/^\{\{rss>/','/\}\}$/'),'',$match);
8983db95becSAndreas Gohr
8993db95becSAndreas Gohr        // get params
9003db95becSAndreas Gohr        list($link,$params) = explode(' ',$link,2);
9013db95becSAndreas Gohr
9023db95becSAndreas Gohr        $p = array();
9033db95becSAndreas Gohr        if(preg_match('/\b(\d+)\b/',$params,$match)){
9043db95becSAndreas Gohr            $p['max'] = $match[1];
9053db95becSAndreas Gohr        }else{
9063db95becSAndreas Gohr            $p['max'] = 8;
9073db95becSAndreas Gohr        }
9083db95becSAndreas Gohr        $p['reverse'] = (preg_match('/rev/',$params));
9093db95becSAndreas Gohr        $p['author']  = (preg_match('/\b(by|author)/',$params));
9103db95becSAndreas Gohr        $p['date']    = (preg_match('/\b(date)/',$params));
9113db95becSAndreas Gohr        $p['details'] = (preg_match('/\b(desc|detail)/',$params));
91238c6f603SRobin H. Johnson        $p['nosort']  = (preg_match('/\b(nosort)\b/',$params));
9133db95becSAndreas Gohr
9140a69dff7Schris        if (preg_match('/\b(\d+)([dhm])\b/',$params,$match)) {
9150a69dff7Schris            $period = array('d' => 86400, 'h' => 3600, 'm' => 60);
9160a69dff7Schris            $p['refresh'] = max(600,$match[1]*$period[$match[2]]);  // n * period in seconds, minimum 10 minutes
9170a69dff7Schris        } else {
9180a69dff7Schris            $p['refresh'] = 14400;   // default to 4 hours
9190a69dff7Schris        }
9200a69dff7Schris
9218b1b81beSAndreas Gohr        $this->addCall('rss', array($link, $p), $pos);
92244881bd0Shenning.noren        return true;
923b625487dSandi    }
924b625487dSandi
9258b1b81beSAndreas Gohr    /**
9268b1b81beSAndreas Gohr     * @param string $match matched syntax
9278b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
9288b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
9298b1b81beSAndreas Gohr     * @return bool mode handled?
9308b1b81beSAndreas Gohr     */
9318b1b81beSAndreas Gohr    public function externallink($match, $state, $pos) {
932da9f31c5SAndreas Gohr        $url   = $match;
933da9f31c5SAndreas Gohr        $title = null;
9340cecf9d5Sandi
935da9f31c5SAndreas Gohr        // add protocol on simple short URLs
936da9f31c5SAndreas Gohr        if(substr($url,0,3) == 'ftp' && (substr($url,0,6) != 'ftp://')){
937da9f31c5SAndreas Gohr            $title = $url;
938da9f31c5SAndreas Gohr            $url   = 'ftp://'.$url;
939da9f31c5SAndreas Gohr        }
940da9f31c5SAndreas Gohr        if(substr($url,0,3) == 'www' && (substr($url,0,7) != 'http://')){
941da9f31c5SAndreas Gohr            $title = $url;
942da9f31c5SAndreas Gohr            $url = 'http://'.$url;
943da9f31c5SAndreas Gohr        }
944da9f31c5SAndreas Gohr
9458b1b81beSAndreas Gohr        $this->addCall('externallink', array($url, $title), $pos);
94644881bd0Shenning.noren        return true;
9470cecf9d5Sandi    }
9480cecf9d5Sandi
9498b1b81beSAndreas Gohr    /**
9508b1b81beSAndreas Gohr     * @param string $match matched syntax
9518b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
9528b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
9538b1b81beSAndreas Gohr     * @return bool mode handled?
9548b1b81beSAndreas Gohr     */
9558b1b81beSAndreas Gohr    public function emaillink($match, $state, $pos) {
9560cecf9d5Sandi        $email = preg_replace(array('/^</','/>$/'),'',$match);
9578b1b81beSAndreas Gohr        $this->addCall('emaillink', array($email, null), $pos);
95844881bd0Shenning.noren        return true;
9590cecf9d5Sandi    }
9600cecf9d5Sandi
9618b1b81beSAndreas Gohr    /**
9628b1b81beSAndreas Gohr     * @param string $match matched syntax
9638b1b81beSAndreas Gohr     * @param int $state a LEXER_STATE_* constant
9648b1b81beSAndreas Gohr     * @param int $pos byte position in the original source file
9658b1b81beSAndreas Gohr     * @return bool mode handled?
9668b1b81beSAndreas Gohr     */
9678b1b81beSAndreas Gohr    public function table($match, $state, $pos) {
9680cecf9d5Sandi        switch ( $state ) {
9690cecf9d5Sandi
9700cecf9d5Sandi            case DOKU_LEXER_ENTER:
9710cecf9d5Sandi
9728b1b81beSAndreas Gohr                $this->callWriter = new Table($this->callWriter);
9730cecf9d5Sandi
9748b1b81beSAndreas Gohr                $this->addCall('table_start', array($pos + 1), $pos);
9750cecf9d5Sandi                if ( trim($match) == '^' ) {
9768b1b81beSAndreas Gohr                    $this->addCall('tableheader', array(), $pos);
9770cecf9d5Sandi                } else {
9788b1b81beSAndreas Gohr                    $this->addCall('tablecell', array(), $pos);
9790cecf9d5Sandi                }
9800cecf9d5Sandi            break;
9810cecf9d5Sandi
9820cecf9d5Sandi            case DOKU_LEXER_EXIT:
9838b1b81beSAndreas Gohr                $this->addCall('table_end', array($pos), $pos);
9845c2aad12SAndreas Gohr                /** @var Table $reWriter */
9858b1b81beSAndreas Gohr                $reWriter = $this->callWriter;
9868b1b81beSAndreas Gohr                $this->callWriter = $reWriter->process();
9870cecf9d5Sandi            break;
9880cecf9d5Sandi
9890cecf9d5Sandi            case DOKU_LEXER_UNMATCHED:
9900cecf9d5Sandi                if ( trim($match) != '' ) {
9918b1b81beSAndreas Gohr                    $this->addCall('cdata', array($match), $pos);
9920cecf9d5Sandi                }
9930cecf9d5Sandi            break;
9940cecf9d5Sandi
9950cecf9d5Sandi            case DOKU_LEXER_MATCHED:
9969ab75d9eSAndreas Gohr                if ( $match == ' ' ){
9978b1b81beSAndreas Gohr                    $this->addCall('cdata', array($match), $pos);
99825b97867Shakan.sandell                } else if ( preg_match('/:::/',$match) ) {
9998b1b81beSAndreas Gohr                    $this->addCall('rowspan', array($match), $pos);
1000e205b721SAndreas Gohr                } else if ( preg_match('/\t+/',$match) ) {
10018b1b81beSAndreas Gohr                    $this->addCall('table_align', array($match), $pos);
1002e205b721SAndreas Gohr                } else if ( preg_match('/ {2,}/',$match) ) {
10038b1b81beSAndreas Gohr                    $this->addCall('table_align', array($match), $pos);
10040cecf9d5Sandi                } else if ( $match == "\n|" ) {
10058b1b81beSAndreas Gohr                    $this->addCall('table_row', array(), $pos);
10068b1b81beSAndreas Gohr                    $this->addCall('tablecell', array(), $pos);
10070cecf9d5Sandi                } else if ( $match == "\n^" ) {
10088b1b81beSAndreas Gohr                    $this->addCall('table_row', array(), $pos);
10098b1b81beSAndreas Gohr                    $this->addCall('tableheader', array(), $pos);
10100cecf9d5Sandi                } else if ( $match == '|' ) {
10118b1b81beSAndreas Gohr                    $this->addCall('tablecell', array(), $pos);
10120cecf9d5Sandi                } else if ( $match == '^' ) {
10138b1b81beSAndreas Gohr                    $this->addCall('tableheader', array(), $pos);
10140cecf9d5Sandi                }
10150cecf9d5Sandi            break;
10160cecf9d5Sandi        }
101744881bd0Shenning.noren        return true;
10180cecf9d5Sandi    }
10198b1b81beSAndreas Gohr
10208b1b81beSAndreas Gohr    // endregion modes
10210cecf9d5Sandi}
10220cecf9d5Sandi
10230cecf9d5Sandi//------------------------------------------------------------------------
10240cecf9d5Sandifunction Doku_Handler_Parse_Media($match) {
10250cecf9d5Sandi
10260cecf9d5Sandi    // Strip the opening and closing markup
10270cecf9d5Sandi    $link = preg_replace(array('/^\{\{/','/\}\}$/u'),'',$match);
10280cecf9d5Sandi
10290cecf9d5Sandi    // Split title from URL
10304b7f9e70STom N Harris    $link = explode('|',$link,2);
10310cecf9d5Sandi
10320cecf9d5Sandi    // Check alignment
10330cecf9d5Sandi    $ralign = (bool)preg_match('/^ /',$link[0]);
10340cecf9d5Sandi    $lalign = (bool)preg_match('/ $/',$link[0]);
10350cecf9d5Sandi
10360cecf9d5Sandi    // Logic = what's that ;)...
10370cecf9d5Sandi    if ( $lalign & $ralign ) {
10380cecf9d5Sandi        $align = 'center';
10390cecf9d5Sandi    } else if ( $ralign ) {
10400cecf9d5Sandi        $align = 'right';
10410cecf9d5Sandi    } else if ( $lalign ) {
10420cecf9d5Sandi        $align = 'left';
10430cecf9d5Sandi    } else {
10440ea51e63SMatt Perry        $align = null;
10450cecf9d5Sandi    }
10460cecf9d5Sandi
10470cecf9d5Sandi    // The title...
10480cecf9d5Sandi    if ( !isset($link[1]) ) {
10490ea51e63SMatt Perry        $link[1] = null;
10500cecf9d5Sandi    }
10510cecf9d5Sandi
10524826ab45Sandi    //remove aligning spaces
10534826ab45Sandi    $link[0] = trim($link[0]);
10540cecf9d5Sandi
10554826ab45Sandi    //split into src and parameters (using the very last questionmark)
10564826ab45Sandi    $pos = strrpos($link[0], '?');
10574826ab45Sandi    if($pos !== false){
10584826ab45Sandi        $src   = substr($link[0],0,$pos);
10594826ab45Sandi        $param = substr($link[0],$pos+1);
10600cecf9d5Sandi    }else{
10614826ab45Sandi        $src   = $link[0];
10624826ab45Sandi        $param = '';
10630cecf9d5Sandi    }
10640cecf9d5Sandi
10654826ab45Sandi    //parse width and height
10664826ab45Sandi    if(preg_match('#(\d+)(x(\d+))?#i',$param,$size)){
1067443e135dSChristopher Smith        !empty($size[1]) ? $w = $size[1] : $w = null;
1068443e135dSChristopher Smith        !empty($size[3]) ? $h = $size[3] : $h = null;
1069fc1c55b1Shfuecks    } else {
10700ea51e63SMatt Perry        $w = null;
10710ea51e63SMatt Perry        $h = null;
10720cecf9d5Sandi    }
10730cecf9d5Sandi
1074dc673a5bSjoe.lapp    //get linking command
1075d35ab615Shenning.noren    if(preg_match('/nolink/i',$param)){
1076dc673a5bSjoe.lapp        $linking = 'nolink';
1077d35ab615Shenning.noren    }else if(preg_match('/direct/i',$param)){
1078dc673a5bSjoe.lapp        $linking = 'direct';
10798acb3108SAndreas Gohr    }else if(preg_match('/linkonly/i',$param)){
10808acb3108SAndreas Gohr        $linking = 'linkonly';
1081dc673a5bSjoe.lapp    }else{
1082dc673a5bSjoe.lapp        $linking = 'details';
1083dc673a5bSjoe.lapp    }
1084dc673a5bSjoe.lapp
10854826ab45Sandi    //get caching command
10864826ab45Sandi    if (preg_match('/(nocache|recache)/i',$param,$cachemode)){
10874826ab45Sandi        $cache = $cachemode[1];
10880cecf9d5Sandi    }else{
10894826ab45Sandi        $cache = 'cache';
10900cecf9d5Sandi    }
10910cecf9d5Sandi
10926efc45a2SDmitry Katsubo    // Check whether this is a local or remote image or interwiki
10936efc45a2SDmitry Katsubo    if (media_isexternal($src) || link_isinterwiki($src)){
10944826ab45Sandi        $call = 'externalmedia';
10950cecf9d5Sandi    } else {
10964826ab45Sandi        $call = 'internalmedia';
10970cecf9d5Sandi    }
10980cecf9d5Sandi
10990cecf9d5Sandi    $params = array(
11000cecf9d5Sandi        'type'=>$call,
11014826ab45Sandi        'src'=>$src,
11020cecf9d5Sandi        'title'=>$link[1],
11030cecf9d5Sandi        'align'=>$align,
11044826ab45Sandi        'width'=>$w,
11054826ab45Sandi        'height'=>$h,
11060cecf9d5Sandi        'cache'=>$cache,
1107dc673a5bSjoe.lapp        'linking'=>$linking,
11080cecf9d5Sandi    );
11090cecf9d5Sandi
11100cecf9d5Sandi    return $params;
11110cecf9d5Sandi}
11120cecf9d5Sandi
1113