]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/TitleSearch.php
Put explicit warning message
[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 getDescription()
44     {
45         return _("Search the titles of all pages in this wiki.");
46     }
47
48     function getDefaultArguments()
49     {
50         // All PageList::supportedArgs, except 'pagename'
51         $args = array_merge(
52             PageList::supportedArgs(), // paging and more.
53             array('s' => false,
54                 'auto_redirect' => false,
55                 'noheader' => false,
56                 'exclude' => false,
57                 'info' => false,
58                 'case_exact' => false,
59                 'regex' => 'auto',
60                 'format' => false,
61             ));
62          unset($args['pagename']);
63          return $args;
64     }
65
66     // info arg allows multiple columns
67     // info=mtime,hits,summary,version,author,locked,minor
68     // exclude arg allows multiple pagenames exclude=Php*,RecentChanges
69
70     /**
71      * @param WikiDB $dbi
72      * @param string $argstr
73      * @param WikiRequest $request
74      * @param string $basepage
75      * @return bool
76      */
77     function run($dbi, $argstr, &$request, $basepage)
78     {
79         $args = $this->getArgs($argstr, $request);
80
81         if (empty($args['s'])) {
82             return HTML::p(array('class' => 'warning'),
83                            _("You must enter a search term."));
84         }
85
86         if (empty($args['sortby'])) {
87             $args['sortby'] = '-pagename';
88         }
89
90         // ^S != S*   ^  matches only beginning of phrase, not of word.
91         //            x* matches any word beginning with x
92         $query = new TextSearchQuery($args['s'], $args['case_exact'], $args['regex']);
93         $pages = $dbi->titleSearch($query, $args['sortby'], $args['limit'], $args['exclude']);
94
95         $pagelist = new PageList($args['info'], $args['exclude'], $args);
96         $pagelist->addPages($pages);
97
98         // Provide an unknown WikiWord link to allow for page creation
99         // when a search returns no results
100         if (!$args['noheader']) {
101             $s = $args['s'];
102             $total = $pagelist->getTotal();
103             if (!$total and !$query->_regex) {
104                 $s = WikiLink($args['s'], 'auto');
105             }
106             if ($total) {
107                 $pagelist->setCaption(fmt("Title search results for ā€œ%sā€ (%d total)", $s, $total));
108             } else {
109                 $pagelist->setCaption(fmt("Title search results for ā€œ%sā€", $s));
110             }
111         }
112
113         if ($args['auto_redirect'] && ($pagelist->getTotal() == 1)) {
114             $page = $pagelist->first();
115             $request->redirect(WikiURL($page->getName(), array(), 'absurl'), false);
116         }
117
118         return $pagelist;
119     }
120 }
121
122 // Local Variables:
123 // mode: php
124 // tab-width: 8
125 // c-basic-offset: 4
126 // c-hanging-comment-ender-p: nil
127 // indent-tabs-mode: nil
128 // End: