]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/TitleSearch.php
Remove extra empty lines
[SourceForge/phpwiki.git] / lib / plugin / TitleSearch.php
1 <?php
2
3 /**
4  * Copyright 1999,2000,2001,2002,2004,2005,2010 $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 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 require_once 'lib/TextSearchQuery.php';
25 require_once 'lib/PageList.php';
26
27 /**
28  * Display results of pagename search.
29  * Provides no own input box, just <?plugin-form TitleSearch?> is enough.
30  * Fancier Inputforms can be made using <<WikiFormRich ...>> to support regex and case_exact args.
31  *
32  * If only one pages is found and auto_redirect is true, this page is displayed immediatly,
33  * otherwise the found pagelist is displayed.
34  * The workhorse TextSearchQuery converts the query string from google-style words
35  * to the required DB backend expression.
36  *   (word and word) OR word, -word, "two words"
37  * regex=auto tries to detect simple glob-style wildcards and expressions,
38  * like xx*, *xx, ^xx, xx$, ^word$.
39  */
40 class WikiPlugin_TitleSearch
41     extends WikiPlugin
42 {
43     function getName()
44     {
45         return _("TitleSearch");
46     }
47
48     function getDescription()
49     {
50         return _("Search the titles of all pages in this wiki.");
51     }
52
53     function getDefaultArguments()
54     {
55         return array_merge
56         (
57             PageList::supportedArgs(), // paging and more.
58             array('s' => false,
59                 'auto_redirect' => false,
60                 'noheader' => false,
61                 'exclude' => false,
62                 'info' => false,
63                 'case_exact' => false,
64                 'regex' => 'auto',
65                 'format' => false,
66             ));
67     }
68
69     // info arg allows multiple columns
70     // info=mtime,hits,summary,version,author,locked,minor
71     // exclude arg allows multiple pagenames exclude=Php*,RecentChanges
72
73     function run($dbi, $argstr, &$request, $basepage)
74     {
75         $args = $this->getArgs($argstr, $request);
76         if (empty($args['s'])) {
77             return HTML();
78         }
79
80         // ^S != S*   ^  matches only beginning of phrase, not of word.
81         //            x* matches any word beginning with x
82         $query = new TextSearchQuery($args['s'], $args['case_exact'], $args['regex']);
83         $pages = $dbi->titleSearch($query, $args['sortby'], $args['limit'], $args['exclude']);
84
85         $pagelist = new PageList($args['info'], $args['exclude'], $args);
86         $pagelist->addPages($pages);
87
88         // Provide an unknown WikiWord link to allow for page creation
89         // when a search returns no results
90         if (!$args['noheader']) {
91             $s = $args['s'];
92             $total = $pagelist->getTotal();
93             if (!$total and !$query->_regex) {
94                 $s = WikiLink($args['s'], 'auto');
95             }
96             if ($total) {
97                 $pagelist->setCaption(fmt("Title search results for '%s' (%d total)", $s, $total));
98             } else {
99                 $pagelist->setCaption(fmt("Title search results for '%s'", $s));
100             }
101         }
102
103         if ($args['auto_redirect'] && ($pagelist->getTotal() == 1)) {
104             $page = $pagelist->first();
105             $request->redirect(WikiURL($page->getName(), false, 'absurl'), false);
106         }
107
108         return $pagelist;
109     }
110 }
111
112 // Local Variables:
113 // mode: php
114 // tab-width: 8
115 // c-basic-offset: 4
116 // c-hanging-comment-ender-p: nil
117 // indent-tabs-mode: nil
118 // End: