44 $q = $this->
searchQuery( $term,
'titlevector',
'page_title' );
45 $olderror = error_reporting( E_ERROR );
47 $resultSet =
$dbr->query( $q,
'SearchPostgres', IDatabase::QUERY_SILENCE_ERRORS );
48 error_reporting( $olderror );
53 $q = $this->
searchQuery( $term,
'textvector',
'old_text' );
54 $olderror = error_reporting( E_ERROR );
56 $resultSet =
$dbr->query( $q,
'SearchPostgres', IDatabase::QUERY_SILENCE_ERRORS );
57 error_reporting( $olderror );
70 wfDebug(
"parseQuery received: $term" );
73 $term = preg_replace(
'/\\\/',
'', $term );
76 $term = preg_replace(
'/\s*\(\s*/',
' (', $term );
77 $term = preg_replace(
'/\s*\)\s*/',
') ', $term );
80 $term = preg_replace(
'/:/',
' ', $term );
84 if ( preg_match_all(
'/([-!]?)(\S+)\s*/', $term, $m, PREG_SET_ORDER ) ) {
85 foreach ( $m as $terms ) {
86 if ( strlen( $terms[1] ) ) {
87 $searchstring .=
' & !';
89 if ( strtolower( $terms[2] ) ===
'and' ) {
90 $searchstring .=
' & ';
91 } elseif ( strtolower( $terms[2] ) ===
'or' || $terms[2] ===
'|' ) {
92 $searchstring .=
' | ';
93 } elseif ( strtolower( $terms[2] ) ===
'not' ) {
94 $searchstring .=
' & !';
96 $searchstring .=
" & $terms[2]";
102 $searchstring = preg_replace(
'/^[\s\&\|]+/',
'', $searchstring );
105 $searchstring = preg_replace(
'/([\!\&\|]) +(?:[\&\|] +)+/',
"$1 ", $searchstring );
108 $searchstring = preg_replace(
'/([^ ])[\!\&\|]/',
"$1", $searchstring );
111 $searchstring = preg_replace(
'/[\s\!\&\|]+$/',
'', $searchstring );
114 $searchstring = preg_replace(
'/^[\'"](.*)[\'"]$/',
"$1", $searchstring );
118 $searchstring =
$dbr->addQuotes( $searchstring );
120 wfDebug(
"parseQuery returned: $searchstring" );
122 return $searchstring;
133 # Get the SQL fragment for the given term
137 $sql =
"SELECT to_tsquery($searchstring)";
139 $res =
$dbr->query( $sql, __METHOD__ );
142 die(
"Sorry, that was not a valid search string. Please go back and try again" );
144 $top =
$res->fetchRow()[0];
146 $this->searchTerms = [];
147 $slotRoleStore = MediaWikiServices::getInstance()->getSlotRoleStore();
149 $query =
"SELECT page_id, page_namespace, page_title, 0 AS score " .
150 "FROM page p, revision r, slots s, content c, \"text\" pc " .
151 "WHERE p.page_latest = r.rev_id " .
152 "AND s.slot_revision_id = r.rev_id " .
153 "AND s.slot_role_id = " . $slotRoleStore->getId( SlotRecord::MAIN ) .
" " .
154 "AND c.content_id = s.slot_content_id " .
155 "AND pc.old_id = substring( c.content_address from '^tt:([0-9]+)$' )::int " .
159 if ( preg_match_all(
"/'([^']+)'/", $top, $m, PREG_SET_ORDER ) ) {
160 foreach ( $m as $terms ) {
161 $this->searchTerms[$terms[1]] = $terms[1];
165 $query =
"SELECT page_id, page_namespace, page_title, " .
166 "ts_rank($fulltext, to_tsquery($searchstring), 5) AS score " .
167 "FROM page p, revision r, slots s, content c, \"text\" pc " .
168 "WHERE p.page_latest = r.rev_id " .
169 "AND s.slot_revision_id = r.rev_id " .
170 "AND s.slot_role_id = " . $slotRoleStore->getId( SlotRecord::MAIN ) .
" " .
171 "AND c.content_id = s.slot_content_id " .
172 "AND pc.old_id = substring( c.content_address from '^tt:([0-9]+)$' )::int " .
173 "AND $fulltext @@ to_tsquery($searchstring)";
176 if ( $this->namespaces !==
null ) {
177 if ( count( $this->namespaces ) < 1 ) {
178 $query .=
' AND page_namespace = 0';
181 $query .=
" AND page_namespace IN ($namespaces)";
185 $query .=
" ORDER BY score DESC, page_id DESC";
187 $query .=
$dbr->limitResult(
'', $this->limit, $this->offset );
189 wfDebug(
"searchQuery returned: $query" );
198 $slotRoleStore = MediaWikiServices::getInstance()->getSlotRoleStore();
199 $sql =
"UPDATE \"text\" SET textvector = NULL " .
200 "WHERE textvector IS NOT NULL " .
202 "(SELECT DISTINCT substring( c.content_address from '^tt:([0-9]+)$' )::int AS old_rev_text_id " .
203 " FROM content c, slots s, revision r " .
204 " WHERE r.rev_page = $pageid " .
205 " AND s.slot_revision_id = r.rev_id " .
206 " AND s.slot_role_id = " . $slotRoleStore->getId( SlotRecord::MAIN ) .
" " .
207 " AND c.content_id = s.slot_content_id " .
208 " ORDER BY old_rev_text_id DESC OFFSET 1)";
210 $dbw = $this->lb->getConnectionRef(
DB_PRIMARY );
211 $dbw->query( $sql, __METHOD__ );
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
Base search engine base class for database-backed searches.
Search engine hook base class for Postgres.
doSearchTitleInDB( $term)
Perform a full text search query via tsearch2 and return a result set.
parseQuery( $term)
Transform the user's search string into a better form for tsearch2 Returns an SQL fragment consisting...
update( $pageid, $title, $text)
Create or update the search index record for the given page.
doSearchTextInDB( $term)
Perform a full text search query and return a result set.
searchQuery( $term, $fulltext, $colname)
Construct the full SQL query to do the search.
updateTitle( $id, $title)
Update a search index record's title only.
This class is used for different SQL-based search engines shipped with MediaWiki.