]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/Template.php
Merge OldTextFormattingRules into TextFormattingRules; rename underscore plugins
[SourceForge/phpwiki.git] / lib / plugin / Template.php
1 <?php
2
3 /*
4  * Copyright 2005,2007 $ThePhpWikiProgrammingTeam
5  * Copyright 2008-2011 Marc-Etienne Vargenau, Alcatel-Lucent
6  *
7  * This file is part of PhpWiki.
8  *
9  * PhpWiki is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * PhpWiki is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
21  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22  */
23
24 /**
25  * Template: Parametrized blocks.
26  *    Include text from a wiki page and replace certain placeholders by parameters.
27  *    Similiar to CreatePage with the template argument, but at run-time.
28  *    Similiar to the mediawiki templates but not with the "|" parameter seperator.
29  * Usage:   <<Template page=TemplateFilm vars="title=rurban&year=1999" >>
30  * Author:  Reini Urban
31  * See also: http://meta.wikimedia.org/wiki/Help:Template
32  *
33  * Parameter expansion:
34  *   vars="var1=value1&var2=value2"
35  * We only support named parameters, not numbered ones as in mediawiki, and
36  * the placeholder is %%var%% and not {{{var}}} as in mediawiki.
37  *
38  * The following predefined uppercase variables are automatically expanded if existing:
39  *   PAGENAME
40  *   MTIME     - last modified date + time
41  *   CTIME     - creation date + time
42  *   AUTHOR    - last author
43  *   OWNER
44  *   CREATOR   - first author
45  *   SERVER_URL, DATA_PATH, SCRIPT_NAME, PHPWIKI_BASE_URL and BASE_URL
46  *
47  * <noinclude> .. </noinclude>     is stripped from the template expansion.
48  * <includeonly> .. </includeonly> is only expanded in pages using the template,
49  *                                 not in the template itself.
50  *
51  *   We support a mediawiki-style syntax extension which maps
52  *     {{TemplateFilm|title=Some Good Film|year=1999}}
53  *   to
54  *     <<Template page=TemplateFilm vars="title=Some Good Film&year=1999" >>
55  */
56
57 class WikiPlugin_Template
58     extends WikiPlugin
59 {
60     function getDescription()
61     {
62         return _("Parametrized page inclusion.");
63     }
64
65     function getDefaultArguments()
66     {
67         return array(
68             'page' => false, // the page to include
69             'vars' => false, // TODO: get rid of this, all remaining args should be vars
70             'rev' => false, // the revision (defaults to most recent)
71             'section' => false, // just include a named section
72             'sectionhead' => false // when including a named section show the heading
73         );
74     }
75
76     function allow_undeclared_arg($name, $value)
77     {
78         // either just allow it or you can store it here away also.
79         $this->vars[$name] = $value;
80         return $name != 'action';
81     }
82
83     // TODO: check if page can really be pulled from the args, or if it is just the basepage.
84     function getWikiPageLinks($argstr, $basepage)
85     {
86         $args = $this->getArgs($argstr);
87         $page = isset($args['page']) ? $args['page'] : '';
88         if ($page) {
89             // Expand relative page names.
90             $page = new WikiPageName($page, $basepage);
91         }
92         if (!$page or !$page->name)
93             return false;
94         return array(array('linkto' => $page->name, 'relation' => 0));
95     }
96
97     function run($dbi, $argstr, &$request, $basepage)
98     {
99         $this->vars = array();
100         $args = $this->getArgs($argstr, $request);
101         $vars = $args['vars'] ? $args['vars'] : $this->vars;
102         $page = $args['page'];
103
104         if ($page) {
105             // Expand relative page names.
106             $page = new WikiPageName($page, $basepage);
107             $page = $page->name;
108         }
109         if (!$page) {
110             return $this->error(sprintf(_("A required argument ā€œ%sā€ is missing."), 'page'));
111         }
112
113         // If "Template:$page" exists, use it
114         // else if "Template/$page" exists, use it
115         // else use "$page"
116         if ($dbi->isWikiPage("Template:" . $page)) {
117             $page = "Template:" . $page;
118         } elseif ($dbi->isWikiPage("Template/" . $page)) {
119             $page = "Template/" . $page;
120         }
121
122         // Protect from recursive inclusion. A page can include itself once
123         static $included_pages = array();
124         if (in_array($page, $included_pages)) {
125             return $this->error(sprintf(_("Recursive inclusion of page %s"),
126                 $page));
127         }
128
129         // Check if page exists
130         if (!($dbi->isWikiPage($page))) {
131             return $this->error(sprintf(_("Page ā€œ%sā€ does not exist."), $page));
132         }
133
134         // Check if user is allowed to get the Page.
135         if (!mayAccessPage('view', $page)) {
136             return $this->error(sprintf(_("Illegal inclusion of page %s: no read access."),
137                 $page));
138         }
139
140         $p = $dbi->getPage($page);
141         if ($args['rev']) {
142             if (!is_whole_number($args['rev']) or !($args['rev'] > 0)) {
143                 return $this->error(_("Error: rev must be a positive integer."));
144             }
145             $r = $p->getRevision($args['rev']);
146             if ((!$r) || ($r->hasDefaultContents())) {
147                 return $this->error(sprintf(_("%s: no such revision %d."),
148                     $page, $args['rev']));
149             }
150         } else {
151             $r = $p->getCurrentRevision();
152         }
153         $initial_content = $r->getPackedContent();
154
155         $content = $r->getContent();
156         // follow redirects
157         if ((preg_match('/<' . '\?plugin\s+RedirectTo\s+page=(\S+)\s*\?' . '>/', implode("\n", $content), $m))
158             or (preg_match('/<' . '\?plugin\s+RedirectTo\s+page=(.*?)\s*\?' . '>/', implode("\n", $content), $m))
159             or (preg_match('/<<\s*RedirectTo\s+page=(\S+)\s*>>/', implode("\n", $content), $m))
160             or (preg_match('/<<\s*RedirectTo\s+page="(.*?)"\s*>>/', implode("\n", $content), $m))
161         ) {
162             // Strip quotes (simple or double) from page name if any
163             if ((string_starts_with($m[1], "'"))
164                 or (string_starts_with($m[1], "\""))
165             ) {
166                 $m[1] = substr($m[1], 1, -1);
167             }
168             // trap recursive redirects
169             if (in_array($m[1], $included_pages)) {
170                 return $this->error(sprintf(_("Recursive inclusion of page %s ignored"),
171                     $page . ' => ' . $m[1]));
172             }
173             $page = $m[1];
174             $p = $dbi->getPage($page);
175             $r = $p->getCurrentRevision();
176             $initial_content = $r->getPackedContent();
177         }
178
179         if ($args['section']) {
180             $c = explode("\n", $initial_content);
181             $c = extractSection($args['section'], $c, $page, $quiet, $args['sectionhead']);
182             $initial_content = implode("\n", $c);
183         }
184         // exclude from expansion
185         if (preg_match('/<noinclude>.+<\/noinclude>/s', $initial_content)) {
186             $initial_content = preg_replace("/<noinclude>.+?<\/noinclude>/s", "",
187                 $initial_content);
188         }
189         // only in expansion
190         $initial_content = preg_replace("/<includeonly>(.+)<\/includeonly>/s", "\\1",
191             $initial_content);
192         $this->doVariableExpansion($initial_content, $vars, $basepage, $request);
193
194         array_push($included_pages, $page);
195
196         // If content is single-line, call TransformInline, else call TransformText
197         $initial_content = trim($initial_content, "\n");
198         if (preg_match("/\n/", $initial_content)) {
199             include_once 'lib/BlockParser.php';
200             $content = TransformText($initial_content, $page);
201         } else {
202             include_once 'lib/InlineParser.php';
203             $content = TransformInline($initial_content, $page);
204         }
205
206         array_pop($included_pages);
207
208         return $content;
209     }
210
211     /**
212      * Expand template variables. Used by the TemplatePlugin and the CreatePagePlugin
213      */
214     function doVariableExpansion(&$content, $vars, $basepage, &$request)
215     {
216         if (preg_match('/%%\w+%%/', $content)) // need variable expansion
217         {
218             $dbi =& $request->_dbi;
219             $var = array();
220             if (is_string($vars) and !empty($vars)) {
221                 foreach (explode("&", $vars) as $pair) {
222                     list($key, $val) = explode("=", $pair);
223                     $var[$key] = $val;
224                 }
225             } elseif (is_array($vars)) {
226                 $var =& $vars;
227             }
228             $thispage = $dbi->getPage($basepage);
229             // pagename and userid are not overridable
230             $var['PAGENAME'] = $thispage->getName();
231             if (preg_match('/%%USERID%%/', $content))
232                 $var['USERID'] = $request->_user->getId();
233             if (empty($var['MTIME']) and preg_match('/%%MTIME%%/', $content)) {
234                 $thisrev = $thispage->getCurrentRevision(false);
235                 $var['MTIME'] = $GLOBALS['WikiTheme']->formatDateTime($thisrev->get('mtime'));
236             }
237             if (empty($var['CTIME']) and preg_match('/%%CTIME%%/', $content)) {
238                 if ($first = $thispage->getRevision(1, false))
239                     $var['CTIME'] = $GLOBALS['WikiTheme']->formatDateTime($first->get('mtime'));
240             }
241             if (empty($var['AUTHOR']) and preg_match('/%%AUTHOR%%/', $content))
242                 $var['AUTHOR'] = $thispage->getAuthor();
243             if (empty($var['OWNER']) and preg_match('/%%OWNER%%/', $content))
244                 $var['OWNER'] = $thispage->getOwner();
245             if (empty($var['CREATOR']) and preg_match('/%%CREATOR%%/', $content))
246                 $var['CREATOR'] = $thispage->getCreator();
247             foreach (array("SERVER_URL", "DATA_PATH", "SCRIPT_NAME", "PHPWIKI_BASE_URL") as $c) {
248                 // constants are not overridable
249                 if (preg_match('/%%' . $c . '%%/', $content))
250                     $var[$c] = constant($c);
251             }
252             if (preg_match('/%%BASE_URL%%/', $content))
253                 $var['BASE_URL'] = PHPWIKI_BASE_URL;
254
255             foreach ($var as $key => $val) {
256                 // We have to decode the double quotes that have been encoded
257                 // in inline or block parser.
258                 $content = str_replace("%%" . $key . "%%", htmlspecialchars_decode($val), $content);
259             }
260         }
261         return $content;
262     }
263 }
264
265 // Local Variables:
266 // mode: php
267 // tab-width: 8
268 // c-basic-offset: 4
269 // c-hanging-comment-ender-p: nil
270 // indent-tabs-mode: nil
271 // End: