Merge "Reduced some master queries by adding flags to Revision functions."
[lhc/web/wiklou.git] / includes / api / ApiQueryLogEvents.php
1 <?php
2 /**
3 *
4 *
5 * Created on Oct 16, 2006
6 *
7 * Copyright © 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 */
26
27 /**
28 * Query action to List the log events, with optional filtering by various parameters.
29 *
30 * @ingroup API
31 */
32 class ApiQueryLogEvents extends ApiQueryBase {
33
34 public function __construct( $query, $moduleName ) {
35 parent::__construct( $query, $moduleName, 'le' );
36 }
37
38 private $fld_ids = false, $fld_title = false, $fld_type = false,
39 $fld_action = false, $fld_user = false, $fld_userid = false,
40 $fld_timestamp = false, $fld_comment = false, $fld_parsedcomment = false,
41 $fld_details = false, $fld_tags = false;
42
43 public function execute() {
44 $params = $this->extractRequestParams();
45 $db = $this->getDB();
46
47 $prop = array_flip( $params['prop'] );
48
49 $this->fld_ids = isset( $prop['ids'] );
50 $this->fld_title = isset( $prop['title'] );
51 $this->fld_type = isset( $prop['type'] );
52 $this->fld_action = isset ( $prop['action'] );
53 $this->fld_user = isset( $prop['user'] );
54 $this->fld_userid = isset( $prop['userid'] );
55 $this->fld_timestamp = isset( $prop['timestamp'] );
56 $this->fld_comment = isset( $prop['comment'] );
57 $this->fld_parsedcomment = isset ( $prop['parsedcomment'] );
58 $this->fld_details = isset( $prop['details'] );
59 $this->fld_tags = isset( $prop['tags'] );
60
61 $hideLogs = LogEventsList::getExcludeClause( $db );
62 if ( $hideLogs !== false ) {
63 $this->addWhere( $hideLogs );
64 }
65
66 // Order is significant here
67 $this->addTables( array( 'logging', 'user', 'page' ) );
68 $this->addOption( 'STRAIGHT_JOIN' );
69 $this->addJoinConds( array(
70 'user' => array( 'JOIN',
71 'user_id=log_user' ),
72 'page' => array( 'LEFT JOIN',
73 array( 'log_namespace=page_namespace',
74 'log_title=page_title' ) ) ) );
75 $index = array( 'logging' => 'times' ); // default, may change
76
77 $this->addFields( array(
78 'log_type',
79 'log_action',
80 'log_timestamp',
81 'log_deleted',
82 ) );
83
84 $this->addFieldsIf( array( 'log_id', 'page_id' ), $this->fld_ids );
85 $this->addFieldsIf( array( 'log_user', 'user_name' ), $this->fld_user );
86 $this->addFieldsIf( 'user_id', $this->fld_userid );
87 $this->addFieldsIf( array( 'log_namespace', 'log_title' ), $this->fld_title || $this->fld_parsedcomment );
88 $this->addFieldsIf( 'log_comment', $this->fld_comment || $this->fld_parsedcomment );
89 $this->addFieldsIf( 'log_params', $this->fld_details );
90
91 if ( $this->fld_tags ) {
92 $this->addTables( 'tag_summary' );
93 $this->addJoinConds( array( 'tag_summary' => array( 'LEFT JOIN', 'log_id=ts_log_id' ) ) );
94 $this->addFields( 'ts_tags' );
95 }
96
97 if ( !is_null( $params['tag'] ) ) {
98 $this->addTables( 'change_tag' );
99 $this->addJoinConds( array( 'change_tag' => array( 'INNER JOIN', array( 'log_id=ct_log_id' ) ) ) );
100 $this->addWhereFld( 'ct_tag', $params['tag'] );
101 global $wgOldChangeTagsIndex;
102 $index['change_tag'] = $wgOldChangeTagsIndex ? 'ct_tag' : 'change_tag_tag_id';
103 }
104
105 if ( !is_null( $params['action'] ) ) {
106 list( $type, $action ) = explode( '/', $params['action'] );
107 $this->addWhereFld( 'log_type', $type );
108 $this->addWhereFld( 'log_action', $action );
109 } elseif ( !is_null( $params['type'] ) ) {
110 $this->addWhereFld( 'log_type', $params['type'] );
111 $index['logging'] = 'type_time';
112 }
113
114 $this->addTimestampWhereRange( 'log_timestamp', $params['dir'], $params['start'], $params['end'] );
115
116 $limit = $params['limit'];
117 $this->addOption( 'LIMIT', $limit + 1 );
118
119 $user = $params['user'];
120 if ( !is_null( $user ) ) {
121 $userid = User::idFromName( $user );
122 if ( !$userid ) {
123 $this->dieUsage( "User name $user not found", 'param_user' );
124 }
125 $this->addWhereFld( 'log_user', $userid );
126 $index['logging'] = 'user_time';
127 }
128
129 $title = $params['title'];
130 if ( !is_null( $title ) ) {
131 $titleObj = Title::newFromText( $title );
132 if ( is_null( $titleObj ) ) {
133 $this->dieUsage( "Bad title value '$title'", 'param_title' );
134 }
135 $this->addWhereFld( 'log_namespace', $titleObj->getNamespace() );
136 $this->addWhereFld( 'log_title', $titleObj->getDBkey() );
137
138 // Use the title index in preference to the user index if there is a conflict
139 $index['logging'] = is_null( $user ) ? 'page_time' : array( 'page_time', 'user_time' );
140 }
141
142 $prefix = $params['prefix'];
143
144 if ( !is_null( $prefix ) ) {
145 global $wgMiserMode;
146 if ( $wgMiserMode ) {
147 $this->dieUsage( 'Prefix search disabled in Miser Mode', 'prefixsearchdisabled' );
148 }
149
150 $title = Title::newFromText( $prefix );
151 if ( is_null( $title ) ) {
152 $this->dieUsage( "Bad title value '$prefix'", 'param_prefix' );
153 }
154 $this->addWhereFld( 'log_namespace', $title->getNamespace() );
155 $this->addWhere( 'log_title ' . $db->buildLike( $title->getDBkey(), $db->anyString() ) );
156 }
157
158 $this->addOption( 'USE INDEX', $index );
159
160 // Paranoia: avoid brute force searches (bug 17342)
161 if ( !is_null( $title ) ) {
162 $this->addWhere( $db->bitAnd( 'log_deleted', LogPage::DELETED_ACTION ) . ' = 0' );
163 }
164 if ( !is_null( $user ) ) {
165 $this->addWhere( $db->bitAnd( 'log_deleted', LogPage::DELETED_USER ) . ' = 0' );
166 }
167
168 $count = 0;
169 $res = $this->select( __METHOD__ );
170 $result = $this->getResult();
171 foreach ( $res as $row ) {
172 if ( ++ $count > $limit ) {
173 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
174 $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->log_timestamp ) );
175 break;
176 }
177
178 $vals = $this->extractRowInfo( $row );
179 if ( !$vals ) {
180 continue;
181 }
182 $fit = $result->addValue( array( 'query', $this->getModuleName() ), null, $vals );
183 if ( !$fit ) {
184 $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->log_timestamp ) );
185 break;
186 }
187 }
188 $result->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'item' );
189 }
190
191 /**
192 * @param $result ApiResult
193 * @param $vals array
194 * @param $params string
195 * @param $type string
196 * @param $action string
197 * @param $ts
198 * @param $legacy bool
199 * @return array
200 */
201 public static function addLogParams( $result, &$vals, $params, $type, $action, $ts, $legacy = false ) {
202 switch ( $type ) {
203 case 'move':
204 if ( $legacy ){
205 $targetKey = 0;
206 $noredirKey = 1;
207 } else {
208 $targetKey = '4::target';
209 $noredirKey = '5::noredir';
210 }
211
212 if ( isset( $params[ $targetKey ] ) ) {
213 $title = Title::newFromText( $params[ $targetKey ] );
214 if ( $title ) {
215 $vals2 = array();
216 ApiQueryBase::addTitleInfo( $vals2, $title, 'new_' );
217 $vals[$type] = $vals2;
218 }
219 }
220 if ( isset( $params[ $noredirKey ] ) && $params[ $noredirKey ] ) {
221 $vals[$type]['suppressedredirect'] = '';
222 }
223 $params = null;
224 break;
225 case 'patrol':
226 if ( $legacy ){
227 $cur = 0;
228 $prev = 1;
229 $auto = 2;
230 } else {
231 $cur = '4::curid';
232 $prev = '5::previd';
233 $auto = '6::auto';
234 }
235 $vals2 = array();
236 $vals2['cur'] = $params[$cur];
237 $vals2['prev'] = $params[$prev];
238 $vals2['auto'] = $params[$auto];
239 $vals[$type] = $vals2;
240 $params = null;
241 break;
242 case 'rights':
243 $vals2 = array();
244 list( $vals2['old'], $vals2['new'] ) = $params;
245 $vals[$type] = $vals2;
246 $params = null;
247 break;
248 case 'block':
249 if ( $action == 'unblock' ) {
250 break;
251 }
252 $vals2 = array();
253 list( $vals2['duration'], $vals2['flags'] ) = $params;
254
255 // Indefinite blocks have no expiry time
256 if ( SpecialBlock::parseExpiryInput( $params[0] ) !== wfGetDB( DB_SLAVE )->getInfinity() ) {
257 $vals2['expiry'] = wfTimestamp( TS_ISO_8601,
258 strtotime( $params[0], wfTimestamp( TS_UNIX, $ts ) ) );
259 }
260 $vals[$type] = $vals2;
261 $params = null;
262 break;
263 }
264 if ( !is_null( $params ) ) {
265 $result->setIndexedTagName( $params, 'param' );
266 $vals = array_merge( $vals, $params );
267 }
268 return $vals;
269 }
270
271 private function extractRowInfo( $row ) {
272 $logEntry = DatabaseLogEntry::newFromRow( $row );
273 $vals = array();
274
275 if ( $this->fld_ids ) {
276 $vals['logid'] = intval( $row->log_id );
277 $vals['pageid'] = intval( $row->page_id );
278 }
279
280 if ( $this->fld_title || $this->fld_parsedcomment ) {
281 $title = Title::makeTitle( $row->log_namespace, $row->log_title );
282 }
283
284 if ( $this->fld_title ) {
285 if ( LogEventsList::isDeleted( $row, LogPage::DELETED_ACTION ) ) {
286 $vals['actionhidden'] = '';
287 } else {
288 ApiQueryBase::addTitleInfo( $vals, $title );
289 }
290 }
291
292 if ( $this->fld_type || $this->fld_action ) {
293 $vals['type'] = $row->log_type;
294 $vals['action'] = $row->log_action;
295 }
296
297 if ( $this->fld_details && $row->log_params !== '' ) {
298 if ( LogEventsList::isDeleted( $row, LogPage::DELETED_ACTION ) ) {
299 $vals['actionhidden'] = '';
300 } else {
301 self::addLogParams(
302 $this->getResult(),
303 $vals,
304 $logEntry->getParameters(),
305 $logEntry->getType(),
306 $logEntry->getSubtype(),
307 $logEntry->getTimestamp(),
308 $logEntry->isLegacy()
309 );
310 }
311 }
312
313 if ( $this->fld_user || $this->fld_userid ) {
314 if ( LogEventsList::isDeleted( $row, LogPage::DELETED_USER ) ) {
315 $vals['userhidden'] = '';
316 } else {
317 if ( $this->fld_user ) {
318 $vals['user'] = $row->user_name;
319 }
320 if ( $this->fld_userid ) {
321 $vals['userid'] = $row->user_id;
322 }
323
324 if ( !$row->log_user ) {
325 $vals['anon'] = '';
326 }
327 }
328 }
329 if ( $this->fld_timestamp ) {
330 $vals['timestamp'] = wfTimestamp( TS_ISO_8601, $row->log_timestamp );
331 }
332
333 if ( ( $this->fld_comment || $this->fld_parsedcomment ) && isset( $row->log_comment ) ) {
334 if ( LogEventsList::isDeleted( $row, LogPage::DELETED_COMMENT ) ) {
335 $vals['commenthidden'] = '';
336 } else {
337 if ( $this->fld_comment ) {
338 $vals['comment'] = $row->log_comment;
339 }
340
341 if ( $this->fld_parsedcomment ) {
342 $vals['parsedcomment'] = Linker::formatComment( $row->log_comment, $title );
343 }
344 }
345 }
346
347 if ( $this->fld_tags ) {
348 if ( $row->ts_tags ) {
349 $tags = explode( ',', $row->ts_tags );
350 $this->getResult()->setIndexedTagName( $tags, 'tag' );
351 $vals['tags'] = $tags;
352 } else {
353 $vals['tags'] = array();
354 }
355 }
356
357 return $vals;
358 }
359
360 public function getCacheMode( $params ) {
361 if ( !is_null( $params['prop'] ) && in_array( 'parsedcomment', $params['prop'] ) ) {
362 // formatComment() calls wfMsg() among other things
363 return 'anon-public-user-private';
364 } else {
365 return 'public';
366 }
367 }
368
369 public function getAllowedParams() {
370 global $wgLogTypes, $wgLogActions;
371 return array(
372 'prop' => array(
373 ApiBase::PARAM_ISMULTI => true,
374 ApiBase::PARAM_DFLT => 'ids|title|type|user|timestamp|comment|details',
375 ApiBase::PARAM_TYPE => array(
376 'ids',
377 'title',
378 'type',
379 'user',
380 'userid',
381 'timestamp',
382 'comment',
383 'parsedcomment',
384 'details',
385 'tags'
386 )
387 ),
388 'type' => array(
389 ApiBase::PARAM_TYPE => $wgLogTypes
390 ),
391 'action' => array(
392 ApiBase::PARAM_TYPE => array_keys( $wgLogActions )
393 ),
394 'start' => array(
395 ApiBase::PARAM_TYPE => 'timestamp'
396 ),
397 'end' => array(
398 ApiBase::PARAM_TYPE => 'timestamp'
399 ),
400 'dir' => array(
401 ApiBase::PARAM_DFLT => 'older',
402 ApiBase::PARAM_TYPE => array(
403 'newer',
404 'older'
405 )
406 ),
407 'user' => null,
408 'title' => null,
409 'prefix' => null,
410 'tag' => null,
411 'limit' => array(
412 ApiBase::PARAM_DFLT => 10,
413 ApiBase::PARAM_TYPE => 'limit',
414 ApiBase::PARAM_MIN => 1,
415 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
416 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
417 )
418 );
419 }
420
421 public function getParamDescription() {
422 $p = $this->getModulePrefix();
423 return array(
424 'prop' => array(
425 'Which properties to get',
426 ' ids - Adds the ID of the log event',
427 ' title - Adds the title of the page for the log event',
428 ' type - Adds the type of log event',
429 ' user - Adds the user responsible for the log event',
430 ' userid - Adds the user ID who was responsible for the log event',
431 ' timestamp - Adds the timestamp for the event',
432 ' comment - Adds the comment of the event',
433 ' parsedcomment - Adds the parsed comment of the event',
434 ' details - Lists addtional details about the event',
435 ' tags - Lists tags for the event',
436 ),
437 'type' => 'Filter log entries to only this type',
438 'action' => "Filter log actions to only this type. Overrides {$p}type",
439 'start' => 'The timestamp to start enumerating from',
440 'end' => 'The timestamp to end enumerating',
441 'dir' => $this->getDirectionDescription( $p ),
442 'user' => 'Filter entries to those made by the given user',
443 'title' => 'Filter entries to those related to a page',
444 'prefix' => 'Filter entries that start with this prefix. Disabled in Miser Mode',
445 'limit' => 'How many total event entries to return',
446 'tag' => 'Only list event entries tagged with this tag',
447 );
448 }
449
450 public function getResultProperties() {
451 global $wgLogTypes;
452 return array(
453 'ids' => array(
454 'logid' => 'integer',
455 'pageid' => 'integer'
456 ),
457 'title' => array(
458 'ns' => 'namespace',
459 'title' => 'string'
460 ),
461 'type' => array(
462 'type' => array(
463 ApiBase::PROP_TYPE => $wgLogTypes
464 ),
465 'action' => 'string'
466 ),
467 'details' => array(
468 'actionhidden' => 'boolean'
469 ),
470 'user' => array(
471 'userhidden' => 'boolean',
472 'user' => array(
473 ApiBase::PROP_TYPE => 'string',
474 ApiBase::PROP_NULLABLE => true
475 ),
476 'anon' => 'boolean'
477 ),
478 'userid' => array(
479 'userhidden' => 'boolean',
480 'userid' => array(
481 ApiBase::PROP_TYPE => 'integer',
482 ApiBase::PROP_NULLABLE => true
483 ),
484 'anon' => 'boolean'
485 ),
486 'timestamp' => array(
487 'timestamp' => 'timestamp'
488 ),
489 'comment' => array(
490 'commenthidden' => 'boolean',
491 'comment' => array(
492 ApiBase::PROP_TYPE => 'string',
493 ApiBase::PROP_NULLABLE => true
494 )
495 ),
496 'parsedcomment' => array(
497 'commenthidden' => 'boolean',
498 'parsedcomment' => array(
499 ApiBase::PROP_TYPE => 'string',
500 ApiBase::PROP_NULLABLE => true
501 )
502 )
503 );
504 }
505
506 public function getDescription() {
507 return 'Get events from logs';
508 }
509
510 public function getPossibleErrors() {
511 return array_merge( parent::getPossibleErrors(), array(
512 array( 'code' => 'param_user', 'info' => 'User name $user not found' ),
513 array( 'code' => 'param_title', 'info' => 'Bad title value \'title\'' ),
514 array( 'code' => 'param_prefix', 'info' => 'Bad title value \'prefix\'' ),
515 array( 'code' => 'prefixsearchdisabled', 'info' => 'Prefix search disabled in Miser Mode' ),
516 ) );
517 }
518
519 public function getExamples() {
520 return array(
521 'api.php?action=query&list=logevents'
522 );
523 }
524
525 public function getHelpUrls() {
526 return 'https://www.mediawiki.org/wiki/API:Logevents';
527 }
528
529 public function getVersion() {
530 return __CLASS__ . ': $Id$';
531 }
532 }