MediaWiki REL1_31
SearchNearMatcher.php
Go to the documentation of this file.
1<?php
2
11 protected $config;
12
17 private $language;
18
19 public function __construct( Config $config, Language $lang ) {
20 $this->config = $config;
21 $this->language = $lang;
22 }
23
31 public function getNearMatch( $searchterm ) {
32 $title = $this->getNearMatchInternal( $searchterm );
33
34 Hooks::run( 'SearchGetNearMatchComplete', [ $searchterm, &$title ] );
35 return $title;
36 }
37
45 public function getNearMatchResultSet( $searchterm ) {
46 return new SearchNearMatchResultSet( $this->getNearMatch( $searchterm ) );
47 }
48
54 protected function getNearMatchInternal( $searchterm ) {
56
57 $allSearchTerms = [ $searchterm ];
58
59 if ( $lang->hasVariants() ) {
60 $allSearchTerms = array_unique( array_merge(
61 $allSearchTerms,
62 $lang->autoConvertToAllVariants( $searchterm )
63 ) );
64 }
65
66 $titleResult = null;
67 if ( !Hooks::run( 'SearchGetNearMatchBefore', [ $allSearchTerms, &$titleResult ] ) ) {
68 return $titleResult;
69 }
70
71 foreach ( $allSearchTerms as $term ) {
72 # Exact match? No need to look further.
73 $title = Title::newFromText( $term );
74 if ( is_null( $title ) ) {
75 return null;
76 }
77
78 # Try files if searching in the Media: namespace
79 if ( $title->getNamespace() == NS_MEDIA ) {
80 $title = Title::makeTitle( NS_FILE, $title->getText() );
81 }
82
83 if ( $title->isSpecialPage() || $title->isExternal() || $title->exists() ) {
84 return $title;
85 }
86
87 # See if it still otherwise has content is some sane sense
88 $page = WikiPage::factory( $title );
89 if ( $page->hasViewableContent() ) {
90 return $title;
91 }
92
93 if ( !Hooks::run( 'SearchAfterNoDirectMatch', [ $term, &$title ] ) ) {
94 return $title;
95 }
96
97 # Now try all lower case (i.e. first letter capitalized)
98 $title = Title::newFromText( $lang->lc( $term ) );
99 if ( $title && $title->exists() ) {
100 return $title;
101 }
102
103 # Now try capitalized string
104 $title = Title::newFromText( $lang->ucwords( $term ) );
105 if ( $title && $title->exists() ) {
106 return $title;
107 }
108
109 # Now try all upper case
110 $title = Title::newFromText( $lang->uc( $term ) );
111 if ( $title && $title->exists() ) {
112 return $title;
113 }
114
115 # Now try Word-Caps-Breaking-At-Word-Breaks, for hyphenated names etc
116 $title = Title::newFromText( $lang->ucwordbreaks( $term ) );
117 if ( $title && $title->exists() ) {
118 return $title;
119 }
120
121 // Give hooks a chance at better match variants
122 $title = null;
123 if ( !Hooks::run( 'SearchGetNearMatch', [ $term, &$title ] ) ) {
124 return $title;
125 }
126 }
127
128 $title = Title::newFromText( $searchterm );
129
130 # Entering an IP address goes to the contributions page
131 if ( $this->config->get( 'EnableSearchContributorsByIP' ) ) {
132 if ( ( $title->getNamespace() == NS_USER && User::isIP( $title->getText() ) )
133 || User::isIP( trim( $searchterm ) ) ) {
134 return SpecialPage::getTitleFor( 'Contributions', $title->getDBkey() );
135 }
136 }
137
138 # Entering a user goes to the user page whether it's there or not
139 if ( $title->getNamespace() == NS_USER ) {
140 return $title;
141 }
142
143 # Go to images that exist even if there's no local page.
144 # There may have been a funny upload, or it may be on a shared
145 # file repository such as Wikimedia Commons.
146 if ( $title->getNamespace() == NS_FILE ) {
147 $image = wfFindFile( $title );
148 if ( $image ) {
149 return $title;
150 }
151 }
152
153 # MediaWiki namespace? Page may be "implied" if not customized.
154 # Just return it, with caps forced as the message system likes it.
155 if ( $title->getNamespace() == NS_MEDIAWIKI ) {
156 return Title::makeTitle( NS_MEDIAWIKI, $lang->ucfirst( $title->getText() ) );
157 }
158
159 # Quoted term? Try without the quotes...
160 $matches = [];
161 if ( preg_match( '/^"([^"]+)"$/', $searchterm, $matches ) ) {
162 return self::getNearMatch( $matches[1] );
163 }
164
165 return null;
166 }
167}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two distribute and or modify the software for each author s protection and we want to make certain that everyone understands that there is no warranty for this free software If the software is modified by someone else and passed we want its recipients to know that what they have is not the so that any problems introduced by others will not reflect on the original authors reputations any free program is threatened constantly by software patents We wish to avoid the danger that redistributors of a free program will individually obtain patent in effect making the program proprietary To prevent we have made it clear that any patent must be licensed for everyone s free use or not licensed at all The precise terms and conditions for distribution and modification follow GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR DISTRIBUTION AND MODIFICATION This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License The refers to any such program or and a work based on the Program means either the Program or any derivative work under copyright a work containing the Program or a portion of either verbatim or with modifications and or translated into another language(Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying
wfFindFile( $title, $options=[])
Find a file.
Internationalisation code.
Definition Language.php:35
A SearchResultSet wrapper for SearchNearMatcher.
Implementation of near match title search.
getNearMatch( $searchterm)
If an exact title match can be found, or a very slightly close match, return the title.
Language $language
Current language.
getNearMatchInternal( $searchterm)
Really find the title match.
__construct(Config $config, Language $lang)
getNearMatchResultSet( $searchterm)
Do a near match (see SearchEngine::getNearMatch) and wrap it into a SearchResultSet.
static isIP( $name)
Does the string match an anonymous IP address?
Definition User.php:943
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check $image
Definition hooks.txt:895
For QUnit the mediawiki tests qunit testrunner dependency will be added to any module whereas SearchGetNearMatch runs after $term
Definition hooks.txt:2845
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:964
const NS_FILE
Definition Defines.php:80
const NS_MEDIA
Definition Defines.php:62
Interface for configuration instances.
Definition Config.php:28
if(!isset( $args[0])) $lang