Merge "Fixing confusing function description"
[lhc/web/wiklou.git] / includes / api / ApiOpenSearch.php
1 <?php
2 /**
3 * Created on Oct 13, 2006
4 *
5 * Copyright © 2006 Yuri Astrakhan "<Firstname><Lastname>@gmail.com"
6 * Copyright © 2008 Brion Vibber <brion@wikimedia.org>
7 * Copyright © 2014 Brad Jorsch <bjorsch@wikimedia.org>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 */
26
27 /**
28 * @ingroup API
29 */
30 class ApiOpenSearch extends ApiBase {
31
32 private $format = null;
33 private $fm = null;
34
35 /**
36 * Get the output format
37 *
38 * @return string
39 */
40 protected function getFormat() {
41 if ( $this->format === null ) {
42 $params = $this->extractRequestParams();
43 $format = $params['format'];
44
45 $allowedParams = $this->getAllowedParams();
46 if ( !in_array( $format, $allowedParams['format'][ApiBase::PARAM_TYPE] ) ) {
47 $format = $allowedParams['format'][ApiBase::PARAM_DFLT];
48 }
49
50 if ( substr( $format, -2 ) === 'fm' ) {
51 $this->format = substr( $format, 0, -2 );
52 $this->fm = 'fm';
53 } else {
54 $this->format = $format;
55 $this->fm = '';
56 }
57 }
58 return $this->format;
59 }
60
61 public function getCustomPrinter() {
62 switch( $this->getFormat() ) {
63 case 'json':
64 return $this->getMain()->createPrinterByName( 'json' . $this->fm );
65
66 case 'xml':
67 $printer = $this->getMain()->createPrinterByName( 'xml' . $this->fm );
68 $printer->setRootElement( 'SearchSuggestion' );
69 return $printer;
70
71 default:
72 ApiBase::dieDebug( __METHOD__, "Unsupported format '{$this->getFormat()}'" );
73 }
74 }
75
76 public function execute() {
77 $params = $this->extractRequestParams();
78 $search = $params['search'];
79 $limit = $params['limit'];
80 $namespaces = $params['namespace'];
81 $suggest = $params['suggest'];
82
83 if ( $params['redirects'] === null ) {
84 // Backwards compatibility, don't resolve for JSON.
85 $resolveRedir = $this->getFormat() !== 'json';
86 } else {
87 $resolveRedir = $params['redirects'] === 'resolve';
88 }
89
90 $results = array();
91
92 if ( !$suggest || $this->getConfig()->get( 'EnableOpenSearchSuggest' ) ) {
93 // Open search results may be stored for a very long time
94 $this->getMain()->setCacheMaxAge( $this->getConfig()->get( 'SearchSuggestCacheExpiry' ) );
95 $this->getMain()->setCacheMode( 'public' );
96 $this->search( $search, $limit, $namespaces, $resolveRedir, $results );
97
98 // Allow hooks to populate extracts and images
99 wfRunHooks( 'ApiOpenSearchSuggest', array( &$results ) );
100
101 // Trim extracts, if necessary
102 $length = $this->getConfig()->get( 'OpenSearchDescriptionLength' );
103 foreach ( $results as &$r ) {
104 if ( is_string( $r['extract'] ) && !$r['extract trimmed'] ) {
105 $r['extract'] = self::trimExtract( $r['extract'], $length );
106 }
107 }
108 }
109
110 // Populate result object
111 $this->populateResult( $search, $results );
112 }
113
114 /**
115 * Perform the search
116 *
117 * @param string $search Text to search
118 * @param int $limit Maximum items to return
119 * @param array $namespaces Namespaces to search
120 * @param bool $resolveRedir Whether to resolve redirects
121 * @param array &$results Put results here
122 */
123 protected function search( $search, $limit, $namespaces, $resolveRedir, &$results ) {
124 // Find matching titles as Title objects
125 $searcher = new TitlePrefixSearch;
126 $titles = $searcher->searchWithVariants( $search, $limit, $namespaces );
127
128 if ( $resolveRedir ) {
129 // Query for redirects
130 $db = $this->getDb();
131 $lb = new LinkBatch( $titles );
132 $res = $db->select(
133 array( 'page', 'redirect' ),
134 array( 'page_namespace', 'page_title', 'rd_namespace', 'rd_title' ),
135 array(
136 'rd_from = page_id',
137 'rd_interwiki IS NULL OR rd_interwiki = ' . $db->addQuotes( '' ),
138 $lb->constructSet( 'page', $db ),
139 ),
140 __METHOD__
141 );
142 $redirects = array();
143 foreach ( $res as $row ) {
144 $redirects[$row->page_namespace][$row->page_title] =
145 array( $row->rd_namespace, $row->rd_title );
146 }
147
148 // Bypass any redirects
149 $seen = array();
150 foreach ( $titles as $title ) {
151 $ns = $title->getNamespace();
152 $dbkey = $title->getDBkey();
153 $from = null;
154 if ( isset( $redirects[$ns][$dbkey] ) ) {
155 list( $ns, $dbkey ) = $redirects[$ns][$dbkey];
156 $from = $title;
157 $title = Title::makeTitle( $ns, $dbkey );
158 }
159 if ( !isset( $seen[$ns][$dbkey] ) ) {
160 $seen[$ns][$dbkey] = true;
161 $results[$title->getArticleId()] = array(
162 'title' => $title,
163 'redirect from' => $from,
164 'extract' => false,
165 'extract trimmed' => false,
166 'image' => false,
167 'url' => wfExpandUrl( $title->getFullUrl(), PROTO_CURRENT ),
168 );
169 }
170 }
171 } else {
172 foreach ( $titles as $title ) {
173 $results[$title->getArticleId()] = array(
174 'title' => $title,
175 'redirect from' => null,
176 'extract' => false,
177 'extract trimmed' => false,
178 'image' => false,
179 'url' => wfExpandUrl( $title->getFullUrl(), PROTO_CURRENT ),
180 );
181 }
182 }
183 }
184
185 /**
186 * @param string $search
187 * @param array &$results
188 */
189 protected function populateResult( $search, &$results ) {
190 $result = $this->getResult();
191
192 switch ( $this->getFormat() ) {
193 case 'json':
194 // http://www.opensearch.org/Specifications/OpenSearch/Extensions/Suggestions/1.1
195 $result->addValue( null, 0, strval( $search ) );
196 $terms = array();
197 $descriptions = array();
198 $urls = array();
199 foreach ( $results as $r ) {
200 $terms[] = $r['title']->getPrefixedText();
201 $descriptions[] = strval( $r['extract'] );
202 $urls[] = $r['url'];
203 }
204 $result->addValue( null, 1, $terms );
205 $result->addValue( null, 2, $descriptions );
206 $result->addValue( null, 3, $urls );
207 break;
208
209 case 'xml':
210 // http://msdn.microsoft.com/en-us/library/cc891508%28v=vs.85%29.aspx
211 $imageKeys = array(
212 'source' => true,
213 'alt' => true,
214 'width' => true,
215 'height' => true,
216 'align' => true,
217 );
218 $items = array();
219 foreach ( $results as $r ) {
220 $item = array();
221 $result->setContent( $item, $r['title']->getPrefixedText(), 'Text' );
222 $result->setContent( $item, $r['url'], 'Url' );
223 if ( is_string( $r['extract'] ) && $r['extract'] !== '' ) {
224 $result->setContent( $item, $r['extract'], 'Description' );
225 }
226 if ( is_array( $r['image'] ) && isset( $r['image']['source'] ) ) {
227 $item['Image'] = array_intersect_key( $r['image'], $imageKeys );
228 }
229 $items[] = $item;
230 }
231 $result->setIndexedTagName( $items, 'Item' );
232 $result->addValue( null, 'version', '2.0' );
233 $result->addValue( null, 'xmlns', 'http://opensearch.org/searchsuggest2' );
234 $query = array();
235 $result->setContent( $query, strval( $search ) );
236 $result->addValue( null, 'Query', $query );
237 $result->addValue( null, 'Section', $items );
238 break;
239
240 default:
241 ApiBase::dieDebug( __METHOD__, "Unsupported format '{$this->getFormat()}'" );
242 }
243 }
244
245 public function getAllowedParams() {
246 return array(
247 'search' => null,
248 'limit' => array(
249 ApiBase::PARAM_DFLT => $this->getConfig()->get( 'OpenSearchDefaultLimit' ),
250 ApiBase::PARAM_TYPE => 'limit',
251 ApiBase::PARAM_MIN => 1,
252 ApiBase::PARAM_MAX => 100,
253 ApiBase::PARAM_MAX2 => 100
254 ),
255 'namespace' => array(
256 ApiBase::PARAM_DFLT => NS_MAIN,
257 ApiBase::PARAM_TYPE => 'namespace',
258 ApiBase::PARAM_ISMULTI => true
259 ),
260 'suggest' => false,
261 'redirects' => array(
262 ApiBase::PARAM_TYPE => array( 'return', 'resolve' ),
263 ),
264 'format' => array(
265 ApiBase::PARAM_DFLT => 'json',
266 ApiBase::PARAM_TYPE => array( 'json', 'jsonfm', 'xml', 'xmlfm' ),
267 )
268 );
269 }
270
271 protected function getExamplesMessages() {
272 return array(
273 'action=opensearch&search=Te'
274 => 'apihelp-opensearch-example-te',
275 );
276 }
277
278 public function getHelpUrls() {
279 return 'https://www.mediawiki.org/wiki/API:Opensearch';
280 }
281
282 /**
283 * Trim an extract to a sensible length.
284 *
285 * Adapted from Extension:OpenSearchXml, which adapted it from
286 * Extension:ActiveAbstract.
287 *
288 * @param string $text
289 * @param int $len Target length; actual result will continue to the end of a sentence.
290 * @return string
291 */
292 public static function trimExtract( $text, $length ) {
293 static $regex = null;
294
295 if ( $regex === null ) {
296 $endchars = array(
297 '([^\d])\.\s', '\!\s', '\?\s', // regular ASCII
298 '。', // full-width ideographic full-stop
299 '.', '!', '?', // double-width roman forms
300 '。', // half-width ideographic full stop
301 );
302 $endgroup = implode( '|', $endchars );
303 $end = "(?:$endgroup)";
304 $sentence = ".{{$length},}?$end+";
305 $regex = "/^($sentence)/u";
306 }
307
308 $matches = array();
309 if ( preg_match( $regex, $text, $matches ) ) {
310 return trim( $matches[1] );
311 } else {
312 // Just return the first line
313 $lines = explode( "\n", $text );
314 return trim( $lines[0] );
315 }
316 }
317
318 /**
319 * Fetch the template for a type.
320 *
321 * @param string $type MIME type
322 * @return string
323 */
324 public static function getOpenSearchTemplate( $type ) {
325 global $wgOpenSearchTemplate, $wgCanonicalServer;
326
327 if ( $wgOpenSearchTemplate && $type === 'application/x-suggestions+json' ) {
328 return $wgOpenSearchTemplate;
329 }
330
331 $ns = implode( '|', SearchEngine::defaultNamespaces() );
332 if ( !$ns ) {
333 $ns = "0";
334 }
335
336 switch ( $type ) {
337 case 'application/x-suggestions+json':
338 return $wgCanonicalServer . wfScript( 'api' )
339 . '?action=opensearch&search={searchTerms}&namespace=' . $ns;
340
341 case 'application/x-suggestions+xml':
342 return $wgCanonicalServer . wfScript( 'api' )
343 . '?action=opensearch&format=xml&search={searchTerms}&namespace=' . $ns;
344
345 default:
346 throw new MWException( __METHOD__ . ": Unknown type '$type'" );
347 }
348 }
349 }