Merge "Skin: Make skins aware of their registered skin name"
[lhc/web/wiklou.git] / includes / search / SearchNearMatcher.php
1 <?php
2
3 /**
4 * Implementation of near match title search.
5 * TODO: split into service/implementation.
6 */
7 class SearchNearMatcher {
8 /**
9 * @var Config
10 */
11 protected $config;
12
13 /**
14 * Current language
15 * @var Language
16 */
17 private $language;
18
19 public function __construct( Config $config, Language $lang ) {
20 $this->config = $config;
21 $this->language = $lang;
22 }
23
24 /**
25 * If an exact title match can be found, or a very slightly close match,
26 * return the title. If no match, returns NULL.
27 *
28 * @param string $searchterm
29 * @return Title
30 */
31 public function getNearMatch( $searchterm ) {
32 $title = $this->getNearMatchInternal( $searchterm );
33
34 Hooks::run( 'SearchGetNearMatchComplete', [ $searchterm, &$title ] );
35 return $title;
36 }
37
38 /**
39 * Do a near match (see SearchEngine::getNearMatch) and wrap it into a
40 * SearchResultSet.
41 *
42 * @param string $searchterm
43 * @return SearchResultSet
44 */
45 public function getNearMatchResultSet( $searchterm ) {
46 return new SearchNearMatchResultSet( $this->getNearMatch( $searchterm ) );
47 }
48
49 /**
50 * Really find the title match.
51 * @param string $searchterm
52 * @return null|Title
53 */
54 protected function getNearMatchInternal( $searchterm ) {
55 $lang = $this->language;
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 }