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');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private function run($resultPageSet = null) {
|
|
|
|
|
global $wgUser;
|
|
|
|
|
|
|
|
|
|
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());
|
|
|
|
|
|
|
|
|
|
$db = $this->getDB();
|
|
|
|
|
|
2006-10-14 16:02:42 +00:00
|
|
|
$dirNewer = ($dir === 'newer');
|
2006-10-18 06:32:40 +00:00
|
|
|
$after = ($dirNewer ? '<=' : '>=');
|
|
|
|
|
$before = ($dirNewer ? '>=' : '<=');
|
2006-10-14 16:02:42 +00:00
|
|
|
|
2006-10-13 06:13:13 +00:00
|
|
|
$tables = array (
|
|
|
|
|
'watchlist',
|
2006-10-14 16:02:42 +00:00
|
|
|
'page',
|
|
|
|
|
'recentchanges'
|
2006-10-13 06:13:13 +00:00
|
|
|
);
|
|
|
|
|
|
2006-10-14 16:02:42 +00:00
|
|
|
$options = array (
|
|
|
|
|
'LIMIT' => $limit +1,
|
2006-10-16 00:08:03 +00:00
|
|
|
'ORDER BY' => 'rc_timestamp' . ($dirNewer ? '' : ' DESC'
|
|
|
|
|
));
|
2006-10-14 16:02:42 +00:00
|
|
|
|
2006-10-16 05:53:07 +00:00
|
|
|
$patrol = $timestamp = $user = $comment = false;
|
|
|
|
|
if (!is_null($prop)) {
|
|
|
|
|
if (!is_null($resultPageSet))
|
|
|
|
|
$this->dieUsage('prop parameter may not be used in a generator', 'params');
|
|
|
|
|
|
|
|
|
|
$user = (false !== array_search('user', $prop));
|
|
|
|
|
$comment = (false !== array_search('comment', $prop));
|
|
|
|
|
$timestamp = (false !== array_search('timestamp', $prop));
|
|
|
|
|
$patrol = (false !== array_search('patrol', $prop));
|
|
|
|
|
|
|
|
|
|
if ($patrol) {
|
|
|
|
|
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)) {
|
|
|
|
|
$fields = array (
|
|
|
|
|
'rc_cur_id AS page_id',
|
|
|
|
|
'rc_this_oldid AS rev_id',
|
2006-10-16 05:53:07 +00:00
|
|
|
'rc_namespace AS page_namespace',
|
|
|
|
|
'rc_title AS page_title',
|
|
|
|
|
'rc_new AS page_is_new',
|
|
|
|
|
'rc_minor AS rev_minor_edit'
|
2006-10-14 16:02:42 +00:00
|
|
|
);
|
2006-10-16 05:53:07 +00:00
|
|
|
if ($user) {
|
|
|
|
|
$fields[] = 'rc_user AS rev_user';
|
|
|
|
|
$fields[] = 'rc_user_text AS rev_user_text';
|
|
|
|
|
}
|
|
|
|
|
if ($comment)
|
|
|
|
|
$fields[] = 'rc_comment AS rev_comment';
|
|
|
|
|
if ($timestamp)
|
|
|
|
|
$fields[] = 'rc_timestamp AS rev_timestamp';
|
|
|
|
|
if ($patrol)
|
|
|
|
|
$fields[] = 'rc_patrolled';
|
2006-10-16 00:08:03 +00:00
|
|
|
}
|
|
|
|
|
elseif ($allrev) {
|
2006-10-14 16:02:42 +00:00
|
|
|
$fields = array (
|
|
|
|
|
'rc_this_oldid AS rev_id',
|
|
|
|
|
'rc_namespace AS page_namespace',
|
|
|
|
|
'rc_title AS page_title',
|
|
|
|
|
'rc_timestamp AS rev_timestamp'
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
$fields = array (
|
|
|
|
|
'rc_cur_id AS page_id',
|
|
|
|
|
'rc_namespace AS page_namespace',
|
|
|
|
|
'rc_title AS page_title',
|
|
|
|
|
'rc_timestamp AS rev_timestamp'
|
|
|
|
|
);
|
|
|
|
|
}
|
2006-10-13 06:13:13 +00:00
|
|
|
|
|
|
|
|
$where = array (
|
|
|
|
|
'wl_namespace = rc_namespace',
|
|
|
|
|
'wl_title = rc_title',
|
|
|
|
|
'rc_cur_id = page_id',
|
|
|
|
|
'wl_user' => $wgUser->getID());
|
|
|
|
|
|
|
|
|
|
if (!$allrev)
|
|
|
|
|
$where[] = 'rc_this_oldid=page_latest';
|
|
|
|
|
if (isset ($namespace))
|
|
|
|
|
$where['wl_namespace'] = $namespace;
|
2006-10-15 07:43:52 +00:00
|
|
|
|
2006-10-13 06:13:13 +00:00
|
|
|
if (isset ($start))
|
2006-10-15 07:43:52 +00:00
|
|
|
$where[] = 'rc_timestamp' . $after . $db->addQuotes($start);
|
2006-10-16 00:08:03 +00:00
|
|
|
|
2006-10-13 06:13:13 +00:00
|
|
|
if (isset ($end))
|
2006-10-15 07:43:52 +00:00
|
|
|
$where[] = 'rc_timestamp' . $before . $db->addQuotes($end);
|
2006-10-16 00:08:03 +00:00
|
|
|
|
2006-10-15 07:43:52 +00:00
|
|
|
if (!isset ($start) && !isset ($end))
|
|
|
|
|
$where[] = "rc_timestamp > ''";
|
2006-10-13 06:13:13 +00:00
|
|
|
|
|
|
|
|
$this->profileDBIn();
|
|
|
|
|
$res = $db->select($tables, $fields, $where, __METHOD__, $options);
|
|
|
|
|
$this->profileDBOut();
|
|
|
|
|
|
|
|
|
|
$data = array ();
|
|
|
|
|
$count = 0;
|
|
|
|
|
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-10-16 00:08:03 +00:00
|
|
|
$this->setContinueEnumParameter('from', $row->rev_timestamp);
|
2006-10-13 06:13:13 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$title = Title :: makeTitle($row->page_namespace, $row->page_title);
|
|
|
|
|
// skip any pages that user has no rights to read
|
|
|
|
|
if ($title->userCanRead()) {
|
|
|
|
|
|
|
|
|
|
if (is_null($resultPageSet)) {
|
2006-10-16 05:53:07 +00:00
|
|
|
$vals = array ();
|
|
|
|
|
$vals['pageid'] = intval($row->page_id);
|
|
|
|
|
$vals['revid'] = intval($row->rev_id);
|
|
|
|
|
$vals['ns'] = $title->getNamespace();
|
|
|
|
|
$vals['title'] = $title->getPrefixedText();
|
|
|
|
|
|
|
|
|
|
if ($row->page_is_new)
|
|
|
|
|
$vals['new'] = '';
|
|
|
|
|
if ($row->rev_minor_edit)
|
|
|
|
|
$vals['minor'] = '';
|
|
|
|
|
|
|
|
|
|
if ($user) {
|
|
|
|
|
if (!$row->rev_user)
|
|
|
|
|
$vals['anon'] = '';
|
|
|
|
|
$vals['user'] = $row->rev_user_text;
|
|
|
|
|
}
|
|
|
|
|
if ($comment)
|
|
|
|
|
$vals['comment'] = $row->rev_comment;
|
|
|
|
|
if ($timestamp)
|
|
|
|
|
$vals['timestamp'] = $row->rev_timestamp;
|
|
|
|
|
if ($patrol && $row->rc_patrolled)
|
|
|
|
|
$vals['patrolled'] = '';
|
|
|
|
|
|
|
|
|
|
$data[] = $vals;
|
2006-10-16 00:08:03 +00:00
|
|
|
}
|
|
|
|
|
elseif ($allrev) {
|
2006-10-14 16:02:42 +00:00
|
|
|
$data[] = intval($row->rev_id);
|
2006-10-13 06:13:13 +00:00
|
|
|
} else {
|
2006-10-14 16:02:42 +00:00
|
|
|
$data[] = intval($row->page_id);
|
2006-10-16 00:08:03 +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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getAllowedParams() {
|
|
|
|
|
$namespaces = $this->getQuery()->getValidNamespaces();
|
|
|
|
|
return array (
|
|
|
|
|
'allrev' => false,
|
|
|
|
|
'start' => array (
|
|
|
|
|
ApiBase :: PARAM_TYPE => 'timestamp'
|
|
|
|
|
),
|
|
|
|
|
'end' => array (
|
|
|
|
|
ApiBase :: PARAM_TYPE => 'timestamp'
|
|
|
|
|
),
|
|
|
|
|
'namespace' => array (
|
|
|
|
|
ApiBase :: PARAM_ISMULTI => true,
|
|
|
|
|
ApiBase :: PARAM_TYPE => $namespaces
|
|
|
|
|
),
|
|
|
|
|
'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,
|
2006-10-17 02:01:20 +00:00
|
|
|
ApiBase :: PARAM_MAX1 => ApiBase :: LIMIT_BIG1,
|
|
|
|
|
ApiBase :: PARAM_MAX2 => ApiBase :: LIMIT_BIG2
|
2006-10-16 05:53:07 +00:00
|
|
|
),
|
|
|
|
|
'prop' => array (
|
|
|
|
|
APIBase :: PARAM_ISMULTI => true,
|
|
|
|
|
APIBase :: PARAM_TYPE => array (
|
|
|
|
|
'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 (
|
|
|
|
|
'api.php?action=query&list=watchlist',
|
2006-10-14 16:02:42 +00:00
|
|
|
'api.php?action=query&list=watchlist&wlallrev',
|
|
|
|
|
'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$';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
?>
|