]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/BackLinks.php
Replace tabs by spaces; remove EOL spaces
[SourceForge/phpwiki.git] / lib / plugin / BackLinks.php
1 <?php // -*-php-*-
2 rcs_id('$Id$');
3 /**
4  * Copyright 1999,2000,2001,2002,2006 $ThePhpWikiProgrammingTeam
5  *
6  * This file is part of PhpWiki.
7  *
8  * PhpWiki is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * PhpWiki is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with PhpWiki; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 /**
24  */
25 require_once('lib/PageList.php');
26
27 class WikiPlugin_BackLinks
28 extends WikiPlugin
29 {
30     function getName() {
31         return _("BackLinks");
32     }
33
34     function getDescription() {
35         return sprintf(_("List all pages which link to %s."), '[pagename]');
36     }
37
38     function getVersion() {
39         return preg_replace("/[Revision: $]/", '',
40                             "\$Revision$");
41     }
42
43     function getDefaultArguments() {
44         return array_merge
45             (
46              PageList::supportedArgs(),
47              array('include_self' => false,
48                    'noheader'     => false,
49                    'page'         => '[pagename]',
50                    'linkmore'     => '',  // If count>0 and limit>0 display a link with
51                      // the number of all results, linked to the given pagename.
52                    ));
53     }
54
55     // info arg allows multiple columns
56     // info=mtime,hits,summary,version,author,locked,minor
57     // exclude arg allows multiple pagenames exclude=HomePage,RecentChanges
58     // NEW: info=count : number of links
59     // page=foo,bar : backlinks to both pages
60     function run($dbi, $argstr, &$request, $basepage) {
61         $args = $this->getArgs($argstr, $request);
62
63         extract($args);
64         if (empty($page) and $page != '0')
65             return '';
66         // exclude is now already expanded in WikiPlugin::getArgs()
67         if (empty($exclude)) $exclude = array();
68         if (!$include_self)
69             $exclude[] = $page;
70         if ($info) {
71             $info = explode(",", $info);
72             if (in_array('count',$info))
73                 $args['types']['count'] =
74                     new _PageList_Column_BackLinks_count('count', _("#"), 'center');
75         }
76         if (!empty($limit))
77             $args['limit'] = $limit;
78         $args['dosort'] = !empty($args['sortby']); // override DB sort (??)
79         $pagelist = new PageList($info, $exclude, $args);
80
81         // support logical AND: page1,page2
82         $pages = explodePageList($page);
83         $count = count($pages);
84         if (count($pages) > 1) {
85             // AND: the intersection of all these pages
86             $bl = array();
87             foreach ($pages as $p) {
88                 $dp = $dbi->getPage($p);
89                 $bi = $dp->getBackLinks(false, $sortby, 0, $exclude);
90                 while ($b = $bi->next()) {
91                     $name = $b->getName();
92                     if (isset($bl[$name]))
93                         $bl[$name]++;
94                     else
95                         $bl[$name] = 1;
96                 }
97             }
98             foreach ($bl as $b => $v)
99                 if ($v == $count)
100                     $pagelist->addPage($b);
101         } else {
102             $p = $dbi->getPage($page);
103             $pagelist->addPages($p->getBackLinks(false, $sortby, 0, $exclude));
104         }
105         $total = $pagelist->getTotal();
106
107         // Localization note: In English, the differences between the
108         // various phrases spit out here may seem subtle or negligible
109         // enough to tempt you to combine/normalize some of these
110         // strings together, but the grammar employed most by other
111         // languages does not always end up with so subtle a
112         // distinction as it does with English in this case. :)
113         if (!$noheader) {
114             if ($page == $request->getArg('pagename')
115                 and !$dbi->isWikiPage($page))
116             {
117                     // BackLinks plugin is more than likely being called
118                     // upon for an empty page on said page, while either
119                     // 'browse'ing, 'create'ing or 'edit'ing.
120                     //
121                     // Don't bother displaying a WikiLink 'unknown', just
122                     // the Un~WikiLink~ified (plain) name of the uncreated
123                     // page currently being viewed.
124                     $pagelink = $page;
125
126                     if ($pagelist->isEmpty())
127                         return HTML::p(fmt("No other page links to %s yet.", $pagelink));
128
129                     if ($total == 1)
130                         $pagelist->setCaption(fmt("One page would link to %s:",
131                                                   $pagelink));
132                     // Some future localizations will actually require
133                     // this... (BelieveItOrNot, English-only-speakers!(:)
134                     //
135                     // else if ($pagelist->getTotal() == 2)
136                     //     $pagelist->setCaption(fmt("Two pages would link to %s:",
137                     //                               $pagelink));
138                     else
139                         $pagelist->setCaption(fmt("%s pages would link to %s:",
140                                                   $total, $pagelink));
141             }
142             else {
143                 if ($count) {
144                     $tmp_pages = $pages;
145                     $p = array_shift($tmp_pages);
146                     $pagelink = HTML(WikiLink($p, 'auto'));
147                     foreach ($tmp_pages as $p)
148                         $pagelink->pushContent(" ",_("AND")," ",WikiLink($p, 'auto'));
149                 } else
150                         // BackLinks plugin is being displayed on a normal page.
151                     $pagelink = WikiLink($page, 'auto');
152
153                 if ($pagelist->isEmpty())
154                     return HTML::p(fmt("No page links to %s.", $pagelink));
155
156                 //trigger_error("DEBUG: " . $pagelist->getTotal());
157
158                 if ($total == 1)
159                     $pagelist->setCaption(fmt("One page links to %s:",
160                                               $pagelink));
161                 // Some future localizations will actually require
162                 // this... (BelieveItOrNot, English-only-speakers!(:)
163                 //
164                 // else if ($pagelist->getTotal() == 2)
165                 //     $pagelist->setCaption(fmt("Two pages link to %s:",
166                 //                               $pagelink));
167                 else
168                     $pagelist->setCaption(fmt("%s pages link to %s:",
169                                               $limit > 0 ? $total : _("Those"),
170                                               $pagelink));
171             }
172         }
173         if (!empty($args['linkmore'])
174             and $dbi->isWikiPage($args['linkmore'])
175             and $limit > 0 and $total > $limit
176             )
177             $pagelist->addCaption(WikiLink($args['linkmore'], "auto", _("More...")));
178         return $pagelist;
179     }
180
181 };
182
183 // how many links from this backLink to other pages
184 class _PageList_Column_BackLinks_count extends _PageList_Column {
185     function _getValue($page, &$revision_handle) {
186         $iter = $page->getPageLinks();
187         $count = $iter->count();
188         return $count;
189     }
190 }
191
192 // For emacs users
193 // Local Variables:
194 // mode: php
195 // tab-width: 8
196 // c-basic-offset: 4
197 // c-hanging-comment-ender-p: nil
198 // indent-tabs-mode: nil
199 // End:
200 ?>