Go to the documentation of this file.
64 return 'AND page_namespace IN (' .
$namespaces .
')';
75 return $this->db->limitResult( $sql, $this->limit, $this->offset );
87 return ' ORDER BY ftindex.[RANK] DESC';
98 private function getQuery( $filteredTerm, $fulltext ) {
101 $this->
queryRanking( $filteredTerm, $fulltext ) .
' ' );
111 return $fulltext ?
'si_text' :
'si_title';
121 private function queryMain( $filteredTerm, $fulltext ) {
122 $match = $this->
parseQuery( $filteredTerm, $fulltext );
123 $page = $this->db->tableName(
'page' );
124 $searchindex = $this->db->tableName(
'searchindex' );
126 return 'SELECT page_id, page_namespace, page_title, ftindex.[RANK]' .
127 "FROM $page,FREETEXTTABLE($searchindex , $match, LANGUAGE 'English') as ftindex " .
128 'WHERE page_id=ftindex.[KEY] ';
138 $this->searchTerms = [];
140 # @todo FIXME: This doesn't handle parenthetical expressions.
144 if ( preg_match_all(
'/([-+<>~]?)(([' . $lc .
']+)(\*?)|"[^"]*")/',
145 $filteredText, $m, PREG_SET_ORDER ) ) {
146 foreach ( $m
as $terms ) {
147 $q[] = $terms[1] . MediaWikiServices::getInstance()->getContentLanguage()->
148 normalizeForSearch( $terms[2] );
150 if ( !empty( $terms[3] ) ) {
151 $regexp = preg_quote( $terms[3],
'/' );
153 $regexp .=
"[0-9A-Za-z_]+";
156 $regexp = preg_quote( str_replace(
'"',
'', $terms[2] ),
'/' );
158 $this->searchTerms[] = $regexp;
162 $searchon = $this->db->addQuotes( implode(
',', $q ) );
164 return "$field, $searchon";
182 $table = $this->db->tableName(
'searchindex' );
183 $utf8bom =
'0xEFBBBF';
184 $si_title = $utf8bom . bin2hex(
$title );
185 $si_text = $utf8bom . bin2hex( $text );
186 $sql =
"DELETE FROM $table WHERE si_page = $id;";
187 $sql .=
"INSERT INTO $table (si_page, si_title, si_text) VALUES ($id, $si_title, $si_text)";
188 return $this->db->query( $sql,
'SearchMssql::update' );
200 $table = $this->db->tableName(
'searchindex' );
203 $utf8bom =
'0xEFBBBF';
204 $si_title = $utf8bom . bin2hex(
$title );
205 $sql =
"DELETE FROM $table WHERE si_page = $id;";
206 $sql .=
"INSERT INTO $table (si_page, si_title, si_text) VALUES ($id, $si_title, 0x00)";
207 return $this->db->query( $sql,
'SearchMssql::updateTitle' );
static legalSearchChars( $type=self::CHARS_ALL)
Get chars legal for search NOTE: usage as static is deprecated and preserved only as BC measure.
For QUnit the mediawiki tests qunit testrunner dependency will be added to any module whereas SearchGetNearMatch runs after $term
Search engine hook base class for Mssql (ConText).
queryLimit( $sql)
Return a LIMIT clause to limit results on the query.
queryMain( $filteredTerm, $fulltext)
Get the base part of the search query.
doSearchTitleInDB( $term)
Perform a title-only search query and return a result set.
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
Base search engine base class for database-backed searches.
to move a page</td >< td > &*You are moving the page across namespaces
namespace and then decline to actually register it file or subcat img or subcat $title
getQuery( $filteredTerm, $fulltext)
Construct the full SQL query to do the search.
updateTitle( $id, $title)
Update a search index record's title only.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
parseQuery( $filteredText, $fulltext)
This class is used for different SQL-based search engines shipped with MediaWiki.
doSearchTextInDB( $term)
Perform a full text search query and return a result set.
queryRanking( $filteredTerm, $fulltext)
Does not do anything for generic search engine subclasses may define this though.
update( $id, $title, $text)
Create or update the search index record for the given page.
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
getIndexField( $fulltext)
Picks which field to index on, depending on what type of 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 MediaWikiServices
filter( $text)
Return a 'cleaned up' search string.
queryNamespaces()
Return a partial WHERE clause to limit the search to the given namespaces.