2006-10-16 07:19:20 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Created on Oct 16, 2006
|
|
|
|
|
*
|
|
|
|
|
* API for MediaWiki 1.8+
|
|
|
|
|
*
|
2007-05-20 23:31:44 +00:00
|
|
|
* Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
|
2006-10-16 07:19:20 +00:00
|
|
|
*
|
|
|
|
|
* 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
|
|
|
/**
|
2007-05-20 23:31:44 +00:00
|
|
|
* Query action to List the log events, with optional filtering by various parameters.
|
2008-04-14 07:45:50 +00:00
|
|
|
*
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup API
|
2007-04-20 08:55:14 +00:00
|
|
|
*/
|
2006-10-16 07:19:20 +00:00
|
|
|
class ApiQueryLogEvents extends ApiQueryBase {
|
|
|
|
|
|
|
|
|
|
public function __construct($query, $moduleName) {
|
|
|
|
|
parent :: __construct($query, $moduleName, 'le');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function execute() {
|
2008-04-14 07:45:50 +00:00
|
|
|
$params = $this->extractRequestParams();
|
2007-01-22 23:50:42 +00:00
|
|
|
$db = $this->getDB();
|
2006-10-16 07:19:20 +00:00
|
|
|
|
2007-07-15 06:26:41 +00:00
|
|
|
$prop = $params['prop'];
|
|
|
|
|
$this->fld_ids = in_array('ids', $prop);
|
|
|
|
|
$this->fld_title = in_array('title', $prop);
|
|
|
|
|
$this->fld_type = in_array('type', $prop);
|
|
|
|
|
$this->fld_user = in_array('user', $prop);
|
|
|
|
|
$this->fld_timestamp = in_array('timestamp', $prop);
|
|
|
|
|
$this->fld_comment = in_array('comment', $prop);
|
|
|
|
|
$this->fld_details = in_array('details', $prop);
|
|
|
|
|
|
Changing lines like this: "extract( $dbw->tableNames( 'page', 'archive' ) );" to be like this: "list ($page, $archive) = $dbw->tableNamesN( 'page', 'archive' );".
Three reasons for this:
1) It's better for analysis tools [which want explicit variable declaration]
2) It's easier for a human to read, as it's completely explicit where the variables came from [which is something you don't get with extract() ]
3) It makes it easier to find everywhere where a variable is used with search/grep [which you can't currently do with $tbl_page variables from things like: "extract($db->tableNames( 'page', 'revision'), EXTR_PREFIX_ALL, 'tbl');"].
Otherwise, from a functionality/efficiency perspective the two forms should be identical.
By doing this have been able run static analysis over the usages of these variables, thus eliminating 5 unneeded table names from calls, plus removing 3 unused calls entirely, and it just feels subjectively slightly nicer to me.
2006-11-27 08:36:57 +00:00
|
|
|
list($tbl_logging, $tbl_page, $tbl_user) = $db->tableNamesN('logging', 'page', 'user');
|
2006-10-31 21:00:00 +00:00
|
|
|
|
2008-04-02 17:43:57 +00:00
|
|
|
$hideLogs = LogEventsList::getExcludeClause($db);
|
2008-04-02 07:10:41 +00:00
|
|
|
if($hideLogs !== false)
|
|
|
|
|
$this->addWhere($hideLogs);
|
2008-05-09 18:00:15 +00:00
|
|
|
|
2008-05-10 10:49:26 +00:00
|
|
|
// Order is significant here
|
|
|
|
|
$this->addTables(array('user', 'page', 'logging'));
|
|
|
|
|
$this->addJoinConds(array(
|
|
|
|
|
'page' => array('LEFT JOIN',
|
|
|
|
|
array( 'log_namespace=page_namespace',
|
|
|
|
|
'log_title=page_title'))));
|
|
|
|
|
$this->addWhere('user_id=log_user');
|
2009-02-05 11:44:10 +00:00
|
|
|
$index = 'times'; // default, may change
|
2006-10-16 07:19:20 +00:00
|
|
|
|
2006-10-20 07:10:18 +00:00
|
|
|
$this->addFields(array (
|
2006-10-16 07:19:20 +00:00
|
|
|
'log_type',
|
|
|
|
|
'log_action',
|
|
|
|
|
'log_timestamp',
|
2009-02-05 11:44:10 +00:00
|
|
|
'log_deleted',
|
2006-10-20 07:10:18 +00:00
|
|
|
));
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2008-05-13 22:17:54 +00:00
|
|
|
$this->addFieldsIf('log_id', $this->fld_ids);
|
2007-07-15 06:26:41 +00:00
|
|
|
$this->addFieldsIf('page_id', $this->fld_ids);
|
|
|
|
|
$this->addFieldsIf('log_user', $this->fld_user);
|
|
|
|
|
$this->addFieldsIf('user_name', $this->fld_user);
|
|
|
|
|
$this->addFieldsIf('log_namespace', $this->fld_title);
|
|
|
|
|
$this->addFieldsIf('log_title', $this->fld_title);
|
|
|
|
|
$this->addFieldsIf('log_comment', $this->fld_comment);
|
|
|
|
|
$this->addFieldsIf('log_params', $this->fld_details);
|
2008-05-13 22:17:54 +00:00
|
|
|
|
|
|
|
|
if( !is_null($params['type']) ) {
|
|
|
|
|
$this->addWhereFld('log_type', $params['type']);
|
2009-02-05 11:44:10 +00:00
|
|
|
$index = 'type_time';
|
2008-05-13 22:17:54 +00:00
|
|
|
}
|
|
|
|
|
|
2007-07-15 06:26:41 +00:00
|
|
|
$this->addWhereRange('log_timestamp', $params['dir'], $params['start'], $params['end']);
|
|
|
|
|
|
|
|
|
|
$limit = $params['limit'];
|
2006-10-20 07:10:18 +00:00
|
|
|
$this->addOption('LIMIT', $limit +1);
|
2008-10-25 08:13:40 +00:00
|
|
|
|
|
|
|
|
$index = false;
|
2007-07-15 06:26:41 +00:00
|
|
|
$user = $params['user'];
|
2006-10-16 07:19:20 +00:00
|
|
|
if (!is_null($user)) {
|
2008-11-22 15:46:36 +00:00
|
|
|
$userid = User::idFromName($user);
|
2006-10-16 07:19:20 +00:00
|
|
|
if (!$userid)
|
|
|
|
|
$this->dieUsage("User name $user not found", 'param_user');
|
2006-10-20 07:10:18 +00:00
|
|
|
$this->addWhereFld('log_user', $userid);
|
2008-10-25 08:13:40 +00:00
|
|
|
$index = 'user_time';
|
2006-10-16 07:19:20 +00:00
|
|
|
}
|
|
|
|
|
|
2007-07-15 06:26:41 +00:00
|
|
|
$title = $params['title'];
|
2006-10-16 07:19:20 +00:00
|
|
|
if (!is_null($title)) {
|
|
|
|
|
$titleObj = Title :: newFromText($title);
|
|
|
|
|
if (is_null($titleObj))
|
|
|
|
|
$this->dieUsage("Bad title value '$title'", 'param_title');
|
2006-10-20 07:10:18 +00:00
|
|
|
$this->addWhereFld('log_namespace', $titleObj->getNamespace());
|
|
|
|
|
$this->addWhereFld('log_title', $titleObj->getDBkey());
|
2008-10-25 08:13:40 +00:00
|
|
|
|
|
|
|
|
// Use the title index in preference to the user index if there is a conflict
|
|
|
|
|
$index = 'page_time';
|
2006-10-16 07:19:20 +00:00
|
|
|
}
|
2008-10-25 08:13:40 +00:00
|
|
|
if ( $index ) {
|
|
|
|
|
$this->addOption( 'USE INDEX', array( 'logging' => $index ) );
|
|
|
|
|
}
|
2009-02-05 11:44:10 +00:00
|
|
|
// Paranoia: avoid brute force searches (bug 17342)
|
|
|
|
|
if (!is_null($title) || !is_null($params['type'])) {
|
|
|
|
|
$this->addWhere('log_deleted & ' . LogPage::DELETED_ACTION . ' = 0');
|
|
|
|
|
}
|
|
|
|
|
if (!is_null($user)) {
|
|
|
|
|
$this->addWhere('log_deleted & ' . LogPage::DELETED_USER . ' = 0');
|
|
|
|
|
}
|
2006-10-16 07:19:20 +00:00
|
|
|
|
|
|
|
|
$data = array ();
|
|
|
|
|
$count = 0;
|
2006-10-20 07:10:18 +00:00
|
|
|
$res = $this->select(__METHOD__);
|
2006-10-16 07:19:20 +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...
|
2007-07-09 05:19:07 +00:00
|
|
|
$this->setContinueEnumParameter('start', wfTimestamp(TS_ISO_8601, $row->log_timestamp));
|
2006-10-16 07:19:20 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-20 08:34:47 +00:00
|
|
|
$vals = $this->extractRowInfo($row);
|
2006-10-21 08:26:32 +00:00
|
|
|
if($vals)
|
|
|
|
|
$data[] = $vals;
|
2006-10-16 07:19:20 +00:00
|
|
|
}
|
|
|
|
|
$db->freeResult($res);
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
2008-09-06 12:18:36 +00:00
|
|
|
|
2008-12-04 15:59:26 +00:00
|
|
|
public static function addLogParams($result, &$vals, $params, $type, $ts) {
|
2008-09-06 12:18:36 +00:00
|
|
|
$params = explode("\n", $params);
|
|
|
|
|
switch ($type) {
|
|
|
|
|
case 'move':
|
|
|
|
|
if (isset ($params[0])) {
|
|
|
|
|
$title = Title :: newFromText($params[0]);
|
|
|
|
|
if ($title) {
|
|
|
|
|
$vals2 = array();
|
|
|
|
|
ApiQueryBase :: addTitleInfo($vals2, $title, "new_");
|
|
|
|
|
$vals[$type] = $vals2;
|
|
|
|
|
$params = null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 'patrol':
|
|
|
|
|
$vals2 = array();
|
|
|
|
|
list( $vals2['cur'], $vals2['prev'], $vals2['auto'] ) = $params;
|
|
|
|
|
$vals[$type] = $vals2;
|
|
|
|
|
$params = null;
|
|
|
|
|
break;
|
|
|
|
|
case 'rights':
|
|
|
|
|
$vals2 = array();
|
|
|
|
|
list( $vals2['old'], $vals2['new'] ) = $params;
|
|
|
|
|
$vals[$type] = $vals2;
|
|
|
|
|
$params = null;
|
|
|
|
|
break;
|
|
|
|
|
case 'block':
|
|
|
|
|
$vals2 = array();
|
|
|
|
|
list( $vals2['duration'], $vals2['flags'] ) = $params;
|
2008-12-04 15:59:26 +00:00
|
|
|
$vals2['expiry'] = wfTimestamp(TS_ISO_8601,
|
|
|
|
|
strtotime($params[0], wfTimestamp(TS_UNIX, $ts)));
|
2008-09-06 12:18:36 +00:00
|
|
|
$vals[$type] = $vals2;
|
|
|
|
|
$params = null;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (!is_null($params)) {
|
|
|
|
|
$result->setIndexedTagName($params, 'param');
|
|
|
|
|
$vals = array_merge($vals, $params);
|
|
|
|
|
}
|
|
|
|
|
return $vals;
|
|
|
|
|
}
|
2006-10-16 07:19:20 +00:00
|
|
|
|
2007-05-20 08:34:47 +00:00
|
|
|
private function extractRowInfo($row) {
|
|
|
|
|
$vals = array();
|
|
|
|
|
|
2007-07-15 06:26:41 +00:00
|
|
|
if ($this->fld_ids) {
|
2008-05-13 22:18:41 +00:00
|
|
|
$vals['logid'] = intval($row->log_id);
|
2007-07-15 06:26:41 +00:00
|
|
|
$vals['pageid'] = intval($row->page_id);
|
|
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-07-15 06:26:41 +00:00
|
|
|
if ($this->fld_title) {
|
|
|
|
|
$title = Title :: makeTitle($row->log_namespace, $row->log_title);
|
|
|
|
|
ApiQueryBase :: addTitleInfo($vals, $title);
|
|
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-07-15 06:26:41 +00:00
|
|
|
if ($this->fld_type) {
|
2009-02-05 11:44:10 +00:00
|
|
|
if (LogEventsList::isDeleted($row, LogPage::DELETED_ACTION)) {
|
|
|
|
|
$vals['actionhidden'] = '';
|
|
|
|
|
} else {
|
|
|
|
|
$vals['type'] = $row->log_type;
|
|
|
|
|
$vals['action'] = $row->log_action;
|
|
|
|
|
}
|
2007-07-15 06:26:41 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-07-15 06:26:41 +00:00
|
|
|
if ($this->fld_details && $row->log_params !== '') {
|
2009-02-05 11:44:10 +00:00
|
|
|
if (LogEventsList::isDeleted($row, LogPage::DELETED_ACTION)) {
|
|
|
|
|
$vals['actionhidden'] = '';
|
|
|
|
|
} else {
|
|
|
|
|
self::addLogParams($this->getResult(), $vals,
|
|
|
|
|
$row->log_params, $row->log_type,
|
|
|
|
|
$row->log_timestamp);
|
|
|
|
|
}
|
2007-05-20 08:34:47 +00:00
|
|
|
}
|
|
|
|
|
|
2007-07-15 06:26:41 +00:00
|
|
|
if ($this->fld_user) {
|
2009-02-05 11:44:10 +00:00
|
|
|
if (LogEventsList::isDeleted($row, LogPage::DELETED_USER)) {
|
|
|
|
|
$vals['userhidden'] = '';
|
|
|
|
|
} else {
|
|
|
|
|
$vals['user'] = $row->user_name;
|
|
|
|
|
if(!$row->log_user)
|
|
|
|
|
$vals['anon'] = '';
|
|
|
|
|
}
|
2007-07-15 06:26:41 +00:00
|
|
|
}
|
|
|
|
|
if ($this->fld_timestamp) {
|
|
|
|
|
$vals['timestamp'] = wfTimestamp(TS_ISO_8601, $row->log_timestamp);
|
|
|
|
|
}
|
2008-10-25 14:04:43 +00:00
|
|
|
if ($this->fld_comment && isset($row->log_comment)) {
|
2009-02-05 11:44:10 +00:00
|
|
|
if (LogEventsList::isDeleted($row, LogPage::DELETED_COMMENT)) {
|
|
|
|
|
$vals['commenthidden'] = '';
|
|
|
|
|
} else {
|
|
|
|
|
$vals['comment'] = $row->log_comment;
|
|
|
|
|
}
|
2007-07-15 06:26:41 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2007-05-20 08:34:47 +00:00
|
|
|
return $vals;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-01-28 19:05:26 +00:00
|
|
|
public function getAllowedParams() {
|
2007-05-20 08:34:47 +00:00
|
|
|
global $wgLogTypes;
|
2006-10-16 07:19:20 +00:00
|
|
|
return array (
|
2007-07-15 06:26:41 +00:00
|
|
|
'prop' => array (
|
|
|
|
|
ApiBase :: PARAM_ISMULTI => true,
|
|
|
|
|
ApiBase :: PARAM_DFLT => 'ids|title|type|user|timestamp|comment|details',
|
|
|
|
|
ApiBase :: PARAM_TYPE => array (
|
|
|
|
|
'ids',
|
|
|
|
|
'title',
|
|
|
|
|
'type',
|
|
|
|
|
'user',
|
|
|
|
|
'timestamp',
|
|
|
|
|
'comment',
|
|
|
|
|
'details',
|
|
|
|
|
)
|
|
|
|
|
),
|
2006-10-17 02:01:20 +00:00
|
|
|
'type' => array (
|
2007-05-20 08:34:47 +00:00
|
|
|
ApiBase :: PARAM_TYPE => $wgLogTypes
|
2006-10-17 02:01:20 +00:00
|
|
|
),
|
|
|
|
|
'start' => array (
|
|
|
|
|
ApiBase :: PARAM_TYPE => 'timestamp'
|
|
|
|
|
),
|
|
|
|
|
'end' => array (
|
|
|
|
|
ApiBase :: PARAM_TYPE => 'timestamp'
|
|
|
|
|
),
|
|
|
|
|
'dir' => array (
|
|
|
|
|
ApiBase :: PARAM_DFLT => 'older',
|
|
|
|
|
ApiBase :: PARAM_TYPE => array (
|
|
|
|
|
'newer',
|
|
|
|
|
'older'
|
|
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
'user' => null,
|
2006-11-03 06:53:47 +00:00
|
|
|
'title' => null,
|
|
|
|
|
'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-11-03 06:53:47 +00:00
|
|
|
ApiBase :: PARAM_MAX2 => ApiBase :: LIMIT_BIG2
|
|
|
|
|
)
|
2006-10-16 07:19:20 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-28 19:05:26 +00:00
|
|
|
public function getParamDescription() {
|
2006-10-16 07:19:20 +00:00
|
|
|
return array (
|
2007-12-12 19:30:17 +00:00
|
|
|
'prop' => 'Which properties to get',
|
2006-11-03 06:53:47 +00:00
|
|
|
'type' => 'Filter log entries to only this type(s)',
|
|
|
|
|
'start' => 'The timestamp to start enumerating from.',
|
|
|
|
|
'end' => 'The timestamp to end enumerating.',
|
|
|
|
|
'dir' => 'In which direction to enumerate.',
|
|
|
|
|
'user' => 'Filter entries to those made by the given user.',
|
|
|
|
|
'title' => 'Filter entries to those related to a page.',
|
|
|
|
|
'limit' => 'How many total event entries to return.'
|
2006-10-16 07:19:20 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-28 19:05:26 +00:00
|
|
|
public function getDescription() {
|
2006-10-16 07:19:20 +00:00
|
|
|
return 'Get events from logs.';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getExamples() {
|
|
|
|
|
return array (
|
|
|
|
|
'api.php?action=query&list=logevents'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getVersion() {
|
2007-12-06 18:33:18 +00:00
|
|
|
return __CLASS__ . ': $Id$';
|
2006-10-16 07:19:20 +00:00
|
|
|
}
|
|
|
|
|
}
|