4 * Created on Oct 16, 2006
6 * API for MediaWiki 1.8+
8 * Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 * http://www.gnu.org/copyleft/gpl.html
26 if (!defined('MEDIAWIKI')) {
27 // Eclipse helper - will be ignored in production
28 require_once ('ApiQueryBase.php');
32 * Query action to List the log events, with optional filtering by various parameters.
36 class ApiQueryLogEvents
extends ApiQueryBase
{
38 public function __construct($query, $moduleName) {
39 parent
:: __construct($query, $moduleName, 'le');
42 public function execute() {
43 $params = $this->extractRequestParams();
46 $prop = $params['prop'];
47 $this->fld_ids
= in_array('ids', $prop);
48 $this->fld_title
= in_array('title', $prop);
49 $this->fld_type
= in_array('type', $prop);
50 $this->fld_user
= in_array('user', $prop);
51 $this->fld_timestamp
= in_array('timestamp', $prop);
52 $this->fld_comment
= in_array('comment', $prop);
53 $this->fld_details
= in_array('details', $prop);
55 list($tbl_logging, $tbl_page, $tbl_user) = $db->tableNamesN('logging', 'page', 'user');
57 $hideLogs = LogEventsList
::getExcludeClause($db);
58 if($hideLogs !== false)
59 $this->addWhere($hideLogs);
61 // Order is significant here
62 $this->addTables(array('user', 'page', 'logging'));
63 $this->addJoinConds(array(
64 'page' => array('LEFT JOIN',
65 array( 'log_namespace=page_namespace',
66 'log_title=page_title'))));
67 $this->addWhere('user_id=log_user');
68 $this->addOption('USE INDEX', array('logging' => 'times')); // default, may change
70 $this->addFields(array (
76 $this->addFieldsIf('log_id', $this->fld_ids
);
77 $this->addFieldsIf('page_id', $this->fld_ids
);
78 $this->addFieldsIf('log_user', $this->fld_user
);
79 $this->addFieldsIf('user_name', $this->fld_user
);
80 $this->addFieldsIf('log_namespace', $this->fld_title
);
81 $this->addFieldsIf('log_title', $this->fld_title
);
82 $this->addFieldsIf('log_comment', $this->fld_comment
);
83 $this->addFieldsIf('log_params', $this->fld_details
);
85 $this->addWhereFld('log_deleted', 0);
87 if( !is_null($params['type']) ) {
88 $this->addWhereFld('log_type', $params['type']);
89 $this->addOption('USE INDEX', array('logging' => array('type_time')));
92 $this->addWhereRange('log_timestamp', $params['dir'], $params['start'], $params['end']);
94 $limit = $params['limit'];
95 $this->addOption('LIMIT', $limit +
1);
97 $user = $params['user'];
98 if (!is_null($user)) {
99 $userid = $db->selectField('user', 'user_id', array (
103 $this->dieUsage("User name $user not found", 'param_user');
104 $this->addWhereFld('log_user', $userid);
105 $this->addOption('USE INDEX', array('logging' => array('user_time','page_time')));
108 $title = $params['title'];
109 if (!is_null($title)) {
110 $titleObj = Title
:: newFromText($title);
111 if (is_null($titleObj))
112 $this->dieUsage("Bad title value '$title'", 'param_title');
113 $this->addWhereFld('log_namespace', $titleObj->getNamespace());
114 $this->addWhereFld('log_title', $titleObj->getDBkey());
115 $this->addOption('USE INDEX', array('logging' => array('user_time','page_time')));
120 $res = $this->select(__METHOD__
);
121 while ($row = $db->fetchObject($res)) {
122 if (++
$count > $limit) {
123 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
124 $this->setContinueEnumParameter('start', wfTimestamp(TS_ISO_8601
, $row->log_timestamp
));
128 $vals = $this->extractRowInfo($row);
132 $db->freeResult($res);
134 $this->getResult()->setIndexedTagName($data, 'item');
135 $this->getResult()->addValue('query', $this->getModuleName(), $data);
138 public static function addLogParams($result, &$vals, $params, $type) {
139 $params = explode("\n", $params);
142 if (isset ($params[0])) {
143 $title = Title
:: newFromText($params[0]);
146 ApiQueryBase
:: addTitleInfo($vals2, $title, "new_");
147 $vals[$type] = $vals2;
154 list( $vals2['cur'], $vals2['prev'], $vals2['auto'] ) = $params;
155 $vals[$type] = $vals2;
160 list( $vals2['old'], $vals2['new'] ) = $params;
161 $vals[$type] = $vals2;
166 list( $vals2['duration'], $vals2['flags'] ) = $params;
167 $vals[$type] = $vals2;
171 if (!is_null($params)) {
172 $result->setIndexedTagName($params, 'param');
173 $vals = array_merge($vals, $params);
178 private function extractRowInfo($row) {
181 if ($this->fld_ids
) {
182 $vals['logid'] = intval($row->log_id
);
183 $vals['pageid'] = intval($row->page_id
);
186 if ($this->fld_title
) {
187 $title = Title
:: makeTitle($row->log_namespace
, $row->log_title
);
188 ApiQueryBase
:: addTitleInfo($vals, $title);
191 if ($this->fld_type
) {
192 $vals['type'] = $row->log_type
;
193 $vals['action'] = $row->log_action
;
196 if ($this->fld_details
&& $row->log_params
!== '') {
197 self
::addLogParams($this->getResult(), $vals,
198 $row->log_params
, $row->log_type
);
201 if ($this->fld_user
) {
202 $vals['user'] = $row->user_name
;
206 if ($this->fld_timestamp
) {
207 $vals['timestamp'] = wfTimestamp(TS_ISO_8601
, $row->log_timestamp
);
209 if ($this->fld_comment
&& !empty ($row->log_comment
)) {
210 $vals['comment'] = $row->log_comment
;
217 public function getAllowedParams() {
221 ApiBase
:: PARAM_ISMULTI
=> true,
222 ApiBase
:: PARAM_DFLT
=> 'ids|title|type|user|timestamp|comment|details',
223 ApiBase
:: PARAM_TYPE
=> array (
234 ApiBase
:: PARAM_TYPE
=> $wgLogTypes
237 ApiBase
:: PARAM_TYPE
=> 'timestamp'
240 ApiBase
:: PARAM_TYPE
=> 'timestamp'
243 ApiBase
:: PARAM_DFLT
=> 'older',
244 ApiBase
:: PARAM_TYPE
=> array (
252 ApiBase
:: PARAM_DFLT
=> 10,
253 ApiBase
:: PARAM_TYPE
=> 'limit',
254 ApiBase
:: PARAM_MIN
=> 1,
255 ApiBase
:: PARAM_MAX
=> ApiBase
:: LIMIT_BIG1
,
256 ApiBase
:: PARAM_MAX2
=> ApiBase
:: LIMIT_BIG2
261 public function getParamDescription() {
263 'prop' => 'Which properties to get',
264 'type' => 'Filter log entries to only this type(s)',
265 'start' => 'The timestamp to start enumerating from.',
266 'end' => 'The timestamp to end enumerating.',
267 'dir' => 'In which direction to enumerate.',
268 'user' => 'Filter entries to those made by the given user.',
269 'title' => 'Filter entries to those related to a page.',
270 'limit' => 'How many total event entries to return.'
274 public function getDescription() {
275 return 'Get events from logs.';
278 protected function getExamples() {
280 'api.php?action=query&list=logevents'
284 public function getVersion() {
285 return __CLASS__
. ': $Id$';