2006-10-13 06:13:13 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Created on Sep 25, 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
|
|
|
|
|
require_once ('ApiQueryBase.php');
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-20 08:55:14 +00:00
|
|
|
/**
|
|
|
|
|
* @addtogroup API
|
|
|
|
|
*/
|
2006-10-13 06:13:13 +00:00
|
|
|
class ApiQueryWatchlist extends ApiQueryGeneratorBase {
|
|
|
|
|
|
|
|
|
|
public function __construct($query, $moduleName) {
|
|
|
|
|
parent :: __construct($query, $moduleName, 'wl');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function execute() {
|
|
|
|
|
$this->run();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function executeGenerator($resultPageSet) {
|
|
|
|
|
$this->run($resultPageSet);
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-20 10:08:40 +00:00
|
|
|
private $fld_patrol = false, $fld_flags = false, $fld_timestamp = false, $fld_user = false, $fld_comment = false;
|
|
|
|
|
|
2006-10-13 06:13:13 +00:00
|
|
|
private function run($resultPageSet = null) {
|
|
|
|
|
global $wgUser;
|
|
|
|
|
|
2007-05-15 02:16:48 +00:00
|
|
|
$this->selectNamedDB('watchlist', DB_SLAVE, 'watchlist');
|
|
|
|
|
|
2006-10-13 06:13:13 +00:00
|
|
|
if (!$wgUser->isLoggedIn())
|
|
|
|
|
$this->dieUsage('You must be logged-in to have a watchlist', 'notloggedin');
|
|
|
|
|
|
2006-10-16 05:53:07 +00:00
|
|
|
$allrev = $start = $end = $namespace = $dir = $limit = $prop = null;
|
2006-10-13 06:13:13 +00:00
|
|
|
extract($this->extractRequestParams());
|
|
|
|
|
|
2006-10-16 05:53:07 +00:00
|
|
|
if (!is_null($prop)) {
|
|
|
|
|
if (!is_null($resultPageSet))
|
|
|
|
|
$this->dieUsage('prop parameter may not be used in a generator', 'params');
|
|
|
|
|
|
2007-05-20 10:08:40 +00:00
|
|
|
$prop = array_flip($prop);
|
2006-10-16 05:53:07 +00:00
|
|
|
|
2007-05-20 10:08:40 +00:00
|
|
|
$this->fld_flags = isset($prop['flags']);
|
|
|
|
|
$this->fld_user = isset($prop['user']);
|
|
|
|
|
$this->fld_comment = isset($prop['comment']);
|
|
|
|
|
$this->fld_timestamp = isset($prop['timestamp']);
|
|
|
|
|
$this->fld_patrol = isset($prop['patrol']);
|
|
|
|
|
|
|
|
|
|
if ($this->fld_patrol) {
|
2006-10-16 05:53:07 +00:00
|
|
|
global $wgUseRCPatrol, $wgUser;
|
|
|
|
|
if (!$wgUseRCPatrol || !$wgUser->isAllowed('patrol'))
|
|
|
|
|
$this->dieUsage('patrol property is not available', 'patrol');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-10-14 16:02:42 +00:00
|
|
|
if (is_null($resultPageSet)) {
|
2006-10-20 07:10:18 +00:00
|
|
|
$this->addFields(array (
|
2006-10-21 08:26:32 +00:00
|
|
|
'rc_cur_id',
|
2007-05-20 10:08:40 +00:00
|
|
|
// 'rc_this_oldid', // Should this field be exposed?
|
2006-10-21 08:26:32 +00:00
|
|
|
'rc_namespace',
|
|
|
|
|
'rc_title',
|
|
|
|
|
'rc_timestamp'
|
2006-10-20 07:10:18 +00:00
|
|
|
));
|
|
|
|
|
|
2007-05-20 10:08:40 +00:00
|
|
|
$this->addFieldsIf('rc_new', $this->fld_flags);
|
|
|
|
|
$this->addFieldsIf('rc_minor', $this->fld_flags);
|
|
|
|
|
$this->addFieldsIf('rc_user', $this->fld_user);
|
|
|
|
|
$this->addFieldsIf('rc_user_text', $this->fld_user);
|
|
|
|
|
$this->addFieldsIf('rc_comment', $this->fld_comment);
|
|
|
|
|
$this->addFieldsIf('rc_patrolled', $this->fld_patrol);
|
2006-10-16 00:08:03 +00:00
|
|
|
}
|
|
|
|
|
elseif ($allrev) {
|
2006-10-20 07:10:18 +00:00
|
|
|
$this->addFields(array (
|
2006-10-21 08:26:32 +00:00
|
|
|
'rc_this_oldid',
|
|
|
|
|
'rc_namespace',
|
|
|
|
|
'rc_title',
|
|
|
|
|
'rc_timestamp'
|
2006-10-20 07:10:18 +00:00
|
|
|
));
|
2006-10-14 16:02:42 +00:00
|
|
|
} else {
|
2006-10-20 07:10:18 +00:00
|
|
|
$this->addFields(array (
|
2006-10-21 08:26:32 +00:00
|
|
|
'rc_cur_id',
|
|
|
|
|
'rc_namespace',
|
|
|
|
|
'rc_title',
|
|
|
|
|
'rc_timestamp'
|
2006-10-20 07:10:18 +00:00
|
|
|
));
|
2006-10-14 16:02:42 +00:00
|
|
|
}
|
2006-10-13 06:13:13 +00:00
|
|
|
|
2006-10-20 07:10:18 +00:00
|
|
|
$this->addTables(array (
|
|
|
|
|
'watchlist',
|
|
|
|
|
'page',
|
|
|
|
|
'recentchanges'
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
$userId = $wgUser->getID();
|
|
|
|
|
$this->addWhere(array (
|
2006-10-13 06:13:13 +00:00
|
|
|
'wl_namespace = rc_namespace',
|
|
|
|
|
'wl_title = rc_title',
|
|
|
|
|
'rc_cur_id = page_id',
|
2006-10-20 07:10:18 +00:00
|
|
|
'wl_user' => $userId
|
|
|
|
|
));
|
|
|
|
|
$this->addWhereRange('rc_timestamp', $dir, $start, $end);
|
|
|
|
|
$this->addWhereFld('wl_namespace', $namespace);
|
|
|
|
|
$this->addWhereIf('rc_this_oldid=page_latest', !$allrev);
|
|
|
|
|
$this->addWhereIf("rc_timestamp > ''", !isset ($start) && !isset ($end));
|
2006-10-21 08:26:32 +00:00
|
|
|
|
2006-10-20 07:10:18 +00:00
|
|
|
$this->addOption('LIMIT', $limit +1);
|
2006-10-13 06:13:13 +00:00
|
|
|
|
|
|
|
|
$data = array ();
|
|
|
|
|
$count = 0;
|
2006-10-20 07:10:18 +00:00
|
|
|
$res = $this->select(__METHOD__);
|
|
|
|
|
|
2006-11-29 05:45:03 +00:00
|
|
|
$db = $this->getDB();
|
2006-10-13 06:13:13 +00:00
|
|
|
while ($row = $db->fetchObject($res)) {
|
|
|
|
|
if (++ $count > $limit) {
|
|
|
|
|
// We've reached the one extra which shows that there are additional pages to be had. Stop here...
|
2006-11-03 06:53:47 +00:00
|
|
|
$this->setContinueEnumParameter('start', $row->rc_timestamp);
|
2006-10-13 06:13:13 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2006-10-21 08:26:32 +00:00
|
|
|
if (is_null($resultPageSet)) {
|
2007-05-20 10:08:40 +00:00
|
|
|
$vals = $this->extractRowInfo($row);
|
|
|
|
|
if ($vals)
|
2006-10-16 05:53:07 +00:00
|
|
|
$data[] = $vals;
|
2006-10-21 08:26:32 +00:00
|
|
|
} else {
|
|
|
|
|
$title = Title :: makeTitle($row->rc_namespace, $row->rc_title);
|
|
|
|
|
// skip any pages that user has no rights to read
|
|
|
|
|
if ($title->userCanRead()) {
|
|
|
|
|
if ($allrev) {
|
|
|
|
|
$data[] = intval($row->rc_this_oldid);
|
|
|
|
|
} else {
|
|
|
|
|
$data[] = intval($row->rc_cur_id);
|
|
|
|
|
}
|
2006-10-16 00:08:03 +00:00
|
|
|
}
|
2006-10-13 06:13:13 +00:00
|
|
|
}
|
|
|
|
|
}
|
2006-10-21 08:26:32 +00:00
|
|
|
|
2006-10-13 06:13:13 +00:00
|
|
|
$db->freeResult($res);
|
|
|
|
|
|
|
|
|
|
if (is_null($resultPageSet)) {
|
2006-10-18 05:27:43 +00:00
|
|
|
$this->getResult()->setIndexedTagName($data, 'item');
|
2006-10-16 07:19:20 +00:00
|
|
|
$this->getResult()->addValue('query', $this->getModuleName(), $data);
|
2006-10-16 00:08:03 +00:00
|
|
|
}
|
|
|
|
|
elseif ($allrev) {
|
2006-10-14 16:02:42 +00:00
|
|
|
$resultPageSet->populateFromRevisionIDs($data);
|
|
|
|
|
} else {
|
|
|
|
|
$resultPageSet->populateFromPageIDs($data);
|
2006-10-16 00:08:03 +00:00
|
|
|
}
|
2006-10-13 06:13:13 +00:00
|
|
|
}
|
|
|
|
|
|
2007-05-20 10:08:40 +00:00
|
|
|
private function extractRowInfo($row) {
|
|
|
|
|
|
|
|
|
|
$title = Title :: makeTitle($row->rc_namespace, $row->rc_title);
|
|
|
|
|
if (!$title->userCanRead())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
$vals = array ();
|
|
|
|
|
|
|
|
|
|
$vals['pageid'] = intval($row->rc_cur_id);
|
|
|
|
|
// $vals['textid'] = intval($row->rc_this_oldid); // Should this field be exposed?
|
|
|
|
|
|
|
|
|
|
ApiQueryBase :: addTitleInfo($vals, $title);
|
|
|
|
|
|
|
|
|
|
if ($this->fld_user) {
|
|
|
|
|
$vals['user'] = $row->rc_user_text;
|
|
|
|
|
if (!$row->rc_user)
|
|
|
|
|
$vals['anon'] = '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($this->fld_flags) {
|
|
|
|
|
if ($row->rc_new)
|
|
|
|
|
$vals['new'] = '';
|
|
|
|
|
if ($row->rc_minor)
|
|
|
|
|
$vals['minor'] = '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($this->fld_patrol && isset($row->rc_patrolled))
|
|
|
|
|
$vals['patrolled'] = '';
|
|
|
|
|
|
|
|
|
|
if ($this->fld_timestamp)
|
|
|
|
|
$vals['timestamp'] = wfTimestamp(TS_ISO_8601, $row->rc_timestamp);
|
|
|
|
|
|
|
|
|
|
if ($this->fld_comment && !empty ($row->rc_comment))
|
|
|
|
|
$vals['comment'] = $row->rc_comment;
|
|
|
|
|
|
|
|
|
|
return $vals;
|
|
|
|
|
}
|
|
|
|
|
|
2006-10-13 06:13:13 +00:00
|
|
|
protected function getAllowedParams() {
|
|
|
|
|
return array (
|
|
|
|
|
'allrev' => false,
|
|
|
|
|
'start' => array (
|
|
|
|
|
ApiBase :: PARAM_TYPE => 'timestamp'
|
|
|
|
|
),
|
|
|
|
|
'end' => array (
|
|
|
|
|
ApiBase :: PARAM_TYPE => 'timestamp'
|
|
|
|
|
),
|
|
|
|
|
'namespace' => array (
|
|
|
|
|
ApiBase :: PARAM_ISMULTI => true,
|
2006-11-03 06:53:47 +00:00
|
|
|
ApiBase :: PARAM_TYPE => 'namespace'
|
2006-10-13 06:13:13 +00:00
|
|
|
),
|
|
|
|
|
'dir' => array (
|
|
|
|
|
ApiBase :: PARAM_DFLT => 'older',
|
|
|
|
|
ApiBase :: PARAM_TYPE => array (
|
|
|
|
|
'newer',
|
|
|
|
|
'older'
|
|
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
'limit' => array (
|
|
|
|
|
ApiBase :: PARAM_DFLT => 10,
|
|
|
|
|
ApiBase :: PARAM_TYPE => 'limit',
|
|
|
|
|
ApiBase :: PARAM_MIN => 1,
|
2007-05-19 18:08:36 +00:00
|
|
|
ApiBase :: PARAM_MAX => ApiBase :: LIMIT_BIG1,
|
2006-10-17 02:01:20 +00:00
|
|
|
ApiBase :: PARAM_MAX2 => ApiBase :: LIMIT_BIG2
|
2006-10-16 05:53:07 +00:00
|
|
|
),
|
|
|
|
|
'prop' => array (
|
|
|
|
|
APIBase :: PARAM_ISMULTI => true,
|
|
|
|
|
APIBase :: PARAM_TYPE => array (
|
2007-05-20 10:08:40 +00:00
|
|
|
'flags',
|
2006-10-16 05:53:07 +00:00
|
|
|
'user',
|
|
|
|
|
'comment',
|
|
|
|
|
'timestamp',
|
|
|
|
|
'patrol'
|
|
|
|
|
)
|
2006-10-13 06:13:13 +00:00
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getParamDescription() {
|
|
|
|
|
return array (
|
2006-10-16 00:08:03 +00:00
|
|
|
'allrev' => 'Include multiple revisions of the same page within given timeframe.',
|
2006-10-13 06:13:13 +00:00
|
|
|
'start' => 'The timestamp to start enumerating from.',
|
|
|
|
|
'end' => 'The timestamp to end enumerating.',
|
|
|
|
|
'namespace' => 'Filter changes to only the given namespace(s).',
|
2006-10-16 00:08:03 +00:00
|
|
|
'dir' => 'In which direction to enumerate pages.',
|
2006-10-16 05:53:07 +00:00
|
|
|
'limit' => 'How many total pages to return per request.',
|
|
|
|
|
'prop' => 'Which additional items to get (non-generator mode only).'
|
2006-10-13 06:13:13 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getDescription() {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getExamples() {
|
|
|
|
|
return array (
|
2007-05-20 10:08:40 +00:00
|
|
|
'api.php?action=query&list=watchlist&wlprop=timestamp|user|comment',
|
|
|
|
|
'api.php?action=query&list=watchlist&wlallrev&wlprop=timestamp|user|comment',
|
2006-10-14 16:02:42 +00:00
|
|
|
'api.php?action=query&generator=watchlist&prop=info',
|
|
|
|
|
'api.php?action=query&generator=watchlist&gwlallrev&prop=revisions&rvprop=timestamp|user'
|
2006-10-13 06:13:13 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getVersion() {
|
|
|
|
|
return __CLASS__ . ': $Id$';
|
|
|
|
|
}
|
|
|
|
|
}
|
2006-10-21 08:26:32 +00:00
|
|
|
?>
|