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