44 $olderror = error_reporting( E_ERROR );
45 $resultSet = $this->db->query( $q,
'SearchPostgres',
true );
46 error_reporting( $olderror );
52 $olderror = error_reporting( E_ERROR );
53 $resultSet = $this->db->query( $q,
'SearchPostgres',
true );
54 error_reporting( $olderror );
67 wfDebug(
"parseQuery received: $term \n" );
69 # # No backslashes allowed
72 # # Collapse parens into nearby words:
73 $term = preg_replace(
'/\s*\(\s*/',
' (',
$term );
74 $term = preg_replace(
'/\s*\)\s*/',
') ',
$term );
76 # # Treat colons as word separators:
81 if ( preg_match_all(
'/([-!]?)(\S+)\s*/',
$term, $m, PREG_SET_ORDER ) ) {
82 foreach ( $m
as $terms ) {
83 if ( strlen( $terms[1] ) ) {
84 $searchstring .=
' & !';
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 .=
' & !';
93 $searchstring .=
" & $terms[2]";
98 # # Strip out leading junk
99 $searchstring = preg_replace(
'/^[\s\&\|]+/',
'', $searchstring );
101 # # Remove any doubled-up operators
102 $searchstring = preg_replace(
'/([\!\&\|]) +(?:[\&\|] +)+/',
"$1 ", $searchstring );
104 # # Remove any non-spaced operators (e.g. "Zounds!")
105 $searchstring = preg_replace(
'/([^ ])[\!\&\|]/',
"$1", $searchstring );
107 # # Remove any trailing whitespace or operators
108 $searchstring = preg_replace(
'/[\s\!\&\|]+$/',
'', $searchstring );
110 # # Remove unnecessary quotes around everything
111 $searchstring = preg_replace(
'/^[\'"](.*)[\'"]$/',
"$1", $searchstring );
113 # # Quote the whole thing
114 $searchstring = $this->db->addQuotes( $searchstring );
116 wfDebug(
"parseQuery returned: $searchstring \n" );
118 return $searchstring;
129 # Get the SQL fragment for the given term
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 );
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" );
139 $top =
$res->fetchRow()[0];
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 " .
154 if ( preg_match_all(
"/'([^']+)'/", $top, $m, PREG_SET_ORDER ) ) {
155 foreach ( $m
as $terms ) {
156 $this->searchTerms[$terms[1]] = $terms[1];
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)";
170 # # Namespaces - defaults to 0
173 $query .=
' AND page_namespace = 0';
176 $query .=
" AND page_namespace IN ($namespaces)";
180 $query .=
" ORDER BY score DESC, page_id DESC";
182 $query .= $this->db->limitResult(
'', $this->limit, $this->offset );
184 wfDebug(
"searchQuery returned: $query \n" );
189 # # Most of the work of these two functions are done automatically via triggers
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 " .
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 );
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
to move a page</td >< td > &*You are moving the page across namespaces
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.
The ContentHandler facility adds support for arbitrary content types on wiki instead of relying on wikitext for everything It was introduced in MediaWiki Each kind of and so on Built in content types are
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
in this case you re responsible for computing and outputting the entire conflict i e
whereas SearchGetNearMatch runs after $term
you don t have to do a grep find to see where the $wgReverseTitle variable is used
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php