Fix ApiQueryLogEvents::addLogParams for unknown types using the new format
[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, 'user' );
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 if( $legacy ) {
245 list( $vals2['old'], $vals2['new'] ) = $params;
246 } else {
247 $vals2['new'] = implode( ', ', $params['5::newgroups'] );
248 $vals2['old'] = implode( ', ', $params['4::oldgroups'] );
249 }
250 $vals[$type] = $vals2;
251 $params = null;
252 break;
253 case 'block':
254 if ( $action == 'unblock' ) {
255 break;
256 }
257 $vals2 = array();
258 list( $vals2['duration'], $vals2['flags'] ) = $params;
259
260 // Indefinite blocks have no expiry time
261 if ( SpecialBlock::parseExpiryInput( $params[0] ) !== wfGetDB( DB_SLAVE )->getInfinity() ) {
262 $vals2['expiry'] = wfTimestamp( TS_ISO_8601,
263 strtotime( $params[0], wfTimestamp( TS_UNIX, $ts ) ) );
264 }
265 $vals[$type] = $vals2;
266 $params = null;
267 break;
268 }
269 if ( !is_null( $params ) ) {
270 $logParams = array();
271 // Keys like "4::paramname" can't be used for output so we change them to "paramname"
272 foreach ( $params as $key => $value ) {
273 if ( strpos( $key, ':' ) === false ) {
274 $logParams[$key] = $value;
275 continue;
276 }
277 $logParam = explode( ':', $key, 3 );
278 $logParams[$logParam[2]] = $value;
279 }
280 $result->setIndexedTagName( $logParams, 'param' );
281 $result->setIndexedTagName_recursive( $logParams, 'param' );
282 $vals = array_merge( $vals, $logParams );
283 }
284 return $vals;
285 }
286
287 private function extractRowInfo( $row ) {
288 $logEntry = DatabaseLogEntry::newFromRow( $row );
289 $vals = array();
290
291 if ( $this->fld_ids ) {
292 $vals['logid'] = intval( $row->log_id );
293 $vals['pageid'] = intval( $row->page_id );
294 }
295
296 if ( $this->fld_title || $this->fld_parsedcomment ) {
297 $title = Title::makeTitle( $row->log_namespace, $row->log_title );
298 }
299
300 if ( $this->fld_title ) {
301 if ( LogEventsList::isDeleted( $row, LogPage::DELETED_ACTION ) ) {
302 $vals['actionhidden'] = '';
303 } else {
304 ApiQueryBase::addTitleInfo( $vals, $title );
305 }
306 }
307
308 if ( $this->fld_type || $this->fld_action ) {
309 $vals['type'] = $row->log_type;
310 $vals['action'] = $row->log_action;
311 }
312
313 if ( $this->fld_details && $row->log_params !== '' ) {
314 if ( LogEventsList::isDeleted( $row, LogPage::DELETED_ACTION ) ) {
315 $vals['actionhidden'] = '';
316 } else {
317 self::addLogParams(
318 $this->getResult(),
319 $vals,
320 $logEntry->getParameters(),
321 $logEntry->getType(),
322 $logEntry->getSubtype(),
323 $logEntry->getTimestamp(),
324 $logEntry->isLegacy()
325 );
326 }
327 }
328
329 if ( $this->fld_user || $this->fld_userid ) {
330 if ( LogEventsList::isDeleted( $row, LogPage::DELETED_USER ) ) {
331 $vals['userhidden'] = '';
332 } else {
333 if ( $this->fld_user ) {
334 $vals['user'] = $row->user_name;
335 }
336 if ( $this->fld_userid ) {
337 $vals['userid'] = $row->user_id;
338 }
339
340 if ( !$row->log_user ) {
341 $vals['anon'] = '';
342 }
343 }
344 }
345 if ( $this->fld_timestamp ) {
346 $vals['timestamp'] = wfTimestamp( TS_ISO_8601, $row->log_timestamp );
347 }
348
349 if ( ( $this->fld_comment || $this->fld_parsedcomment ) && isset( $row->log_comment ) ) {
350 if ( LogEventsList::isDeleted( $row, LogPage::DELETED_COMMENT ) ) {
351 $vals['commenthidden'] = '';
352 } else {
353 if ( $this->fld_comment ) {
354 $vals['comment'] = $row->log_comment;
355 }
356
357 if ( $this->fld_parsedcomment ) {
358 $vals['parsedcomment'] = Linker::formatComment( $row->log_comment, $title );
359 }
360 }
361 }
362
363 if ( $this->fld_tags ) {
364 if ( $row->ts_tags ) {
365 $tags = explode( ',', $row->ts_tags );
366 $this->getResult()->setIndexedTagName( $tags, 'tag' );
367 $vals['tags'] = $tags;
368 } else {
369 $vals['tags'] = array();
370 }
371 }
372
373 return $vals;
374 }
375
376 public function getCacheMode( $params ) {
377 if ( !is_null( $params['prop'] ) && in_array( 'parsedcomment', $params['prop'] ) ) {
378 // formatComment() calls wfMessage() among other things
379 return 'anon-public-user-private';
380 } elseif ( LogEventsList::getExcludeClause( $this->getDB(), 'user' ) === LogEventsList::getExcludeClause( $this->getDB(), 'public' ) ) { // Output can only contain public data.
381 return 'public';
382 } else {
383 return 'anon-public-user-private';
384 }
385 }
386
387 public function getAllowedParams() {
388 global $wgLogTypes, $wgLogActions, $wgLogActionsHandlers;
389 return array(
390 'prop' => array(
391 ApiBase::PARAM_ISMULTI => true,
392 ApiBase::PARAM_DFLT => 'ids|title|type|user|timestamp|comment|details',
393 ApiBase::PARAM_TYPE => array(
394 'ids',
395 'title',
396 'type',
397 'user',
398 'userid',
399 'timestamp',
400 'comment',
401 'parsedcomment',
402 'details',
403 'tags'
404 )
405 ),
406 'type' => array(
407 ApiBase::PARAM_TYPE => $wgLogTypes
408 ),
409 'action' => array(
410 ApiBase::PARAM_TYPE => array_keys( array_merge( $wgLogActions, $wgLogActionsHandlers ) )
411 ),
412 'start' => array(
413 ApiBase::PARAM_TYPE => 'timestamp'
414 ),
415 'end' => array(
416 ApiBase::PARAM_TYPE => 'timestamp'
417 ),
418 'dir' => array(
419 ApiBase::PARAM_DFLT => 'older',
420 ApiBase::PARAM_TYPE => array(
421 'newer',
422 'older'
423 )
424 ),
425 'user' => null,
426 'title' => null,
427 'prefix' => null,
428 'tag' => null,
429 'limit' => array(
430 ApiBase::PARAM_DFLT => 10,
431 ApiBase::PARAM_TYPE => 'limit',
432 ApiBase::PARAM_MIN => 1,
433 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
434 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
435 )
436 );
437 }
438
439 public function getParamDescription() {
440 $p = $this->getModulePrefix();
441 return array(
442 'prop' => array(
443 'Which properties to get',
444 ' ids - Adds the ID of the log event',
445 ' title - Adds the title of the page for the log event',
446 ' type - Adds the type of log event',
447 ' user - Adds the user responsible for the log event',
448 ' userid - Adds the user ID who was responsible for the log event',
449 ' timestamp - Adds the timestamp for the event',
450 ' comment - Adds the comment of the event',
451 ' parsedcomment - Adds the parsed comment of the event',
452 ' details - Lists addtional details about the event',
453 ' tags - Lists tags for the event',
454 ),
455 'type' => 'Filter log entries to only this type',
456 'action' => "Filter log actions to only this type. Overrides {$p}type",
457 'start' => 'The timestamp to start enumerating from',
458 'end' => 'The timestamp to end enumerating',
459 'dir' => $this->getDirectionDescription( $p ),
460 'user' => 'Filter entries to those made by the given user',
461 'title' => 'Filter entries to those related to a page',
462 'prefix' => 'Filter entries that start with this prefix. Disabled in Miser Mode',
463 'limit' => 'How many total event entries to return',
464 'tag' => 'Only list event entries tagged with this tag',
465 );
466 }
467
468 public function getResultProperties() {
469 global $wgLogTypes;
470 return array(
471 'ids' => array(
472 'logid' => 'integer',
473 'pageid' => 'integer'
474 ),
475 'title' => array(
476 'ns' => 'namespace',
477 'title' => 'string'
478 ),
479 'type' => array(
480 'type' => array(
481 ApiBase::PROP_TYPE => $wgLogTypes
482 ),
483 'action' => 'string'
484 ),
485 'details' => array(
486 'actionhidden' => 'boolean'
487 ),
488 'user' => array(
489 'userhidden' => 'boolean',
490 'user' => array(
491 ApiBase::PROP_TYPE => 'string',
492 ApiBase::PROP_NULLABLE => true
493 ),
494 'anon' => 'boolean'
495 ),
496 'userid' => array(
497 'userhidden' => 'boolean',
498 'userid' => array(
499 ApiBase::PROP_TYPE => 'integer',
500 ApiBase::PROP_NULLABLE => true
501 ),
502 'anon' => 'boolean'
503 ),
504 'timestamp' => array(
505 'timestamp' => 'timestamp'
506 ),
507 'comment' => array(
508 'commenthidden' => 'boolean',
509 'comment' => array(
510 ApiBase::PROP_TYPE => 'string',
511 ApiBase::PROP_NULLABLE => true
512 )
513 ),
514 'parsedcomment' => array(
515 'commenthidden' => 'boolean',
516 'parsedcomment' => array(
517 ApiBase::PROP_TYPE => 'string',
518 ApiBase::PROP_NULLABLE => true
519 )
520 )
521 );
522 }
523
524 public function getDescription() {
525 return 'Get events from logs';
526 }
527
528 public function getPossibleErrors() {
529 return array_merge( parent::getPossibleErrors(), array(
530 array( 'code' => 'param_user', 'info' => 'User name $user not found' ),
531 array( 'code' => 'param_title', 'info' => 'Bad title value \'title\'' ),
532 array( 'code' => 'param_prefix', 'info' => 'Bad title value \'prefix\'' ),
533 array( 'code' => 'prefixsearchdisabled', 'info' => 'Prefix search disabled in Miser Mode' ),
534 ) );
535 }
536
537 public function getExamples() {
538 return array(
539 'api.php?action=query&list=logevents'
540 );
541 }
542
543 public function getHelpUrls() {
544 return 'https://www.mediawiki.org/wiki/API:Logevents';
545 }
546
547 public function getVersion() {
548 return __CLASS__ . ': $Id$';
549 }
550 }