Shut up warnings from r56420 that have annoyed us few days :o
[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', 'rev-delundel', '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 Xml::inputLabel( wfMsg( 'specialloguserlabel' ), 'user', 'mw-log-user', 15, $user );
224 }
225
226 /**
227 * @param $title String
228 * @return String: Formatted HTML
229 */
230 private function getTitleInput( $title ) {
231 return Xml::inputLabel( wfMsg( 'speciallogtitlelabel' ), 'page', 'mw-log-page', 20, $title );
232 }
233
234 /**
235 * @return boolean Checkbox
236 */
237 private function getTitlePattern( $pattern ) {
238 return '<span style="white-space: nowrap">' .
239 Xml::checkLabel( wfMsg( 'log-title-wildcard' ), 'pattern', 'pattern', $pattern ) .
240 '</span>';
241 }
242
243 private function getExtraInputs( $types ) {
244 global $wgRequest;
245 if( count($types) == 1 && $types[0] == 'suppress' ) {
246 return Xml::inputLabel( wfMsg('revdelete-offender'), 'offender',
247 'mw-log-offender', 20, $wgRequest->getVal('offender') );
248 }
249 return '';
250 }
251
252 public function beginLogEventsList() {
253 return "<ul>\n";
254 }
255
256 public function endLogEventsList() {
257 return "</ul>\n";
258 }
259
260 /**
261 * @param $row Row: a single row from the result set
262 * @return String: Formatted HTML list item
263 */
264 public function logLine( $row ) {
265 global $wgLang, $wgUser, $wgContLang;
266
267 $title = Title::makeTitle( $row->log_namespace, $row->log_title );
268 $classes = array( "mw-logline-{$row->log_type}" );
269 $time = $wgLang->timeanddate( wfTimestamp(TS_MW, $row->log_timestamp), true );
270 // User links
271 if( self::isDeleted($row,LogPage::DELETED_USER) ) {
272 $userLink = '<span class="history-deleted">' . wfMsgHtml( 'rev-deleted-user' ) . '</span>';
273 } else {
274 $userLink = $this->skin->userLink( $row->log_user, $row->user_name ) .
275 $this->skin->userToolLinks( $row->log_user, $row->user_name, true, 0, $row->user_editcount );
276 }
277 // Comment
278 if( self::isDeleted($row,LogPage::DELETED_COMMENT) ) {
279 $comment = '<span class="history-deleted">' . wfMsgHtml('rev-deleted-comment') . '</span>';
280 } else {
281 $comment = $wgContLang->getDirMark() . $this->skin->commentBlock( $row->log_comment );
282 }
283 // Extract extra parameters
284 $paramArray = LogPage::extractParams( $row->log_params );
285 $revert = $del = '';
286 // Some user can hide log items and have review links
287 if( !($this->flags & self::NO_ACTION_LINK) && $wgUser->isAllowed( 'deleterevision' ) ) {
288 $del = $this->getShowHideLinks( $row ) . ' ';
289 }
290 // Add review links and such...
291 if( ($this->flags & self::NO_ACTION_LINK) || ($row->log_deleted & LogPage::DELETED_ACTION) ) {
292 // Action text is suppressed...
293 } else if( self::typeAction($row,'move','move','move') && !empty($paramArray[0]) ) {
294 $destTitle = Title::newFromText( $paramArray[0] );
295 if( $destTitle ) {
296 $revert = '(' . $this->skin->link(
297 SpecialPage::getTitleFor( 'Movepage' ),
298 $this->message['revertmove'],
299 array(),
300 array(
301 'wpOldTitle' => $destTitle->getPrefixedDBkey(),
302 'wpNewTitle' => $title->getPrefixedDBkey(),
303 'wpReason' => wfMsgForContent( 'revertmove' ),
304 'wpMovetalk' => 0
305 ),
306 array( 'known', 'noclasses' )
307 ) . ')';
308 }
309 // Show undelete link
310 } else if( self::typeAction($row,array('delete','suppress'),'delete','deletedhistory') ) {
311 if( !$wgUser->isAllowed( 'undelete' ) ) {
312 $viewdeleted = $this->message['undeleteviewlink'];
313 } else {
314 $viewdeleted = $this->message['undeletelink'];
315 }
316
317 $revert = '(' . $this->skin->link(
318 SpecialPage::getTitleFor( 'Undelete' ),
319 $viewdeleted,
320 array(),
321 array( 'target' => $title->getPrefixedDBkey() ),
322 array( 'known', 'noclasses' )
323 ) . ')';
324 // Show unblock/change block link
325 } else if( self::typeAction($row,array('block','suppress'),array('block','reblock'),'block') ) {
326 $revert = '(' .
327 $this->skin->link(
328 SpecialPage::getTitleFor( 'Ipblocklist' ),
329 $this->message['unblocklink'],
330 array(),
331 array(
332 'action' => 'unblock',
333 'ip' => $row->log_title
334 ),
335 'known'
336 ) .
337 $this->message['pipe-separator'] .
338 $this->skin->link(
339 SpecialPage::getTitleFor( 'Blockip', $row->log_title ),
340 $this->message['change-blocklink'],
341 array(),
342 array(),
343 'known'
344 ) .
345 ')';
346 // Show change protection link
347 } else if( self::typeAction( $row, 'protect', array( 'modify', 'protect', 'unprotect' ) ) ) {
348 $revert .= ' (' .
349 $this->skin->link( $title,
350 $this->message['hist'],
351 array(),
352 array(
353 'action' => 'history',
354 'offset' => $row->log_timestamp
355 )
356 );
357 if( $wgUser->isAllowed( 'protect' ) ) {
358 $revert .= $this->message['pipe-separator'] .
359 $this->skin->link( $title,
360 $this->message['protect_change'],
361 array(),
362 array( 'action' => 'protect' ),
363 'known' );
364 }
365 $revert .= ')';
366 // Show unmerge link
367 } else if( self::typeAction($row,'merge','merge','mergehistory') ) {
368 $merge = SpecialPage::getTitleFor( 'Mergehistory' );
369 $revert = '(' . $this->skin->link(
370 $merge,
371 $this->message['revertmerge'],
372 array(),
373 array(
374 'target' => $paramArray[0],
375 'dest' => $title->getPrefixedDBkey(),
376 'mergepoint' => $paramArray[1]
377 ),
378 array( 'known', 'noclasses' )
379 ) . ')';
380 // If an edit was hidden from a page give a review link to the history
381 } else if( self::typeAction($row,array('delete','suppress'),'revision','deleterevision') ) {
382 if( count($paramArray) >= 2 ) {
383 // Different revision types use different URL params...
384 $key = $paramArray[0];
385 // $paramArray[1] is a CSV of the IDs
386 $Ids = explode( ',', $paramArray[1] );
387 $query = $paramArray[1];
388 $revert = array();
389 // Diff link for single rev deletions
390 if( count($Ids) == 1 ) {
391 // Live revision diffs...
392 if( in_array($key, array('oldid','revision')) ) {
393 $revert[] = $this->skin->link(
394 $title,
395 $this->message['diff'],
396 array(),
397 array(
398 'diff' => intval( $Ids[0] ),
399 'unhide' => 1
400 ),
401 array( 'known', 'noclasses' )
402 );
403 // Deleted revision diffs...
404 } else if( in_array($key, array('artimestamp','archive')) ) {
405 $revert[] = $this->skin->link(
406 SpecialPage::getTitleFor( 'Undelete' ),
407 $this->message['diff'],
408 array(),
409 array(
410 'target' => $title->getPrefixedDBKey(),
411 'diff' => 'prev',
412 'timestamp' => $Ids[0]
413 ),
414 array( 'known', 'noclasses' )
415 );
416 }
417 }
418 // View/modify link...
419 $revert[] = $this->skin->link(
420 SpecialPage::getTitleFor( 'Revisiondelete' ),
421 $this->message['revdel-restore'],
422 array(),
423 array(
424 'target' => $title->getPrefixedText(),
425 'type' => $key,
426 'ids' => $query
427 ),
428 array( 'known', 'noclasses' )
429 );
430 // Pipe links
431 $revert = wfMsg( 'parentheses', $wgLang->pipeList( $revert ) );
432 }
433 // Hidden log items, give review link
434 } else if( self::typeAction($row,array('delete','suppress'),'event','deleterevision') ) {
435 if( count($paramArray) >= 1 ) {
436 $revdel = SpecialPage::getTitleFor( 'Revisiondelete' );
437 // $paramArray[1] is a CSV of the IDs
438 $Ids = explode( ',', $paramArray[0] );
439 $query = $paramArray[0];
440 // Link to each hidden object ID, $paramArray[1] is the url param
441 $revert = '(' . $this->skin->link(
442 $revdel,
443 $this->message['revdel-restore'],
444 array(),
445 array(
446 'target' => $title->getPrefixedText(),
447 'type' => 'logging',
448 'ids' => $query
449 ),
450 array( 'known', 'noclasses' )
451 ) . ')';
452 }
453 // Self-created users
454 } else if( self::typeAction($row,'newusers','create2') ) {
455 if( isset( $paramArray[0] ) ) {
456 $revert = $this->skin->userToolLinks( $paramArray[0], $title->getDBkey(), true );
457 } else {
458 # Fall back to a blue contributions link
459 $revert = $this->skin->userToolLinks( 1, $title->getDBkey() );
460 }
461 if( $time < '20080129000000' ) {
462 # Suppress $comment from old entries (before 2008-01-29),
463 # not needed and can contain incorrect links
464 $comment = '';
465 }
466 // Do nothing. The implementation is handled by the hook modifiying the passed-by-ref parameters.
467 } else {
468 wfRunHooks( 'LogLine', array( $row->log_type, $row->log_action, $title, $paramArray,
469 &$comment, &$revert, $row->log_timestamp ) );
470 }
471 // Event description
472 if( self::isDeleted($row,LogPage::DELETED_ACTION) ) {
473 $action = '<span class="history-deleted">' . wfMsgHtml('rev-deleted-event') . '</span>';
474 } else {
475 $action = LogPage::actionText( $row->log_type, $row->log_action, $title,
476 $this->skin, $paramArray, true );
477 }
478
479 // Any tags...
480 list($tagDisplay, $newClasses) = ChangeTags::formatSummaryRow( $row->ts_tags, 'logevent' );
481 $classes = array_merge( $classes, $newClasses );
482
483 if( $revert != '' ) {
484 $revert = '<span class="mw-logevent-actionlink">' . $revert . '</span>';
485 }
486
487 $time = htmlspecialchars( $time );
488
489 return Xml::tags( 'li', array( "class" => implode( ' ', $classes ) ),
490 $del . $time . ' ' . $userLink . ' ' . $action . ' ' . $comment . ' ' . $revert . " $tagDisplay" ) . "\n";
491 }
492
493 /**
494 * @param $row Row
495 * @return string
496 */
497 private function getShowHideLinks( $row ) {
498 // If event was hidden from sysops
499 if( !self::userCan( $row, LogPage::DELETED_RESTRICTED ) ) {
500 $del = Xml::tags( 'span', array( 'class'=>'mw-revdelundel-link' ),
501 '('.$this->message['rev-delundel'].')' );
502 } else if( $row->log_type == 'suppress' ) {
503 $del = ''; // No one should be hiding from the oversight log
504 } else {
505 $target = SpecialPage::getTitleFor( 'Log', $row->log_type );
506 $page = Title::makeTitle( $row->log_namespace, $row->log_title );
507 $query = array(
508 'target' => $target->getPrefixedDBkey(),
509 'type' => 'logging',
510 'ids' => $row->log_id,
511 );
512 $del = $this->skin->revDeleteLink( $query,
513 self::isDeleted( $row, LogPage::DELETED_RESTRICTED ) );
514 }
515 return $del;
516 }
517
518 /**
519 * @param $row Row
520 * @param $type Mixed: string/array
521 * @param $action Mixed: string/array
522 * @param $right string
523 * @return bool
524 */
525 public static function typeAction( $row, $type, $action, $right='' ) {
526 $match = is_array($type) ?
527 in_array($row->log_type,$type) : $row->log_type == $type;
528 if( $match ) {
529 $match = is_array($action) ?
530 in_array($row->log_action,$action) : $row->log_action == $action;
531 if( $match && $right ) {
532 global $wgUser;
533 $match = $wgUser->isAllowed( $right );
534 }
535 }
536 return $match;
537 }
538
539 /**
540 * Determine if the current user is allowed to view a particular
541 * field of this log row, if it's marked as deleted.
542 * @param $row Row
543 * @param $field Integer
544 * @return Boolean
545 */
546 public static function userCan( $row, $field ) {
547 if( ( $row->log_deleted & $field ) == $field ) {
548 global $wgUser;
549 $permission = ( $row->log_deleted & LogPage::DELETED_RESTRICTED ) == LogPage::DELETED_RESTRICTED
550 ? 'suppressrevision'
551 : 'deleterevision';
552 wfDebug( "Checking for $permission due to $field match on $row->log_deleted\n" );
553 return $wgUser->isAllowed( $permission );
554 } else {
555 return true;
556 }
557 }
558
559 /**
560 * @param $row Row
561 * @param $field Integer: one of DELETED_* bitfield constants
562 * @return Boolean
563 */
564 public static function isDeleted( $row, $field ) {
565 return ($row->log_deleted & $field) == $field;
566 }
567
568 /**
569 * Show log extract. Either with text and a box (set $msgKey) or without (don't set $msgKey)
570 * @param $out OutputPage or String-by-reference
571 * @param $types String or Array
572 * @param $page String The page title to show log entries for
573 * @param $user String The user who made the log entries
574 * @param $param Associative Array with the following additional options:
575 * lim Integer Limit of items to show, default is 50
576 * conds Array Extra conditions for the query (e.g. "log_action != 'revision'")
577 * showIfEmpty boolean Set to false if you don't want any output in case the loglist is empty
578 * if set to true (default), "No matching items in log" is displayed if loglist is empty
579 * msgKey Array If you want a nice box with a message, set this
580 * to the key of the message. First element is the message
581 * key, additional optional elements are parameters for the
582 * key that are processed with wgMsgExt and option 'parse'
583 * @return Integer Number of total log items (not limited by $lim)
584 */
585 public static function showLogExtract( &$out, $types=array(), $page='', $user='',
586 $param = array() ) {
587
588 $defaultParameters = array(
589 'lim' => 0,
590 'conds' => array(),
591 'showIfEmpty' => true,
592 'msgKey' => array('')
593 );
594
595 # The + operator appends elements of remaining keys from the right
596 # handed array to the left handed, whereas duplicated keys are NOT overwritten.
597 $param += $defaultParameters;
598
599 global $wgUser, $wgOut;
600 # Convert $param array to individual variables
601 $lim = $param['lim'];
602 $conds = $param['conds'];
603 $showIfEmpty = $param['showIfEmpty'];
604 $msgKey = $param['msgKey'];
605 if ( !is_array($msgKey) )
606 $msgKey = array( $msgKey );
607 # Insert list of top 50 (or top $lim) items
608 $loglist = new LogEventsList( $wgUser->getSkin(), $wgOut, 0 );
609 $pager = new LogPager( $loglist, $types, $user, $page, '', $conds );
610 if( $lim > 0 ) $pager->mLimit = $lim;
611 $logBody = $pager->getBody();
612 $s = '';
613 if( $logBody ) {
614 if ( $msgKey[0] ) {
615 $s = '<div class="mw-warning-with-logexcerpt">';
616
617 if ( count( $msgKey ) == 1 ) {
618 $s .= wfMsgExt( $msgKey[0], array('parse') );
619 } else { // Process additional arguments
620 $args = $msgKey;
621 array_shift( $args );
622 $s .= wfMsgExt( $msgKey[0], array('parse'), $args );
623 }
624 }
625 $s .= $loglist->beginLogEventsList() .
626 $logBody .
627 $loglist->endLogEventsList();
628 } else {
629 if ( $showIfEmpty )
630 $s = wfMsgExt( 'logempty', array('parse') );
631 }
632 if( $pager->getNumRows() > $pager->mLimit ) { # Show "Full log" link
633 $urlParam = array();
634 if ( $page != '')
635 $urlParam['page'] = $page;
636 if ( $user != '')
637 $urlParam['user'] = $user;
638 if ( !is_array( $types ) ) # Make it an array, if it isn't
639 $types = array( $types );
640 # If there is exactly one log type, we can link to Special:Log?type=foo
641 if ( count( $types ) == 1 )
642 $urlParam['type'] = $types[0];
643 $s .= $wgUser->getSkin()->link(
644 SpecialPage::getTitleFor( 'Log' ),
645 wfMsgHtml( 'log-fulllog' ),
646 array(),
647 $urlParam
648 );
649
650 }
651 if ( $logBody && $msgKey[0] )
652 $s .= '</div>';
653
654 if( $out instanceof OutputPage ){
655 $out->addHTML( $s );
656 } else {
657 $out = $s;
658 }
659 return $pager->getNumRows();
660 }
661
662 /**
663 * SQL clause to skip forbidden log types for this user
664 * @param $db Database
665 * @param $audience string, public/user
666 * @return mixed (string or false)
667 */
668 public static function getExcludeClause( $db, $audience = 'public' ) {
669 global $wgLogRestrictions, $wgUser;
670 // Reset the array, clears extra "where" clauses when $par is used
671 $hiddenLogs = array();
672 // Don't show private logs to unprivileged users
673 foreach( $wgLogRestrictions as $logType => $right ) {
674 if( $audience == 'public' || !$wgUser->isAllowed($right) ) {
675 $safeType = $db->strencode( $logType );
676 $hiddenLogs[] = $safeType;
677 }
678 }
679 if( count($hiddenLogs) == 1 ) {
680 return 'log_type != ' . $db->addQuotes( $hiddenLogs[0] );
681 } elseif( $hiddenLogs ) {
682 return 'log_type NOT IN (' . $db->makeList($hiddenLogs) . ')';
683 }
684 return false;
685 }
686 }
687
688 /**
689 * @ingroup Pager
690 */
691 class LogPager extends ReverseChronologicalPager {
692 private $types = array(), $user = '', $title = '', $pattern = '';
693 private $typeCGI = '';
694 public $mLogEventsList;
695
696 /**
697 * constructor
698 * @param $list LogEventsList
699 * @param $types String or Array log types to show
700 * @param $user String The user who made the log entries
701 * @param $title String The page title the log entries are for
702 * @param $pattern String Do a prefix search rather than an exact title match
703 * @param $conds Array Extra conditions for the query
704 * @param $year Integer The year to start from
705 * @param $month Integer The month to start from
706 */
707 public function __construct( $list, $types = array(), $user = '', $title = '', $pattern = '',
708 $conds = array(), $year = false, $month = false, $tagFilter = '' )
709 {
710 parent::__construct();
711 $this->mConds = $conds;
712
713 $this->mLogEventsList = $list;
714
715 $this->limitType( $types ); // also excludes hidden types
716 $this->limitUser( $user );
717 $this->limitTitle( $title, $pattern );
718 $this->getDateCond( $year, $month );
719 $this->mTagFilter = $tagFilter;
720 }
721
722 public function getDefaultQuery() {
723 $query = parent::getDefaultQuery();
724 $query['type'] = $this->typeCGI; // arrays won't work here
725 $query['user'] = $this->user;
726 $query['month'] = $this->mMonth;
727 $query['year'] = $this->mYear;
728 return $query;
729 }
730
731 // Call ONLY after calling $this->limitType() already!
732 public function getFilterParams() {
733 global $wgFilterLogTypes, $wgUser, $wgRequest;
734 $filters = array();
735 if( count($this->types) ) {
736 return $filters;
737 }
738 foreach( $wgFilterLogTypes as $type => $default ) {
739 // Avoid silly filtering
740 if( $type !== 'patrol' || $wgUser->useNPPatrol() ) {
741 $hide = $wgRequest->getInt( "hide_{$type}_log", $default );
742 $filters[$type] = $hide;
743 if( $hide )
744 $this->mConds[] = 'log_type != ' . $this->mDb->addQuotes( $type );
745 }
746 }
747 return $filters;
748 }
749
750 /**
751 * Set the log reader to return only entries of the given type.
752 * Type restrictions enforced here
753 * @param $types String or array: Log types ('upload', 'delete', etc);
754 * empty string means no restriction
755 */
756 private function limitType( $types ) {
757 global $wgLogRestrictions, $wgUser;
758 // If $types is not an array, make it an array
759 $types = ($types === '') ? array() : (array)$types;
760 // Don't even show header for private logs; don't recognize it...
761 foreach ( $types as $type ) {
762 if( isset( $wgLogRestrictions[$type] ) && !$wgUser->isAllowed($wgLogRestrictions[$type]) ) {
763 $types = array_diff( $types, array( $type ) );
764 }
765 }
766 // Don't show private logs to unprivileged users.
767 // Also, only show them upon specific request to avoid suprises.
768 $audience = $types ? 'user' : 'public';
769 $hideLogs = LogEventsList::getExcludeClause( $this->mDb, $audience );
770 if( $hideLogs !== false ) {
771 $this->mConds[] = $hideLogs;
772 }
773 if( count($types) ) {
774 $this->types = $types;
775 $this->mConds['log_type'] = $types;
776 // Set typeCGI; used in url param for paging
777 if( count($types) == 1 ) $this->typeCGI = $types[0];
778 }
779 }
780
781 /**
782 * Set the log reader to return only entries by the given user.
783 * @param $name String: (In)valid user name
784 */
785 private function limitUser( $name ) {
786 if( $name == '' ) {
787 return false;
788 }
789 $usertitle = Title::makeTitleSafe( NS_USER, $name );
790 if( is_null($usertitle) ) {
791 return false;
792 }
793 /* Fetch userid at first, if known, provides awesome query plan afterwards */
794 $userid = User::idFromName( $name );
795 if( !$userid ) {
796 /* It should be nicer to abort query at all,
797 but for now it won't pass anywhere behind the optimizer */
798 $this->mConds[] = "NULL";
799 } else {
800 global $wgUser;
801 $this->mConds['log_user'] = $userid;
802 // Paranoia: avoid brute force searches (bug 17342)
803 if( !$wgUser->isAllowed( 'deleterevision' ) ) {
804 $this->mConds[] = $this->mDb->bitAnd('log_deleted', LogPage::DELETED_USER) . ' = 0';
805 } else if( !$wgUser->isAllowed( 'suppressrevision' ) ) {
806 $this->mConds[] = $this->mDb->bitAnd('log_deleted', LogPage::SUPPRESSED_USER) .
807 ' != ' . LogPage::SUPPRESSED_USER;
808 }
809 $this->user = $usertitle->getText();
810 }
811 }
812
813 /**
814 * Set the log reader to return only entries affecting the given page.
815 * (For the block and rights logs, this is a user page.)
816 * @param $page String: Title name as text
817 * @param $pattern String
818 */
819 private function limitTitle( $page, $pattern ) {
820 global $wgMiserMode, $wgUser;
821
822 $title = Title::newFromText( $page );
823 if( strlen($page) == 0 || !$title instanceof Title )
824 return false;
825
826 $this->title = $title->getPrefixedText();
827 $ns = $title->getNamespace();
828 # Using the (log_namespace, log_title, log_timestamp) index with a
829 # range scan (LIKE) on the first two parts, instead of simple equality,
830 # makes it unusable for sorting. Sorted retrieval using another index
831 # would be possible, but then we might have to scan arbitrarily many
832 # nodes of that index. Therefore, we need to avoid this if $wgMiserMode
833 # is on.
834 #
835 # This is not a problem with simple title matches, because then we can
836 # use the page_time index. That should have no more than a few hundred
837 # log entries for even the busiest pages, so it can be safely scanned
838 # in full to satisfy an impossible condition on user or similar.
839 if( $pattern && !$wgMiserMode ) {
840 # use escapeLike to avoid expensive search patterns like 't%st%'
841 $safetitle = $this->mDb->escapeLike( $title->getDBkey() );
842 $this->mConds['log_namespace'] = $ns;
843 $this->mConds[] = "log_title LIKE '$safetitle%'";
844 $this->pattern = $pattern;
845 } else {
846 $this->mConds['log_namespace'] = $ns;
847 $this->mConds['log_title'] = $title->getDBkey();
848 }
849 // Paranoia: avoid brute force searches (bug 17342)
850 if( !$wgUser->isAllowed( 'deleterevision' ) ) {
851 $this->mConds[] = $this->mDb->bitAnd('log_deleted', LogPage::DELETED_ACTION) . ' = 0';
852 } else if( !$wgUser->isAllowed( 'suppressrevision' ) ) {
853 $this->mConds[] = $this->mDb->bitAnd('log_deleted', LogPage::SUPPRESSED_ACTION) .
854 ' != ' . LogPage::SUPPRESSED_ACTION;
855 }
856 }
857
858 public function getQueryInfo() {
859 $tables = array( 'logging', 'user' );
860 $this->mConds[] = 'user_id = log_user';
861 $groupBy = false;
862 # Add log_search table if there are conditions on it
863 if( array_key_exists('ls_field',$this->mConds) ) {
864 $tables[] = 'log_search';
865 $index = array( 'log_search' => 'ls_field_val', 'logging' => 'PRIMARY' );
866 $groupBy = 'ls_log_id';
867 # Don't use the wrong logging index
868 } else if( $this->title || $this->pattern || $this->user ) {
869 $index = array( 'logging' => array('page_time','user_time') );
870 } else if( $this->types ) {
871 $index = array( 'logging' => 'type_time' );
872 } else {
873 $index = array( 'logging' => 'times' );
874 }
875 $options = array( 'USE INDEX' => $index );
876 # Don't show duplicate rows when using log_search
877 if( $groupBy ) $options['GROUP BY'] = $groupBy;
878 $info = array(
879 'tables' => $tables,
880 'fields' => array( 'log_type', 'log_action', 'log_user', 'log_namespace',
881 'log_title', 'log_params', 'log_comment', 'log_id', 'log_deleted',
882 'log_timestamp', 'user_name', 'user_editcount' ),
883 'conds' => $this->mConds,
884 'options' => $options,
885 'join_conds' => array(
886 'user' => array( 'INNER JOIN', 'user_id=log_user' ),
887 'log_search' => array( 'INNER JOIN', 'ls_log_id=log_id' )
888 )
889 );
890 # Add ChangeTags filter query
891 ChangeTags::modifyDisplayQuery( $info['tables'], $info['fields'], $info['conds'],
892 $info['join_conds'], $info['options'], $this->mTagFilter );
893
894 return $info;
895 }
896
897 function getIndexField() {
898 return 'log_timestamp';
899 }
900
901 public function getStartBody() {
902 wfProfileIn( __METHOD__ );
903 # Do a link batch query
904 if( $this->getNumRows() > 0 ) {
905 $lb = new LinkBatch;
906 while( $row = $this->mResult->fetchObject() ) {
907 $lb->add( $row->log_namespace, $row->log_title );
908 $lb->addObj( Title::makeTitleSafe( NS_USER, $row->user_name ) );
909 $lb->addObj( Title::makeTitleSafe( NS_USER_TALK, $row->user_name ) );
910 }
911 $lb->execute();
912 $this->mResult->seek( 0 );
913 }
914 wfProfileOut( __METHOD__ );
915 return '';
916 }
917
918 public function formatRow( $row ) {
919 return $this->mLogEventsList->logLine( $row );
920 }
921
922 public function getType() {
923 return $this->types;
924 }
925
926 public function getUser() {
927 return $this->user;
928 }
929
930 public function getPage() {
931 return $this->title;
932 }
933
934 public function getPattern() {
935 return $this->pattern;
936 }
937
938 public function getYear() {
939 return $this->mYear;
940 }
941
942 public function getMonth() {
943 return $this->mMonth;
944 }
945
946 public function getTagFilter() {
947 return $this->mTagFilter;
948 }
949
950 public function doQuery() {
951 // Workaround MySQL optimizer bug
952 $this->mDb->setBigSelects();
953 parent::doQuery();
954 $this->mDb->setBigSelects( 'default' );
955 }
956 }
957
958 /**
959 * @deprecated
960 * @ingroup SpecialPage
961 */
962 class LogReader {
963 var $pager;
964 /**
965 * @param $request WebRequest: for internal use use a FauxRequest object to pass arbitrary parameters.
966 */
967 function __construct( $request ) {
968 global $wgUser, $wgOut;
969 wfDeprecated(__METHOD__);
970 # Get parameters
971 $type = $request->getVal( 'type' );
972 $user = $request->getText( 'user' );
973 $title = $request->getText( 'page' );
974 $pattern = $request->getBool( 'pattern' );
975 $year = $request->getIntOrNull( 'year' );
976 $month = $request->getIntOrNull( 'month' );
977 $tagFilter = $request->getVal( 'tagfilter' );
978 # Don't let the user get stuck with a certain date
979 $skip = $request->getText( 'offset' ) || $request->getText( 'dir' ) == 'prev';
980 if( $skip ) {
981 $year = '';
982 $month = '';
983 }
984 # Use new list class to output results
985 $loglist = new LogEventsList( $wgUser->getSkin(), $wgOut, 0 );
986 $this->pager = new LogPager( $loglist, $type, $user, $title, $pattern, $year, $month, $tagFilter );
987 }
988
989 /**
990 * Is there at least one row?
991 * @return bool
992 */
993 public function hasRows() {
994 return isset($this->pager) ? ($this->pager->getNumRows() > 0) : false;
995 }
996 }
997
998 /**
999 * @deprecated
1000 * @ingroup SpecialPage
1001 */
1002 class LogViewer {
1003 const NO_ACTION_LINK = 1;
1004
1005 /**
1006 * LogReader object
1007 */
1008 var $reader;
1009
1010 /**
1011 * @param &$reader LogReader: where to get our data from
1012 * @param $flags Integer: Bitwise combination of flags:
1013 * LogEventsList::NO_ACTION_LINK Don't show restore/unblock/block links
1014 */
1015 function __construct( &$reader, $flags = 0 ) {
1016 wfDeprecated(__METHOD__);
1017 $this->reader =& $reader;
1018 $this->reader->pager->mLogEventsList->flags = $flags;
1019 # Aliases for shorter code...
1020 $this->pager =& $this->reader->pager;
1021 $this->list =& $this->reader->pager->mLogEventsList;
1022 }
1023
1024 /**
1025 * Take over the whole output page in $wgOut with the log display.
1026 */
1027 public function show() {
1028 # Set title and add header
1029 $this->list->showHeader( $pager->getType() );
1030 # Show form options
1031 $this->list->showOptions( $this->pager->getType(), $this->pager->getUser(), $this->pager->getPage(),
1032 $this->pager->getPattern(), $this->pager->getYear(), $this->pager->getMonth() );
1033 # Insert list
1034 $logBody = $this->pager->getBody();
1035 if( $logBody ) {
1036 $wgOut->addHTML(
1037 $this->pager->getNavigationBar() .
1038 $this->list->beginLogEventsList() .
1039 $logBody .
1040 $this->list->endLogEventsList() .
1041 $this->pager->getNavigationBar()
1042 );
1043 } else {
1044 $wgOut->addWikiMsg( 'logempty' );
1045 }
1046 }
1047
1048 /**
1049 * Output just the list of entries given by the linked LogReader,
1050 * with extraneous UI elements. Use for displaying log fragments in
1051 * another page (eg at Special:Undelete)
1052 * @param $out OutputPage: where to send output
1053 */
1054 public function showList( &$out ) {
1055 $logBody = $this->pager->getBody();
1056 if( $logBody ) {
1057 $out->addHTML(
1058 $this->list->beginLogEventsList() .
1059 $logBody .
1060 $this->list->endLogEventsList()
1061 );
1062 } else {
1063 $out->addWikiMsg( 'logempty' );
1064 }
1065 }
1066 }