Follow-up on r56284: LogEventsList::showLogExtract gets associative array for additio...
[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( 'lim' => 0, 'conds' => array(), 'showIfEmpty' => true, 'msgKey' => array('') ) ) {
587
588 global $wgUser, $wgOut;
589 # Convert $param array to individual variables
590 $lim = $param['lim'];
591 $conds = $param['conds'];
592 $showIfEmpty = $param['showIfEmpty'];
593 $msgKey = $param['msgKey'];
594 if ( !(is_array($msgKey)) )
595 $msgKey = array( $msgKey );
596 # Insert list of top 50 (or top $lim) items
597 $loglist = new LogEventsList( $wgUser->getSkin(), $wgOut, 0 );
598 $pager = new LogPager( $loglist, $types, $user, $page, '', $conds );
599 if( $lim > 0 ) $pager->mLimit = $lim;
600 $logBody = $pager->getBody();
601 $s = '';
602 if( $logBody ) {
603 if ( $msgKey[0] ) {
604 $s = '<div class="mw-warning-with-logexcerpt">';
605
606 if ( count( $msgKey ) == 1 ) {
607 $s .= wfMsgExt( $msgKey[0], array('parse') );
608 } else { // Process additional arguments
609 $args = $msgKey;
610 array_shift( $args );
611 $s .= wfMsgExt( $msgKey[0], array('parse'), $args );
612 }
613 }
614 $s .= $loglist->beginLogEventsList() .
615 $logBody .
616 $loglist->endLogEventsList();
617 } else {
618 if ( $showIfEmpty )
619 $s = wfMsgExt( 'logempty', array('parse') );
620 }
621 if( $pager->getNumRows() > $pager->mLimit ) { # Show "Full log" link
622 $urlParam = array();
623 if ( $page != '')
624 $urlParam['page'] = $page;
625 if ( $user != '')
626 $urlParam['user'] = $user;
627 if ( !is_array( $types ) ) # Make it an array, if it isn't
628 $types = array( $types );
629 # If there is exactly one log type, we can link to Special:Log?type=foo
630 if ( count( $types ) == 1 )
631 $urlParam['type'] = $types[0];
632 $s .= $wgUser->getSkin()->link(
633 SpecialPage::getTitleFor( 'Log' ),
634 wfMsgHtml( 'log-fulllog' ),
635 array(),
636 $urlParam
637 );
638
639 }
640 if ( $logBody && $msgKey[0] )
641 $s .= '</div>';
642
643 if( $out instanceof OutputPage ){
644 $out->addHTML( $s );
645 } else {
646 $out = $s;
647 }
648 return $pager->getNumRows();
649 }
650
651 /**
652 * SQL clause to skip forbidden log types for this user
653 * @param $db Database
654 * @param $audience string, public/user
655 * @return mixed (string or false)
656 */
657 public static function getExcludeClause( $db, $audience = 'public' ) {
658 global $wgLogRestrictions, $wgUser;
659 // Reset the array, clears extra "where" clauses when $par is used
660 $hiddenLogs = array();
661 // Don't show private logs to unprivileged users
662 foreach( $wgLogRestrictions as $logType => $right ) {
663 if( $audience == 'public' || !$wgUser->isAllowed($right) ) {
664 $safeType = $db->strencode( $logType );
665 $hiddenLogs[] = $safeType;
666 }
667 }
668 if( count($hiddenLogs) == 1 ) {
669 return 'log_type != ' . $db->addQuotes( $hiddenLogs[0] );
670 } elseif( $hiddenLogs ) {
671 return 'log_type NOT IN (' . $db->makeList($hiddenLogs) . ')';
672 }
673 return false;
674 }
675 }
676
677 /**
678 * @ingroup Pager
679 */
680 class LogPager extends ReverseChronologicalPager {
681 private $types = array(), $user = '', $title = '', $pattern = '';
682 private $typeCGI = '';
683 public $mLogEventsList;
684
685 /**
686 * constructor
687 * @param $list LogEventsList
688 * @param $types String or Array log types to show
689 * @param $user String The user who made the log entries
690 * @param $title String The page title the log entries are for
691 * @param $pattern String Do a prefix search rather than an exact title match
692 * @param $conds Array Extra conditions for the query
693 * @param $year Integer The year to start from
694 * @param $month Integer The month to start from
695 */
696 public function __construct( $list, $types = array(), $user = '', $title = '', $pattern = '',
697 $conds = array(), $year = false, $month = false, $tagFilter = '' )
698 {
699 parent::__construct();
700 $this->mConds = $conds;
701
702 $this->mLogEventsList = $list;
703
704 $this->limitType( $types ); // also excludes hidden types
705 $this->limitUser( $user );
706 $this->limitTitle( $title, $pattern );
707 $this->getDateCond( $year, $month );
708 $this->mTagFilter = $tagFilter;
709 }
710
711 public function getDefaultQuery() {
712 $query = parent::getDefaultQuery();
713 $query['type'] = $this->typeCGI; // arrays won't work here
714 $query['user'] = $this->user;
715 $query['month'] = $this->mMonth;
716 $query['year'] = $this->mYear;
717 return $query;
718 }
719
720 // Call ONLY after calling $this->limitType() already!
721 public function getFilterParams() {
722 global $wgFilterLogTypes, $wgUser, $wgRequest;
723 $filters = array();
724 if( count($this->types) ) {
725 return $filters;
726 }
727 foreach( $wgFilterLogTypes as $type => $default ) {
728 // Avoid silly filtering
729 if( $type !== 'patrol' || $wgUser->useNPPatrol() ) {
730 $hide = $wgRequest->getInt( "hide_{$type}_log", $default );
731 $filters[$type] = $hide;
732 if( $hide )
733 $this->mConds[] = 'log_type != ' . $this->mDb->addQuotes( $type );
734 }
735 }
736 return $filters;
737 }
738
739 /**
740 * Set the log reader to return only entries of the given type.
741 * Type restrictions enforced here
742 * @param $types String or array: Log types ('upload', 'delete', etc);
743 * empty string means no restriction
744 */
745 private function limitType( $types ) {
746 global $wgLogRestrictions, $wgUser;
747 // If $types is not an array, make it an array
748 $types = ($types === '') ? array() : (array)$types;
749 // Don't even show header for private logs; don't recognize it...
750 foreach ( $types as $type ) {
751 if( isset( $wgLogRestrictions[$type] ) && !$wgUser->isAllowed($wgLogRestrictions[$type]) ) {
752 $types = array_diff( $types, array( $type ) );
753 }
754 }
755 // Don't show private logs to unprivileged users.
756 // Also, only show them upon specific request to avoid suprises.
757 $audience = $types ? 'user' : 'public';
758 $hideLogs = LogEventsList::getExcludeClause( $this->mDb, $audience );
759 if( $hideLogs !== false ) {
760 $this->mConds[] = $hideLogs;
761 }
762 if( count($types) ) {
763 $this->types = $types;
764 $this->mConds['log_type'] = $types;
765 // Set typeCGI; used in url param for paging
766 if( count($types) == 1 ) $this->typeCGI = $types[0];
767 }
768 }
769
770 /**
771 * Set the log reader to return only entries by the given user.
772 * @param $name String: (In)valid user name
773 */
774 private function limitUser( $name ) {
775 if( $name == '' ) {
776 return false;
777 }
778 $usertitle = Title::makeTitleSafe( NS_USER, $name );
779 if( is_null($usertitle) ) {
780 return false;
781 }
782 /* Fetch userid at first, if known, provides awesome query plan afterwards */
783 $userid = User::idFromName( $name );
784 if( !$userid ) {
785 /* It should be nicer to abort query at all,
786 but for now it won't pass anywhere behind the optimizer */
787 $this->mConds[] = "NULL";
788 } else {
789 global $wgUser;
790 $this->mConds['log_user'] = $userid;
791 // Paranoia: avoid brute force searches (bug 17342)
792 if( !$wgUser->isAllowed( 'deleterevision' ) ) {
793 $this->mConds[] = $this->mDb->bitAnd('log_deleted', LogPage::DELETED_USER) . ' = 0';
794 } else if( !$wgUser->isAllowed( 'suppressrevision' ) ) {
795 $this->mConds[] = $this->mDb->bitAnd('log_deleted', LogPage::SUPPRESSED_USER) .
796 ' != ' . LogPage::SUPPRESSED_USER;
797 }
798 $this->user = $usertitle->getText();
799 }
800 }
801
802 /**
803 * Set the log reader to return only entries affecting the given page.
804 * (For the block and rights logs, this is a user page.)
805 * @param $page String: Title name as text
806 * @param $pattern String
807 */
808 private function limitTitle( $page, $pattern ) {
809 global $wgMiserMode, $wgUser;
810
811 $title = Title::newFromText( $page );
812 if( strlen($page) == 0 || !$title instanceof Title )
813 return false;
814
815 $this->title = $title->getPrefixedText();
816 $ns = $title->getNamespace();
817 # Using the (log_namespace, log_title, log_timestamp) index with a
818 # range scan (LIKE) on the first two parts, instead of simple equality,
819 # makes it unusable for sorting. Sorted retrieval using another index
820 # would be possible, but then we might have to scan arbitrarily many
821 # nodes of that index. Therefore, we need to avoid this if $wgMiserMode
822 # is on.
823 #
824 # This is not a problem with simple title matches, because then we can
825 # use the page_time index. That should have no more than a few hundred
826 # log entries for even the busiest pages, so it can be safely scanned
827 # in full to satisfy an impossible condition on user or similar.
828 if( $pattern && !$wgMiserMode ) {
829 # use escapeLike to avoid expensive search patterns like 't%st%'
830 $safetitle = $this->mDb->escapeLike( $title->getDBkey() );
831 $this->mConds['log_namespace'] = $ns;
832 $this->mConds[] = "log_title LIKE '$safetitle%'";
833 $this->pattern = $pattern;
834 } else {
835 $this->mConds['log_namespace'] = $ns;
836 $this->mConds['log_title'] = $title->getDBkey();
837 }
838 // Paranoia: avoid brute force searches (bug 17342)
839 if( !$wgUser->isAllowed( 'deleterevision' ) ) {
840 $this->mConds[] = $this->mDb->bitAnd('log_deleted', LogPage::DELETED_ACTION) . ' = 0';
841 } else if( !$wgUser->isAllowed( 'suppressrevision' ) ) {
842 $this->mConds[] = $this->mDb->bitAnd('log_deleted', LogPage::SUPPRESSED_ACTION) .
843 ' != ' . LogPage::SUPPRESSED_ACTION;
844 }
845 }
846
847 public function getQueryInfo() {
848 $tables = array( 'logging', 'user' );
849 $this->mConds[] = 'user_id = log_user';
850 $groupBy = false;
851 # Add log_search table if there are conditions on it
852 if( array_key_exists('ls_field',$this->mConds) ) {
853 $tables[] = 'log_search';
854 $index = array( 'log_search' => 'ls_field_val', 'logging' => 'PRIMARY' );
855 $groupBy = 'ls_log_id';
856 # Don't use the wrong logging index
857 } else if( $this->title || $this->pattern || $this->user ) {
858 $index = array( 'logging' => array('page_time','user_time') );
859 } else if( $this->types ) {
860 $index = array( 'logging' => 'type_time' );
861 } else {
862 $index = array( 'logging' => 'times' );
863 }
864 $options = array( 'USE INDEX' => $index );
865 # Don't show duplicate rows when using log_search
866 if( $groupBy ) $options['GROUP BY'] = $groupBy;
867 $info = array(
868 'tables' => $tables,
869 'fields' => array( 'log_type', 'log_action', 'log_user', 'log_namespace',
870 'log_title', 'log_params', 'log_comment', 'log_id', 'log_deleted',
871 'log_timestamp', 'user_name', 'user_editcount' ),
872 'conds' => $this->mConds,
873 'options' => $options,
874 'join_conds' => array(
875 'user' => array( 'INNER JOIN', 'user_id=log_user' ),
876 'log_search' => array( 'INNER JOIN', 'ls_log_id=log_id' )
877 )
878 );
879 # Add ChangeTags filter query
880 ChangeTags::modifyDisplayQuery( $info['tables'], $info['fields'], $info['conds'],
881 $info['join_conds'], $info['options'], $this->mTagFilter );
882
883 return $info;
884 }
885
886 function getIndexField() {
887 return 'log_timestamp';
888 }
889
890 public function getStartBody() {
891 wfProfileIn( __METHOD__ );
892 # Do a link batch query
893 if( $this->getNumRows() > 0 ) {
894 $lb = new LinkBatch;
895 while( $row = $this->mResult->fetchObject() ) {
896 $lb->add( $row->log_namespace, $row->log_title );
897 $lb->addObj( Title::makeTitleSafe( NS_USER, $row->user_name ) );
898 $lb->addObj( Title::makeTitleSafe( NS_USER_TALK, $row->user_name ) );
899 }
900 $lb->execute();
901 $this->mResult->seek( 0 );
902 }
903 wfProfileOut( __METHOD__ );
904 return '';
905 }
906
907 public function formatRow( $row ) {
908 return $this->mLogEventsList->logLine( $row );
909 }
910
911 public function getType() {
912 return $this->types;
913 }
914
915 public function getUser() {
916 return $this->user;
917 }
918
919 public function getPage() {
920 return $this->title;
921 }
922
923 public function getPattern() {
924 return $this->pattern;
925 }
926
927 public function getYear() {
928 return $this->mYear;
929 }
930
931 public function getMonth() {
932 return $this->mMonth;
933 }
934
935 public function getTagFilter() {
936 return $this->mTagFilter;
937 }
938
939 public function doQuery() {
940 // Workaround MySQL optimizer bug
941 $this->mDb->setBigSelects();
942 parent::doQuery();
943 $this->mDb->setBigSelects( 'default' );
944 }
945 }
946
947 /**
948 * @deprecated
949 * @ingroup SpecialPage
950 */
951 class LogReader {
952 var $pager;
953 /**
954 * @param $request WebRequest: for internal use use a FauxRequest object to pass arbitrary parameters.
955 */
956 function __construct( $request ) {
957 global $wgUser, $wgOut;
958 wfDeprecated(__METHOD__);
959 # Get parameters
960 $type = $request->getVal( 'type' );
961 $user = $request->getText( 'user' );
962 $title = $request->getText( 'page' );
963 $pattern = $request->getBool( 'pattern' );
964 $year = $request->getIntOrNull( 'year' );
965 $month = $request->getIntOrNull( 'month' );
966 $tagFilter = $request->getVal( 'tagfilter' );
967 # Don't let the user get stuck with a certain date
968 $skip = $request->getText( 'offset' ) || $request->getText( 'dir' ) == 'prev';
969 if( $skip ) {
970 $year = '';
971 $month = '';
972 }
973 # Use new list class to output results
974 $loglist = new LogEventsList( $wgUser->getSkin(), $wgOut, 0 );
975 $this->pager = new LogPager( $loglist, $type, $user, $title, $pattern, $year, $month, $tagFilter );
976 }
977
978 /**
979 * Is there at least one row?
980 * @return bool
981 */
982 public function hasRows() {
983 return isset($this->pager) ? ($this->pager->getNumRows() > 0) : false;
984 }
985 }
986
987 /**
988 * @deprecated
989 * @ingroup SpecialPage
990 */
991 class LogViewer {
992 const NO_ACTION_LINK = 1;
993
994 /**
995 * LogReader object
996 */
997 var $reader;
998
999 /**
1000 * @param &$reader LogReader: where to get our data from
1001 * @param $flags Integer: Bitwise combination of flags:
1002 * LogEventsList::NO_ACTION_LINK Don't show restore/unblock/block links
1003 */
1004 function __construct( &$reader, $flags = 0 ) {
1005 wfDeprecated(__METHOD__);
1006 $this->reader =& $reader;
1007 $this->reader->pager->mLogEventsList->flags = $flags;
1008 # Aliases for shorter code...
1009 $this->pager =& $this->reader->pager;
1010 $this->list =& $this->reader->pager->mLogEventsList;
1011 }
1012
1013 /**
1014 * Take over the whole output page in $wgOut with the log display.
1015 */
1016 public function show() {
1017 # Set title and add header
1018 $this->list->showHeader( $pager->getType() );
1019 # Show form options
1020 $this->list->showOptions( $this->pager->getType(), $this->pager->getUser(), $this->pager->getPage(),
1021 $this->pager->getPattern(), $this->pager->getYear(), $this->pager->getMonth() );
1022 # Insert list
1023 $logBody = $this->pager->getBody();
1024 if( $logBody ) {
1025 $wgOut->addHTML(
1026 $this->pager->getNavigationBar() .
1027 $this->list->beginLogEventsList() .
1028 $logBody .
1029 $this->list->endLogEventsList() .
1030 $this->pager->getNavigationBar()
1031 );
1032 } else {
1033 $wgOut->addWikiMsg( 'logempty' );
1034 }
1035 }
1036
1037 /**
1038 * Output just the list of entries given by the linked LogReader,
1039 * with extraneous UI elements. Use for displaying log fragments in
1040 * another page (eg at Special:Undelete)
1041 * @param $out OutputPage: where to send output
1042 */
1043 public function showList( &$out ) {
1044 $logBody = $this->pager->getBody();
1045 if( $logBody ) {
1046 $out->addHTML(
1047 $this->list->beginLogEventsList() .
1048 $logBody .
1049 $this->list->endLogEventsList()
1050 );
1051 } else {
1052 $out->addWikiMsg( 'logempty' );
1053 }
1054 }
1055 }