Made DifferenceEngine use a context instead of global variables and updaters calls...
[lhc/web/wiklou.git] / includes / api / ApiPageSet.php
1 <?php
2 /**
3 *
4 *
5 * Created on Sep 24, 2006
6 *
7 * Copyright © 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 */
26
27 if ( !defined( 'MEDIAWIKI' ) ) {
28 // Eclipse helper - will be ignored in production
29 require_once( 'ApiQueryBase.php' );
30 }
31
32 /**
33 * This class contains a list of pages that the client has requested.
34 * Initially, when the client passes in titles=, pageids=, or revisions=
35 * parameter, an instance of the ApiPageSet class will normalize titles,
36 * determine if the pages/revisions exist, and prefetch any additional page
37 * data requested.
38 *
39 * When a generator is used, the result of the generator will become the input
40 * for the second instance of this class, and all subsequent actions will use
41 * the second instance for all their work.
42 *
43 * @ingroup API
44 */
45 class ApiPageSet extends ApiQueryBase {
46
47 private $mAllPages; // [ns][dbkey] => page_id or negative when missing
48 private $mTitles, $mGoodTitles, $mMissingTitles, $mInvalidTitles;
49 private $mMissingPageIDs, $mRedirectTitles, $mSpecialTitles;
50 private $mNormalizedTitles, $mInterwikiTitles;
51 private $mResolveRedirects, $mPendingRedirectIDs;
52 private $mConvertTitles, $mConvertedTitles;
53 private $mGoodRevIDs, $mMissingRevIDs;
54 private $mFakePageId;
55
56 private $mRequestedPageFields;
57
58 /**
59 * Constructor
60 * @param $query ApiQuery
61 * @param $resolveRedirects bool Whether redirects should be resolved
62 * @param $convertTitles bool
63 */
64 public function __construct( $query, $resolveRedirects = false, $convertTitles = false ) {
65 parent::__construct( $query, 'query' );
66
67 $this->mAllPages = array();
68 $this->mTitles = array();
69 $this->mGoodTitles = array();
70 $this->mMissingTitles = array();
71 $this->mInvalidTitles = array();
72 $this->mMissingPageIDs = array();
73 $this->mRedirectTitles = array();
74 $this->mNormalizedTitles = array();
75 $this->mInterwikiTitles = array();
76 $this->mGoodRevIDs = array();
77 $this->mMissingRevIDs = array();
78 $this->mSpecialTitles = array();
79
80 $this->mRequestedPageFields = array();
81 $this->mResolveRedirects = $resolveRedirects;
82 if ( $resolveRedirects ) {
83 $this->mPendingRedirectIDs = array();
84 }
85
86 $this->mConvertTitles = $convertTitles;
87 $this->mConvertedTitles = array();
88
89 $this->mFakePageId = - 1;
90 }
91
92 /**
93 * Check whether this PageSet is resolving redirects
94 * @return bool
95 */
96 public function isResolvingRedirects() {
97 return $this->mResolveRedirects;
98 }
99
100 /**
101 * Request an additional field from the page table. Must be called
102 * before execute()
103 * @param $fieldName string Field name
104 */
105 public function requestField( $fieldName ) {
106 $this->mRequestedPageFields[$fieldName] = null;
107 }
108
109 /**
110 * Get the value of a custom field previously requested through
111 * requestField()
112 * @param $fieldName string Field name
113 * @return mixed Field value
114 */
115 public function getCustomField( $fieldName ) {
116 return $this->mRequestedPageFields[$fieldName];
117 }
118
119 /**
120 * Get the fields that have to be queried from the page table:
121 * the ones requested through requestField() and a few basic ones
122 * we always need
123 * @return array of field names
124 */
125 public function getPageTableFields() {
126 // Ensure we get minimum required fields
127 // DON'T change this order
128 $pageFlds = array(
129 'page_namespace' => null,
130 'page_title' => null,
131 'page_id' => null,
132 );
133
134 if ( $this->mResolveRedirects ) {
135 $pageFlds['page_is_redirect'] = null;
136 }
137
138 // only store non-default fields
139 $this->mRequestedPageFields = array_diff_key( $this->mRequestedPageFields, $pageFlds );
140
141 $pageFlds = array_merge( $pageFlds, $this->mRequestedPageFields );
142 return array_keys( $pageFlds );
143 }
144
145 /**
146 * Returns an array [ns][dbkey] => page_id for all requested titles.
147 * page_id is a unique negative number in case title was not found.
148 * Invalid titles will also have negative page IDs and will be in namespace 0
149 * @return array
150 */
151 public function getAllTitlesByNamespace() {
152 return $this->mAllPages;
153 }
154
155 /**
156 * All Title objects provided.
157 * @return array of Title objects
158 */
159 public function getTitles() {
160 return $this->mTitles;
161 }
162
163 /**
164 * Returns the number of unique pages (not revisions) in the set.
165 * @return int
166 */
167 public function getTitleCount() {
168 return count( $this->mTitles );
169 }
170
171 /**
172 * Title objects that were found in the database.
173 * @return array page_id (int) => Title (obj)
174 */
175 public function getGoodTitles() {
176 return $this->mGoodTitles;
177 }
178
179 /**
180 * Returns the number of found unique pages (not revisions) in the set.
181 * @return int
182 */
183 public function getGoodTitleCount() {
184 return count( $this->mGoodTitles );
185 }
186
187 /**
188 * Title objects that were NOT found in the database.
189 * The array's index will be negative for each item
190 * @return array of Title objects
191 */
192 public function getMissingTitles() {
193 return $this->mMissingTitles;
194 }
195
196 /**
197 * Titles that were deemed invalid by Title::newFromText()
198 * The array's index will be unique and negative for each item
199 * @return array of strings (not Title objects)
200 */
201 public function getInvalidTitles() {
202 return $this->mInvalidTitles;
203 }
204
205 /**
206 * Page IDs that were not found in the database
207 * @return array of page IDs
208 */
209 public function getMissingPageIDs() {
210 return $this->mMissingPageIDs;
211 }
212
213 /**
214 * Get a list of redirect resolutions - maps a title to its redirect
215 * target.
216 * @return array prefixed_title (string) => Title object
217 */
218 public function getRedirectTitles() {
219 return $this->mRedirectTitles;
220 }
221
222 /**
223 * Get a list of title normalizations - maps a title to its normalized
224 * version.
225 * @return array raw_prefixed_title (string) => prefixed_title (string)
226 */
227 public function getNormalizedTitles() {
228 return $this->mNormalizedTitles;
229 }
230
231 /**
232 * Get a list of title conversions - maps a title to its converted
233 * version.
234 * @return array raw_prefixed_title (string) => prefixed_title (string)
235 */
236 public function getConvertedTitles() {
237 return $this->mConvertedTitles;
238 }
239
240 /**
241 * Get a list of interwiki titles - maps a title to its interwiki
242 * prefix.
243 * @return array raw_prefixed_title (string) => interwiki_prefix (string)
244 */
245 public function getInterwikiTitles() {
246 return $this->mInterwikiTitles;
247 }
248
249 /**
250 * Get the list of revision IDs (requested with the revids= parameter)
251 * @return array revID (int) => pageID (int)
252 */
253 public function getRevisionIDs() {
254 return $this->mGoodRevIDs;
255 }
256
257 /**
258 * Revision IDs that were not found in the database
259 * @return array of revision IDs
260 */
261 public function getMissingRevisionIDs() {
262 return $this->mMissingRevIDs;
263 }
264
265 /**
266 * Get the list of titles with negative namespace
267 * @return array Title
268 */
269 public function getSpecialTitles() {
270 return $this->mSpecialTitles;
271 }
272
273 /**
274 * Returns the number of revisions (requested with revids= parameter)\
275 * @return int
276 */
277 public function getRevisionCount() {
278 return count( $this->getRevisionIDs() );
279 }
280
281 /**
282 * Populate the PageSet from the request parameters.
283 */
284 public function execute() {
285 $this->profileIn();
286 $params = $this->extractRequestParams();
287
288 // Only one of the titles/pageids/revids is allowed at the same time
289 $dataSource = null;
290 if ( isset( $params['titles'] ) ) {
291 $dataSource = 'titles';
292 }
293 if ( isset( $params['pageids'] ) ) {
294 if ( isset( $dataSource ) ) {
295 $this->dieUsage( "Cannot use 'pageids' at the same time as '$dataSource'", 'multisource' );
296 }
297 $dataSource = 'pageids';
298 }
299 if ( isset( $params['revids'] ) ) {
300 if ( isset( $dataSource ) ) {
301 $this->dieUsage( "Cannot use 'revids' at the same time as '$dataSource'", 'multisource' );
302 }
303 $dataSource = 'revids';
304 }
305
306 switch ( $dataSource ) {
307 case 'titles':
308 $this->initFromTitles( $params['titles'] );
309 break;
310 case 'pageids':
311 $this->initFromPageIds( $params['pageids'] );
312 break;
313 case 'revids':
314 if ( $this->mResolveRedirects ) {
315 $this->setWarning( 'Redirect resolution cannot be used together with the revids= parameter. ' .
316 'Any redirects the revids= point to have not been resolved.' );
317 }
318 $this->mResolveRedirects = false;
319 $this->initFromRevIDs( $params['revids'] );
320 break;
321 default:
322 // Do nothing - some queries do not need any of the data sources.
323 break;
324 }
325 $this->profileOut();
326 }
327
328 /**
329 * Populate this PageSet from a list of Titles
330 * @param $titles array of Title objects
331 */
332 public function populateFromTitles( $titles ) {
333 $this->profileIn();
334 $this->initFromTitles( $titles );
335 $this->profileOut();
336 }
337
338 /**
339 * Populate this PageSet from a list of page IDs
340 * @param $pageIDs array of page IDs
341 */
342 public function populateFromPageIDs( $pageIDs ) {
343 $this->profileIn();
344 $this->initFromPageIds( $pageIDs );
345 $this->profileOut();
346 }
347
348 /**
349 * Populate this PageSet from a rowset returned from the database
350 * @param $db Database object
351 * @param $queryResult ResultWrapper Query result object
352 */
353 public function populateFromQueryResult( $db, $queryResult ) {
354 $this->profileIn();
355 $this->initFromQueryResult( $queryResult );
356 $this->profileOut();
357 }
358
359 /**
360 * Populate this PageSet from a list of revision IDs
361 * @param $revIDs array of revision IDs
362 */
363 public function populateFromRevisionIDs( $revIDs ) {
364 $this->profileIn();
365 $this->initFromRevIDs( $revIDs );
366 $this->profileOut();
367 }
368
369 /**
370 * Extract all requested fields from the row received from the database
371 * @param $row Result row
372 */
373 public function processDbRow( $row ) {
374 // Store Title object in various data structures
375 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
376
377 $pageId = intval( $row->page_id );
378 $this->mAllPages[$row->page_namespace][$row->page_title] = $pageId;
379 $this->mTitles[] = $title;
380
381 if ( $this->mResolveRedirects && $row->page_is_redirect == '1' ) {
382 $this->mPendingRedirectIDs[$pageId] = $title;
383 } else {
384 $this->mGoodTitles[$pageId] = $title;
385 }
386
387 foreach ( $this->mRequestedPageFields as $fieldName => &$fieldValues ) {
388 $fieldValues[$pageId] = $row-> $fieldName;
389 }
390 }
391
392 /**
393 * Resolve redirects, if applicable
394 */
395 public function finishPageSetGeneration() {
396 $this->profileIn();
397 $this->resolvePendingRedirects();
398 $this->profileOut();
399 }
400
401 /**
402 * This method populates internal variables with page information
403 * based on the given array of title strings.
404 *
405 * Steps:
406 * #1 For each title, get data from `page` table
407 * #2 If page was not found in the DB, store it as missing
408 *
409 * Additionally, when resolving redirects:
410 * #3 If no more redirects left, stop.
411 * #4 For each redirect, get its target from the `redirect` table.
412 * #5 Substitute the original LinkBatch object with the new list
413 * #6 Repeat from step #1
414 *
415 * @param $titles array of Title objects or strings
416 */
417 private function initFromTitles( $titles ) {
418 // Get validated and normalized title objects
419 $linkBatch = $this->processTitlesArray( $titles );
420 if ( $linkBatch->isEmpty() ) {
421 return;
422 }
423
424 $db = $this->getDB();
425 $set = $linkBatch->constructSet( 'page', $db );
426
427 // Get pageIDs data from the `page` table
428 $this->profileDBIn();
429 $res = $db->select( 'page', $this->getPageTableFields(), $set,
430 __METHOD__ );
431 $this->profileDBOut();
432
433 // Hack: get the ns:titles stored in array(ns => array(titles)) format
434 $this->initFromQueryResult( $res, $linkBatch->data, true ); // process Titles
435
436 // Resolve any found redirects
437 $this->resolvePendingRedirects();
438 }
439
440 /**
441 * Does the same as initFromTitles(), but is based on page IDs instead
442 * @param $pageids array of page IDs
443 */
444 private function initFromPageIds( $pageids ) {
445 if ( !count( $pageids ) ) {
446 return;
447 }
448
449 $pageids = array_map( 'intval', $pageids ); // paranoia
450 $remaining = array_flip( $pageids );
451
452 $pageids = self::getPositiveIntegers( $pageids );
453
454 $res = null;
455 if ( count( $pageids ) ) {
456 $set = array(
457 'page_id' => $pageids
458 );
459 $db = $this->getDB();
460
461 // Get pageIDs data from the `page` table
462 $this->profileDBIn();
463 $res = $db->select( 'page', $this->getPageTableFields(), $set,
464 __METHOD__ );
465 $this->profileDBOut();
466 }
467
468 $this->initFromQueryResult( $res, $remaining, false ); // process PageIDs
469
470 // Resolve any found redirects
471 $this->resolvePendingRedirects();
472 }
473
474 /**
475 * Iterate through the result of the query on 'page' table,
476 * and for each row create and store title object and save any extra fields requested.
477 * @param $res ResultWrapper DB Query result
478 * @param $remaining array of either pageID or ns/title elements (optional).
479 * If given, any missing items will go to $mMissingPageIDs and $mMissingTitles
480 * @param $processTitles bool Must be provided together with $remaining.
481 * If true, treat $remaining as an array of [ns][title]
482 * If false, treat it as an array of [pageIDs]
483 */
484 private function initFromQueryResult( $res, &$remaining = null, $processTitles = null ) {
485 if ( !is_null( $remaining ) && is_null( $processTitles ) ) {
486 ApiBase::dieDebug( __METHOD__, 'Missing $processTitles parameter when $remaining is provided' );
487 }
488
489 if ( $res ) {
490 foreach ( $res as $row ) {
491 $pageId = intval( $row->page_id );
492
493 // Remove found page from the list of remaining items
494 if ( isset( $remaining ) ) {
495 if ( $processTitles ) {
496 unset( $remaining[$row->page_namespace][$row->page_title] );
497 } else {
498 unset( $remaining[$pageId] );
499 }
500 }
501
502 // Store any extra fields requested by modules
503 $this->processDbRow( $row );
504 }
505 }
506
507 if ( isset( $remaining ) ) {
508 // Any items left in the $remaining list are added as missing
509 if ( $processTitles ) {
510 // The remaining titles in $remaining are non-existent pages
511 foreach ( $remaining as $ns => $dbkeys ) {
512 foreach ( array_keys( $dbkeys ) as $dbkey ) {
513 $title = Title::makeTitle( $ns, $dbkey );
514 $this->mAllPages[$ns][$dbkey] = $this->mFakePageId;
515 $this->mMissingTitles[$this->mFakePageId] = $title;
516 $this->mFakePageId--;
517 $this->mTitles[] = $title;
518 }
519 }
520 } else {
521 // The remaining pageids do not exist
522 if ( !$this->mMissingPageIDs ) {
523 $this->mMissingPageIDs = array_keys( $remaining );
524 } else {
525 $this->mMissingPageIDs = array_merge( $this->mMissingPageIDs, array_keys( $remaining ) );
526 }
527 }
528 }
529 }
530
531 /**
532 * Does the same as initFromTitles(), but is based on revision IDs
533 * instead
534 * @param $revids array of revision IDs
535 */
536 private function initFromRevIDs( $revids ) {
537 if ( !count( $revids ) ) {
538 return;
539 }
540
541 $revids = array_map( 'intval', $revids ); // paranoia
542 $db = $this->getDB();
543 $pageids = array();
544 $remaining = array_flip( $revids );
545
546 $revids = self::getPositiveIntegers( $revids );
547
548 if ( count( $revids ) ) {
549 $tables = array( 'revision', 'page' );
550 $fields = array( 'rev_id', 'rev_page' );
551 $where = array( 'rev_id' => $revids, 'rev_page = page_id' );
552
553 // Get pageIDs data from the `page` table
554 $this->profileDBIn();
555 $res = $db->select( $tables, $fields, $where, __METHOD__ );
556 foreach ( $res as $row ) {
557 $revid = intval( $row->rev_id );
558 $pageid = intval( $row->rev_page );
559 $this->mGoodRevIDs[$revid] = $pageid;
560 $pageids[$pageid] = '';
561 unset( $remaining[$revid] );
562 }
563 $this->profileDBOut();
564 }
565
566 $this->mMissingRevIDs = array_keys( $remaining );
567
568 // Populate all the page information
569 $this->initFromPageIds( array_keys( $pageids ) );
570 }
571
572 /**
573 * Resolve any redirects in the result if redirect resolution was
574 * requested. This function is called repeatedly until all redirects
575 * have been resolved.
576 */
577 private function resolvePendingRedirects() {
578 if ( $this->mResolveRedirects ) {
579 $db = $this->getDB();
580 $pageFlds = $this->getPageTableFields();
581
582 // Repeat until all redirects have been resolved
583 // The infinite loop is prevented by keeping all known pages in $this->mAllPages
584 while ( $this->mPendingRedirectIDs ) {
585 // Resolve redirects by querying the pagelinks table, and repeat the process
586 // Create a new linkBatch object for the next pass
587 $linkBatch = $this->getRedirectTargets();
588
589 if ( $linkBatch->isEmpty() ) {
590 break;
591 }
592
593 $set = $linkBatch->constructSet( 'page', $db );
594 if ( $set === false ) {
595 break;
596 }
597
598 // Get pageIDs data from the `page` table
599 $this->profileDBIn();
600 $res = $db->select( 'page', $pageFlds, $set, __METHOD__ );
601 $this->profileDBOut();
602
603 // Hack: get the ns:titles stored in array(ns => array(titles)) format
604 $this->initFromQueryResult( $res, $linkBatch->data, true );
605 }
606 }
607 }
608
609 /**
610 * Get the targets of the pending redirects from the database
611 *
612 * Also creates entries in the redirect table for redirects that don't
613 * have one.
614 * @return LinkBatch
615 */
616 private function getRedirectTargets() {
617 $lb = new LinkBatch();
618 $db = $this->getDB();
619
620 $this->profileDBIn();
621 $res = $db->select(
622 'redirect',
623 array(
624 'rd_from',
625 'rd_namespace',
626 'rd_fragment',
627 'rd_interwiki',
628 'rd_title'
629 ), array( 'rd_from' => array_keys( $this->mPendingRedirectIDs ) ),
630 __METHOD__
631 );
632 $this->profileDBOut();
633 foreach ( $res as $row ) {
634 $rdfrom = intval( $row->rd_from );
635 $from = $this->mPendingRedirectIDs[$rdfrom]->getPrefixedText();
636 $to = Title::makeTitle( $row->rd_namespace, $row->rd_title, $row->rd_fragment, $row->rd_interwiki );
637 unset( $this->mPendingRedirectIDs[$rdfrom] );
638 if ( !isset( $this->mAllPages[$row->rd_namespace][$row->rd_title] ) ) {
639 $lb->add( $row->rd_namespace, $row->rd_title );
640 }
641 $this->mRedirectTitles[$from] = $to;
642 }
643
644 if ( $this->mPendingRedirectIDs ) {
645 // We found pages that aren't in the redirect table
646 // Add them
647 foreach ( $this->mPendingRedirectIDs as $id => $title ) {
648 $article = new Article( $title );
649 $rt = $article->insertRedirect();
650 if ( !$rt ) {
651 // What the hell. Let's just ignore this
652 continue;
653 }
654 $lb->addObj( $rt );
655 $this->mRedirectTitles[$title->getPrefixedText()] = $rt;
656 unset( $this->mPendingRedirectIDs[$id] );
657 }
658 }
659 return $lb;
660 }
661
662 /**
663 * Given an array of title strings, convert them into Title objects.
664 * Alternativelly, an array of Title objects may be given.
665 * This method validates access rights for the title,
666 * and appends normalization values to the output.
667 *
668 * @param $titles array of Title objects or strings
669 * @return LinkBatch
670 */
671 private function processTitlesArray( $titles ) {
672 $linkBatch = new LinkBatch();
673
674 foreach ( $titles as $title ) {
675 $titleObj = is_string( $title ) ? Title::newFromText( $title ) : $title;
676 if ( !$titleObj ) {
677 // Handle invalid titles gracefully
678 $this->mAllpages[0][$title] = $this->mFakePageId;
679 $this->mInvalidTitles[$this->mFakePageId] = $title;
680 $this->mFakePageId--;
681 continue; // There's nothing else we can do
682 }
683 $unconvertedTitle = $titleObj->getPrefixedText();
684 $titleWasConverted = false;
685 $iw = $titleObj->getInterwiki();
686 if ( strval( $iw ) !== '' ) {
687 // This title is an interwiki link.
688 $this->mInterwikiTitles[$titleObj->getPrefixedText()] = $iw;
689 } else {
690 // Variants checking
691 global $wgContLang;
692 if ( $this->mConvertTitles &&
693 count( $wgContLang->getVariants() ) > 1 &&
694 !$titleObj->exists() ) {
695 // Language::findVariantLink will modify titleObj into
696 // the canonical variant if possible
697 $wgContLang->findVariantLink( $title, $titleObj );
698 $titleWasConverted = $unconvertedTitle !== $titleObj->getPrefixedText();
699 }
700
701 if ( $titleObj->getNamespace() < 0 ) {
702 // Handle Special and Media pages
703 $titleObj = $titleObj->fixSpecialName();
704 $this->mSpecialTitles[$this->mFakePageId] = $titleObj;
705 $this->mFakePageId--;
706 } else {
707 // Regular page
708 $linkBatch->addObj( $titleObj );
709 }
710 }
711
712 // Make sure we remember the original title that was
713 // given to us. This way the caller can correlate new
714 // titles with the originally requested when e.g. the
715 // namespace is localized or the capitalization is
716 // different
717 if ( $titleWasConverted ) {
718 $this->mConvertedTitles[$title] = $titleObj->getPrefixedText();
719 } elseif ( is_string( $title ) && $title !== $titleObj->getPrefixedText() ) {
720 $this->mNormalizedTitles[$title] = $titleObj->getPrefixedText();
721 }
722 }
723
724 return $linkBatch;
725 }
726
727 /**
728 * Returns the input array of integers with all values < 0 removed
729 *
730 * @param $array array
731 * @return array
732 */
733 private static function getPositiveIntegers( $array ) {
734 // bug 25734 API: possible issue with revids validation
735 // It seems with a load of revision rows, MySQL gets upset
736 // Remove any < 0 integers, as they can't be valid
737 foreach( $array as $i => $int ) {
738 if ( $int < 0 ) {
739 unset( $array[$i] );
740 }
741 }
742
743 return $array;
744 }
745
746 public function getAllowedParams() {
747 return array(
748 'titles' => array(
749 ApiBase::PARAM_ISMULTI => true
750 ),
751 'pageids' => array(
752 ApiBase::PARAM_TYPE => 'integer',
753 ApiBase::PARAM_ISMULTI => true
754 ),
755 'revids' => array(
756 ApiBase::PARAM_TYPE => 'integer',
757 ApiBase::PARAM_ISMULTI => true
758 )
759 );
760 }
761
762 public function getParamDescription() {
763 return array(
764 'titles' => 'A list of titles to work on',
765 'pageids' => 'A list of page IDs to work on',
766 'revids' => 'A list of revision IDs to work on'
767 );
768 }
769
770 public function getPossibleErrors() {
771 return array_merge( parent::getPossibleErrors(), array(
772 array( 'code' => 'multisource', 'info' => "Cannot use 'pageids' at the same time as 'dataSource'" ),
773 array( 'code' => 'multisource', 'info' => "Cannot use 'revids' at the same time as 'dataSource'" ),
774 ) );
775 }
776
777 public function getVersion() {
778 return __CLASS__ . ': $Id$';
779 }
780 }