]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/LikePages.php
getName should not translate
[SourceForge/phpwiki.git] / lib / plugin / LikePages.php
1 <?php
2
3 /**
4  * Copyright 1999, 2000, 2001, 2002 $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 along
19  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22
23 require_once 'lib/TextSearchQuery.php';
24 require_once 'lib/PageList.php';
25
26 class WikiPlugin_LikePages
27     extends WikiPlugin
28 {
29     function getDescription()
30     {
31         return sprintf(_("List page names which share an initial or final title word with “%s”."),
32             '[pagename]');
33     }
34
35     function getDefaultArguments()
36     {
37         return array_merge
38         (
39             PageList::supportedArgs(),
40             array('page' => '[pagename]',
41                 'prefix' => false,
42                 'suffix' => false,
43                 'noheader' => false,
44             ));
45     }
46
47     // info arg allows multiple columns
48     // info=mtime,hits,summary,version,author,locked,minor
49     // exclude arg allows multiple pagenames exclude=HomePage,RecentChanges
50
51     function run($dbi, $argstr, &$request, $basepage)
52     {
53         $args = $this->getArgs($argstr, $request);
54
55         extract($args);
56         if (empty($page) && empty($prefix) && empty($suffix))
57             return '';
58
59         if ($prefix) {
60             $suffix = false;
61             $descrip = fmt("Page names with prefix “%s”", $prefix);
62         } elseif ($suffix) {
63             $descrip = fmt("Page names with suffix “%s”", $suffix);
64         } elseif ($page) {
65             $words = preg_split('/[\s:-;.,]+/',
66                 SplitPagename($page));
67             $words = preg_grep('/\S/', $words);
68
69             $prefix = reset($words);
70             $suffix = end($words);
71
72             $descrip = fmt("These pages share an initial or final title word with “%s”",
73                 WikiLink($page, 'auto'));
74         }
75
76         // Search for pages containing either the suffix or the prefix.
77         $search = $match = array();
78         if (!empty($prefix)) {
79             $search[] = $this->_quote($prefix);
80             $match[] = '^' . preg_quote($prefix, '/');
81         }
82         if (!empty($suffix)) {
83             $search[] = $this->_quote($suffix);
84             $match[] = preg_quote($suffix, '/') . '$';
85         }
86
87         if ($search)
88             $query = new TextSearchQuery(join(' OR ', $search));
89         else
90             $query = new NullTextSearchQuery; // matches nothing
91
92         $match_re = '/' . join('|', $match) . '/';
93
94         $pagelist = new PageList($info, $exclude, $args);
95         if (!$noheader)
96             $pagelist->setCaption($descrip);
97         $pages = $dbi->titleSearch($query);
98         while ($page = $pages->next()) {
99             $name = $page->getName();
100             if (!preg_match($match_re, $name))
101                 continue;
102             $pagelist->addPage($page);
103         }
104
105         return $pagelist;
106     }
107
108     private function _quote($str)
109     {
110         return "'" . str_replace("'", "''", $str) . "'";
111     }
112 }
113
114 // Local Variables:
115 // mode: php
116 // tab-width: 8
117 // c-basic-offset: 4
118 // c-hanging-comment-ender-p: nil
119 // indent-tabs-mode: nil
120 // End: