API: Standardize limits. Use ApiBase constants to avoid similar breakage and inconsis...
[lhc/web/wiklou.git] / includes / api / ApiQueryDeletedrevs.php
1 <?php
2
3 /*
4 * Created on Jul 2, 2007
5 *
6 * API for MediaWiki 1.8+
7 *
8 * Copyright (C) 2007 Roan Kattouw <Firstname>.<Lastname>@home.nl
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 * http://www.gnu.org/copyleft/gpl.html
24 */
25
26 if (!defined('MEDIAWIKI')) {
27 // Eclipse helper - will be ignored in production
28 require_once ('ApiQueryBase.php');
29 }
30
31 /**
32 * Query module to enumerate all available pages.
33 *
34 * @addtogroup API
35 */
36 class ApiQueryDeletedrevs extends ApiQueryBase {
37
38 public function __construct($query, $moduleName) {
39 parent :: __construct($query, $moduleName, 'dr');
40 }
41
42 public function execute() {
43
44 global $wgUser;
45 // Before doing anything at all, let's check permissions
46 if(!$wgUser->isAllowed('deletedhistory'))
47 $this->dieUsage('You don\'t have permission to view deleted revision information', 'permissiondenied');
48
49 $db = $this->getDB();
50 $params = $this->extractRequestParams();
51 $prop = array_flip($params['prop']);
52 $fld_revid = isset($prop['revid']);
53 $fld_user = isset($prop['user']);
54 $fld_comment = isset($prop['comment']);
55 $fld_minor = isset($prop['minor']);
56 $fld_len = isset($prop['len']);
57 $fld_content = isset($prop['content']);
58 $fld_token = isset($prop['token']);
59
60 $result = $this->getResult();
61 $pageSet = $this->getPageSet();
62 $titles = $pageSet->getTitles();
63 $data = array();
64
65 $this->addTables('archive');
66 $this->addFields(array('ar_title', 'ar_namespace', 'ar_timestamp'));
67 if($fld_revid)
68 $this->addFields('ar_rev_id');
69 if($fld_user)
70 $this->addFields('ar_user_text');
71 if($fld_comment)
72 $this->addFields('ar_comment');
73 if($fld_minor)
74 $this->addFields('ar_minor_edit');
75 if($fld_len)
76 $this->addFields('ar_len');
77 if($fld_content)
78 {
79 $this->addTables('text');
80 $this->addFields(array('ar_text', 'ar_text_id', 'old_text', 'old_flags'));
81 $this->addWhere('ar_text_id = old_id');
82
83 // This also means stricter limits and stricter restrictions
84 if(!$wgUser->isAllowed('undelete'))
85 $this->dieUsage('You don\'t have permission to view deleted revision content', 'permissiondenied');
86 $userMax = ApiBase :: LIMIT_SML1;
87 $botMax = ApiBase :: LIMIT_SML2;
88 $this->validateLimit('limit', $params['limit'], 1, $userMax, $botMax);
89 }
90 if($fld_token)
91 // Undelete tokens are identical for all pages, so we cache one here
92 $token = $wgUser->editToken();
93
94 // We need a custom WHERE clause that matches all titles.
95 if(count($titles) > 0)
96 {
97 $lb = new LinkBatch($titles);
98 $where = $lb->constructSet('ar', $db);
99 $this->addWhere($where);
100 }
101
102 $this->addOption('LIMIT', $params['limit'] + 1);
103 $this->addWhereRange('ar_timestamp', $params['dir'], $params['start'], $params['end']);
104 if(isset($params['namespace']))
105 $this->addWhereFld('ar_namespace', $params['namespace']);
106 $res = $this->select(__METHOD__);
107 $pages = array();
108 $count = 0;
109 // First populate the $pages array
110 while($row = $db->fetchObject($res))
111 {
112 if($count++ == $params['limit'])
113 {
114 // We've had enough
115 $this->setContinueEnumParameter('start', wfTimestamp(TS_ISO_8601, $row->ar_timestamp));
116 break;
117 }
118
119 $rev = array();
120 $rev['timestamp'] = wfTimestamp(TS_ISO_8601, $row->ar_timestamp);
121 if($fld_revid)
122 $rev['revid'] = $row->ar_rev_id;
123 if($fld_user)
124 $rev['user'] = $row->ar_user_text;
125 if($fld_comment)
126 $rev['comment'] = $row->ar_comment;
127 if($fld_minor)
128 if($row->ar_minor_edit == 1)
129 $rev['minor'] = '';
130 if($fld_len)
131 $rev['len'] = $row->ar_len;
132 if($fld_content)
133 ApiResult::setContent($rev, Revision::getRevisionText($row));
134
135 $t = Title::makeTitle($row->ar_namespace, $row->ar_title);
136 if(!isset($pages[$t->getPrefixedText()]))
137 {
138 $pages[$t->getPrefixedText()] = array(
139 'title' => $t->getPrefixedText(),
140 'ns' => intval($row->ar_namespace),
141 'revisions' => array($rev)
142 );
143 if($fld_token)
144 $pages[$t->getPrefixedText()]['token'] = $token;
145 }
146 else
147 $pages[$t->getPrefixedText()]['revisions'][] = $rev;
148 }
149 $db->freeResult($res);
150
151 // We don't want entire pagenames as keys, so let's make this array indexed
152 foreach($pages as $page)
153 {
154 $result->setIndexedTagName($page['revisions'], 'rev');
155 $data[] = $page;
156 }
157 $result->setIndexedTagName($data, 'page');
158 $result->addValue('query', $this->getModuleName(), $data);
159 }
160
161 protected function getAllowedParams() {
162 return array (
163 'start' => array(
164 ApiBase :: PARAM_TYPE => 'timestamp'
165 ),
166 'end' => array(
167 ApiBase :: PARAM_TYPE => 'timestamp',
168 ),
169 'dir' => array(
170 ApiBase :: PARAM_TYPE => array(
171 'newer',
172 'older'
173 ),
174 ApiBase :: PARAM_DFLT => 'older'
175 ),
176 'namespace' => array(
177 ApiBase :: PARAM_ISMULTI => true,
178 ApiBase :: PARAM_TYPE => 'namespace'
179 ),
180 'limit' => array(
181 ApiBase :: PARAM_DFLT => 10,
182 ApiBase :: PARAM_TYPE => 'limit',
183 ApiBase :: PARAM_MIN => 1,
184 ApiBase :: PARAM_MAX => ApiBase :: LIMIT_BIG1,
185 ApiBase :: PARAM_MAX2 => ApiBase :: LIMIT_BIG2
186 ),
187 'prop' => array(
188 ApiBase :: PARAM_DFLT => 'user|comment',
189 ApiBase :: PARAM_TYPE => array(
190 'revid',
191 'user',
192 'comment',
193 'minor',
194 'len',
195 'content',
196 'token'
197 ),
198 ApiBase :: PARAM_ISMULTI => true
199 )
200 );
201 }
202
203 protected function getParamDescription() {
204 return array (
205 'start' => 'The timestamp to start enumerating from',
206 'end' => 'The timestamp to stop enumerating at',
207 'dir' => 'The direction in which to enumerate',
208 'namespace' => 'The namespaces to search in',
209 'limit' => 'The maximum amount of revisions to list',
210 'prop' => 'Which properties to get'
211 );
212 }
213
214 protected function getDescription() {
215 return 'List deleted revisions.';
216 }
217
218 protected function getExamples() {
219 return array (
220 'List the first 50 deleted revisions in the Category and Category talk namespaces',
221 ' api.php?action=query&list=deletedrevs&drdir=newer&drlimit=50&drnamespace=14|15',
222 'List the last deleted revisions of Main Page and Talk:Main Page, with content:',
223 ' api.php?action=query&list=deletedrevs&titles=Main%20Page|Talk:Main%20Page&drprop=user|comment|content'
224 );
225 }
226
227 public function getVersion() {
228 return __CLASS__ . ': $Id: ApiQueryDeletedrevs.php 23531 2007-06-30 01:19:14Z simetrical $';
229 }
230 }