Sample files for noobs like me.
[mediawiki.git] / includes / SpecialLog.php
blob7a7b0462a8a7195ec4437f2473df07b3be00a5bf
1 <?php
2 # Copyright (C) 2004 Brion Vibber <brion@pobox.com>
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.
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 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 # http://www.gnu.org/copyleft/gpl.html
20 /**
22 * @package MediaWiki
23 * @subpackage SpecialPage
26 /**
27 * constructor
29 function wfSpecialLog( $par = '' ) {
30 global $wgRequest;
31 $logReader =& new LogReader( $wgRequest );
32 if( '' == $wgRequest->getVal( 'type' ) && !empty( $par ) ) {
33 $logReader->limitType( $par );
35 $logViewer =& new LogViewer( $logReader );
36 $logViewer->show();
39 /**
41 * @package MediaWiki
42 * @subpackage SpecialPage
44 class LogReader {
45 var $db, $joinClauses, $whereClauses;
46 var $type = '', $user = '', $title = null;
48 /**
49 * @param WebRequest $request For internal use use a FauxRequest object to pass arbitrary parameters.
51 function LogReader( $request ) {
52 $this->db =& wfGetDB( DB_SLAVE );
53 $this->setupQuery( $request );
56 /**
57 * Basic setup and applies the limiting factors from the WebRequest object.
58 * @param WebRequest $request
59 * @private
61 function setupQuery( $request ) {
62 $page = $this->db->tableName( 'page' );
63 $user = $this->db->tableName( 'user' );
64 $this->joinClauses = array( "LEFT OUTER JOIN $page ON log_namespace=page_namespace AND log_title=page_title" );
65 $this->whereClauses = array( 'user_id=log_user' );
67 $this->limitType( $request->getVal( 'type' ) );
68 $this->limitUser( $request->getText( 'user' ) );
69 $this->limitTitle( $request->getText( 'page' ) );
70 $this->limitTime( $request->getVal( 'from' ), '>=' );
71 $this->limitTime( $request->getVal( 'until' ), '<=' );
73 list( $this->limit, $this->offset ) = $request->getLimitOffset();
76 /**
77 * Set the log reader to return only entries of the given type.
78 * @param string $type A log type ('upload', 'delete', etc)
79 * @private
81 function limitType( $type ) {
82 if( empty( $type ) ) {
83 return false;
85 $this->type = $type;
86 $safetype = $this->db->strencode( $type );
87 $this->whereClauses[] = "log_type='$safetype'";
90 /**
91 * Set the log reader to return only entries by the given user.
92 * @param string $name Valid user name
93 * @private
95 function limitUser( $name ) {
96 $title = Title::makeTitle( NS_USER, $name );
97 if( empty( $name ) || is_null( $title ) ) {
98 return false;
100 $this->user = str_replace( '_', ' ', $title->getDBkey() );
101 $safename = $this->db->strencode( $this->user );
102 $user = $this->db->tableName( 'user' );
103 $this->whereClauses[] = "user_name='$safename'";
107 * Set the log reader to return only entries affecting the given page.
108 * (For the block and rights logs, this is a user page.)
109 * @param string $page Title name as text
110 * @private
112 function limitTitle( $page ) {
113 $title = Title::newFromText( $page );
114 if( empty( $page ) || is_null( $title ) ) {
115 return false;
117 $this->title =& $title;
118 $safetitle = $this->db->strencode( $title->getDBkey() );
119 $ns = $title->getNamespace();
120 $this->whereClauses[] = "log_namespace=$ns AND log_title='$safetitle'";
124 * Set the log reader to return only entries in a given time range.
125 * @param string $time Timestamp of one endpoint
126 * @param string $direction either ">=" or "<=" operators
127 * @private
129 function limitTime( $time, $direction ) {
130 # Direction should be a comparison operator
131 if( empty( $time ) ) {
132 return false;
134 $safetime = $this->db->strencode( wfTimestamp( TS_MW, $time ) );
135 $this->whereClauses[] = "log_timestamp $direction '$safetime'";
139 * Build an SQL query from all the set parameters.
140 * @return string the SQL query
141 * @private
143 function getQuery() {
144 $logging = $this->db->tableName( "logging" );
145 $user = $this->db->tableName( 'user' );
146 $sql = "SELECT log_type, log_action, log_timestamp,
147 log_user, user_name,
148 log_namespace, log_title, page_id,
149 log_comment, log_params FROM $user, $logging ";
150 if( !empty( $this->joinClauses ) ) {
151 $sql .= implode( ',', $this->joinClauses );
153 if( !empty( $this->whereClauses ) ) {
154 $sql .= " WHERE " . implode( ' AND ', $this->whereClauses );
156 $sql .= " ORDER BY log_timestamp DESC ";
157 $sql .= $this->db->limitResult( $this->limit, $this->offset );
158 return $sql;
162 * Execute the query and start returning results.
163 * @return ResultWrapper result object to return the relevant rows
165 function getRows() {
166 return $this->db->resultObject( $this->db->query( $this->getQuery() ) );
170 * @return string The query type that this LogReader has been limited to.
172 function queryType() {
173 return $this->type;
177 * @return string The username type that this LogReader has been limited to, if any.
179 function queryUser() {
180 return $this->user;
184 * @return string The text of the title that this LogReader has been limited to.
186 function queryTitle() {
187 if( is_null( $this->title ) ) {
188 return '';
189 } else {
190 return $this->title->getPrefixedText();
197 * @package MediaWiki
198 * @subpackage SpecialPage
200 class LogViewer {
202 * @var LogReader $reader
204 var $reader;
205 var $numResults = 0;
208 * @param LogReader &$reader where to get our data from
210 function LogViewer( &$reader ) {
211 global $wgUser;
212 $this->skin =& $wgUser->getSkin();
213 $this->reader =& $reader;
217 * Take over the whole output page in $wgOut with the log display.
219 function show() {
220 global $wgOut;
221 $this->showHeader( $wgOut );
222 $this->showOptions( $wgOut );
223 $result = $this->getLogRows();
224 $this->showPrevNext( $wgOut );
225 $this->doShowList( $wgOut, $result );
226 $this->showPrevNext( $wgOut );
230 * Load the data from the linked LogReader
231 * Preload the link cache
232 * Initialise numResults
234 * Must be called before calling showPrevNext
236 * @return object database result set
238 function getLogRows() {
239 global $wgLinkCache;
240 $result = $this->reader->getRows();
241 $this->numResults = 0;
243 // Fetch results and form a batch link existence query
244 $batch = new LinkBatch;
245 while ( $s = $result->fetchObject() ) {
246 // User link
247 $title = Title::makeTitleSafe( NS_USER, $s->user_name );
248 $batch->addObj( $title );
250 // Move destination link
251 if ( $s->log_type == 'move' ) {
252 $paramArray = LogPage::extractParams( $s->log_params );
253 $title = Title::newFromText( $paramArray[0] );
254 $batch->addObj( $title );
256 $this->numResults++;
258 $batch->execute( $wgLinkCache );
260 return $result;
265 * Output just the list of entries given by the linked LogReader,
266 * with extraneous UI elements. Use for displaying log fragments in
267 * another page (eg at Special:Undelete)
268 * @param OutputPage $out where to send output
270 function showList( &$out ) {
271 $this->doShowList( $out, $this->getLogRows() );
274 function doShowList( &$out, $result ) {
275 // Rewind result pointer and go through it again, making the HTML
276 $html='';
277 if ($this->numResults > 0) {
278 $html = "\n<ul>\n";
279 $result->seek( 0 );
280 while( $s = $result->fetchObject() ) {
281 $html .= $this->logLine( $s );
283 $html .= "\n</ul>\n";
285 $result->free();
286 $out->addHTML( $html );
290 * @param Object $s a single row from the result set
291 * @return string Formatted HTML list item
292 * @private
294 function logLine( $s ) {
295 global $wgLang, $wgLinkCache;
296 $title = Title::makeTitle( $s->log_namespace, $s->log_title );
297 $user = Title::makeTitleSafe( NS_USER, $s->user_name );
298 $time = $wgLang->timeanddate( $s->log_timestamp, true );
300 // Enter the existence or non-existence of this page into the link cache,
301 // for faster makeLinkObj() in LogPage::actionText()
302 if( $s->page_id ) {
303 $wgLinkCache->addGoodLinkObj( $s->page_id, $title );
304 } else {
305 $wgLinkCache->addBadLinkObj( $title );
308 $userLink = $this->skin->makeLinkObj( $user, htmlspecialchars( $s->user_name ) );
309 $comment = $this->skin->commentBlock( $s->log_comment );
310 $paramArray = LogPage::extractParams( $s->log_params );
311 $revert = '';
312 if ( $s->log_type == 'move' && isset( $paramArray[0] ) ) {
313 $specialTitle = Title::makeTitle( NS_SPECIAL, 'Movepage' );
314 $destTitle = Title::newFromText( $paramArray[0] );
315 if ( $destTitle ) {
316 $revert = '(' . $this->skin->makeKnownLinkObj( $specialTitle, wfMsg( 'revertmove' ),
317 'wpOldTitle=' . urlencode( $destTitle->getPrefixedDBkey() ) .
318 '&wpNewTitle=' . urlencode( $title->getPrefixedDBkey() ) .
319 '&wpReason=' . urlencode( wfMsgForContent( 'revertmove' ) ) .
320 '&wpMovetalk=0' ) . ')';
324 $action = LogPage::actionText( $s->log_type, $s->log_action, $title, $this->skin, $paramArray, true );
325 $out = "<li>$time $userLink $action $comment $revert</li>\n";
326 return $out;
330 * @param OutputPage &$out where to send output
331 * @private
333 function showHeader( &$out ) {
334 $type = $this->reader->queryType();
335 if( LogPage::isLogType( $type ) ) {
336 $out->setPageTitle( LogPage::logName( $type ) );
337 $out->addWikiText( LogPage::logHeader( $type ) );
342 * @param OutputPage &$out where to send output
343 * @private
345 function showOptions( &$out ) {
346 global $wgScript;
347 $action = htmlspecialchars( $wgScript );
348 $title = Title::makeTitle( NS_SPECIAL, 'Log' );
349 $special = htmlspecialchars( $title->getPrefixedDBkey() );
350 $out->addHTML( "<form action=\"$action\" method=\"get\">\n" .
351 "<input type='hidden' name='title' value=\"$special\" />\n" .
352 $this->getTypeMenu() .
353 $this->getUserInput() .
354 $this->getTitleInput() .
355 "<input type='submit' value=\"" . wfMsg( 'allpagessubmit' ) . "\" />" .
356 "</form>" );
360 * @return string Formatted HTML
361 * @private
363 function getTypeMenu() {
364 $out = "<select name='type'>\n";
365 foreach( LogPage::validTypes() as $type ) {
366 $text = htmlspecialchars( LogPage::logName( $type ) );
367 $selected = ($type == $this->reader->queryType()) ? ' selected="selected"' : '';
368 $out .= "<option value=\"$type\"$selected>$text</option>\n";
370 $out .= "</select>\n";
371 return $out;
375 * @return string Formatted HTML
376 * @private
378 function getUserInput() {
379 $user = htmlspecialchars( $this->reader->queryUser() );
380 return wfMsg('specialloguserlabel') . "<input type='text' name='user' size='12' value=\"$user\" />\n";
384 * @return string Formatted HTML
385 * @private
387 function getTitleInput() {
388 $title = htmlspecialchars( $this->reader->queryTitle() );
389 return wfMsg('speciallogtitlelabel') . "<input type='text' name='page' size='20' value=\"$title\" />\n";
393 * @param OutputPage &$out where to send output
394 * @private
396 function showPrevNext( &$out ) {
397 global $wgContLang,$wgRequest;
398 $pieces = array();
399 $pieces[] = 'type=' . urlencode( $this->reader->queryType() );
400 $pieces[] = 'user=' . urlencode( $this->reader->queryUser() );
401 $pieces[] = 'page=' . urlencode( $this->reader->queryTitle() );
402 $bits = implode( '&', $pieces );
403 list( $limit, $offset ) = $wgRequest->getLimitOffset();
405 # TODO: use timestamps instead of offsets to make it more natural
406 # to go huge distances in time
407 $html = wfViewPrevNext( $offset, $limit,
408 $wgContLang->specialpage( 'Log' ),
409 $bits,
410 $this->numResults < $limit);
411 $out->addHTML( '<p>' . $html . '</p>' );