Cleanup from r37839: just put ipb_auto in the relevant arrays. We have those arrays...
[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 * @ingroup 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(false);
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 restrictions
84 if(!$wgUser->isAllowed('undelete'))
85 $this->dieUsage('You don\'t have permission to view deleted revision content', 'permissiondenied');
86 }
87 // Check limits
88 $userMax = $fld_content ? ApiBase :: LIMIT_SML1 : ApiBase :: LIMIT_BIG1;
89 $botMax = $fld_content ? ApiBase :: LIMIT_SML2 : ApiBase :: LIMIT_BIG2;
90
91 $limit = $params['limit'];
92
93 if( $limit == 'max' ) {
94 $limit = $this->getMain()->canApiHighLimits() ? $botMax : $userMax;
95 $this->getResult()->addValue( 'limits', $this->getModuleName(), $limit );
96 }
97
98 $this->validateLimit('limit', $limit, 1, $userMax, $botMax);
99
100 if($fld_token)
101 // Undelete tokens are identical for all pages, so we cache one here
102 $token = $wgUser->editToken();
103
104 // We need a custom WHERE clause that matches all titles.
105 if(count($titles) > 0)
106 {
107 $lb = new LinkBatch($titles);
108 $where = $lb->constructSet('ar', $db);
109 $this->addWhere($where);
110 }
111
112 $this->addOption('LIMIT', $limit + 1);
113 $this->addWhereRange('ar_timestamp', $params['dir'], $params['start'], $params['end']);
114 $res = $this->select(__METHOD__);
115 $pages = array();
116 $count = 0;
117 // First populate the $pages array
118 while($row = $db->fetchObject($res))
119 {
120 if(++$count > $limit)
121 {
122 // We've had enough
123 $this->setContinueEnumParameter('start', wfTimestamp(TS_ISO_8601, $row->ar_timestamp));
124 break;
125 }
126
127 $rev = array();
128 $rev['timestamp'] = wfTimestamp(TS_ISO_8601, $row->ar_timestamp);
129 if($fld_revid)
130 $rev['revid'] = $row->ar_rev_id;
131 if($fld_user)
132 $rev['user'] = $row->ar_user_text;
133 if($fld_comment)
134 $rev['comment'] = $row->ar_comment;
135 if($fld_minor)
136 if($row->ar_minor_edit == 1)
137 $rev['minor'] = '';
138 if($fld_len)
139 $rev['len'] = $row->ar_len;
140 if($fld_content)
141 ApiResult::setContent($rev, Revision::getRevisionText($row));
142
143 $t = Title::makeTitle($row->ar_namespace, $row->ar_title);
144 if(!isset($pages[$t->getPrefixedText()]))
145 {
146 $pages[$t->getPrefixedText()] = array(
147 'title' => $t->getPrefixedText(),
148 'ns' => intval($row->ar_namespace),
149 'revisions' => array($rev)
150 );
151 if($fld_token)
152 $pages[$t->getPrefixedText()]['token'] = $token;
153 }
154 else
155 $pages[$t->getPrefixedText()]['revisions'][] = $rev;
156 }
157 $db->freeResult($res);
158
159 // We don't want entire pagenames as keys, so let's make this array indexed
160 foreach($pages as $page)
161 {
162 $result->setIndexedTagName($page['revisions'], 'rev');
163 $data[] = $page;
164 }
165 $result->setIndexedTagName($data, 'page');
166 $result->addValue('query', $this->getModuleName(), $data);
167 }
168
169 public function getAllowedParams() {
170 return array (
171 'start' => array(
172 ApiBase :: PARAM_TYPE => 'timestamp'
173 ),
174 'end' => array(
175 ApiBase :: PARAM_TYPE => 'timestamp',
176 ),
177 'dir' => array(
178 ApiBase :: PARAM_TYPE => array(
179 'newer',
180 'older'
181 ),
182 ApiBase :: PARAM_DFLT => 'older'
183 ),
184 'limit' => array(
185 ApiBase :: PARAM_DFLT => 10,
186 ApiBase :: PARAM_TYPE => 'limit',
187 ApiBase :: PARAM_MIN => 1,
188 ApiBase :: PARAM_MAX => ApiBase :: LIMIT_BIG1,
189 ApiBase :: PARAM_MAX2 => ApiBase :: LIMIT_BIG2
190 ),
191 'prop' => array(
192 ApiBase :: PARAM_DFLT => 'user|comment',
193 ApiBase :: PARAM_TYPE => array(
194 'revid',
195 'user',
196 'comment',
197 'minor',
198 'len',
199 'content',
200 'token'
201 ),
202 ApiBase :: PARAM_ISMULTI => true
203 )
204 );
205 }
206
207 public function getParamDescription() {
208 return array (
209 'start' => 'The timestamp to start enumerating from',
210 'end' => 'The timestamp to stop enumerating at',
211 'dir' => 'The direction in which to enumerate',
212 'limit' => 'The maximum amount of revisions to list',
213 'prop' => 'Which properties to get'
214 );
215 }
216
217 public function getDescription() {
218 return 'List deleted revisions.';
219 }
220
221 protected function getExamples() {
222 return array (
223 'List the first 50 deleted revisions',
224 ' api.php?action=query&list=deletedrevs&drdir=newer&drlimit=50',
225 'List the last deleted revisions of Main Page and Talk:Main Page, with content:',
226 ' api.php?action=query&list=deletedrevs&titles=Main%20Page|Talk:Main%20Page&drprop=user|comment|content'
227 );
228 }
229
230 public function getVersion() {
231 return __CLASS__ . ': $Id$';
232 }
233 }