Merge "Improve changePassword.php error handling"
[lhc/web/wiklou.git] / includes / search / SearchPostgres.php
1 <?php
2 /**
3 * PostgreSQL search engine
4 *
5 * Copyright © 2006-2007 Greg Sabino Mullane <greg@turnstep.com>
6 * https://www.mediawiki.org/
7 *
8 * This program 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 * This program 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 this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
22 *
23 * @file
24 * @ingroup Search
25 */
26 use MediaWiki\MediaWikiServices;
27 use MediaWiki\Revision\SlotRecord;
28
29 /**
30 * Search engine hook base class for Postgres
31 * @ingroup Search
32 */
33 class SearchPostgres extends SearchDatabase {
34 /**
35 * Perform a full text search query via tsearch2 and return a result set.
36 * Currently searches a page's current title (page.page_title) and
37 * latest revision article text (pagecontent.old_text)
38 *
39 * @param string $term Raw search term
40 * @return SqlSearchResultSet
41 */
42 protected function doSearchTitleInDB( $term ) {
43 $q = $this->searchQuery( $term, 'titlevector', 'page_title' );
44 $olderror = error_reporting( E_ERROR );
45 $resultSet = $this->db->query( $q, 'SearchPostgres', true );
46 error_reporting( $olderror );
47 return new SqlSearchResultSet( $resultSet, $this->searchTerms );
48 }
49
50 protected function doSearchTextInDB( $term ) {
51 $q = $this->searchQuery( $term, 'textvector', 'old_text' );
52 $olderror = error_reporting( E_ERROR );
53 $resultSet = $this->db->query( $q, 'SearchPostgres', true );
54 error_reporting( $olderror );
55 return new SqlSearchResultSet( $resultSet, $this->searchTerms );
56 }
57
58 /**
59 * Transform the user's search string into a better form for tsearch2
60 * Returns an SQL fragment consisting of quoted text to search for.
61 *
62 * @param string $term
63 *
64 * @return string
65 */
66 private function parseQuery( $term ) {
67 wfDebug( "parseQuery received: $term \n" );
68
69 # # No backslashes allowed
70 $term = preg_replace( '/\\\/', '', $term );
71
72 # # Collapse parens into nearby words:
73 $term = preg_replace( '/\s*\(\s*/', ' (', $term );
74 $term = preg_replace( '/\s*\)\s*/', ') ', $term );
75
76 # # Treat colons as word separators:
77 $term = preg_replace( '/:/', ' ', $term );
78
79 $searchstring = '';
80 $m = [];
81 if ( preg_match_all( '/([-!]?)(\S+)\s*/', $term, $m, PREG_SET_ORDER ) ) {
82 foreach ( $m as $terms ) {
83 if ( strlen( $terms[1] ) ) {
84 $searchstring .= ' & !';
85 }
86 if ( strtolower( $terms[2] ) === 'and' ) {
87 $searchstring .= ' & ';
88 } elseif ( strtolower( $terms[2] ) === 'or' || $terms[2] === '|' ) {
89 $searchstring .= ' | ';
90 } elseif ( strtolower( $terms[2] ) === 'not' ) {
91 $searchstring .= ' & !';
92 } else {
93 $searchstring .= " & $terms[2]";
94 }
95 }
96 }
97
98 # # Strip out leading junk
99 $searchstring = preg_replace( '/^[\s\&\|]+/', '', $searchstring );
100
101 # # Remove any doubled-up operators
102 $searchstring = preg_replace( '/([\!\&\|]) +(?:[\&\|] +)+/', "$1 ", $searchstring );
103
104 # # Remove any non-spaced operators (e.g. "Zounds!")
105 $searchstring = preg_replace( '/([^ ])[\!\&\|]/', "$1", $searchstring );
106
107 # # Remove any trailing whitespace or operators
108 $searchstring = preg_replace( '/[\s\!\&\|]+$/', '', $searchstring );
109
110 # # Remove unnecessary quotes around everything
111 $searchstring = preg_replace( '/^[\'"](.*)[\'"]$/', "$1", $searchstring );
112
113 # # Quote the whole thing
114 $searchstring = $this->db->addQuotes( $searchstring );
115
116 wfDebug( "parseQuery returned: $searchstring \n" );
117
118 return $searchstring;
119 }
120
121 /**
122 * Construct the full SQL query to do the search.
123 * @param string $term
124 * @param string $fulltext
125 * @param string $colname
126 * @return string
127 */
128 private function searchQuery( $term, $fulltext, $colname ) {
129 # Get the SQL fragment for the given term
130 $searchstring = $this->parseQuery( $term );
131
132 # # We need a separate query here so gin does not complain about empty searches
133 $sql = "SELECT to_tsquery($searchstring)";
134 $res = $this->db->query( $sql );
135 if ( !$res ) {
136 # # TODO: Better output (example to catch: one 'two)
137 die( "Sorry, that was not a valid search string. Please go back and try again" );
138 }
139 $top = $res->fetchRow()[0];
140
141 $this->searchTerms = [];
142 $slotRoleStore = MediaWikiServices::getInstance()->getSlotRoleStore();
143 if ( $top === "" ) { # # e.g. if only stopwords are used XXX return something better
144 $query = "SELECT page_id, page_namespace, page_title, 0 AS score " .
145 "FROM page p, revision r, slots s, content c, pagecontent pc " .
146 "WHERE p.page_latest = r.rev_id " .
147 "AND s.slot_revision_id = r.rev_id " .
148 "AND s.slot_role_id = " . $slotRoleStore->getId( SlotRecord::MAIN ) . " " .
149 "AND c.content_id = s.slot_content_id " .
150 "AND pc.old_id = substring( c.content_address from '^tt:([0-9]+)$' )::int " .
151 "AND 1=0";
152 } else {
153 $m = [];
154 if ( preg_match_all( "/'([^']+)'/", $top, $m, PREG_SET_ORDER ) ) {
155 foreach ( $m as $terms ) {
156 $this->searchTerms[$terms[1]] = $terms[1];
157 }
158 }
159
160 $query = "SELECT page_id, page_namespace, page_title, " .
161 "ts_rank($fulltext, to_tsquery($searchstring), 5) AS score " .
162 "FROM page p, revision r, slots s, content c, pagecontent pc " .
163 "WHERE p.page_latest = r.rev_id " .
164 "AND s.slot_revision_id = r.rev_id " .
165 "AND s.slot_role_id = " . $slotRoleStore->getId( SlotRecord::MAIN ) . " " .
166 "AND c.content_id = s.slot_content_id " .
167 "AND pc.old_id = substring( c.content_address from '^tt:([0-9]+)$' )::int " .
168 "AND $fulltext @@ to_tsquery($searchstring)";
169 }
170 # # Namespaces - defaults to 0
171 if ( !is_null( $this->namespaces ) ) { // null -> search all
172 if ( count( $this->namespaces ) < 1 ) {
173 $query .= ' AND page_namespace = 0';
174 } else {
175 $namespaces = $this->db->makeList( $this->namespaces );
176 $query .= " AND page_namespace IN ($namespaces)";
177 }
178 }
179
180 $query .= " ORDER BY score DESC, page_id DESC";
181
182 $query .= $this->db->limitResult( '', $this->limit, $this->offset );
183
184 wfDebug( "searchQuery returned: $query \n" );
185
186 return $query;
187 }
188
189 # # Most of the work of these two functions are done automatically via triggers
190
191 function update( $pageid, $title, $text ) {
192 # # We don't want to index older revisions
193 $slotRoleStore = MediaWikiServices::getInstance()->getSlotRoleStore();
194 $sql = "UPDATE pagecontent SET textvector = NULL " .
195 "WHERE textvector IS NOT NULL " .
196 "AND old_id IN " .
197 "(SELECT DISTINCT substring( c.content_address from '^tt:([0-9]+)$' )::int AS old_rev_text_id " .
198 " FROM content c, slots s, revision r " .
199 " WHERE r.rev_page = $pageid " .
200 " AND s.slot_revision_id = r.rev_id " .
201 " AND s.slot_role_id = " . $slotRoleStore->getId( SlotRecord::MAIN ) . " " .
202 " AND c.content_id = s.slot_content_id " .
203 " ORDER BY old_rev_text_id DESC OFFSET 1)";
204 $this->db->query( $sql );
205 return true;
206 }
207
208 function updateTitle( $id, $title ) {
209 return true;
210 }
211
212 }