2006-10-16 07:19:20 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Created on Oct 16, 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-16 07:19:20 +00:00
|
|
|
class ApiQueryLogEvents extends ApiQueryBase {
|
|
|
|
|
|
|
|
|
|
public function __construct($query, $moduleName) {
|
|
|
|
|
parent :: __construct($query, $moduleName, 'le');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function execute() {
|
2006-10-17 02:01:20 +00:00
|
|
|
$limit = $type = $start = $end = $dir = $user = $title = null;
|
2006-10-16 07:19:20 +00:00
|
|
|
extract($this->extractRequestParams());
|
|
|
|
|
|
2007-01-22 23:50:42 +00:00
|
|
|
$db = $this->getDB();
|
2006-10-16 07:19:20 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
|
$this->addOption('STRAIGHT_JOIN');
|
2006-10-21 08:26:32 +00:00
|
|
|
$this->addTables("$tbl_logging LEFT OUTER JOIN $tbl_page ON " .
|
2006-10-17 02:01:20 +00:00
|
|
|
"log_namespace=page_namespace AND log_title=page_title " .
|
2006-10-20 07:10:18 +00:00
|
|
|
"INNER JOIN $tbl_user ON user_id=log_user");
|
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',
|
|
|
|
|
'log_user',
|
|
|
|
|
'user_name',
|
|
|
|
|
'log_namespace',
|
|
|
|
|
'log_title',
|
|
|
|
|
'page_id',
|
|
|
|
|
'log_comment',
|
|
|
|
|
'log_params'
|
2006-10-20 07:10:18 +00:00
|
|
|
));
|
2006-10-16 07:19:20 +00:00
|
|
|
|
2006-10-20 07:10:18 +00:00
|
|
|
$this->addWhereFld('log_type', $type);
|
|
|
|
|
$this->addWhereRange('log_timestamp', $dir, $start, $end);
|
|
|
|
|
$this->addOption('LIMIT', $limit +1);
|
2006-10-16 07:19:20 +00:00
|
|
|
|
|
|
|
|
if (!is_null($user)) {
|
|
|
|
|
$userid = $db->selectField('user', 'user_id', array (
|
|
|
|
|
'user_name' => $user
|
|
|
|
|
));
|
|
|
|
|
if (!$userid)
|
|
|
|
|
$this->dieUsage("User name $user not found", 'param_user');
|
2006-10-20 07:10:18 +00:00
|
|
|
$this->addWhereFld('log_user', $userid);
|
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());
|
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...
|
2006-11-01 15:49:34 +00:00
|
|
|
$this->setContinueEnumParameter('start', $row->log_timestamp);
|
2006-10-16 07:19:20 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2006-10-21 08:26:32 +00:00
|
|
|
$vals = $this->addRowInfo('log', $row);
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getAllowedParams() {
|
|
|
|
|
return array (
|
2006-10-17 02:01:20 +00:00
|
|
|
'type' => array (
|
|
|
|
|
ApiBase :: PARAM_ISMULTI => true,
|
|
|
|
|
ApiBase :: PARAM_TYPE => array (
|
|
|
|
|
'block',
|
|
|
|
|
'protect',
|
|
|
|
|
'rights',
|
|
|
|
|
'delete',
|
|
|
|
|
'upload',
|
|
|
|
|
'move',
|
|
|
|
|
'import',
|
|
|
|
|
'renameuser',
|
|
|
|
|
'newusers',
|
|
|
|
|
'makebot'
|
|
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
'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
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getParamDescription() {
|
|
|
|
|
return array (
|
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
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getDescription() {
|
|
|
|
|
return 'Get events from logs.';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getExamples() {
|
|
|
|
|
return array (
|
|
|
|
|
'api.php?action=query&list=logevents'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getVersion() {
|
2006-10-17 02:01:20 +00:00
|
|
|
return __CLASS__ . ': $Id$';
|
2006-10-16 07:19:20 +00:00
|
|
|
}
|
|
|
|
|
}
|
2006-10-21 08:26:32 +00:00
|
|
|
?>
|