9e5afcb8bef22ae00c9ada8e49852ff510a3f181
[lhc/web/wiklou.git] / includes / api / ApiOpenSearch.php
1 <?php
2
3
4 /*
5 * Created on Oct 13, 2006
6 *
7 * API for MediaWiki 1.8+
8 *
9 * Copyright (C) 2006 Yuri Astrakhan <FirstnameLastname@gmail.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 * http://www.gnu.org/copyleft/gpl.html
25 */
26
27 if (!defined('MEDIAWIKI')) {
28 // Eclipse helper - will be ignored in production
29 require_once ("ApiBase.php");
30 }
31
32 class ApiOpenSearch extends ApiBase {
33
34 public function __construct($main, $action) {
35 parent :: __construct($main, $action);
36 }
37
38 public function getCustomPrinter() {
39 return $this->getMain()->createPrinterByName('json');
40 }
41
42 public function execute() {
43 $search = null;
44 extract($this->ExtractRequestParams());
45
46 $title = Title :: newFromText($search);
47 if(!$title)
48 return; // Return empty result
49
50 // Prepare nested request
51 $params = new FauxRequest(array (
52 'action' => 'query',
53 'list' => 'allpages',
54 'apnamespace' => $title->getNamespace(),
55 'aplimit' => 10,
56 'apprefix' => $title->getDBkey()
57 ));
58
59 // Execute
60 $module = new ApiMain($params);
61 $module->execute();
62
63 // Get resulting data
64 $data = & $module->getResultData();
65
66 // Reformat useful data for future printing by JSON engine
67 $srchres = array ();
68 foreach ($data['query']['allpages'] as $pageid => & $pageinfo) {
69 // Note: this data will no be printable by the xml engine
70 // because it does not support lists of unnamed items
71 $srchres[] = $pageinfo['title'];
72 }
73
74 // Set top level elements
75 $result = $this->getResult();
76 $result->addValue(null, 0, $search);
77 $result->addValue(null, 1, $srchres);
78 }
79
80 protected function getAllowedParams() {
81 return array (
82 'search' => null
83 );
84 }
85
86 protected function getParamDescription() {
87 return array (
88 'search' => 'Search string'
89 );
90 }
91
92 protected function getDescription() {
93 return 'This module implements OpenSearch protocol';
94 }
95
96 protected function getExamples() {
97 return array (
98 'api.php?action=opensearch&search=Te'
99 );
100 }
101
102 public function getVersion() {
103 return __CLASS__ . ': $Id$';
104 }
105 }
106 ?>