]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/PageGroup.php
version of plugins no longer makes sense with Subversion global version number
[SourceForge/phpwiki.git] / lib / plugin / PageGroup.php
1 <?php // -*-php-*-
2 rcs_id('$Id$');
3 /**
4  * Copyright 1999,2000,2001,2002,2004 $ThePhpWikiProgrammingTeam
5  * Copyright 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  * Usage:
26  *
27  * <?plugin PageGroup parent=MyTableOfContents ?>
28  *
29  * <?plugin PageGroup
30  *          parent=MyTableOfContents
31  *          label="Visit more pages in MyTableOfContents"
32  * ?>
33  *
34  * <?plugin PageGroup parent=MyTableOfContents section=PartTwo loop=true ?>
35  *
36  * <?plugin PageGroup parent=MyTableOfContents loop=1 ?>
37  *
38  *
39  * Updated to use new HTML(). It mostly works, but it's still a giant hackish mess.
40  */
41 class WikiPlugin_PageGroup
42 extends WikiPlugin
43 {
44     function getName() {
45         return _("PageGroup");
46     }
47
48     function getDescription() {
49         return sprintf(_("PageGroup for %s"),'[pagename]');
50     }
51
52     function getDefaultArguments() {
53         return array(
54                      'parent'  => '',
55                      'rev'     => false,
56                      'section' => _("Contents"),
57                      'label'   => '',
58                      'loop'    => false,
59                      );
60     }
61
62     // Stolen from IncludePage.php
63     function extractGroupSection ($section, $content, $page) {
64         $qsection = preg_replace('/\s+/', '\s+', preg_quote($section, '/'));
65         if (preg_match("/ ^(!{1,})\\s*$qsection" // section header
66                        . "  \\s*$\\n?"           // possible blank lines
67                        . "  ( (?: ^.*\\n? )*? )" // some lines
68                        . "  (?= ^\\1 | \\Z)/xm", // sec header (same or higher level) (or EOF)
69                        implode("\n", $content),
70                        $match)) {
71             $result = array();
72             //FIXME: return list of Wiki_Pagename objects
73             foreach (explode("\n", $match[2]) as $line) {
74                     $text = trim($line);
75                 // Strip trailing blanks lines and ---- <hr>s
76                 $text = preg_replace("/\\s*^-{4,}\\s*$/", "", $text);
77                 // Strip leading list chars: * or #
78                 $text = preg_replace("/^[\*#]+\s*(\S.+)$/", "\\1", $text);
79                 // Strip surrounding []
80                 // FIXME: parse [ name | link ]
81                 $text = preg_replace("/^\[\s*(\S.+)\s*\]$/", "\\1", $text);
82                 if (!empty($text))
83                     $result[] = $text;
84             }
85             return $result;
86         }
87         return array(sprintf(_("<%s: no such section>"), $page ." ". $section));
88     }
89
90     function run($dbi, $argstr, &$request, $basepage) {
91
92         $args = $this->getArgs($argstr, $request);
93         extract($args);
94         if (empty($parent)) {
95             // FIXME: WikiPlugin has no way to report when
96             // required args are missing?
97             $error_text = sprintf("%s: ", "WikiPlugin_" .$this->getName());
98             $error_text .= sprintf(_("A required argument '%s' is missing."), 'parent');
99             return HTML::div(array('class' => "error"), $error_text);
100         }
101         $directions = array ('next'     => _("Next"),
102                              'previous' => _("Previous"),
103                              'contents' => _("Contents"),
104                              'first'    => _("First"),
105                              'last'     => _("Last")
106                              );
107
108         global $WikiTheme;
109         $sep = $WikiTheme->getButtonSeparator();
110         if (!$sep)
111             $sep = " | "; // force some kind of separator
112
113         // default label
114         if (!$label)
115             $label = $WikiTheme->makeLinkButton($parent);
116
117         // This is where the list extraction occurs from the named
118         // $section on the $parent page.
119
120         $p = $dbi->getPage($parent);
121         if ($rev) {
122             $r = $p->getRevision($rev);
123             if (!$r) {
124                 $this->error(sprintf(_("%s(%d): no such revision"), $parent,
125                                      $rev));
126                 return '';
127             }
128         } else {
129             $r = $p->getCurrentRevision();
130         }
131
132         $c = $r->getContent();
133         $c = $this->extractGroupSection($section, $c, $parent);
134
135         $pagename = $request->getArg('pagename');
136
137         // The ordered list of page names determines the page
138         // ordering. Right now it doesn't work with a WikiList, only
139         // normal lines of text containing the page names.
140
141         $thispage = array_search($pagename, $c);
142
143         $go = array ('previous','next');
144         $links = HTML();
145         $links->pushcontent($label);
146         $links->pushcontent(" [ "); // an experiment
147         $lastindex = count($c) - 1; // array is 0-based, count is 1-based!
148
149         foreach ( $go as $go_item ) {
150             //yuck this smells, needs optimization.
151             if ($go_item == 'previous') {
152                 if ($loop) {
153                     if ($thispage == 0) {
154                         $linkpage  = $c[$lastindex];
155                     } else {
156                         $linkpage  = $c[$thispage - 1];
157                     }
158                     // mind the French : punctuation
159                     $text = fmt("%s: %s", $directions[$go_item],
160                                 $WikiTheme->makeLinkButton($linkpage));
161                     $links->pushcontent($text);
162                     $links->pushcontent($sep); // this works because
163                                                // there are only 2 go
164                                                // items, previous,next
165                 } else {
166                     if ($thispage == 0) {
167                         // skip it
168                     } else {
169                         $linkpage  = $c[$thispage - 1];
170                         $text = fmt("%s: %s", $directions[$go_item],
171                                     $WikiTheme->makeLinkButton($linkpage));
172                         $links->pushcontent($text);
173                         $links->pushcontent($sep); //this works
174                                                    //because there are
175                                                    //only 2 go items,
176                                                    //previous,next
177                     }
178                 }
179             } else if ($go_item == 'next') {
180                 if ($loop) {
181                     if ($thispage == $lastindex) {
182                         $linkpage  = $c[1];
183                     } else {
184                         $linkpage  = $c[$thispage + 1];
185                     }
186                     $text = fmt("%s: %s", $directions[$go_item],
187                                 $WikiTheme->makeLinkButton($linkpage));
188                 } else {
189                     if ($thispage == $lastindex) {
190                         // skip it
191                     } else {
192                         $linkpage = $c[$thispage + 1];
193                         $text = fmt("%s: %s", $directions[$go_item],
194                                     $WikiTheme->makeLinkButton($linkpage));
195                     }
196                 }
197                 $links->pushcontent($text);
198             }
199         }
200         $links->pushcontent(" ] "); // an experiment
201         return $links;
202     }
203 };
204
205 // Local Variables:
206 // mode: php
207 // tab-width: 8
208 // c-basic-offset: 4
209 // c-hanging-comment-ender-p: nil
210 // indent-tabs-mode: nil
211 // End:
212 ?>