xref: /plugin/addnewpage/syntax.php (revision a962842168d8516d476746444c776d122d728900)
1<?php
2
3// must be run within Dokuwiki
4if(!defined('DOKU_INC')) die();
5
6/**
7 * Add-New-Page Plugin: a simple form for adding new pages.
8 *
9 * @license  GPL 2 (http://www.gnu.org/licenses/gpl.html)
10 * @author   iDO <ido@idotech.info>
11 * @author   Sam Wilson <sam@samwilson.id.au>
12 */
13class syntax_plugin_addnewpage extends DokuWiki_Syntax_Plugin {
14
15    /**
16     * Syntax Type
17     */
18    public function getType() {
19        return 'substition';
20    }
21
22    /**
23     * Paragraph Type
24     */
25    public function getPType() {
26        return 'block';
27    }
28
29    /**
30     * @return int
31     */
32    public function getSort() {
33        return 199;
34    }
35
36    /**
37     * @param string $mode
38     */
39    public function connectTo($mode) {
40        $this->Lexer->addSpecialPattern('\{\{NEWPAGE[^\}]*\}\}', $mode, 'plugin_addnewpage');
41    }
42
43    /**
44     * Handler to prepare matched data for the rendering process
45     *
46     * Handled syntax options:
47     *   {{NEWPAGE}}
48     *   {{NEWPAGE>your:namespace}}
49     *   {{NEWPAGE#newtpl1,newtpl2}}
50     *   {{NEWPAGE#newtpl1|Title1,newtpl2|Title1}}
51     *   {{NEWPAGE>your:namespace#newtpl1|Title1,newtpl2|Title1}}
52     *
53     * @param   string       $match   The text matched by the patterns
54     * @param   int          $state   The lexer state for the match
55     * @param   int          $pos     The character position of the matched text
56     * @param   Doku_Handler $handler The Doku_Handler object
57     * @return  array Return an array with all data you want to use in render
58     * @codingStandardsIgnoreStart
59     */
60    public function handle($match, $state, $pos, Doku_Handler $handler) {
61        /* @codingStandardsIgnoreEnd */
62        $options = substr($match, 9, -2); // strip markup
63        $options = explode('#', $options, 2);
64
65        $namespace = trim(ltrim($options[0], '>'));
66        $templates = explode(',', $options[1]);
67        $templates = array_map('trim', $templates);
68        return array(
69            'namespace' => $namespace,
70            'newpagetemplates' => $templates
71        );
72    }
73
74    /**
75     * Create the new-page form.
76     *
77     * @param   $mode     string        output format being rendered
78     * @param   $renderer Doku_Renderer the current renderer object
79     * @param   $data     array         data created by handler()
80     * @return  boolean                 rendered correctly?
81     */
82    public function render($mode, Doku_Renderer $renderer, $data) {
83        global $lang;
84
85        if($mode == 'xhtml') {
86            $disablecache = null;
87            $namespaceinput = $this->_htmlNamespaceInput($data['namespace'], $disablecache);
88            if($namespaceinput === false) {
89                if($this->getConf('addpage_hideACL')) {
90                    $renderer->doc .= '';
91                } else {
92                    $renderer->doc .= $this->getLang('nooption');
93                }
94                return true;
95            }
96            if($disablecache) $renderer->info['cache'] = false;
97
98            $newpagetemplateinput = $this->_htmlTemplateInput($data['newpagetemplates']);
99
100            $form = '<div class="addnewpage">' . DOKU_LF
101                . DOKU_TAB . '<form name="addnewpage" method="get" action="' . DOKU_BASE . DOKU_SCRIPT . '" accept-charset="' . $lang['encoding'] . '">' . DOKU_LF
102                . DOKU_TAB . DOKU_TAB . $namespaceinput . DOKU_LF
103                . DOKU_TAB . DOKU_TAB . '<input class="edit" type="text" name="title" size="20" maxlength="255" tabindex="2" />' . DOKU_LF
104                . $newpagetemplateinput
105                . DOKU_TAB . DOKU_TAB . '<input type="hidden" name="do" value="edit" />' . DOKU_LF
106                . DOKU_TAB . DOKU_TAB . '<input type="hidden" name="id" />' . DOKU_LF
107                . DOKU_TAB . DOKU_TAB . '<input class="button" type="submit" value="' . $this->getLang('okbutton') . '" tabindex="4" />' . DOKU_LF
108                . DOKU_TAB . '</form>' . DOKU_LF
109                . '</div>';
110            $renderer->doc .= $form;
111
112            return true;
113        }
114        return false;
115    }
116
117    /**
118     * Parse namespace request
119     *
120     * @author Samuele Tognini <samuele@cli.di.unipi.it>
121     * @author Michael Braun <michael-dev@fami-braun.de>
122     */
123    protected function _parseNS($ns) {
124        global $ID;
125        if($ns == "@PAGE@") return $ID;
126        if($ns == "@NS@") return getNS($ID);
127        $ns = preg_replace("/^\.(:|$)/", dirname(str_replace(':', '/', $ID)) . "$1", $ns);
128        $ns = str_replace("/", ":", $ns);
129        $ns = cleanID($ns);
130        return $ns;
131    }
132
133    /**
134     * Create the HTML Select element for namespace selection.
135     *
136     * @param string|false $dest_ns The destination namespace, or false if none provided.
137     * @param bool $disablecache reference indicates if caching need to be disabled
138     * @global string $ID The page ID
139     * @return string Select element with appropriate NS selected.
140     */
141    protected function _htmlNamespaceInput($dest_ns, &$disablecache) {
142        global $ID;
143        $disablecache = false;
144
145        // If a NS has been provided:
146        // Whether to hide the NS selection (otherwise, show only subnamespaces).
147        $hide = $this->getConf('addpage_hide');
148
149        $parsed_dest_ns = $this->_parseNS($dest_ns);
150        // Whether the user can create pages in the provided NS (or root, if no
151        // destination NS has been set.
152        $can_create = (auth_quickaclcheck($parsed_dest_ns . ":") >= AUTH_CREATE);
153
154        //namespace given, but hidden
155        if($hide && !empty($dest_ns)) {
156            if($can_create) {
157                return '<input type="hidden" name="np_cat" id="np_cat" value="' . $parsed_dest_ns . '"/>';
158            } else {
159                return false;
160            }
161        }
162
163        //show select of given namespace
164        $currentns = getNS($ID);
165
166        $ret = '<select class="edit" id="np_cat" name="np_cat" tabindex="1">';
167
168        // Whether the NS select element has any options
169        $someopt = false;
170
171        // Show root namespace if requested and allowed
172        if($this->getConf('addpage_showroot') && $can_create) {
173            if(empty($dest_ns)) {
174                // If no namespace has been provided, add an option for the root NS.
175                $ret .= '<option ' . (($currentns == '') ? 'selected ' : '') . 'value="">' . $this->getLang('namespaceRoot') . '</option>';
176                $someopt = true;
177            } else {
178                // If a namespace has been provided, add an option for it.
179                $ret .= '<option ' . (($currentns == $dest_ns) ? 'selected ' : '') . 'value="' . formText($dest_ns) . '">' . formText($dest_ns) . '</option>';
180                $someopt = true;
181            }
182        }
183
184        $subnamespaces = $this->_getNamespaceList($dest_ns);
185
186        // The top of this stack will always be the last printed ancestor namespace
187        $ancestor_stack = array();
188        if (!empty($dest_ns)) {
189            array_push($ancestor_stack, $dest_ns);
190        }
191
192        foreach($subnamespaces as $ns) {
193
194            if(auth_quickaclcheck($ns . ":") < AUTH_CREATE) continue;
195
196            // Pop any elements off the stack that are not ancestors of the current namespace
197            while(!empty($ancestor_stack) && strpos($ns, $ancestor_stack[count($ancestor_stack) - 1] . ':') !== 0) {
198                array_pop($ancestor_stack);
199            }
200
201            $nsparts = explode(':', $ns);
202            $first_unprinted_depth = empty($ancestor_stack)? 1 : (2 + substr_count($ancestor_stack[count($ancestor_stack) - 1], ':'));
203            for ($i = $first_unprinted_depth, $end = count($nsparts); $i <= $end; $i++) {
204                $namespace = implode(':', array_slice($nsparts, 0, $i));
205                array_push($ancestor_stack, $namespace);
206                $selectOptionText = str_repeat('&nbsp;&nbsp;', substr_count($namespace, ':')) . $nsparts[$i - 1];
207                $ret .= '<option ' .
208                    (($currentns == $namespace) ? 'selected ' : '') .
209                    ($i == $end? ('value="' . $namespace . '">') : 'disabled>') .
210                    $selectOptionText .
211                    '</option>';
212            }
213            $someopt = true;
214            $disablecache = true;
215        }
216
217        $ret .= '</select>';
218
219        if($someopt) {
220            return $ret;
221        } else {
222            return false;
223        }
224    }
225
226    /**
227     * Get a list of namespaces below the given namespace.
228     * Recursively fetches subnamespaces.
229     *
230     * @param string $topns The top namespace
231     * @return array Multi-dimensional array of all namespaces below $tns
232     */
233    protected function _getNamespaceList($topns = '') {
234        global $conf;
235
236        $topns = utf8_encodeFN(str_replace(':', '/', $topns));
237
238        $excludes = $this->getConf('addpage_exclude');
239        if($excludes == "") {
240            $excludes = array();
241        } else {
242            $excludes = @explode(';', strtolower($excludes));
243        }
244        $searchdata = array();
245        search($searchdata, $conf['datadir'], 'search_namespaces', array(), $topns);
246
247        $namespaces = array();
248        foreach($searchdata as $ns) {
249            foreach($excludes as $exclude) {
250                if(strpos($ns['id'], $exclude) === 0) {
251                    continue 2;
252                }
253            }
254            $namespaces[] = $ns['id'];
255        }
256
257        return $namespaces;
258    }
259
260    /**
261     * Create html for selection of namespace templates
262     *
263     * @param array $newpagetemplates array of namespace templates
264     * @return string html of select or hidden input
265     */
266    public function _htmlTemplateInput($newpagetemplates) {
267        $cnt = count($newpagetemplates);
268        if($cnt < 1 || $cnt == 1 && $newpagetemplates[0] == '') {
269            $input = '';
270
271        } else {
272            if($cnt == 1) {
273                list($template, ) = $this->_parseNSTemplatePage($newpagetemplates[0]);
274                $input = '<input type="hidden" name="newpagetemplate" value="' . formText($template) . '" />';
275            } else {
276                $first = true;
277                $input = '<select name="newpagetemplate" tabindex="3">';
278                foreach($newpagetemplates as $template) {
279                    $p = ($first ? ' selected="selected"' : '');
280                    $first = false;
281
282                    list($template, $name) = $this->_parseNSTemplatePage($template);
283                    $p .= ' value="'.formText($template).'"';
284                    $input .= "<option $p>".formText($name)."</option>";
285                }
286                $input .= '</select>';
287            }
288            $input = DOKU_TAB . DOKU_TAB . $input . DOKU_LF;
289        }
290        return $input;
291    }
292
293    /**
294     * Parses and resolves the namespace template page
295     *
296     * @param $nstemplate
297     * @return array
298     */
299    protected function _parseNSTemplatePage($nstemplate) {
300        global $ID;
301
302        @list($template, $name) = explode('|', $nstemplate, 2);
303
304        $exist = null;
305        resolve_pageid(getNS($ID), $template, $exist); //get absolute id
306
307        if (is_null($name)) $name = $template;
308
309        return array($template, $name);
310    }
311
312}
313