Yet more doc tweaks:
[lhc/web/wiklou.git] / includes / SearchPostgres.php
1 <?php
2 # Copyright (C) 2006-2007 Greg Sabino Mullane <greg@turnstep.com>
3 # http://www.mediawiki.org/
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License along
16 # with this program; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 # http://www.gnu.org/copyleft/gpl.html
19
20 /**
21 * Search engine hook base class for Postgres
22 * @addtogroup Search
23 */
24 class SearchPostgres extends SearchEngine {
25
26 function SearchPostgres( $db ) {
27 $this->db = $db;
28 }
29
30 /**
31 * Perform a full text search query via tsearch2 and return a result set.
32 * Currently searches a page's current title (page.page_title) and
33 * latest revision article text (pagecontent.old_text)
34 *
35 * @param string $term - Raw search term
36 * @return PostgresSearchResultSet
37 * @access public
38 */
39 function searchTitle( $term ) {
40 $resultSet = $this->db->resultObject( $this->db->query( $this->searchQuery( $term , 'titlevector', 'page_title' )));
41 return new PostgresSearchResultSet( $resultSet, $this->searchTerms );
42 }
43 function searchText( $term ) {
44 $resultSet = $this->db->resultObject( $this->db->query( $this->searchQuery( $term, 'textvector', 'old_text' )));
45 return new PostgresSearchResultSet( $resultSet, $this->searchTerms );
46 }
47
48
49 /*
50 * Transform the user's search string into a better form for tsearch2
51 */
52 function parseQuery( $term ) {
53
54 wfDebug( "parseQuery received: $term" );
55
56 ## No backslashes allowed
57 $term = preg_replace('/\\\/', '', $term);
58
59 ## Collapse parens into nearby words:
60 $term = preg_replace('/\s*\(\s*/', ' (', $term);
61 $term = preg_replace('/\s*\)\s*/', ') ', $term);
62
63 ## Treat colons as word separators:
64 $term = preg_replace('/:/', ' ', $term);
65
66 $this->searchTerms = array();
67 $m = array();
68 $searchstring = '';
69 if( preg_match_all('/([-!]?)(\S+)\s*/', $term, $m, PREG_SET_ORDER ) ) {
70 foreach( $m as $terms ) {
71 if (strlen($terms[1])) {
72 $searchstring .= ' & !';
73 }
74 if (strtolower($terms[2]) === 'and') {
75 $searchstring .= ' & ';
76 }
77 else if (strtolower($terms[2]) === 'or' or $terms[2] === '|') {
78 $searchstring .= ' | ';
79 }
80 else if (strtolower($terms[2]) === 'not') {
81 $searchstring .= ' & !';
82 }
83 else {
84 $searchstring .= " & $terms[2]";
85 $safeterm = preg_replace('/\W+/', '', $terms[2]);
86 $this->searchTerms[$safeterm] = $safeterm;
87 }
88 }
89 }
90
91 ## Strip out leading junk
92 $searchstring = preg_replace('/^[\s\&\|]+/', '', $searchstring);
93
94 ## Remove any doubled-up operators
95 $searchstring = preg_replace('/([\!\&\|]) +(?:[\&\|] +)+/', "$1 ", $searchstring);
96
97 ## Remove any non-spaced operators (e.g. "Zounds!")
98 $searchstring = preg_replace('/([^ ])[\!\&\|]/', "$1", $searchstring);
99
100 ## Remove any trailing whitespace or operators
101 $searchstring = preg_replace('/[\s\!\&\|]+$/', '', $searchstring);
102
103 ## Remove unnecessary quotes around everything
104 $searchstring = preg_replace('/^[\'"](.*)[\'"]$/', "$1", $searchstring);
105
106 ## Quote the whole thing
107 $searchstring = $this->db->addQuotes($searchstring);
108
109 wfDebug( "parseQuery returned: $searchstring" );
110
111 return $searchstring;
112
113 }
114
115 /**
116 * Construct the full SQL query to do the search.
117 * @param string $filteredTerm
118 * @param string $fulltext
119 * @private
120 */
121 function searchQuery( $term, $fulltext, $colname ) {
122
123 $searchstring = $this->parseQuery( $term );
124
125 ## We need a separate query here so gin does not complain about empty searches
126 $SQL = "SELECT to_tsquery('default',$searchstring)";
127 $res = $this->db->doQuery($SQL);
128 if (!$res) {
129 ## TODO: Better output (example to catch: one 'two)
130 die ("Sorry, that was not a valid search string. Please go back and try again");
131 }
132 $top = pg_fetch_result($res,0,0);
133
134 if ($top === "") { ## e.g. if only stopwords are used XXX return something better
135 $query = "SELECT page_id, page_namespace, page_title, 0 AS score ".
136 "FROM page p, revision r, pagecontent c WHERE p.page_latest = r.rev_id " .
137 "AND r.rev_text_id = c.old_id AND 1=0";
138 }
139 else {
140 $query = "SELECT page_id, page_namespace, page_title, ".
141 "rank($fulltext, to_tsquery('default',$searchstring),5) AS score ".
142 "FROM page p, revision r, pagecontent c WHERE p.page_latest = r.rev_id " .
143 "AND r.rev_text_id = c.old_id AND $fulltext @@ to_tsquery('default',$searchstring)";
144 }
145
146 ## Redirects
147 if (! $this->showRedirects)
148 $query .= ' AND page_is_redirect = 0'; ## IS FALSE
149
150 ## Namespaces - defaults to 0
151 if ( count($this->namespaces) < 1)
152 $query .= ' AND page_namespace = 0';
153 else {
154 $namespaces = implode( ',', $this->namespaces );
155 $query .= " AND page_namespace IN ($namespaces)";
156 }
157
158 $query .= " ORDER BY score DESC, page_id DESC";
159
160 $query .= $this->db->limitResult( '', $this->limit, $this->offset );
161
162 wfDebug( "searchQuery returned: $query" );
163
164 return $query;
165 }
166
167 ## Most of the work of these two functions are done automatically via triggers
168
169 function update( $pageid, $title, $text ) {
170 ## We don't want to index older revisions
171 $SQL = "UPDATE pagecontent SET textvector = NULL WHERE old_id = ".
172 "(SELECT rev_text_id FROM revision WHERE rev_page = $pageid ".
173 "ORDER BY rev_text_id DESC LIMIT 1 OFFSET 1)";
174 $this->db->doQuery($SQL);
175 return true;
176 }
177
178 function updateTitle( $id, $title ) {
179 return true;
180 }
181
182 } ## end of the SearchPostgres class
183
184 /**
185 * @addtogroup Search
186 */
187 class PostgresSearchResult extends SearchResult {
188 function PostgresSearchResult( $row ) {
189 $this->mTitle = Title::makeTitle( $row->page_namespace, $row->page_title );
190 $this->score = $row->score;
191 }
192 function getScore() {
193 return $this->score;
194 }
195 }
196
197 /**
198 * @addtogroup Search
199 */
200 class PostgresSearchResultSet extends SearchResultSet {
201 function PostgresSearchResultSet( $resultSet, $terms ) {
202 $this->mResultSet = $resultSet;
203 $this->mTerms = $terms;
204 }
205
206 function termMatches() {
207 return $this->mTerms;
208 }
209
210 function numRows() {
211 return $this->mResultSet->numRows();
212 }
213
214 function next() {
215 $row = $this->mResultSet->fetchObject();
216 if( $row === false ) {
217 return false;
218 } else {
219 return new PostgresSearchResult( $row );
220 }
221 }
222 }
223
224
225 ?>