Revert r59537. Breaks page deletion with "PHP Notice: Array to string conversion...
[lhc/web/wiklou.git] / includes / LogEventsList.php
1 <?php
2 # Copyright (C) 2004 Brion Vibber <brion@pobox.com>, 2008 Aaron Schulz
3 # http://www.mediawiki.org/
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License along
16 # with this program; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 # http://www.gnu.org/copyleft/gpl.html
19
20 class LogEventsList {
21 const NO_ACTION_LINK = 1;
22
23 private $skin;
24 private $out;
25 public $flags;
26
27 public function __construct( $skin, $out, $flags = 0 ) {
28 $this->skin = $skin;
29 $this->out = $out;
30 $this->flags = $flags;
31 $this->preCacheMessages();
32 }
33
34 /**
35 * As we use the same small set of messages in various methods and that
36 * they are called often, we call them once and save them in $this->message
37 */
38 private function preCacheMessages() {
39 // Precache various messages
40 if( !isset( $this->message ) ) {
41 $messages = array( 'revertmerge', 'protect_change', 'unblocklink', 'change-blocklink',
42 'revertmove', 'undeletelink', 'undeleteviewlink', 'revdel-restore', 'hist', 'diff',
43 'pipe-separator' );
44 foreach( $messages as $msg ) {
45 $this->message[$msg] = wfMsgExt( $msg, array( 'escapenoentities' ) );
46 }
47 }
48 }
49
50 /**
51 * Set page title and show header for this log type
52 * @param $type Array
53 */
54 public function showHeader( $type ) {
55 // If only one log type is used, then show a special message...
56 $headerType = (count($type) == 1) ? $type[0] : '';
57 if( LogPage::isLogType( $headerType ) ) {
58 $this->out->setPageTitle( LogPage::logName( $headerType ) );
59 $this->out->addHTML( LogPage::logHeader( $headerType ) );
60 } else {
61 $this->out->addHTML( wfMsgExt('alllogstext',array('parseinline')) );
62 }
63 }
64
65 /**
66 * Show options for the log list
67 * @param $types string or Array
68 * @param $user String
69 * @param $page String
70 * @param $pattern String
71 * @param $year Integer: year
72 * @param $month Integer: month
73 * @param $filter: array
74 * @param $tagFilter: array?
75 */
76 public function showOptions( $types=array(), $user='', $page='', $pattern='', $year='',
77 $month = '', $filter = null, $tagFilter='' )
78 {
79 global $wgScript, $wgMiserMode;
80
81 $action = $wgScript;
82 $title = SpecialPage::getTitleFor( 'Log' );
83 $special = $title->getPrefixedDBkey();
84
85 // For B/C, we take strings, but make sure they are converted...
86 $types = ($types === '') ? array() : (array)$types;
87
88 $tagSelector = ChangeTags::buildTagFilterSelector( $tagFilter );
89
90 $html = '';
91 $html .= Xml::hidden( 'title', $special );
92
93 // Basic selectors
94 $html .= $this->getTypeMenu( $types ) . "\n";
95 $html .= $this->getUserInput( $user ) . "\n";
96 $html .= $this->getTitleInput( $page ) . "\n";
97 $html .= $this->getExtraInputs( $types ) . "\n";
98
99 // Title pattern, if allowed
100 if (!$wgMiserMode) {
101 $html .= $this->getTitlePattern( $pattern ) . "\n";
102 }
103
104 // date menu
105 $html .= Xml::tags( 'p', null, Xml::dateMenu( $year, $month ) );
106
107 // Tag filter
108 if ($tagSelector) {
109 $html .= Xml::tags( 'p', null, implode( '&nbsp;', $tagSelector ) );
110 }
111
112 // Filter links
113 if ($filter) {
114 $html .= Xml::tags( 'p', null, $this->getFilterLinks( $filter ) );
115 }
116
117 // Submit button
118 $html .= Xml::submitButton( wfMsg( 'allpagessubmit' ) );
119
120 // Fieldset
121 $html = Xml::fieldset( wfMsg( 'log' ), $html );
122
123 // Form wrapping
124 $html = Xml::tags( 'form', array( 'action' => $action, 'method' => 'get' ), $html );
125
126 $this->out->addHTML( $html );
127 }
128
129 /**
130 * @param $filter Array
131 * @return String: Formatted HTML
132 */
133 private function getFilterLinks( $filter ) {
134 global $wgTitle, $wgLang;
135 // show/hide links
136 $messages = array( wfMsgHtml( 'show' ), wfMsgHtml( 'hide' ) );
137 // Option value -> message mapping
138 $links = array();
139 $hiddens = ''; // keep track for "go" button
140 foreach( $filter as $type => $val ) {
141 // Should the below assignment be outside the foreach?
142 // Then it would have to be copied. Not certain what is more expensive.
143 $query = $this->getDefaultQuery();
144 $queryKey = "hide_{$type}_log";
145
146 $hideVal = 1 - intval($val);
147 $query[$queryKey] = $hideVal;
148
149 $link = $this->skin->link(
150 $wgTitle,
151 $messages[$hideVal],
152 array(),
153 $query,
154 array( 'known', 'noclasses' )
155 );
156
157 $links[$type] = wfMsgHtml( "log-show-hide-{$type}", $link );
158 $hiddens .= Xml::hidden( "hide_{$type}_log", $val ) . "\n";
159 }
160 // Build links
161 return '<small>'.$wgLang->pipeList( $links ) . '</small>' . $hiddens;
162 }
163
164 private function getDefaultQuery() {
165 if ( !isset( $this->mDefaultQuery ) ) {
166 $this->mDefaultQuery = $_GET;
167 unset( $this->mDefaultQuery['title'] );
168 unset( $this->mDefaultQuery['dir'] );
169 unset( $this->mDefaultQuery['offset'] );
170 unset( $this->mDefaultQuery['limit'] );
171 unset( $this->mDefaultQuery['order'] );
172 unset( $this->mDefaultQuery['month'] );
173 unset( $this->mDefaultQuery['year'] );
174 }
175 return $this->mDefaultQuery;
176 }
177
178 /**
179 * @param $queryTypes Array
180 * @return String: Formatted HTML
181 */
182 private function getTypeMenu( $queryTypes ) {
183 global $wgLogRestrictions, $wgUser;
184
185 $html = "<select name='type'>\n";
186
187 $validTypes = LogPage::validTypes();
188 $typesByName = array(); // Temporary array
189
190 // First pass to load the log names
191 foreach( $validTypes as $type ) {
192 $text = LogPage::logName( $type );
193 $typesByName[$text] = $type;
194 }
195
196 // Second pass to sort by name
197 ksort($typesByName);
198
199 // Note the query type
200 $queryType = count($queryTypes) == 1 ? $queryTypes[0] : '';
201 // Third pass generates sorted XHTML content
202 foreach( $typesByName as $text => $type ) {
203 $selected = ($type == $queryType);
204 // Restricted types
205 if ( isset($wgLogRestrictions[$type]) ) {
206 if ( $wgUser->isAllowed( $wgLogRestrictions[$type] ) ) {
207 $html .= Xml::option( $text, $type, $selected ) . "\n";
208 }
209 } else {
210 $html .= Xml::option( $text, $type, $selected ) . "\n";
211 }
212 }
213
214 $html .= '</select>';
215 return $html;
216 }
217
218 /**
219 * @param $user String
220 * @return String: Formatted HTML
221 */
222 private function getUserInput( $user ) {
223 return '<span style="white-space: nowrap">' .
224 Xml::inputLabel( wfMsg( 'specialloguserlabel' ), 'user', 'mw-log-user', 15, $user ) .
225 '</span>';
226 }
227
228 /**
229 * @param $title String
230 * @return String: Formatted HTML
231 */
232 private function getTitleInput( $title ) {
233 return '<span style="white-space: nowrap">' .
234 Xml::inputLabel( wfMsg( 'speciallogtitlelabel' ), 'page', 'mw-log-page', 20, $title ) .
235 '</span>';
236 }
237
238 /**
239 * @return boolean Checkbox
240 */
241 private function getTitlePattern( $pattern ) {
242 return '<span style="white-space: nowrap">' .
243 Xml::checkLabel( wfMsg( 'log-title-wildcard' ), 'pattern', 'pattern', $pattern ) .
244 '</span>';
245 }
246
247 private function getExtraInputs( $types ) {
248 global $wgRequest;
249 $offender = $wgRequest->getVal('offender');
250 $user = User::newFromName( $offender, false );
251 if( !$user || ($user->getId() == 0 && !IP::isIPAddress($offender) ) ) {
252 $offender = ''; // Blank field if invalid
253 }
254 if( count($types) == 1 && $types[0] == 'suppress' ) {
255 return Xml::inputLabel( wfMsg('revdelete-offender'), 'offender',
256 'mw-log-offender', 20, $offender );
257 }
258 return '';
259 }
260
261 public function beginLogEventsList() {
262 return "<ul>\n";
263 }
264
265 public function endLogEventsList() {
266 return "</ul>\n";
267 }
268
269 /**
270 * @param $row Row: a single row from the result set
271 * @return String: Formatted HTML list item
272 */
273 public function logLine( $row ) {
274 global $wgLang, $wgUser, $wgContLang;
275
276 $title = Title::makeTitle( $row->log_namespace, $row->log_title );
277 $classes = array( "mw-logline-{$row->log_type}" );
278 $time = $wgLang->timeanddate( wfTimestamp( TS_MW, $row->log_timestamp ), true );
279 // User links
280 if( self::isDeleted( $row, LogPage::DELETED_USER ) ) {
281 $userLink = '<span class="history-deleted">' . wfMsgHtml( 'rev-deleted-user' ) . '</span>';
282 } else {
283 $userLink = $this->skin->userLink( $row->log_user, $row->user_name ) .
284 $this->skin->userToolLinks( $row->log_user, $row->user_name, true, 0, $row->user_editcount );
285 }
286 // Comment
287 if( self::isDeleted( $row, LogPage::DELETED_COMMENT ) ) {
288 $comment = '<span class="history-deleted">' . wfMsgHtml( 'rev-deleted-comment' ) . '</span>';
289 } else {
290 $comment = $wgContLang->getDirMark() . $this->skin->commentBlock( $row->log_comment );
291 }
292 // Extract extra parameters
293 $paramArray = LogPage::extractParams( $row->log_params );
294 $revert = $del = '';
295 // Some user can hide log items and have review links
296 if( !( $this->flags & self::NO_ACTION_LINK ) && $wgUser->isAllowed( 'deletedhistory' ) ) {
297 // Don't show useless link to people who cannot hide revisions
298 if( $row->log_deleted || $wgUser->isAllowed( 'deleterevision' ) ) {
299 $del = $this->getShowHideLinks( $row ) . ' ';
300 }
301 }
302 // Add review links and such...
303 if( ( $this->flags & self::NO_ACTION_LINK ) || ( $row->log_deleted & LogPage::DELETED_ACTION ) ) {
304 // Action text is suppressed...
305 } else if( self::typeAction( $row, 'move', 'move', 'move' ) && !empty( $paramArray[0] ) ) {
306 $destTitle = Title::newFromText( $paramArray[0] );
307 if( $destTitle ) {
308 $revert = '(' . $this->skin->link(
309 SpecialPage::getTitleFor( 'Movepage' ),
310 $this->message['revertmove'],
311 array(),
312 array(
313 'wpOldTitle' => $destTitle->getPrefixedDBkey(),
314 'wpNewTitle' => $title->getPrefixedDBkey(),
315 'wpReason' => wfMsgForContent( 'revertmove' ),
316 'wpMovetalk' => 0
317 ),
318 array( 'known', 'noclasses' )
319 ) . ')';
320 }
321 // Show undelete link
322 } else if( self::typeAction( $row, array( 'delete', 'suppress' ), 'delete', 'deletedhistory' ) ) {
323 if( !$wgUser->isAllowed( 'undelete' ) ) {
324 $viewdeleted = $this->message['undeleteviewlink'];
325 } else {
326 $viewdeleted = $this->message['undeletelink'];
327 }
328
329 $revert = '(' . $this->skin->link(
330 SpecialPage::getTitleFor( 'Undelete' ),
331 $viewdeleted,
332 array(),
333 array( 'target' => $title->getPrefixedDBkey() ),
334 array( 'known', 'noclasses' )
335 ) . ')';
336 // Show unblock/change block link
337 } else if( self::typeAction( $row, array( 'block', 'suppress' ), array( 'block', 'reblock' ), 'block' ) ) {
338 $revert = '(' .
339 $this->skin->link(
340 SpecialPage::getTitleFor( 'Ipblocklist' ),
341 $this->message['unblocklink'],
342 array(),
343 array(
344 'action' => 'unblock',
345 'ip' => $row->log_title
346 ),
347 'known'
348 ) .
349 $this->message['pipe-separator'] .
350 $this->skin->link(
351 SpecialPage::getTitleFor( 'Blockip', $row->log_title ),
352 $this->message['change-blocklink'],
353 array(),
354 array(),
355 'known'
356 ) .
357 ')';
358 // Show change protection link
359 } else if( self::typeAction( $row, 'protect', array( 'modify', 'protect', 'unprotect' ) ) ) {
360 $revert .= ' (' .
361 $this->skin->link( $title,
362 $this->message['hist'],
363 array(),
364 array(
365 'action' => 'history',
366 'offset' => $row->log_timestamp
367 )
368 );
369 if( $wgUser->isAllowed( 'protect' ) ) {
370 $revert .= $this->message['pipe-separator'] .
371 $this->skin->link( $title,
372 $this->message['protect_change'],
373 array(),
374 array( 'action' => 'protect' ),
375 'known' );
376 }
377 $revert .= ')';
378 // Show unmerge link
379 } else if( self::typeAction( $row, 'merge', 'merge', 'mergehistory' ) ) {
380 $merge = SpecialPage::getTitleFor( 'Mergehistory' );
381 $revert = '(' . $this->skin->link(
382 $merge,
383 $this->message['revertmerge'],
384 array(),
385 array(
386 'target' => $paramArray[0],
387 'dest' => $title->getPrefixedDBkey(),
388 'mergepoint' => $paramArray[1]
389 ),
390 array( 'known', 'noclasses' )
391 ) . ')';
392 // If an edit was hidden from a page give a review link to the history
393 } else if( self::typeAction( $row, array( 'delete', 'suppress' ), 'revision', 'deletedhistory' ) ) {
394 if( count($paramArray) >= 2 ) {
395 // Different revision types use different URL params...
396 $key = $paramArray[0];
397 // $paramArray[1] is a CSV of the IDs
398 $Ids = explode( ',', $paramArray[1] );
399 $query = $paramArray[1];
400 $revert = array();
401 // Diff link for single rev deletions
402 if( count($Ids) == 1 ) {
403 // Live revision diffs...
404 if( in_array( $key, array( 'oldid', 'revision' ) ) ) {
405 $revert[] = $this->skin->link(
406 $title,
407 $this->message['diff'],
408 array(),
409 array(
410 'diff' => intval( $Ids[0] ),
411 'unhide' => 1
412 ),
413 array( 'known', 'noclasses' )
414 );
415 // Deleted revision diffs...
416 } else if( in_array( $key, array( 'artimestamp','archive' ) ) ) {
417 $revert[] = $this->skin->link(
418 SpecialPage::getTitleFor( 'Undelete' ),
419 $this->message['diff'],
420 array(),
421 array(
422 'target' => $title->getPrefixedDBKey(),
423 'diff' => 'prev',
424 'timestamp' => $Ids[0]
425 ),
426 array( 'known', 'noclasses' )
427 );
428 }
429 }
430 // View/modify link...
431 $revert[] = $this->skin->link(
432 SpecialPage::getTitleFor( 'Revisiondelete' ),
433 $this->message['revdel-restore'],
434 array(),
435 array(
436 'target' => $title->getPrefixedText(),
437 'type' => $key,
438 'ids' => $query
439 ),
440 array( 'known', 'noclasses' )
441 );
442 // Pipe links
443 $revert = wfMsg( 'parentheses', $wgLang->pipeList( $revert ) );
444 }
445 // Hidden log items, give review link
446 } else if( self::typeAction( $row, array( 'delete', 'suppress' ), 'event', 'deletedhistory' ) ) {
447 if( count($paramArray) >= 1 ) {
448 $revdel = SpecialPage::getTitleFor( 'Revisiondelete' );
449 // $paramArray[1] is a CSV of the IDs
450 $Ids = explode( ',', $paramArray[0] );
451 $query = $paramArray[0];
452 // Link to each hidden object ID, $paramArray[1] is the url param
453 $revert = '(' . $this->skin->link(
454 $revdel,
455 $this->message['revdel-restore'],
456 array(),
457 array(
458 'target' => $title->getPrefixedText(),
459 'type' => 'logging',
460 'ids' => $query
461 ),
462 array( 'known', 'noclasses' )
463 ) . ')';
464 }
465 // Self-created users
466 } else if( self::typeAction( $row, 'newusers', 'create2' ) ) {
467 if( isset( $paramArray[0] ) ) {
468 $revert = $this->skin->userToolLinks( $paramArray[0], $title->getDBkey(), true );
469 } else {
470 # Fall back to a blue contributions link
471 $revert = $this->skin->userToolLinks( 1, $title->getDBkey() );
472 }
473 if( $time < '20080129000000' ) {
474 # Suppress $comment from old entries (before 2008-01-29),
475 # not needed and can contain incorrect links
476 $comment = '';
477 }
478 // Do nothing. The implementation is handled by the hook modifiying the passed-by-ref parameters.
479 } else {
480 wfRunHooks( 'LogLine', array( $row->log_type, $row->log_action, $title, $paramArray,
481 &$comment, &$revert, $row->log_timestamp ) );
482 }
483 // Event description
484 if( self::isDeleted( $row, LogPage::DELETED_ACTION ) ) {
485 $action = '<span class="history-deleted">' . wfMsgHtml( 'rev-deleted-event' ) . '</span>';
486 } else {
487 $action = LogPage::actionText( $row->log_type, $row->log_action, $title,
488 $this->skin, $paramArray, true );
489 }
490
491 // Any tags...
492 list( $tagDisplay, $newClasses ) = ChangeTags::formatSummaryRow( $row->ts_tags, 'logevent' );
493 $classes = array_merge( $classes, $newClasses );
494
495 if( $revert != '' ) {
496 $revert = '<span class="mw-logevent-actionlink">' . $revert . '</span>';
497 }
498
499 $time = htmlspecialchars( $time );
500
501 return Xml::tags( 'li', array( "class" => implode( ' ', $classes ) ),
502 $del . $time . ' ' . $userLink . ' ' . $action . ' ' . $comment . ' ' . $revert . " $tagDisplay" ) . "\n";
503 }
504
505 /**
506 * @param $row Row
507 * @return string
508 */
509 private function getShowHideLinks( $row ) {
510 global $wgUser;
511 if( $row->log_type == 'suppress' ) {
512 return ''; // No one can hide items from the oversight log
513 }
514 $canHide = $wgUser->isAllowed( 'deleterevision' );
515 // If event was hidden from sysops
516 if( !self::userCan( $row, LogPage::DELETED_RESTRICTED ) ) {
517 $del = $this->skin->revDeleteLinkDisabled( $canHide );
518 } else {
519 $target = SpecialPage::getTitleFor( 'Log', $row->log_type );
520 $page = Title::makeTitle( $row->log_namespace, $row->log_title );
521 $query = array(
522 'target' => $target->getPrefixedDBkey(),
523 'type' => 'logging',
524 'ids' => $row->log_id,
525 );
526 $del = $this->skin->revDeleteLink( $query,
527 self::isDeleted( $row, LogPage::DELETED_RESTRICTED ), $canHide );
528 }
529 return $del;
530 }
531
532 /**
533 * @param $row Row
534 * @param $type Mixed: string/array
535 * @param $action Mixed: string/array
536 * @param $right string
537 * @return bool
538 */
539 public static function typeAction( $row, $type, $action, $right='' ) {
540 $match = is_array($type) ?
541 in_array( $row->log_type, $type ) : $row->log_type == $type;
542 if( $match ) {
543 $match = is_array( $action ) ?
544 in_array( $row->log_action, $action ) : $row->log_action == $action;
545 if( $match && $right ) {
546 global $wgUser;
547 $match = $wgUser->isAllowed( $right );
548 }
549 }
550 return $match;
551 }
552
553 /**
554 * Determine if the current user is allowed to view a particular
555 * field of this log row, if it's marked as deleted.
556 * @param $row Row
557 * @param $field Integer
558 * @return Boolean
559 */
560 public static function userCan( $row, $field ) {
561 return self::userCanBitfield( $row->log_deleted, $field );
562 }
563
564 /**
565 * Determine if the current user is allowed to view a particular
566 * field of this log row, if it's marked as deleted.
567 * @param $bitfield Integer (current field)
568 * @param $field Integer
569 * @return Boolean
570 */
571 public static function userCanBitfield( $bitfield, $field ) {
572 if( $bitfield & $field ) {
573 global $wgUser;
574 $permission = '';
575 if ( $bitfield & LogPage::DELETED_RESTRICTED ) {
576 $permission = 'suppressrevision';
577 } else {
578 $permission = 'deletedhistory';
579 }
580 wfDebug( "Checking for $permission due to $field match on $bitfield\n" );
581 return $wgUser->isAllowed( $permission );
582 } else {
583 return true;
584 }
585 }
586
587 /**
588 * @param $row Row
589 * @param $field Integer: one of DELETED_* bitfield constants
590 * @return Boolean
591 */
592 public static function isDeleted( $row, $field ) {
593 return ( $row->log_deleted & $field ) == $field;
594 }
595
596 /**
597 * Show log extract. Either with text and a box (set $msgKey) or without (don't set $msgKey)
598 * @param $out OutputPage or String-by-reference
599 * @param $types String or Array
600 * @param $page String The page title to show log entries for
601 * @param $user String The user who made the log entries
602 * @param $param Associative Array with the following additional options:
603 * - lim Integer Limit of items to show, default is 50
604 * - conds Array Extra conditions for the query (e.g. "log_action != 'revision'")
605 * - showIfEmpty boolean Set to false if you don't want any output in case the loglist is empty
606 * if set to true (default), "No matching items in log" is displayed if loglist is empty
607 * - msgKey Array If you want a nice box with a message, set this to the key of the message.
608 * First element is the message key, additional optional elements are parameters for the key
609 * that are processed with wgMsgExt and option 'parse'
610 * - offset Set to overwrite offset parameter in $wgRequest
611 * set to '' to unset offset
612 * @return Integer Number of total log items (not limited by $lim)
613 */
614 public static function showLogExtract( &$out, $types=array(), $page='', $user='',
615 $param = array() ) {
616
617 $defaultParameters = array(
618 'lim' => 25,
619 'conds' => array(),
620 'showIfEmpty' => true,
621 'msgKey' => array('')
622 );
623
624 # The + operator appends elements of remaining keys from the right
625 # handed array to the left handed, whereas duplicated keys are NOT overwritten.
626 $param += $defaultParameters;
627
628 global $wgUser, $wgOut;
629 # Convert $param array to individual variables
630 $lim = $param['lim'];
631 $conds = $param['conds'];
632 $showIfEmpty = $param['showIfEmpty'];
633 $msgKey = $param['msgKey'];
634 if ( !is_array( $msgKey ) )
635 $msgKey = array( $msgKey );
636 # Insert list of top 50 (or top $lim) items
637 $loglist = new LogEventsList( $wgUser->getSkin(), $wgOut, 0 );
638 $pager = new LogPager( $loglist, $types, $user, $page, '', $conds );
639 if ( isset( $param['offset'] ) ) # Tell pager to ignore $wgRequest offset
640 $pager->setOffset( $param['offset'] );
641 if( $lim > 0 ) $pager->mLimit = $lim;
642 $logBody = $pager->getBody();
643 $s = '';
644 if( $logBody ) {
645 if ( $msgKey[0] ) {
646 $s = '<div class="mw-warning-with-logexcerpt">';
647
648 if ( count( $msgKey ) == 1 ) {
649 $s .= wfMsgExt( $msgKey[0], array( 'parse' ) );
650 } else { // Process additional arguments
651 $args = $msgKey;
652 array_shift( $args );
653 $s .= wfMsgExt( $msgKey[0], array( 'parse' ), $args );
654 }
655 }
656 $s .= $loglist->beginLogEventsList() .
657 $logBody .
658 $loglist->endLogEventsList();
659 } else {
660 if ( $showIfEmpty )
661 $s = wfMsgExt( 'logempty', array('parse') );
662 }
663 if( $pager->getNumRows() > $pager->mLimit ) { # Show "Full log" link
664 $urlParam = array();
665 if ( $page != '')
666 $urlParam['page'] = $page;
667 if ( $user != '')
668 $urlParam['user'] = $user;
669 if ( !is_array( $types ) ) # Make it an array, if it isn't
670 $types = array( $types );
671 # If there is exactly one log type, we can link to Special:Log?type=foo
672 if ( count( $types ) == 1 )
673 $urlParam['type'] = $types[0];
674 $s .= $wgUser->getSkin()->link(
675 SpecialPage::getTitleFor( 'Log' ),
676 wfMsgHtml( 'log-fulllog' ),
677 array(),
678 $urlParam
679 );
680
681 }
682 if ( $logBody && $msgKey[0] )
683 $s .= '</div>';
684
685 if( $out instanceof OutputPage ){
686 $out->addHTML( $s );
687 } else {
688 $out = $s;
689 }
690 return $pager->getNumRows();
691 }
692
693 /**
694 * SQL clause to skip forbidden log types for this user
695 * @param $db Database
696 * @param $audience string, public/user
697 * @return mixed (string or false)
698 */
699 public static function getExcludeClause( $db, $audience = 'public' ) {
700 global $wgLogRestrictions, $wgUser;
701 // Reset the array, clears extra "where" clauses when $par is used
702 $hiddenLogs = array();
703 // Don't show private logs to unprivileged users
704 foreach( $wgLogRestrictions as $logType => $right ) {
705 if( $audience == 'public' || !$wgUser->isAllowed($right) ) {
706 $safeType = $db->strencode( $logType );
707 $hiddenLogs[] = $safeType;
708 }
709 }
710 if( count($hiddenLogs) == 1 ) {
711 return 'log_type != ' . $db->addQuotes( $hiddenLogs[0] );
712 } elseif( $hiddenLogs ) {
713 return 'log_type NOT IN (' . $db->makeList($hiddenLogs) . ')';
714 }
715 return false;
716 }
717 }
718
719 /**
720 * @ingroup Pager
721 */
722 class LogPager extends ReverseChronologicalPager {
723 private $types = array(), $user = '', $title = '', $pattern = '';
724 private $typeCGI = '';
725 public $mLogEventsList;
726
727 /**
728 * constructor
729 * @param $list LogEventsList
730 * @param $types String or Array log types to show
731 * @param $user String The user who made the log entries
732 * @param $title String The page title the log entries are for
733 * @param $pattern String Do a prefix search rather than an exact title match
734 * @param $conds Array Extra conditions for the query
735 * @param $year Integer The year to start from
736 * @param $month Integer The month to start from
737 */
738 public function __construct( $list, $types = array(), $user = '', $title = '', $pattern = '',
739 $conds = array(), $year = false, $month = false, $tagFilter = '' )
740 {
741 parent::__construct();
742 $this->mConds = $conds;
743
744 $this->mLogEventsList = $list;
745
746 $this->limitType( $types ); // also excludes hidden types
747 $this->limitUser( $user );
748 $this->limitTitle( $title, $pattern );
749 $this->getDateCond( $year, $month );
750 $this->mTagFilter = $tagFilter;
751 }
752
753 public function getDefaultQuery() {
754 $query = parent::getDefaultQuery();
755 $query['type'] = $this->typeCGI; // arrays won't work here
756 $query['user'] = $this->user;
757 $query['month'] = $this->mMonth;
758 $query['year'] = $this->mYear;
759 return $query;
760 }
761
762 // Call ONLY after calling $this->limitType() already!
763 public function getFilterParams() {
764 global $wgFilterLogTypes, $wgUser, $wgRequest;
765 $filters = array();
766 if( count($this->types) ) {
767 return $filters;
768 }
769 foreach( $wgFilterLogTypes as $type => $default ) {
770 // Avoid silly filtering
771 if( $type !== 'patrol' || $wgUser->useNPPatrol() ) {
772 $hide = $wgRequest->getInt( "hide_{$type}_log", $default );
773 $filters[$type] = $hide;
774 if( $hide )
775 $this->mConds[] = 'log_type != ' . $this->mDb->addQuotes( $type );
776 }
777 }
778 return $filters;
779 }
780
781 /**
782 * Set the log reader to return only entries of the given type.
783 * Type restrictions enforced here
784 * @param $types String or array: Log types ('upload', 'delete', etc);
785 * empty string means no restriction
786 */
787 private function limitType( $types ) {
788 global $wgLogRestrictions, $wgUser;
789 // If $types is not an array, make it an array
790 $types = ($types === '') ? array() : (array)$types;
791 // Don't even show header for private logs; don't recognize it...
792 foreach ( $types as $type ) {
793 if( isset( $wgLogRestrictions[$type] ) && !$wgUser->isAllowed($wgLogRestrictions[$type]) ) {
794 $types = array_diff( $types, array( $type ) );
795 }
796 }
797 // Don't show private logs to unprivileged users.
798 // Also, only show them upon specific request to avoid suprises.
799 $audience = $types ? 'user' : 'public';
800 $hideLogs = LogEventsList::getExcludeClause( $this->mDb, $audience );
801 if( $hideLogs !== false ) {
802 $this->mConds[] = $hideLogs;
803 }
804 if( count($types) ) {
805 $this->types = $types;
806 $this->mConds['log_type'] = $types;
807 // Set typeCGI; used in url param for paging
808 if( count($types) == 1 ) $this->typeCGI = $types[0];
809 }
810 }
811
812 /**
813 * Set the log reader to return only entries by the given user.
814 * @param $name String: (In)valid user name
815 */
816 private function limitUser( $name ) {
817 if( $name == '' ) {
818 return false;
819 }
820 $usertitle = Title::makeTitleSafe( NS_USER, $name );
821 if( is_null($usertitle) ) {
822 return false;
823 }
824 /* Fetch userid at first, if known, provides awesome query plan afterwards */
825 $userid = User::idFromName( $name );
826 if( !$userid ) {
827 /* It should be nicer to abort query at all,
828 but for now it won't pass anywhere behind the optimizer */
829 $this->mConds[] = "NULL";
830 } else {
831 global $wgUser;
832 $this->mConds['log_user'] = $userid;
833 // Paranoia: avoid brute force searches (bug 17342)
834 if( !$wgUser->isAllowed( 'deletedhistory' ) ) {
835 $this->mConds[] = $this->mDb->bitAnd('log_deleted', LogPage::DELETED_USER) . ' = 0';
836 } else if( !$wgUser->isAllowed( 'suppressrevision' ) ) {
837 $this->mConds[] = $this->mDb->bitAnd('log_deleted', LogPage::SUPPRESSED_USER) .
838 ' != ' . LogPage::SUPPRESSED_USER;
839 }
840 $this->user = $usertitle->getText();
841 }
842 }
843
844 /**
845 * Set the log reader to return only entries affecting the given page.
846 * (For the block and rights logs, this is a user page.)
847 * @param $page String: Title name as text
848 * @param $pattern String
849 */
850 private function limitTitle( $page, $pattern ) {
851 global $wgMiserMode, $wgUser;
852
853 $title = Title::newFromText( $page );
854 if( strlen( $page ) == 0 || !$title instanceof Title )
855 return false;
856
857 $this->title = $title->getPrefixedText();
858 $ns = $title->getNamespace();
859 $db = $this->mDb;
860
861 # Using the (log_namespace, log_title, log_timestamp) index with a
862 # range scan (LIKE) on the first two parts, instead of simple equality,
863 # makes it unusable for sorting. Sorted retrieval using another index
864 # would be possible, but then we might have to scan arbitrarily many
865 # nodes of that index. Therefore, we need to avoid this if $wgMiserMode
866 # is on.
867 #
868 # This is not a problem with simple title matches, because then we can
869 # use the page_time index. That should have no more than a few hundred
870 # log entries for even the busiest pages, so it can be safely scanned
871 # in full to satisfy an impossible condition on user or similar.
872 if( $pattern && !$wgMiserMode ) {
873 $this->mConds['log_namespace'] = $ns;
874 $this->mConds[] = 'log_title ' . $db->buildLike( $title->getDBkey(), $db->anyString() );
875 $this->pattern = $pattern;
876 } else {
877 $this->mConds['log_namespace'] = $ns;
878 $this->mConds['log_title'] = $title->getDBkey();
879 }
880 // Paranoia: avoid brute force searches (bug 17342)
881 if( !$wgUser->isAllowed( 'deletedhistory' ) ) {
882 $this->mConds[] = $db->bitAnd('log_deleted', LogPage::DELETED_ACTION) . ' = 0';
883 } else if( !$wgUser->isAllowed( 'suppressrevision' ) ) {
884 $this->mConds[] = $db->bitAnd('log_deleted', LogPage::SUPPRESSED_ACTION) .
885 ' != ' . LogPage::SUPPRESSED_ACTION;
886 }
887 }
888
889 public function getQueryInfo() {
890 $tables = array( 'logging', 'user' );
891 $this->mConds[] = 'user_id = log_user';
892 $groupBy = false;
893 # Add log_search table if there are conditions on it
894 if( array_key_exists('ls_field',$this->mConds) ) {
895 $tables[] = 'log_search';
896 $index = array( 'log_search' => 'ls_field_val', 'logging' => 'PRIMARY' );
897 $groupBy = 'ls_log_id';
898 # Don't use the wrong logging index
899 } else if( $this->title || $this->pattern || $this->user ) {
900 $index = array( 'logging' => array('page_time','user_time') );
901 } else if( $this->types ) {
902 $index = array( 'logging' => 'type_time' );
903 } else {
904 $index = array( 'logging' => 'times' );
905 }
906 $options = array( 'USE INDEX' => $index );
907 # Don't show duplicate rows when using log_search
908 if( $groupBy ) $options['GROUP BY'] = $groupBy;
909 $info = array(
910 'tables' => $tables,
911 'fields' => array( 'log_type', 'log_action', 'log_user', 'log_namespace',
912 'log_title', 'log_params', 'log_comment', 'log_id', 'log_deleted',
913 'log_timestamp', 'user_name', 'user_editcount' ),
914 'conds' => $this->mConds,
915 'options' => $options,
916 'join_conds' => array(
917 'user' => array( 'INNER JOIN', 'user_id=log_user' ),
918 'log_search' => array( 'INNER JOIN', 'ls_log_id=log_id' )
919 )
920 );
921 # Add ChangeTags filter query
922 ChangeTags::modifyDisplayQuery( $info['tables'], $info['fields'], $info['conds'],
923 $info['join_conds'], $info['options'], $this->mTagFilter );
924
925 return $info;
926 }
927
928 function getIndexField() {
929 return 'log_timestamp';
930 }
931
932 public function getStartBody() {
933 wfProfileIn( __METHOD__ );
934 # Do a link batch query
935 if( $this->getNumRows() > 0 ) {
936 $lb = new LinkBatch;
937 while( $row = $this->mResult->fetchObject() ) {
938 $lb->add( $row->log_namespace, $row->log_title );
939 $lb->addObj( Title::makeTitleSafe( NS_USER, $row->user_name ) );
940 $lb->addObj( Title::makeTitleSafe( NS_USER_TALK, $row->user_name ) );
941 }
942 $lb->execute();
943 $this->mResult->seek( 0 );
944 }
945 wfProfileOut( __METHOD__ );
946 return '';
947 }
948
949 public function formatRow( $row ) {
950 return $this->mLogEventsList->logLine( $row );
951 }
952
953 public function getType() {
954 return $this->types;
955 }
956
957 public function getUser() {
958 return $this->user;
959 }
960
961 public function getPage() {
962 return $this->title;
963 }
964
965 public function getPattern() {
966 return $this->pattern;
967 }
968
969 public function getYear() {
970 return $this->mYear;
971 }
972
973 public function getMonth() {
974 return $this->mMonth;
975 }
976
977 public function getTagFilter() {
978 return $this->mTagFilter;
979 }
980
981 public function doQuery() {
982 // Workaround MySQL optimizer bug
983 $this->mDb->setBigSelects();
984 parent::doQuery();
985 $this->mDb->setBigSelects( 'default' );
986 }
987 }
988
989 /**
990 * @deprecated
991 * @ingroup SpecialPage
992 */
993 class LogReader {
994 var $pager;
995 /**
996 * @param $request WebRequest: for internal use use a FauxRequest object to pass arbitrary parameters.
997 */
998 function __construct( $request ) {
999 global $wgUser, $wgOut;
1000 wfDeprecated(__METHOD__);
1001 # Get parameters
1002 $type = $request->getVal( 'type' );
1003 $user = $request->getText( 'user' );
1004 $title = $request->getText( 'page' );
1005 $pattern = $request->getBool( 'pattern' );
1006 $year = $request->getIntOrNull( 'year' );
1007 $month = $request->getIntOrNull( 'month' );
1008 $tagFilter = $request->getVal( 'tagfilter' );
1009 # Don't let the user get stuck with a certain date
1010 $skip = $request->getText( 'offset' ) || $request->getText( 'dir' ) == 'prev';
1011 if( $skip ) {
1012 $year = '';
1013 $month = '';
1014 }
1015 # Use new list class to output results
1016 $loglist = new LogEventsList( $wgUser->getSkin(), $wgOut, 0 );
1017 $this->pager = new LogPager( $loglist, $type, $user, $title, $pattern, $year, $month, $tagFilter );
1018 }
1019
1020 /**
1021 * Is there at least one row?
1022 * @return bool
1023 */
1024 public function hasRows() {
1025 return isset($this->pager) ? ($this->pager->getNumRows() > 0) : false;
1026 }
1027 }
1028
1029 /**
1030 * @deprecated
1031 * @ingroup SpecialPage
1032 */
1033 class LogViewer {
1034 const NO_ACTION_LINK = 1;
1035
1036 /**
1037 * LogReader object
1038 */
1039 var $reader;
1040
1041 /**
1042 * @param &$reader LogReader: where to get our data from
1043 * @param $flags Integer: Bitwise combination of flags:
1044 * LogEventsList::NO_ACTION_LINK Don't show restore/unblock/block links
1045 */
1046 function __construct( &$reader, $flags = 0 ) {
1047 wfDeprecated(__METHOD__);
1048 $this->reader =& $reader;
1049 $this->reader->pager->mLogEventsList->flags = $flags;
1050 # Aliases for shorter code...
1051 $this->pager =& $this->reader->pager;
1052 $this->list =& $this->reader->pager->mLogEventsList;
1053 }
1054
1055 /**
1056 * Take over the whole output page in $wgOut with the log display.
1057 */
1058 public function show() {
1059 # Set title and add header
1060 $this->list->showHeader( $pager->getType() );
1061 # Show form options
1062 $this->list->showOptions( $this->pager->getType(), $this->pager->getUser(), $this->pager->getPage(),
1063 $this->pager->getPattern(), $this->pager->getYear(), $this->pager->getMonth() );
1064 # Insert list
1065 $logBody = $this->pager->getBody();
1066 if( $logBody ) {
1067 $wgOut->addHTML(
1068 $this->pager->getNavigationBar() .
1069 $this->list->beginLogEventsList() .
1070 $logBody .
1071 $this->list->endLogEventsList() .
1072 $this->pager->getNavigationBar()
1073 );
1074 } else {
1075 $wgOut->addWikiMsg( 'logempty' );
1076 }
1077 }
1078
1079 /**
1080 * Output just the list of entries given by the linked LogReader,
1081 * with extraneous UI elements. Use for displaying log fragments in
1082 * another page (eg at Special:Undelete)
1083 * @param $out OutputPage: where to send output
1084 */
1085 public function showList( &$out ) {
1086 $logBody = $this->pager->getBody();
1087 if( $logBody ) {
1088 $out->addHTML(
1089 $this->list->beginLogEventsList() .
1090 $logBody .
1091 $this->list->endLogEventsList()
1092 );
1093 } else {
1094 $out->addWikiMsg( 'logempty' );
1095 }
1096 }
1097 }