* API: added version information to each module (available via api.php?version command)
[lhc/web/wiklou.git] / includes / api / ApiQueryAllpages.php
1 <?php
2
3
4 /*
5 * Created on Sep 25, 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 ('ApiQueryBase.php');
30 }
31
32 class ApiQueryAllpages extends ApiQueryBase {
33
34 public function __construct($query, $moduleName, $generator = false) {
35 parent :: __construct($query, $moduleName, $generator);
36 }
37
38 public function execute() {
39 $aplimit = $apfrom = $apnamespace = $apfilterredir = null;
40 extract($this->extractRequestParams());
41
42 $db = $this->getDB();
43 $where = array (
44 'page_namespace' => $apnamespace
45 );
46 if (isset ($apfrom))
47 $where[] = 'page_title>=' . $db->addQuotes(ApiQueryBase :: titleToKey($apfrom));
48
49 if ($apfilterredir === 'redirects')
50 $where['page_is_redirect'] = 1;
51 elseif ($apfilterredir === 'nonredirects') $where['page_is_redirect'] = 0;
52
53 $this->profileDBIn();
54 $res = $db->select('page', array (
55 'page_id',
56 'page_namespace',
57 'page_title'
58 ), $where, __CLASS__ . '::' . __METHOD__, array (
59 'USE INDEX' => 'name_title',
60 'LIMIT' => $aplimit +1,
61 'ORDER BY' => 'page_namespace, page_title'
62 ));
63 $this->profileDBOut();
64
65 $data = array ();
66 ApiResult :: setIndexedTagName($data, 'p');
67 $count = 0;
68 while ($row = $db->fetchObject($res)) {
69 if (++ $count > $aplimit) {
70 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
71 $msg = array (
72 'continue' => 'apfrom=' . ApiQueryBase :: keyToTitle($row->page_title
73 ));
74 $this->getResult()->addValue('query-status', 'allpages', $msg);
75 break;
76 }
77
78 $title = Title :: makeTitle($row->page_namespace, $row->page_title);
79 // skip any pages that user has no rights to read
80 if ($title->userCanRead()) {
81
82 $id = intval($row->page_id);
83 $pagedata = array ();
84 $pagedata['id'] = $id;
85 if ($title->getNamespace() !== 0)
86 $pagedata['ns'] = $title->getNamespace();
87 $pagedata['title'] = $title->getPrefixedText();
88
89 $data[$id] = $pagedata;
90 }
91 }
92 $db->freeResult($res);
93 $this->getResult()->addValue('query', 'allpages', $data);
94 }
95
96 protected function getAllowedParams() {
97
98 global $wgContLang;
99 $validNamespaces = array ();
100 foreach (array_keys($wgContLang->getNamespaces()) as $ns) {
101 if ($ns >= 0)
102 $validNamespaces[] = $ns; // strval($ns);
103 }
104
105 return array (
106 'apfrom' => null,
107 'apnamespace' => array (
108 ApiBase :: PARAM_DFLT => 0,
109 ApiBase :: PARAM_TYPE => $validNamespaces
110 ),
111 'apfilterredir' => array (
112 ApiBase :: PARAM_DFLT => 'all',
113 ApiBase :: PARAM_TYPE => array (
114 'all',
115 'redirects',
116 'nonredirects'
117 )
118 ),
119 'aplimit' => array (
120 ApiBase :: PARAM_DFLT => 10,
121 ApiBase :: PARAM_TYPE => 'limit',
122 ApiBase :: PARAM_MIN => 1,
123 ApiBase :: PARAM_MAX1 => 500,
124 ApiBase :: PARAM_MAX2 => 5000
125 )
126 );
127 }
128
129 protected function getParamDescription() {
130 return array ();
131 }
132
133 protected function getDescription() {
134 return 'Enumerate all pages sequentially in a given namespace';
135 }
136
137 protected function getExamples() {
138 return array (
139 'api.php?action=query&list=allpages',
140 'api.php?action=query&list=allpages&apfrom=B&aplimit=5'
141 );
142 }
143
144 public function getCanGenerate() {
145 return true;
146 }
147
148 public function getVersion() {
149 return __CLASS__ . ': $Id$';
150 }
151 }
152 ?>