]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/IncludePage.php
Follow redirects even when page name contains spaces
[SourceForge/phpwiki.git] / lib / plugin / IncludePage.php
1 <?php // -*-php-*-
2 rcs_id('$Id$');
3 /*
4  * Copyright 1999, 2000, 2001, 2002 $ThePhpWikiProgrammingTeam
5  * Copyright 2008-2009 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
20  * along with PhpWiki; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  */
23
24 /**
25  * IncludePage:  include text from another wiki page in this one
26  * usage:   <?plugin IncludePage page=OtherPage rev=6 quiet=1 words=50 lines=6?>
27  * author:  Joe Edelman <joe@orbis-tertius.net>
28  */
29
30 class WikiPlugin_IncludePage
31 extends WikiPlugin
32 {
33     function getName() {
34         return _("IncludePage");
35     }
36
37     function getDescription() {
38         return _("Include text from another wiki page.");
39     }
40
41     function getVersion() {
42         return preg_replace("/[Revision: $]/", '',
43                             "\$Revision$");
44     }
45
46     function getDefaultArguments() {
47         return array( 'page'    => false, // the page to include
48                       'rev'     => false, // the revision (defaults to most recent)
49                       'quiet'   => false, // if set, inclusion appears as normal content
50                       'bytes'   => false, // maximum number of bytes to include
51                       'words'   => false, // maximum number of words to include
52                       'lines'   => false, // maximum number of lines to include
53                       'sections' => false, // maximum number of sections to include
54                       'section' => false, // include a named section
55                       'sectionhead' => false // when including a named section show the heading
56                       );
57     }
58
59     function getWikiPageLinks($argstr, $basepage) {
60         extract($this->getArgs($argstr));
61
62         if (!isset($page))
63             return false;
64         if ($page) {
65             // Expand relative page names.
66             $page = new WikiPageName($page, $basepage);
67         }
68         if (!$page or !$page->name)
69             return false;
70         return array(array('linkto' => $page->name, 'relation' => 0));
71     }
72                 
73     function run($dbi, $argstr, &$request, $basepage) {
74         $args = $this->getArgs($argstr, $request);
75         extract($args);
76         if ($page) {
77             // Expand relative page names.
78             $page = new WikiPageName($page, $basepage);
79             $page = $page->name;
80         }
81         if (!$page) {
82             return $this->error(_("no page specified"));
83         }
84
85         // A page can include itself once (this is needed, e.g.,  when editing
86         // TextFormattingRules).
87         static $included_pages = array();
88         if (in_array($page, $included_pages)) {
89             return $this->error(sprintf(_("recursive inclusion of page %s ignored"),
90                                         $page));
91         }
92
93         // Check if user is allowed to get the Page.
94         if (!mayAccessPage ('view', $page)) {
95                 return $this->error(sprintf(_("Illegal inclusion of page %s: no read access"),
96                                         $page));
97         }
98         
99         $p = $dbi->getPage($page);
100         if ($rev) {
101             $r = $p->getRevision($rev);
102             if (!$r) {
103                 return $this->error(sprintf(_("%s(%d): no such revision"),
104                                             $page, $rev));
105             }
106         } else {
107             $r = $p->getCurrentRevision();
108         }
109         $c = $r->getContent();
110         
111         // follow redirects
112         if ((preg_match('/<'.'\?plugin\s+RedirectTo\s+page=(\S+)\s*\?'.'>/', implode("\n", $c), $m))
113           or (preg_match('/<'.'\?plugin\s+RedirectTo\s+page=(.*?)\s*\?'.'>/', implode("\n", $c), $m))
114           or (preg_match('/<<\s*RedirectTo\s+page=(\S+)\s*>>/', implode("\n", $c), $m))
115           or (preg_match('/<<\s*RedirectTo\s+page="(.*?)"\s*>>/', implode("\n", $c), $m)))
116         {
117             // Strip quotes (simple or double) from page name if any
118             if ((string_starts_with($m[1], "'"))
119               or (string_starts_with($m[1], "\""))) {
120                 $m[1] = substr($m[1], 1, -1);
121             }
122             // trap recursive redirects
123             if (in_array($m[1], $included_pages)) {
124                 return $this->error(sprintf(_("recursive inclusion of page %s ignored"),
125                                                 $page.' => '.$m[1]));
126             }
127             $page = $m[1];
128             $p = $dbi->getPage($page);
129             $r = $p->getCurrentRevision();
130             $c = $r->getContent();   // array of lines
131         }
132
133         $ct = $this->extractParts ($c, $page, $args);
134
135         // exclude from expansion
136         if (preg_match('/<noinclude>.+<\/noinclude>/s', $ct)) {
137             $ct = preg_replace("/<noinclude>.+?<\/noinclude>/s", "", $ct);
138         }
139         // only in expansion
140         $ct = preg_replace("/<includeonly>(.+)<\/includeonly>/s", "\\1", $ct);
141
142         array_push($included_pages, $page);
143
144         include_once('lib/BlockParser.php');
145         $content = TransformText($ct, $r->get('markup'), $page);
146
147         array_pop($included_pages);
148
149         if ($quiet)
150             return $content;
151
152         return HTML(HTML::p(array('class' => 'transclusion-title'),
153                             fmt("Included from %s", WikiLink($page))),
154
155                     HTML::div(array('class' => 'transclusion'),
156                               false, $content));
157     }
158     
159     /** 
160      * handles the arguments: section, sectionhead, lines, words, bytes,
161      * for UnfoldSubpages, IncludePage, ...
162      */
163     function extractParts ($c, $pagename, $args) {
164         extract($args);
165
166         if ($section) {
167             if ($sections) { 
168                 $c = extractSection($section, $c, $pagename, $quiet, 1);
169             } else {
170                 $c = extractSection($section, $c, $pagename, $quiet, $sectionhead);
171             }
172         }
173         if ($sections) {
174             $c = extractSections($sections, $c, $pagename, $quiet, 1);
175         }
176         if ($lines) {
177             $c = array_slice($c, 0, $lines);
178             $c[] = sprintf(_(" ... first %d lines"), $lines);
179         }
180         if ($words) {
181             $c = firstNWordsOfContent($words, $c);
182         }
183         if ($bytes) {
184             $ct = implode("\n", $c); // one string
185             if (strlen($ct) > $bytes) {
186                 $ct = substr($c, 0, $bytes);
187                 $c = array($ct, sprintf(_(" ... first %d bytes"), $bytes));
188             }
189         }
190         $ct = implode("\n", $c); // one string
191         return $ct;
192     }
193 };
194
195 // This is an excerpt from the css file I use:
196 //
197 // .transclusion-title {
198 //   font-style: oblique;
199 //   font-size: 0.75em;
200 //   text-decoration: underline;
201 //   text-align: right;
202 // }
203 //
204 // DIV.transclusion {
205 //   background: lightgreen;
206 //   border: thin;
207 //   border-style: solid;
208 //   padding-left: 0.8em;
209 //   padding-right: 0.8em;
210 //   padding-top: 0px;
211 //   padding-bottom: 0px;
212 //   margin: 0.5ex 0px;
213 // }
214
215 // For emacs users
216 // Local Variables:
217 // mode: php
218 // tab-width: 8
219 // c-basic-offset: 4
220 // c-hanging-comment-ender-p: nil
221 // indent-tabs-mode: nil
222 // End:
223 ?>