2006-09-25 04:12:07 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Created on Sep 24, 2006
|
|
|
|
|
*
|
|
|
|
|
* API for MediaWiki 1.8+
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2006 Yuri Astrakhan <FirstnameLastname@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (!defined('MEDIAWIKI')) {
|
|
|
|
|
// Eclipse helper - will be ignored in production
|
2006-10-01 02:02:13 +00:00
|
|
|
require_once ('ApiQueryBase.php');
|
2006-09-25 04:12:07 +00:00
|
|
|
}
|
|
|
|
|
|
2006-09-26 06:37:26 +00:00
|
|
|
class ApiPageSet extends ApiQueryBase {
|
2006-09-25 04:12:07 +00:00
|
|
|
|
2006-09-27 05:13:48 +00:00
|
|
|
private $mAllPages; // [ns][dbkey] => page_id or 0 when missing
|
2006-10-01 20:17:16 +00:00
|
|
|
private $mGoodTitles, $mMissingTitles, $mMissingPageIDs, $mRedirectTitles, $mNormalizedTitles;
|
2006-09-25 04:12:07 +00:00
|
|
|
|
2006-10-01 04:38:31 +00:00
|
|
|
private $mRequestedFields;
|
|
|
|
|
|
2006-09-30 08:06:27 +00:00
|
|
|
public function __construct($query) {
|
2006-09-26 06:37:26 +00:00
|
|
|
parent :: __construct($query, __CLASS__);
|
2006-09-25 04:12:07 +00:00
|
|
|
|
2006-09-27 05:13:48 +00:00
|
|
|
$this->mAllPages = array ();
|
|
|
|
|
$this->mGoodTitles = array ();
|
|
|
|
|
$this->mMissingTitles = array ();
|
2006-10-01 20:17:16 +00:00
|
|
|
$this->mMissingPageIDs = array ();
|
2006-09-27 05:13:48 +00:00
|
|
|
$this->mRedirectTitles = array ();
|
|
|
|
|
$this->mNormalizedTitles = array ();
|
2006-10-01 04:38:31 +00:00
|
|
|
|
|
|
|
|
$this->mRequestedFields = array ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function requestField($fieldName) {
|
|
|
|
|
$this->mRequestedFields[$fieldName] = null;
|
2006-09-25 04:12:07 +00:00
|
|
|
}
|
|
|
|
|
|
2006-10-01 20:17:16 +00:00
|
|
|
public function getCustomField($fieldName) {
|
|
|
|
|
return $this->mRequestedFields[$fieldName];
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-25 04:12:07 +00:00
|
|
|
/**
|
|
|
|
|
* Title objects that were found in the database.
|
|
|
|
|
* @return array page_id (int) => Title (obj)
|
|
|
|
|
*/
|
2006-09-27 05:13:48 +00:00
|
|
|
public function getGoodTitles() {
|
|
|
|
|
return $this->mGoodTitles;
|
2006-09-25 04:12:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Title objects that were NOT found in the database.
|
|
|
|
|
* @return array of Title objects
|
|
|
|
|
*/
|
2006-09-27 05:13:48 +00:00
|
|
|
public function getMissingTitles() {
|
|
|
|
|
return $this->mMissingTitles;
|
2006-09-25 04:12:07 +00:00
|
|
|
}
|
|
|
|
|
|
2006-10-01 20:17:16 +00:00
|
|
|
/**
|
|
|
|
|
* Page IDs that were not found in the database
|
|
|
|
|
* @return array of page IDs
|
|
|
|
|
*/
|
|
|
|
|
public function getMissingPageIDs() {
|
|
|
|
|
return $this->mMissingPageIDs;
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-25 04:12:07 +00:00
|
|
|
/**
|
|
|
|
|
* Get a list of redirects when doing redirect resolution
|
|
|
|
|
* @return array prefixed_title (string) => prefixed_title (string)
|
|
|
|
|
*/
|
2006-09-27 05:13:48 +00:00
|
|
|
public function getRedirectTitles() {
|
|
|
|
|
return $this->mRedirectTitles;
|
2006-09-25 04:12:07 +00:00
|
|
|
}
|
|
|
|
|
|
2006-09-25 06:10:16 +00:00
|
|
|
/**
|
|
|
|
|
* Get a list of title normalizations - maps the title given
|
|
|
|
|
* with its normalized version.
|
|
|
|
|
* @return array raw_prefixed_title (string) => prefixed_title (string)
|
|
|
|
|
*/
|
2006-09-27 05:13:48 +00:00
|
|
|
public function getNormalizedTitles() {
|
|
|
|
|
return $this->mNormalizedTitles;
|
2006-09-25 06:10:16 +00:00
|
|
|
}
|
2006-09-26 06:37:26 +00:00
|
|
|
|
2006-09-25 06:10:16 +00:00
|
|
|
/**
|
2006-09-27 05:13:48 +00:00
|
|
|
* Returns the number of unique pages (not revisions) in the set.
|
2006-09-25 06:10:16 +00:00
|
|
|
*/
|
2006-09-30 08:06:27 +00:00
|
|
|
public function getGoodTitleCount() {
|
2006-09-29 07:29:13 +00:00
|
|
|
return count($this->getGoodTitles());
|
2006-09-25 06:10:16 +00:00
|
|
|
}
|
2006-10-01 02:02:13 +00:00
|
|
|
|
2006-09-30 08:06:27 +00:00
|
|
|
/**
|
|
|
|
|
* Get the list of revision IDs (requested with revids= parameter)
|
|
|
|
|
*/
|
|
|
|
|
public function getRevisionIDs() {
|
2006-10-01 04:38:31 +00:00
|
|
|
$this->dieUsage(__METHOD__ . ' is not implemented', 'notimplemented');
|
2006-09-30 08:06:27 +00:00
|
|
|
}
|
2006-10-01 02:02:13 +00:00
|
|
|
|
2006-09-30 08:06:27 +00:00
|
|
|
/**
|
|
|
|
|
* Returns the number of revisions (requested with revids= parameter)
|
|
|
|
|
*/
|
|
|
|
|
public function getRevisionCount() {
|
|
|
|
|
return 0; // TODO: implement
|
|
|
|
|
}
|
2006-09-25 06:10:16 +00:00
|
|
|
|
2006-09-25 04:12:07 +00:00
|
|
|
/**
|
|
|
|
|
* This method populates internal variables with page information
|
2006-09-25 06:10:16 +00:00
|
|
|
* based on the given array of title strings.
|
2006-09-25 04:12:07 +00:00
|
|
|
*
|
|
|
|
|
* Steps:
|
|
|
|
|
* #1 For each title, get data from `page` table
|
|
|
|
|
* #2 If page was not found in the DB, store it as missing
|
|
|
|
|
*
|
|
|
|
|
* Additionally, when resolving redirects:
|
|
|
|
|
* #3 If no more redirects left, stop.
|
|
|
|
|
* #4 For each redirect, get its links from `pagelinks` table.
|
|
|
|
|
* #5 Substitute the original LinkBatch object with the new list
|
|
|
|
|
* #6 Repeat from step #1
|
|
|
|
|
*/
|
2006-10-01 20:17:16 +00:00
|
|
|
private function populatePages($titles, $pageids, $redirects) {
|
|
|
|
|
if (!is_null($titles) && !is_null($pageids))
|
|
|
|
|
ApiBase :: dieDebug(__METHOD__, 'bad parameters');
|
|
|
|
|
$processTitles = !is_null($titles);
|
2006-10-01 02:02:13 +00:00
|
|
|
|
2006-10-01 04:38:31 +00:00
|
|
|
// Ensure we get minimum required fields
|
2006-09-25 04:12:07 +00:00
|
|
|
$pageFlds = array (
|
2006-10-01 04:38:31 +00:00
|
|
|
'page_id' => null,
|
|
|
|
|
'page_namespace' => null,
|
|
|
|
|
'page_title' => null
|
2006-09-25 04:12:07 +00:00
|
|
|
);
|
2006-10-01 04:38:31 +00:00
|
|
|
|
|
|
|
|
// only store non-default fields
|
|
|
|
|
$this->mRequestedFields = array_diff_key($this->mRequestedFields, $pageFlds);
|
|
|
|
|
|
|
|
|
|
if ($redirects)
|
|
|
|
|
$pageFlds['page_is_redirect'] = null;
|
|
|
|
|
|
2006-10-01 20:17:16 +00:00
|
|
|
$pageFlds = array_keys(array_merge($pageFlds, $this->mRequestedFields));
|
2006-09-26 06:37:26 +00:00
|
|
|
|
2006-09-27 05:13:48 +00:00
|
|
|
$db = $this->getDB();
|
2006-09-26 06:37:26 +00:00
|
|
|
|
2006-10-01 20:17:16 +00:00
|
|
|
if ($processTitles) {
|
|
|
|
|
|
|
|
|
|
// Get validated and normalized title objects
|
|
|
|
|
$linkBatch = $this->processTitlesStrArray($titles);
|
|
|
|
|
|
|
|
|
|
$set = $linkBatch->constructSet('page', $db);
|
|
|
|
|
} else {
|
|
|
|
|
$set = array (
|
|
|
|
|
'page_id' => $pageids
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-25 04:12:07 +00:00
|
|
|
//
|
|
|
|
|
// Repeat until all redirects have been resolved
|
2006-10-01 20:17:16 +00:00
|
|
|
// The infinite loop is prevented by keeping all known pages in $this->mAllPages
|
2006-09-25 04:12:07 +00:00
|
|
|
//
|
2006-10-01 20:17:16 +00:00
|
|
|
do {
|
|
|
|
|
if ($processTitles) {
|
|
|
|
|
// Hack: get the ns:titles stored in array(ns => array(titles)) format
|
|
|
|
|
$remaining = $linkBatch->data;
|
|
|
|
|
} else {
|
|
|
|
|
$remaining = array_flip($pageids); // turn pageids into keys
|
|
|
|
|
}
|
2006-09-25 04:12:07 +00:00
|
|
|
|
2006-09-25 06:10:16 +00:00
|
|
|
$redirectIds = array ();
|
2006-09-25 04:12:07 +00:00
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// Get data about $linkBatch from `page` table
|
|
|
|
|
//
|
2006-09-27 05:13:48 +00:00
|
|
|
$this->profileDBIn();
|
2006-10-01 04:38:31 +00:00
|
|
|
$res = $db->select('page', $pageFlds, $set, __METHOD__);
|
2006-09-27 05:13:48 +00:00
|
|
|
$this->profileDBOut();
|
2006-09-26 06:37:26 +00:00
|
|
|
while ($row = $db->fetchObject($res)) {
|
2006-09-25 04:12:07 +00:00
|
|
|
|
2006-10-01 20:17:16 +00:00
|
|
|
$pageId = intval($row->page_id);
|
|
|
|
|
|
|
|
|
|
if ($processTitles)
|
|
|
|
|
unset ($remaining[$row->page_namespace][$row->page_title]);
|
|
|
|
|
else
|
|
|
|
|
unset ($remaining[$pageId]);
|
|
|
|
|
|
2006-09-25 04:12:07 +00:00
|
|
|
$title = Title :: makeTitle($row->page_namespace, $row->page_title);
|
2006-10-01 20:17:16 +00:00
|
|
|
$this->mAllPages[$row->page_namespace][$row->page_title] = $pageId;
|
2006-09-25 04:12:07 +00:00
|
|
|
|
2006-09-30 08:06:27 +00:00
|
|
|
if ($redirects && $row->page_is_redirect == '1') {
|
2006-10-01 20:17:16 +00:00
|
|
|
$redirectIds[$pageId] = $title;
|
2006-09-25 04:12:07 +00:00
|
|
|
} else {
|
2006-10-01 20:17:16 +00:00
|
|
|
$this->mGoodTitles[$pageId] = $title;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach ($this->mRequestedFields as $fieldName => & $fieldValues) {
|
|
|
|
|
$fieldValues[$pageId] = $row-> $fieldName;
|
2006-09-25 04:12:07 +00:00
|
|
|
}
|
|
|
|
|
}
|
2006-09-26 06:37:26 +00:00
|
|
|
$db->freeResult($res);
|
2006-09-25 04:12:07 +00:00
|
|
|
|
2006-10-01 20:17:16 +00:00
|
|
|
if ($processTitles) {
|
|
|
|
|
// The remaining titles in $remaining are non-existant pages
|
|
|
|
|
foreach ($remaining as $ns => $dbkeys) {
|
|
|
|
|
foreach ($dbkeys as $dbkey => $nothing) {
|
|
|
|
|
$this->mMissingTitles[] = Title :: makeTitle($ns, $dbkey);
|
|
|
|
|
$this->mAllPages[$ns][$dbkey] = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// The remaining pageids in $remaining do not exist
|
|
|
|
|
foreach ($remaining as $pageid => $ignore) {
|
|
|
|
|
$this->mMissingPageIDs[] = $pageid;
|
2006-09-25 04:12:07 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-30 08:06:27 +00:00
|
|
|
if (!$redirects || empty ($redirectIds))
|
2006-09-25 04:12:07 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// Resolve redirects by querying the pagelinks table, and repeat the process
|
|
|
|
|
// Create a new linkBatch object for the next pass
|
2006-10-01 20:17:16 +00:00
|
|
|
//
|
|
|
|
|
$linkBatch = $this->ResolveRedirectList($redirectIds);
|
2006-09-25 04:12:07 +00:00
|
|
|
|
2006-10-01 20:17:16 +00:00
|
|
|
// Redirects are always titles
|
|
|
|
|
$processTitles = true;
|
|
|
|
|
}
|
|
|
|
|
while (false !== ($set = $linkBatch->constructSet('page', $db)));
|
|
|
|
|
}
|
2006-09-25 04:12:07 +00:00
|
|
|
|
2006-10-01 20:17:16 +00:00
|
|
|
private function ResolveRedirectList($redirectIds) {
|
2006-09-25 04:12:07 +00:00
|
|
|
|
2006-10-01 20:17:16 +00:00
|
|
|
$linkBatch = new LinkBatch();
|
|
|
|
|
$db = $this->getDB();
|
2006-09-25 04:12:07 +00:00
|
|
|
|
2006-10-01 20:17:16 +00:00
|
|
|
// find redirect targets for all redirect pages
|
|
|
|
|
$this->profileDBIn();
|
|
|
|
|
$res = $db->select('pagelinks', array (
|
|
|
|
|
'pl_from',
|
|
|
|
|
'pl_namespace',
|
|
|
|
|
'pl_title'
|
|
|
|
|
), array (
|
|
|
|
|
'pl_from' => array_keys($redirectIds
|
|
|
|
|
)), __METHOD__);
|
|
|
|
|
$this->profileDBOut();
|
|
|
|
|
|
|
|
|
|
while ($row = $db->fetchObject($res)) {
|
|
|
|
|
|
|
|
|
|
$plfrom = intval($row->pl_from);
|
|
|
|
|
|
|
|
|
|
// Bug 7304 workaround
|
|
|
|
|
// ( http://bugzilla.wikipedia.org/show_bug.cgi?id=7304 )
|
|
|
|
|
// A redirect page may have more than one link.
|
|
|
|
|
// This code will only use the first link returned.
|
|
|
|
|
if (isset ($redirectIds[$plfrom])) { // remove line when bug 7304 is fixed
|
|
|
|
|
|
|
|
|
|
$titleStrFrom = $redirectIds[$plfrom]->getPrefixedText();
|
|
|
|
|
$titleStrTo = Title :: makeTitle($row->pl_namespace, $row->pl_title)->getPrefixedText();
|
|
|
|
|
unset ($redirectIds[$plfrom]); // remove line when bug 7304 is fixed
|
|
|
|
|
|
|
|
|
|
// Avoid an infinite loop by checking if we have already processed this target
|
|
|
|
|
if (!isset ($this->mAllPages[$row->pl_namespace][$row->pl_title])) {
|
|
|
|
|
$linkBatch->add($row->pl_namespace, $row->pl_title);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// This redirect page has more than one link.
|
|
|
|
|
// This is very slow, but safer until bug 7304 is resolved
|
|
|
|
|
$title = Title :: newFromID($plfrom);
|
|
|
|
|
$titleStrFrom = $title->getPrefixedText();
|
|
|
|
|
|
|
|
|
|
$article = new Article($title);
|
|
|
|
|
$text = $article->getContent();
|
|
|
|
|
$titleTo = Title :: newFromRedirect($text);
|
|
|
|
|
$titleStrTo = $titleTo->getPrefixedText();
|
|
|
|
|
|
|
|
|
|
if (is_null($titleStrTo))
|
|
|
|
|
ApiBase :: dieDebug(__METHOD__, 'Bug7304 workaround: redir target from {$title->getPrefixedText()} not found');
|
|
|
|
|
|
|
|
|
|
// Avoid an infinite loop by checking if we have already processed this target
|
|
|
|
|
if (!isset ($this->mAllPages[$titleTo->getNamespace()][$titleTo->getDBkey()])) {
|
|
|
|
|
$linkBatch->addObj($titleTo);
|
2006-09-25 04:12:07 +00:00
|
|
|
}
|
|
|
|
|
}
|
2006-10-01 20:17:16 +00:00
|
|
|
|
|
|
|
|
$this->mRedirectTitles[$titleStrFrom] = $titleStrTo;
|
2006-09-25 04:12:07 +00:00
|
|
|
}
|
2006-10-01 20:17:16 +00:00
|
|
|
$db->freeResult($res);
|
|
|
|
|
|
|
|
|
|
return $linkBatch;
|
2006-09-27 05:13:48 +00:00
|
|
|
}
|
2006-09-29 07:29:13 +00:00
|
|
|
|
2006-09-27 05:13:48 +00:00
|
|
|
/**
|
|
|
|
|
* Given an array of title strings, convert them into Title objects.
|
|
|
|
|
* This method validates access rights for the title,
|
|
|
|
|
* and appends normalization values to the output.
|
|
|
|
|
*
|
|
|
|
|
* @return LinkBatch of title objects.
|
|
|
|
|
*/
|
2006-09-30 08:06:27 +00:00
|
|
|
private function processTitlesStrArray($titles) {
|
2006-09-27 05:13:48 +00:00
|
|
|
|
|
|
|
|
$linkBatch = new LinkBatch();
|
|
|
|
|
|
|
|
|
|
foreach ($titles as $titleString) {
|
|
|
|
|
$titleObj = Title :: newFromText($titleString);
|
|
|
|
|
|
|
|
|
|
// Validation
|
|
|
|
|
if (!$titleObj)
|
|
|
|
|
$this->dieUsage("bad title $titleString", 'invalidtitle');
|
|
|
|
|
if ($titleObj->getNamespace() < 0)
|
|
|
|
|
$this->dieUsage("No support for special page $titleString has been implemented", 'unsupportednamespace');
|
|
|
|
|
if (!$titleObj->userCanRead())
|
|
|
|
|
$this->dieUsage("No read permission for $titleString", 'titleaccessdenied');
|
|
|
|
|
|
|
|
|
|
$linkBatch->addObj($titleObj);
|
|
|
|
|
|
|
|
|
|
// Make sure we remember the original title that was given to us
|
|
|
|
|
// This way the caller can correlate new titles with the originally requested,
|
|
|
|
|
// i.e. namespace is localized or capitalization is different
|
|
|
|
|
if ($titleString !== $titleObj->getPrefixedText()) {
|
|
|
|
|
$this->mNormalizedTitles[$titleString] = $titleObj->getPrefixedText();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $linkBatch;
|
2006-09-25 04:12:07 +00:00
|
|
|
}
|
2006-09-25 06:10:16 +00:00
|
|
|
|
2006-10-01 20:17:16 +00:00
|
|
|
private function populateRevIDs($revids) {
|
2006-10-01 04:38:31 +00:00
|
|
|
$this->dieUsage(__METHOD__ . ' is not implemented', 'notimplemented');
|
2006-09-29 07:29:13 +00:00
|
|
|
}
|
|
|
|
|
|
2006-09-27 05:13:48 +00:00
|
|
|
public function execute() {
|
2006-09-30 08:06:27 +00:00
|
|
|
$titles = $pageids = $revids = $redirects = null;
|
|
|
|
|
extract($this->extractRequestParams());
|
2006-10-01 02:02:13 +00:00
|
|
|
|
2006-09-30 08:06:27 +00:00
|
|
|
// Only one of the titles/pageids/revids is allowed at the same time
|
|
|
|
|
$dataSource = null;
|
|
|
|
|
if (isset ($titles))
|
|
|
|
|
$dataSource = 'titles';
|
|
|
|
|
if (isset ($pageids)) {
|
|
|
|
|
if (isset ($dataSource))
|
|
|
|
|
$this->dieUsage("Cannot use 'pageids' at the same time as '$dataSource'", 'multisource');
|
|
|
|
|
$dataSource = 'pageids';
|
|
|
|
|
}
|
|
|
|
|
if (isset ($revids)) {
|
|
|
|
|
if (isset ($dataSource))
|
|
|
|
|
$this->dieUsage("Cannot use 'revids' at the same time as '$dataSource'", 'multisource');
|
|
|
|
|
$dataSource = 'revids';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch ($dataSource) {
|
|
|
|
|
case 'titles' :
|
|
|
|
|
case 'pageids' :
|
2006-10-01 20:17:16 +00:00
|
|
|
$this->populatePages($titles, $pageids, $redirects);
|
2006-09-30 08:06:27 +00:00
|
|
|
break;
|
|
|
|
|
case 'revids' :
|
|
|
|
|
$this->populateRevIDs($revids);
|
|
|
|
|
break;
|
|
|
|
|
default :
|
|
|
|
|
// Do nothing - some queries do not need any of the data sources.
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getAllowedParams() {
|
|
|
|
|
return array (
|
|
|
|
|
'titles' => array (
|
2006-10-01 20:17:16 +00:00
|
|
|
ApiBase :: PARAM_ISMULTI => true
|
2006-09-30 08:06:27 +00:00
|
|
|
),
|
|
|
|
|
'pageids' => array (
|
2006-10-01 20:17:16 +00:00
|
|
|
ApiBase :: PARAM_TYPE => 'integer',
|
|
|
|
|
ApiBase :: PARAM_ISMULTI => true
|
2006-09-30 08:06:27 +00:00
|
|
|
),
|
|
|
|
|
'revids' => array (
|
2006-10-01 20:17:16 +00:00
|
|
|
ApiBase :: PARAM_TYPE => 'integer',
|
|
|
|
|
ApiBase :: PARAM_ISMULTI => true
|
2006-09-30 08:06:27 +00:00
|
|
|
),
|
|
|
|
|
'redirects' => false
|
|
|
|
|
);
|
|
|
|
|
}
|
2006-10-01 02:02:13 +00:00
|
|
|
|
2006-09-30 08:06:27 +00:00
|
|
|
protected function getParamDescription() {
|
|
|
|
|
return array (
|
|
|
|
|
'titles' => 'A list of titles to work on',
|
|
|
|
|
'pageids' => 'A list of page IDs to work on',
|
|
|
|
|
'revids' => 'A list of revision IDs to work on',
|
|
|
|
|
'redirects' => 'Automatically resolve redirects'
|
|
|
|
|
);
|
2006-09-25 06:10:16 +00:00
|
|
|
}
|
2006-09-25 04:12:07 +00:00
|
|
|
}
|
|
|
|
|
?>
|