MediaWiki REL1_33
ApiQueryAllRevisions.php
Go to the documentation of this file.
1<?php
25
33
34 public function __construct( ApiQuery $query, $moduleName ) {
35 parent::__construct( $query, $moduleName, 'arv' );
36 }
37
42 protected function run( ApiPageSet $resultPageSet = null ) {
44
45 $db = $this->getDB();
46 $params = $this->extractRequestParams( false );
47 $revisionStore = MediaWikiServices::getInstance()->getRevisionStore();
48
49 $result = $this->getResult();
50
51 $this->requireMaxOneParameter( $params, 'user', 'excludeuser' );
52
53 $tsField = 'rev_timestamp';
54 $idField = 'rev_id';
55 $pageField = 'rev_page';
56 if ( $params['user'] !== null &&
58 ) {
59 // The query is probably best done using the actor_timestamp index on
60 // revision_actor_temp. Use the denormalized fields from that table.
61 $tsField = 'revactor_timestamp';
62 $idField = 'revactor_rev';
63 $pageField = 'revactor_page';
64 }
65
66 // Namespace check is likely to be desired, but can't be done
67 // efficiently in SQL.
68 $miser_ns = null;
69 $needPageTable = false;
70 if ( $params['namespace'] !== null ) {
71 $params['namespace'] = array_unique( $params['namespace'] );
72 sort( $params['namespace'] );
73 if ( $params['namespace'] != MWNamespace::getValidNamespaces() ) {
74 $needPageTable = true;
75 if ( $this->getConfig()->get( 'MiserMode' ) ) {
76 $miser_ns = $params['namespace'];
77 } else {
78 $this->addWhere( [ 'page_namespace' => $params['namespace'] ] );
79 }
80 }
81 }
82
83 if ( $resultPageSet === null ) {
84 $this->parseParameters( $params );
85 $revQuery = $revisionStore->getQueryInfo(
86 $this->fetchContent ? [ 'page', 'text' ] : [ 'page' ]
87 );
88 } else {
89 $this->limit = $this->getParameter( 'limit' ) ?: 10;
90 $revQuery = [
91 'tables' => [ 'revision' ],
92 'fields' => [ 'rev_timestamp', 'rev_id' ],
93 'joins' => [],
94 ];
95
96 if ( $params['generatetitles'] ) {
97 $revQuery['fields'][] = 'rev_page';
98 }
99
100 if ( $params['user'] !== null || $params['excludeuser'] !== null ) {
101 $actorQuery = ActorMigration::newMigration()->getJoin( 'rev_user' );
102 $revQuery['tables'] += $actorQuery['tables'];
103 $revQuery['joins'] += $actorQuery['joins'];
104 }
105
106 if ( $needPageTable ) {
107 $revQuery['tables'][] = 'page';
108 $revQuery['joins']['page'] = [ 'JOIN', [ "$pageField = page_id" ] ];
109 if ( (bool)$miser_ns ) {
110 $revQuery['fields'][] = 'page_namespace';
111 }
112 }
113 }
114
115 // If we're going to be using actor_timestamp, we need to swap the order of `revision`
116 // and `revision_actor_temp` in the query (for the straight join) and adjust some field aliases.
117 if ( $idField !== 'rev_id' && isset( $revQuery['tables']['temp_rev_user'] ) ) {
118 $aliasFields = [ 'rev_id' => $idField, 'rev_timestamp' => $tsField, 'rev_page' => $pageField ];
119 $revQuery['fields'] = array_merge(
120 $aliasFields,
121 array_diff( $revQuery['fields'], array_keys( $aliasFields ) )
122 );
123 unset( $revQuery['tables']['temp_rev_user'] );
124 $revQuery['tables'] = array_merge(
125 [ 'temp_rev_user' => 'revision_actor_temp' ],
126 $revQuery['tables']
127 );
128 $revQuery['joins']['revision'] = $revQuery['joins']['temp_rev_user'];
129 unset( $revQuery['joins']['temp_rev_user'] );
130 }
131
132 $this->addTables( $revQuery['tables'] );
133 $this->addFields( $revQuery['fields'] );
134 $this->addJoinConds( $revQuery['joins'] );
135
136 // Seems to be needed to avoid a planner bug (T113901)
137 $this->addOption( 'STRAIGHT_JOIN' );
138
139 $dir = $params['dir'];
140 $this->addTimestampWhereRange( $tsField, $dir, $params['start'], $params['end'] );
141
142 if ( $this->fld_tags ) {
143 $this->addFields( [ 'ts_tags' => ChangeTags::makeTagSummarySubquery( 'revision' ) ] );
144 }
145
146 if ( $params['user'] !== null ) {
147 $actorQuery = ActorMigration::newMigration()
148 ->getWhere( $db, 'rev_user', User::newFromName( $params['user'], false ) );
149 $this->addWhere( $actorQuery['conds'] );
150 } elseif ( $params['excludeuser'] !== null ) {
151 $actorQuery = ActorMigration::newMigration()
152 ->getWhere( $db, 'rev_user', User::newFromName( $params['excludeuser'], false ) );
153 $this->addWhere( 'NOT(' . $actorQuery['conds'] . ')' );
154 }
155
156 if ( $params['user'] !== null || $params['excludeuser'] !== null ) {
157 // Paranoia: avoid brute force searches (T19342)
158 if ( !$this->getUser()->isAllowed( 'deletedhistory' ) ) {
159 $bitmask = RevisionRecord::DELETED_USER;
160 } elseif ( !$this->getUser()->isAllowedAny( 'suppressrevision', 'viewsuppressed' ) ) {
161 $bitmask = RevisionRecord::DELETED_USER | RevisionRecord::DELETED_RESTRICTED;
162 } else {
163 $bitmask = 0;
164 }
165 if ( $bitmask ) {
166 $this->addWhere( $db->bitAnd( 'rev_deleted', $bitmask ) . " != $bitmask" );
167 }
168 }
169
170 if ( $params['continue'] !== null ) {
171 $op = ( $dir == 'newer' ? '>' : '<' );
172 $cont = explode( '|', $params['continue'] );
173 $this->dieContinueUsageIf( count( $cont ) != 2 );
174 $ts = $db->addQuotes( $db->timestamp( $cont[0] ) );
175 $rev_id = (int)$cont[1];
176 $this->dieContinueUsageIf( strval( $rev_id ) !== $cont[1] );
177 $this->addWhere( "$tsField $op $ts OR " .
178 "($tsField = $ts AND " .
179 "$idField $op= $rev_id)" );
180 }
181
182 $this->addOption( 'LIMIT', $this->limit + 1 );
183
184 $sort = ( $dir == 'newer' ? '' : ' DESC' );
185 $orderby = [];
186 // Targeting index rev_timestamp, user_timestamp, usertext_timestamp, or actor_timestamp.
187 // But 'user' is always constant for the latter three, so it doesn't matter here.
188 $orderby[] = "rev_timestamp $sort";
189 $orderby[] = "rev_id $sort";
190 $this->addOption( 'ORDER BY', $orderby );
191
192 $hookData = [];
193 $res = $this->select( __METHOD__, [], $hookData );
194 $pageMap = []; // Maps rev_page to array index
195 $count = 0;
196 $nextIndex = 0;
197 $generated = [];
198 foreach ( $res as $row ) {
199 if ( $count === 0 && $resultPageSet !== null ) {
200 // Set the non-continue since the list of all revisions is
201 // prone to having entries added at the start frequently.
202 $this->getContinuationManager()->addGeneratorNonContinueParam(
203 $this, 'continue', "$row->rev_timestamp|$row->rev_id"
204 );
205 }
206 if ( ++$count > $this->limit ) {
207 // We've had enough
208 $this->setContinueEnumParameter( 'continue', "$row->rev_timestamp|$row->rev_id" );
209 break;
210 }
211
212 // Miser mode namespace check
213 if ( $miser_ns !== null && !in_array( $row->page_namespace, $miser_ns ) ) {
214 continue;
215 }
216
217 if ( $resultPageSet !== null ) {
218 if ( $params['generatetitles'] ) {
219 $generated[$row->rev_page] = $row->rev_page;
220 } else {
221 $generated[] = $row->rev_id;
222 }
223 } else {
224 $revision = $revisionStore->newRevisionFromRow( $row );
225 $rev = $this->extractRevisionInfo( $revision, $row );
226
227 if ( !isset( $pageMap[$row->rev_page] ) ) {
228 $index = $nextIndex++;
229 $pageMap[$row->rev_page] = $index;
230 $title = Title::newFromLinkTarget( $revision->getPageAsLinkTarget() );
231 $a = [
232 'pageid' => $title->getArticleID(),
233 'revisions' => [ $rev ],
234 ];
235 ApiResult::setIndexedTagName( $a['revisions'], 'rev' );
236 ApiQueryBase::addTitleInfo( $a, $title );
237 $fit = $this->processRow( $row, $a['revisions'][0], $hookData ) &&
238 $result->addValue( [ 'query', $this->getModuleName() ], $index, $a );
239 } else {
240 $index = $pageMap[$row->rev_page];
241 $fit = $this->processRow( $row, $rev, $hookData ) &&
242 $result->addValue( [ 'query', $this->getModuleName(), $index, 'revisions' ], null, $rev );
243 }
244 if ( !$fit ) {
245 $this->setContinueEnumParameter( 'continue', "$row->rev_timestamp|$row->rev_id" );
246 break;
247 }
248 }
249 }
250
251 if ( $resultPageSet !== null ) {
252 if ( $params['generatetitles'] ) {
253 $resultPageSet->populateFromPageIDs( $generated );
254 } else {
255 $resultPageSet->populateFromRevisionIDs( $generated );
256 }
257 } else {
258 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'page' );
259 }
260 }
261
262 public function getAllowedParams() {
263 $ret = parent::getAllowedParams() + [
264 'user' => [
265 ApiBase::PARAM_TYPE => 'user',
266 ],
267 'namespace' => [
269 ApiBase::PARAM_TYPE => 'namespace',
270 ApiBase::PARAM_DFLT => null,
271 ],
272 'start' => [
273 ApiBase::PARAM_TYPE => 'timestamp',
274 ],
275 'end' => [
276 ApiBase::PARAM_TYPE => 'timestamp',
277 ],
278 'dir' => [
280 'newer',
281 'older'
282 ],
283 ApiBase::PARAM_DFLT => 'older',
284 ApiBase::PARAM_HELP_MSG => 'api-help-param-direction',
285 ],
286 'excludeuser' => [
287 ApiBase::PARAM_TYPE => 'user',
288 ],
289 'continue' => [
290 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
291 ],
292 'generatetitles' => [
293 ApiBase::PARAM_DFLT => false,
294 ],
295 ];
296
297 if ( $this->getConfig()->get( 'MiserMode' ) ) {
298 $ret['namespace'][ApiBase::PARAM_HELP_MSG_APPEND] = [
299 'api-help-param-limited-in-miser-mode',
300 ];
301 }
302
303 return $ret;
304 }
305
306 protected function getExamplesMessages() {
307 return [
308 'action=query&list=allrevisions&arvuser=Example&arvlimit=50'
309 => 'apihelp-query+allrevisions-example-user',
310 'action=query&list=allrevisions&arvdir=newer&arvlimit=50'
311 => 'apihelp-query+allrevisions-example-ns-main',
312 ];
313 }
314
315 public function getHelpUrls() {
316 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Allrevisions';
317 }
318}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
int $wgActorTableSchemaMigrationStage
Actor table schema migration stage.
getParameter( $paramName, $parseLimit=true)
Get a value for the given parameter.
Definition ApiBase.php:858
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
Definition ApiBase.php:2176
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition ApiBase.php:87
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition ApiBase.php:48
const PARAM_HELP_MSG_APPEND
((string|array|Message)[]) Specify additional i18n messages to append to the normal message for this ...
Definition ApiBase.php:131
getResult()
Get the result object.
Definition ApiBase.php:632
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:743
requireMaxOneParameter( $params, $required)
Die if more than one of a certain set of parameters is set and not false.
Definition ApiBase.php:913
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:124
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:512
getContinuationManager()
Get the continuation manager.
Definition ApiBase.php:672
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Definition ApiBase.php:51
This class contains a list of pages that the client has requested.
Query module to enumerate all revisions.
getHelpUrls()
Return links to more detailed help pages about the module.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
__construct(ApiQuery $query, $moduleName)
getExamplesMessages()
Returns usage examples for this module.
run(ApiPageSet $resultPageSet=null)
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
processRow( $row, array &$data, array &$hookData)
Call the ApiQueryBaseProcessRow hook.
addFields( $value)
Add a set of fields to select to the internal array.
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
addTimestampWhereRange( $field, $dir, $start, $end, $sort=true)
Add a WHERE clause corresponding to a range, similar to addWhereRange, but converts $start and $end t...
getDB()
Get the Query database connection (read-only)
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
addWhere( $value)
Add a set of WHERE clauses to the internal array.
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
A base class for functions common to producing a list of revisions.
parseParameters( $params)
Parse the parameters into the various instance fields.
extractRevisionInfo(RevisionRecord $revision, $row)
Extract information from the RevisionRecord.
This is the main query class.
Definition ApiQuery.php:36
static setIndexedTagName(array &$arr, $tag)
Set the tag name for numeric-keyed values in XML format.
static makeTagSummarySubquery( $tables)
Make the tag summary subquery based on the given tables and return it.
MediaWikiServices is the service locator for the application scope of MediaWiki.
Page revision base class.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition User.php:585
We use the convention $dbr for read and $dbw for write to help you keep track of whether the database object is a the world will explode Or to be a subsequent write query which succeeded on the master may fail when replicated to the slave due to a unique key collision Replication on the slave will stop and it may take hours to repair the database and get it back online Setting read_only in my cnf on the slave will avoid this but given the dire we prefer to have as many checks as possible We provide a but the wrapper functions like select() and insert() are usually more convenient. They take care of things like table prefixes and escaping for you. If you really need to make your own SQL
$res
Definition database.txt:21
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition hooks.txt:2003
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition hooks.txt:1617
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
Definition hooks.txt:1779
const SCHEMA_COMPAT_READ_NEW
Definition Defines.php:296
$sort
$params