* (bug 16760) Add CSS-class to action links of Special:Log
[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 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 = 'revertmerge protect_change unblocklink change-blocklink revertmove undeletelink revdel-restore rev-delundel hist';
42 foreach( explode( ' ', $messages ) as $msg ) {
43 $this->message[$msg] = wfMsgExt( $msg, array( 'escape') );
44 }
45 }
46 }
47
48 /**
49 * Set page title and show header for this log type
50 * @param $type String
51 */
52 public function showHeader( $type ) {
53 if( LogPage::isLogType( $type ) ) {
54 $this->out->setPageTitle( LogPage::logName( $type ) );
55 $this->out->addHTML( LogPage::logHeader( $type ) );
56 }
57 }
58
59 /**
60 * Show options for the log list
61 * @param $type String
62 * @param $user String
63 * @param $page String
64 * @param $pattern String
65 * @param $year Integer: year
66 * @param $month Integer: month
67 * @param $filter Boolean
68 */
69 public function showOptions( $type = '', $user = '', $page = '', $pattern = '', $year = '',
70 $month = '', $filter = null )
71 {
72 global $wgScript, $wgMiserMode;
73 $action = htmlspecialchars( $wgScript );
74 $title = SpecialPage::getTitleFor( 'Log' );
75 $special = htmlspecialchars( $title->getPrefixedDBkey() );
76
77 $this->out->addHTML( "<form action=\"$action\" method=\"get\"><fieldset>" .
78 Xml::element( 'legend', array(), wfMsg( 'log' ) ) .
79 Xml::hidden( 'title', $special ) . "\n" .
80 $this->getTypeMenu( $type ) . "\n" .
81 $this->getUserInput( $user ) . "\n" .
82 $this->getTitleInput( $page ) . "\n" .
83 ( !$wgMiserMode ? ($this->getTitlePattern( $pattern )."\n") : "" ) .
84 "<p>" . $this->getDateMenu( $year, $month ) . "\n" .
85 ( $filter ? "</p><p>".$this->getFilterLinks( $type, $filter )."\n" : "" ) .
86 Xml::submitButton( wfMsg( 'allpagessubmit' ) ) . "</p>\n" .
87 "</fieldset></form>"
88 );
89 }
90
91 private function getFilterLinks( $logType, $filter ) {
92 global $wgTitle;
93 // show/hide links
94 $messages = array( wfMsgHtml( 'show' ), wfMsgHtml( 'hide' ) );
95 // Option value -> message mapping
96 $links = array();
97 foreach( $filter as $type => $val ) {
98 $hideVal = 1 - intval($val);
99 $link = $this->skin->makeKnownLinkObj( $wgTitle, $messages[$hideVal],
100 wfArrayToCGI( array( "hide_{$type}_log" => $hideVal ), $this->getDefaultQuery() )
101 );
102 $links[$type] = wfMsgHtml( "log-show-hide-{$type}", $link );
103 }
104 // Build links
105 return implode( ' | ', $links );
106 }
107
108 private function getDefaultQuery() {
109 if ( !isset( $this->mDefaultQuery ) ) {
110 $this->mDefaultQuery = $_GET;
111 unset( $this->mDefaultQuery['title'] );
112 unset( $this->mDefaultQuery['dir'] );
113 unset( $this->mDefaultQuery['offset'] );
114 unset( $this->mDefaultQuery['limit'] );
115 unset( $this->mDefaultQuery['order'] );
116 unset( $this->mDefaultQuery['month'] );
117 unset( $this->mDefaultQuery['year'] );
118 }
119 return $this->mDefaultQuery;
120 }
121
122 /**
123 * @param $queryType String
124 * @return String: Formatted HTML
125 */
126 private function getTypeMenu( $queryType ) {
127 global $wgLogRestrictions, $wgUser;
128
129 $html = "<select name='type'>\n";
130
131 $validTypes = LogPage::validTypes();
132 $typesByName = array(); // Temporary array
133
134 // First pass to load the log names
135 foreach( $validTypes as $type ) {
136 $text = LogPage::logName( $type );
137 $typesByName[$text] = $type;
138 }
139
140 // Second pass to sort by name
141 ksort($typesByName);
142
143 // Third pass generates sorted XHTML content
144 foreach( $typesByName as $text => $type ) {
145 $selected = ($type == $queryType);
146 // Restricted types
147 if ( isset($wgLogRestrictions[$type]) ) {
148 if ( $wgUser->isAllowed( $wgLogRestrictions[$type] ) ) {
149 $html .= Xml::option( $text, $type, $selected ) . "\n";
150 }
151 } else {
152 $html .= Xml::option( $text, $type, $selected ) . "\n";
153 }
154 }
155
156 $html .= '</select>';
157 return $html;
158 }
159
160 /**
161 * @param $user String
162 * @return String: Formatted HTML
163 */
164 private function getUserInput( $user ) {
165 return Xml::inputLabel( wfMsg( 'specialloguserlabel' ), 'user', 'user', 15, $user );
166 }
167
168 /**
169 * @param $title String
170 * @return String: Formatted HTML
171 */
172 private function getTitleInput( $title ) {
173 return Xml::inputLabel( wfMsg( 'speciallogtitlelabel' ), 'page', 'page', 20, $title );
174 }
175
176 /**
177 * @param $year Integer
178 * @param $month Integer
179 * @return string Formatted HTML
180 */
181 private function getDateMenu( $year, $month ) {
182 # Offset overrides year/month selection
183 if( $month && $month !== -1 ) {
184 $encMonth = intval( $month );
185 } else {
186 $encMonth = '';
187 }
188 if ( $year ) {
189 $encYear = intval( $year );
190 } else if( $encMonth ) {
191 $thisMonth = intval( gmdate( 'n' ) );
192 $thisYear = intval( gmdate( 'Y' ) );
193 if( intval($encMonth) > $thisMonth ) {
194 $thisYear--;
195 }
196 $encYear = $thisYear;
197 } else {
198 $encYear = '';
199 }
200 return Xml::label( wfMsg( 'year' ), 'year' ) . ' '.
201 Xml::input( 'year', 4, $encYear, array('id' => 'year', 'maxlength' => 4) ) .
202 ' '.
203 Xml::label( wfMsg( 'month' ), 'month' ) . ' '.
204 Xml::monthSelector( $encMonth, -1 );
205 }
206
207 /**
208 * @return boolean Checkbox
209 */
210 private function getTitlePattern( $pattern ) {
211 return '<span style="white-space: nowrap">' .
212 Xml::checkLabel( wfMsg( 'log-title-wildcard' ), 'pattern', 'pattern', $pattern ) .
213 '</span>';
214 }
215
216 public function beginLogEventsList() {
217 return "<ul>\n";
218 }
219
220 public function endLogEventsList() {
221 return "</ul>\n";
222 }
223
224 /**
225 * @param $row Row: a single row from the result set
226 * @return String: Formatted HTML list item
227 */
228 public function logLine( $row ) {
229 global $wgLang, $wgUser, $wgContLang;
230
231 $title = Title::makeTitle( $row->log_namespace, $row->log_title );
232 $time = $wgLang->timeanddate( wfTimestamp(TS_MW, $row->log_timestamp), true );
233 // User links
234 if( self::isDeleted($row,LogPage::DELETED_USER) ) {
235 $userLink = '<span class="history-deleted">' . wfMsgHtml( 'rev-deleted-user' ) . '</span>';
236 } else {
237 $userLink = $this->skin->userLink( $row->log_user, $row->user_name ) .
238 $this->skin->userToolLinks( $row->log_user, $row->user_name, true, 0, $row->user_editcount );
239 }
240 // Comment
241 if( self::isDeleted($row,LogPage::DELETED_COMMENT) ) {
242 $comment = '<span class="history-deleted">' . wfMsgHtml('rev-deleted-comment') . '</span>';
243 } else {
244 $comment = $wgContLang->getDirMark() . $this->skin->commentBlock( $row->log_comment );
245 }
246 // Extract extra parameters
247 $paramArray = LogPage::extractParams( $row->log_params );
248 $revert = $del = '';
249 // Some user can hide log items and have review links
250 if( $wgUser->isAllowed( 'deleterevision' ) ) {
251 $del = $this->getShowHideLinks( $row ) . ' ';
252 }
253 // Add review links and such...
254 if( ($this->flags & self::NO_ACTION_LINK) || ($row->log_deleted & LogPage::DELETED_ACTION) ) {
255 // Action text is suppressed...
256 } else if( self::typeAction($row,'move','move','move') && !empty($paramArray[0]) ) {
257 $destTitle = Title::newFromText( $paramArray[0] );
258 if( $destTitle ) {
259 $revert = '(' . $this->skin->makeKnownLinkObj( SpecialPage::getTitleFor( 'Movepage' ),
260 $this->message['revertmove'],
261 'wpOldTitle=' . urlencode( $destTitle->getPrefixedDBkey() ) .
262 '&wpNewTitle=' . urlencode( $title->getPrefixedDBkey() ) .
263 '&wpReason=' . urlencode( wfMsgForContent( 'revertmove' ) ) .
264 '&wpMovetalk=0' ) . ')';
265 }
266 // Show undelete link
267 } else if( self::typeAction($row,array('delete','suppress'),'delete','delete') ) {
268 $revert = '(' . $this->skin->makeKnownLinkObj( SpecialPage::getTitleFor( 'Undelete' ),
269 $this->message['undeletelink'], 'target='. urlencode( $title->getPrefixedDBkey() ) ) . ')';
270 // Show unblock/change block link
271 } else if( self::typeAction($row,array('block','suppress'),array('block','reblock'),'block') ) {
272 $revert = '(' .
273 $this->skin->link( SpecialPage::getTitleFor( 'Ipblocklist' ),
274 $this->message['unblocklink'],
275 array(),
276 array( 'action' => 'unblock', 'ip' => $row->log_title ),
277 'known' )
278 . ' ' . wfMsg( 'pipe-separator' ) . ' ' .
279 $this->skin->link( SpecialPage::getTitleFor( 'Blockip', $row->log_title ),
280 $this->message['change-blocklink'],
281 array(), array(), 'known' ) .
282 ')';
283 // Show change protection link
284 } else if( self::typeAction($row,'protect',array('modify','protect','unprotect')) ) {
285 $revert .= ' (' . $this->skin->makeKnownLinkObj( $title, $this->message['hist'],
286 'action=history&offset=' . urlencode($row->log_timestamp) ) . ')';
287 if( $wgUser->isAllowed('protect') && $row->log_action != 'unprotect' ) {
288 $revert .= ' (' . $this->skin->makeKnownLinkObj( $title, $this->message['protect_change'],
289 'action=unprotect' ) . ')';
290 }
291 // Show unmerge link
292 } else if( self::typeAction($row,'merge','merge','mergehistory') ) {
293 $merge = SpecialPage::getTitleFor( 'Mergehistory' );
294 $revert = '(' . $this->skin->makeKnownLinkObj( $merge, $this->message['revertmerge'],
295 wfArrayToCGI( array('target' => $paramArray[0], 'dest' => $title->getPrefixedDBkey(),
296 'mergepoint' => $paramArray[1] ) ) ) . ')';
297 // If an edit was hidden from a page give a review link to the history
298 } else if( self::typeAction($row,array('delete','suppress'),'revision','deleterevision') ) {
299 if( count($paramArray) == 2 ) {
300 $revdel = SpecialPage::getTitleFor( 'Revisiondelete' );
301 // Different revision types use different URL params...
302 $key = $paramArray[0];
303 // Link to each hidden object ID, $paramArray[1] is the url param
304 $Ids = explode( ',', $paramArray[1] );
305 $revParams = '';
306 foreach( $Ids as $n => $id ) {
307 $revParams .= '&' . urlencode($key) . '[]=' . urlencode($id);
308 }
309 $revert = '(' . $this->skin->makeKnownLinkObj( $revdel, $this->message['revdel-restore'],
310 'target=' . $title->getPrefixedUrl() . $revParams ) . ')';
311 }
312 // Hidden log items, give review link
313 } else if( self::typeAction($row,array('delete','suppress'),'event','deleterevision') ) {
314 if( count($paramArray) == 1 ) {
315 $revdel = SpecialPage::getTitleFor( 'Revisiondelete' );
316 $Ids = explode( ',', $paramArray[0] );
317 // Link to each hidden object ID, $paramArray[1] is the url param
318 $logParams = '';
319 foreach( $Ids as $n => $id ) {
320 $logParams .= '&logid[]=' . intval($id);
321 }
322 $revert = '(' . $this->skin->makeKnownLinkObj( $revdel, $this->message['revdel-restore'],
323 'target=' . $title->getPrefixedUrl() . $logParams ) . ')';
324 }
325 // Self-created users
326 } else if( self::typeAction($row,'newusers','create2') ) {
327 if( isset( $paramArray[0] ) ) {
328 $revert = $this->skin->userToolLinks( $paramArray[0], $title->getDBkey(), true );
329 } else {
330 # Fall back to a blue contributions link
331 $revert = $this->skin->userToolLinks( 1, $title->getDBkey() );
332 }
333 if( $time < '20080129000000' ) {
334 # Suppress $comment from old entries (before 2008-01-29), not needed and can contain incorrect links
335 $comment = '';
336 }
337 // Do nothing. The implementation is handled by the hook modifiying the passed-by-ref parameters.
338 } else {
339 wfRunHooks( 'LogLine', array( $row->log_type, $row->log_action, $title, $paramArray,
340 &$comment, &$revert, $row->log_timestamp ) );
341 }
342 // Event description
343 if( self::isDeleted($row,LogPage::DELETED_ACTION) ) {
344 $action = '<span class="history-deleted">' . wfMsgHtml('rev-deleted-event') . '</span>';
345 } else {
346 $action = LogPage::actionText( $row->log_type, $row->log_action, $title, $this->skin, $paramArray, true );
347 }
348
349 if( $revert != '' ) {
350 $revert = '<span class="mw-logevent-actionlink">' . $revert . '</span>';
351 }
352
353 return "<li>$del$time $userLink $action $comment $revert</li>\n";
354 }
355
356 /**
357 * @param $row Row
358 * @return string
359 */
360 private function getShowHideLinks( $row ) {
361 $revdel = SpecialPage::getTitleFor( 'Revisiondelete' );
362 // If event was hidden from sysops
363 if( !self::userCan( $row, LogPage::DELETED_RESTRICTED ) ) {
364 $del = $this->message['rev-delundel'];
365 } else if( $row->log_type == 'suppress' ) {
366 // No one should be hiding from the oversight log
367 $del = $this->message['rev-delundel'];
368 } else {
369 $target = SpecialPage::getTitleFor( 'Log', $row->log_type );
370 $del = $this->skin->makeKnownLinkObj( $revdel, $this->message['rev-delundel'],
371 'target=' . $target->getPrefixedUrl() . '&logid='.$row->log_id );
372 // Bolden oversighted content
373 if( self::isDeleted( $row, LogPage::DELETED_RESTRICTED ) )
374 $del = "<strong>$del</strong>";
375 }
376 return "<tt>(<small>$del</small>)</tt>";
377 }
378
379 /**
380 * @param $row Row
381 * @param $type Mixed: string/array
382 * @param $action Mixed: string/array
383 * @param $right string
384 * @return bool
385 */
386 public static function typeAction( $row, $type, $action, $right='' ) {
387 $match = is_array($type) ? in_array($row->log_type,$type) : $row->log_type == $type;
388 if( $match ) {
389 $match = is_array($action) ?
390 in_array($row->log_action,$action) : $row->log_action == $action;
391 if( $match && $right ) {
392 global $wgUser;
393 $match = $wgUser->isAllowed( $right );
394 }
395 }
396 return $match;
397 }
398
399 /**
400 * Determine if the current user is allowed to view a particular
401 * field of this log row, if it's marked as deleted.
402 * @param $row Row
403 * @param $field Integer
404 * @return Boolean
405 */
406 public static function userCan( $row, $field ) {
407 if( ( $row->log_deleted & $field ) == $field ) {
408 global $wgUser;
409 $permission = ( $row->log_deleted & LogPage::DELETED_RESTRICTED ) == LogPage::DELETED_RESTRICTED
410 ? 'suppressrevision'
411 : 'deleterevision';
412 wfDebug( "Checking for $permission due to $field match on $row->log_deleted\n" );
413 return $wgUser->isAllowed( $permission );
414 } else {
415 return true;
416 }
417 }
418
419 /**
420 * @param $row Row
421 * @param $field Integer: one of DELETED_* bitfield constants
422 * @return Boolean
423 */
424 public static function isDeleted( $row, $field ) {
425 return ($row->log_deleted & $field) == $field;
426 }
427
428 /**
429 * Quick function to show a short log extract
430 * @param $out OutputPage
431 * @param $type String
432 * @param $page String
433 * @param $user String
434 * @param $lim Integer
435 * @param $conds Array
436 */
437 public static function showLogExtract( $out, $type='', $page='', $user='', $lim=0, $conds=array() ) {
438 global $wgUser;
439 # Insert list of top 50 or so items
440 $loglist = new LogEventsList( $wgUser->getSkin(), $out, 0 );
441 $pager = new LogPager( $loglist, $type, $user, $page, '', $conds );
442 if( $lim > 0 ) $pager->mLimit = $lim;
443 $logBody = $pager->getBody();
444 if( $logBody ) {
445 $out->addHTML(
446 $loglist->beginLogEventsList() .
447 $logBody .
448 $loglist->endLogEventsList()
449 );
450 } else {
451 $out->addWikiMsg( 'logempty' );
452 }
453 return $pager->getNumRows();
454 }
455
456 /**
457 * SQL clause to skip forbidden log types for this user
458 * @param $db Database
459 * @return mixed (string or false)
460 */
461 public static function getExcludeClause( $db ) {
462 global $wgLogRestrictions, $wgUser;
463 // Reset the array, clears extra "where" clauses when $par is used
464 $hiddenLogs = array();
465 // Don't show private logs to unprivileged users
466 foreach( $wgLogRestrictions as $logType => $right ) {
467 if( !$wgUser->isAllowed($right) ) {
468 $safeType = $db->strencode( $logType );
469 $hiddenLogs[] = $safeType;
470 }
471 }
472 if( count($hiddenLogs) == 1 ) {
473 return 'log_type != ' . $db->addQuotes( $hiddenLogs[0] );
474 } elseif( $hiddenLogs ) {
475 return 'log_type NOT IN (' . $db->makeList($hiddenLogs) . ')';
476 }
477 return false;
478 }
479 }
480
481 /**
482 * @ingroup Pager
483 */
484 class LogPager extends ReverseChronologicalPager {
485 private $type = '', $user = '', $title = '', $pattern = '';
486 public $mLogEventsList;
487
488 /**
489 * constructor
490 * @param $list LogEventsList
491 * @param $type String
492 * @param $user String
493 * @param $title String
494 * @param $pattern String
495 * @param $conds Array
496 * @param $year Integer
497 * @param $month Integer
498 */
499 function __construct( $list, $type = '', $user = '', $title = '', $pattern = '',
500 $conds = array(), $year = false, $month = false )
501 {
502 parent::__construct();
503 $this->mConds = $conds;
504
505 $this->mLogEventsList = $list;
506
507 $this->limitType( $type );
508 $this->limitUser( $user );
509 $this->limitTitle( $title, $pattern );
510 $this->getDateCond( $year, $month );
511 }
512
513 public function getDefaultQuery() {
514 $query = parent::getDefaultQuery();
515 $query['type'] = $this->type;
516 $query['month'] = $this->mMonth;
517 $query['year'] = $this->mYear;
518 return $query;
519 }
520
521 public function getFilterParams() {
522 global $wgFilterLogTypes, $wgUser, $wgRequest;
523 $filters = array();
524 if( $this->type ) {
525 return $filters;
526 }
527 foreach( $wgFilterLogTypes as $type => $default ) {
528 // Avoid silly filtering
529 if( $type !== 'patrol' || $wgUser->useNPPatrol() ) {
530 $hide = $wgRequest->getInt( "hide_{$type}_log", $default );
531 $filters[$type] = $hide;
532 if( $hide )
533 $this->mConds[] = 'log_type != ' . $this->mDb->addQuotes( $type );
534 }
535 }
536 return $filters;
537 }
538
539 /**
540 * Set the log reader to return only entries of the given type.
541 * Type restrictions enforced here
542 * @param $type String: A log type ('upload', 'delete', etc)
543 */
544 private function limitType( $type ) {
545 global $wgLogRestrictions, $wgUser;
546 // Don't even show header for private logs; don't recognize it...
547 if( isset($wgLogRestrictions[$type]) && !$wgUser->isAllowed($wgLogRestrictions[$type]) ) {
548 $type = '';
549 }
550 // Don't show private logs to unpriviledged users
551 $hideLogs = LogEventsList::getExcludeClause( $this->mDb );
552 if( $hideLogs !== false ) {
553 $this->mConds[] = $hideLogs;
554 }
555 if( !$type ) {
556 return false;
557 }
558 $this->type = $type;
559 $this->mConds['log_type'] = $type;
560 }
561
562 /**
563 * Set the log reader to return only entries by the given user.
564 * @param $name String: (In)valid user name
565 */
566 private function limitUser( $name ) {
567 if( $name == '' ) {
568 return false;
569 }
570 $usertitle = Title::makeTitleSafe( NS_USER, $name );
571 if( is_null($usertitle) ) {
572 return false;
573 }
574 /* Fetch userid at first, if known, provides awesome query plan afterwards */
575 $userid = User::idFromName( $name );
576 if( !$userid ) {
577 /* It should be nicer to abort query at all,
578 but for now it won't pass anywhere behind the optimizer */
579 $this->mConds[] = "NULL";
580 } else {
581 $this->mConds['log_user'] = $userid;
582 $this->user = $usertitle->getText();
583 }
584 }
585
586 /**
587 * Set the log reader to return only entries affecting the given page.
588 * (For the block and rights logs, this is a user page.)
589 * @param $page String: Title name as text
590 * @param $pattern String
591 */
592 private function limitTitle( $page, $pattern ) {
593 global $wgMiserMode;
594
595 $title = Title::newFromText( $page );
596 if( strlen($page) == 0 || !$title instanceof Title )
597 return false;
598
599 $this->title = $title->getPrefixedText();
600 $ns = $title->getNamespace();
601 # Using the (log_namespace, log_title, log_timestamp) index with a
602 # range scan (LIKE) on the first two parts, instead of simple equality,
603 # makes it unusable for sorting. Sorted retrieval using another index
604 # would be possible, but then we might have to scan arbitrarily many
605 # nodes of that index. Therefore, we need to avoid this if $wgMiserMode
606 # is on.
607 #
608 # This is not a problem with simple title matches, because then we can
609 # use the page_time index. That should have no more than a few hundred
610 # log entries for even the busiest pages, so it can be safely scanned
611 # in full to satisfy an impossible condition on user or similar.
612 if( $pattern && !$wgMiserMode ) {
613 # use escapeLike to avoid expensive search patterns like 't%st%'
614 $safetitle = $this->mDb->escapeLike( $title->getDBkey() );
615 $this->mConds['log_namespace'] = $ns;
616 $this->mConds[] = "log_title LIKE '$safetitle%'";
617 $this->pattern = $pattern;
618 } else {
619 $this->mConds['log_namespace'] = $ns;
620 $this->mConds['log_title'] = $title->getDBkey();
621 }
622 }
623
624 public function getQueryInfo() {
625 $this->mConds[] = 'user_id = log_user';
626 # Don't use the wrong logging index
627 if( $this->title || $this->pattern || $this->user ) {
628 $index = array( 'USE INDEX' => array( 'logging' => array('page_time','user_time') ) );
629 } else if( $this->type ) {
630 $index = array( 'USE INDEX' => array( 'logging' => 'type_time' ) );
631 } else {
632 $index = array( 'USE INDEX' => array( 'logging' => 'times' ) );
633 }
634 return array(
635 'tables' => array( 'logging', 'user' ),
636 'fields' => array( 'log_type', 'log_action', 'log_user', 'log_namespace', 'log_title', 'log_params',
637 'log_comment', 'log_id', 'log_deleted', 'log_timestamp', 'user_name', 'user_editcount' ),
638 'conds' => $this->mConds,
639 'options' => $index
640 );
641 }
642
643 function getIndexField() {
644 return 'log_timestamp';
645 }
646
647 public function getStartBody() {
648 wfProfileIn( __METHOD__ );
649 # Do a link batch query
650 if( $this->getNumRows() > 0 ) {
651 $lb = new LinkBatch;
652 while( $row = $this->mResult->fetchObject() ) {
653 $lb->add( $row->log_namespace, $row->log_title );
654 $lb->addObj( Title::makeTitleSafe( NS_USER, $row->user_name ) );
655 $lb->addObj( Title::makeTitleSafe( NS_USER_TALK, $row->user_name ) );
656 }
657 $lb->execute();
658 $this->mResult->seek( 0 );
659 }
660 wfProfileOut( __METHOD__ );
661 return '';
662 }
663
664 public function formatRow( $row ) {
665 return $this->mLogEventsList->logLine( $row );
666 }
667
668 public function getType() {
669 return $this->type;
670 }
671
672 public function getUser() {
673 return $this->user;
674 }
675
676 public function getPage() {
677 return $this->title;
678 }
679
680 public function getPattern() {
681 return $this->pattern;
682 }
683
684 public function getYear() {
685 return $this->mYear;
686 }
687
688 public function getMonth() {
689 return $this->mMonth;
690 }
691 }
692
693 /**
694 * @deprecated
695 * @ingroup SpecialPage
696 */
697 class LogReader {
698 var $pager;
699 /**
700 * @param $request WebRequest: for internal use use a FauxRequest object to pass arbitrary parameters.
701 */
702 function __construct( $request ) {
703 global $wgUser, $wgOut;
704 # Get parameters
705 $type = $request->getVal( 'type' );
706 $user = $request->getText( 'user' );
707 $title = $request->getText( 'page' );
708 $pattern = $request->getBool( 'pattern' );
709 $year = $request->getIntOrNull( 'year' );
710 $month = $request->getIntOrNull( 'month' );
711 # Don't let the user get stuck with a certain date
712 $skip = $request->getText( 'offset' ) || $request->getText( 'dir' ) == 'prev';
713 if( $skip ) {
714 $year = '';
715 $month = '';
716 }
717 # Use new list class to output results
718 $loglist = new LogEventsList( $wgUser->getSkin(), $wgOut, 0 );
719 $this->pager = new LogPager( $loglist, $type, $user, $title, $pattern, $year, $month );
720 }
721
722 /**
723 * Is there at least one row?
724 * @return bool
725 */
726 public function hasRows() {
727 return isset($this->pager) ? ($this->pager->getNumRows() > 0) : false;
728 }
729 }
730
731 /**
732 * @deprecated
733 * @ingroup SpecialPage
734 */
735 class LogViewer {
736 const NO_ACTION_LINK = 1;
737
738 /**
739 * LogReader object
740 */
741 var $reader;
742
743 /**
744 * @param &$reader LogReader: where to get our data from
745 * @param $flags Integer: Bitwise combination of flags:
746 * LogEventsList::NO_ACTION_LINK Don't show restore/unblock/block links
747 */
748 function __construct( &$reader, $flags = 0 ) {
749 global $wgUser;
750 $this->reader =& $reader;
751 $this->reader->pager->mLogEventsList->flags = $flags;
752 # Aliases for shorter code...
753 $this->pager =& $this->reader->pager;
754 $this->list =& $this->reader->pager->mLogEventsList;
755 }
756
757 /**
758 * Take over the whole output page in $wgOut with the log display.
759 */
760 public function show() {
761 # Set title and add header
762 $this->list->showHeader( $pager->getType() );
763 # Show form options
764 $this->list->showOptions( $this->pager->getType(), $this->pager->getUser(), $this->pager->getPage(),
765 $this->pager->getPattern(), $this->pager->getYear(), $this->pager->getMonth() );
766 # Insert list
767 $logBody = $this->pager->getBody();
768 if( $logBody ) {
769 $wgOut->addHTML(
770 $this->pager->getNavigationBar() .
771 $this->list->beginLogEventsList() .
772 $logBody .
773 $this->list->endLogEventsList() .
774 $this->pager->getNavigationBar()
775 );
776 } else {
777 $wgOut->addWikiMsg( 'logempty' );
778 }
779 }
780
781 /**
782 * Output just the list of entries given by the linked LogReader,
783 * with extraneous UI elements. Use for displaying log fragments in
784 * another page (eg at Special:Undelete)
785 * @param $out OutputPage: where to send output
786 */
787 public function showList( &$out ) {
788 $logBody = $this->pager->getBody();
789 if( $logBody ) {
790 $out->addHTML(
791 $this->list->beginLogEventsList() .
792 $logBody .
793 $this->list->endLogEventsList()
794 );
795 } else {
796 $out->addWikiMsg( 'logempty' );
797 }
798 }
799 }