execution starts and ends in wiki.phtml, giving the code a somewhat more predictable flow. OutputPage.php: * Added disable() method to Output class. * Replaced exit() call in checkLastModified() with "return true" (thereby altering its contract quite severly). * reportTime() now only returns elapsed time, code with side effects moved to logProfilingData() in GlobalFunctions.php. GlobalFunctions.php: * Added function logProfilingData() which does most of what OutputPage->reportTime() used to do. Article.php: * Replaced exit() in checkLastModified() with "return true" (thereby altering its contract quite severly). * replaced implicit exit in calls to checkLastModified() and tryFileCache() with returns. LogPage.php: * replaced implicit exit() with return in call to checkLastModified() SpecialRecentchanges.php: * replaced implicit exit() with return in call to checkLastModified() wiki.phtml: * Single call to logProfilingData() at the end of the request.
190 lines
5.7 KiB
PHP
190 lines
5.7 KiB
PHP
<?
|
|
|
|
function wfSpecialRecentchanges( $par )
|
|
{
|
|
global $wgUser, $wgOut, $wgLang, $wgTitle;
|
|
global $days, $hideminor, $from, $hidebots; # From query string
|
|
$fname = "wfSpecialRecentchanges";
|
|
|
|
if( $par ) {
|
|
$bits = preg_split( '/\s*,\s*/', trim( $par ) );
|
|
if( in_array( "hidebots", $bits ) ) $hidebots = 1;
|
|
if( in_array( "bots", $bits ) ) $hidebots = 0;
|
|
if( in_array( "hideminor", $bits ) ) $hideminor = 1;
|
|
if( in_array( "minor", $bits ) ) $hideminor = 0;
|
|
}
|
|
|
|
$sql = "SELECT MAX(rc_timestamp) AS lastmod FROM recentchanges";
|
|
$res = wfQuery( $sql, DB_READ, $fname );
|
|
$s = wfFetchObject( $res );
|
|
if( $wgOut->checkLastModified( $s->lastmod ) ){
|
|
# Client cache fresh and headers sent, nothing more to do.
|
|
return;
|
|
}
|
|
|
|
$rctext = wfMsg( "recentchangestext" );
|
|
|
|
# The next few lines can probably be commented out now that wfMsg can get text from the DB
|
|
$sql = "SELECT cur_text FROM cur WHERE cur_namespace=4 AND cur_title='Recentchanges'";
|
|
$res = wfQuery( $sql, DB_READ, $fname );
|
|
if( ( $s = wfFetchObject( $res ) ) and ( $s->cur_text != "" ) ) {
|
|
$rctext = $s->cur_text;
|
|
}
|
|
|
|
$wgOut->addWikiText( $rctext );
|
|
|
|
if ( ! $days ) {
|
|
$days = $wgUser->getOption( "rcdays" );
|
|
if ( ! $days ) { $days = 3; }
|
|
}
|
|
$days = (int)$days;
|
|
list( $limit, $offset ) = wfCheckLimits( 100, "rclimit" );
|
|
$now = wfTimestampNow();
|
|
$cutoff = wfUnix2Timestamp( time() - ( $days * 86400 ) );
|
|
if(preg_match('/^[0-9]{14}$/', $from) and $from > $cutoff) {
|
|
$cutoff = $from;
|
|
} else {
|
|
unset($from);
|
|
}
|
|
|
|
$sk = $wgUser->getSkin();
|
|
|
|
if ( ! isset( $hideminor ) ) {
|
|
$hideminor = $wgUser->getOption( "hideminor" );
|
|
}
|
|
$hideminor = ($hideminor ? 1 : 0);
|
|
if ( $hideminor ) {
|
|
$hidem = "AND rc_minor=0";
|
|
$mltitle = wfMsg( "show" );
|
|
$mlhide = 0;
|
|
} else {
|
|
$hidem = "";
|
|
$mltitle = wfMsg( "hide" );
|
|
$mlhide = 1;
|
|
}
|
|
|
|
if ( isset( $from ) ) {
|
|
$mlparams = "from={$from}&hideminor={$mlhide}";
|
|
} else {
|
|
$mlparams = "days={$days}&limit={$limit}&hideminor={$mlhide}";
|
|
}
|
|
|
|
$mlink = $sk->makeKnownLink( $wgLang->specialPage( "Recentchanges" ),
|
|
$mltitle, $mlparams );
|
|
|
|
if ( !isset( $hidebots ) ) {
|
|
$hidebots = 1;
|
|
}
|
|
if( $hidebots ) {
|
|
$hidem .= " AND rc_bot=0";
|
|
}
|
|
|
|
$uid = $wgUser->getID();
|
|
$sql2 = "SELECT rc_cur_id,rc_namespace,rc_title,rc_user,rc_new," .
|
|
"rc_comment,rc_user_text,rc_timestamp,rc_minor,rc_this_oldid,rc_last_oldid,rc_bot" . ($uid ? ",wl_user" : "") . " FROM recentchanges " .
|
|
($uid ? "LEFT OUTER JOIN watchlist ON wl_user={$uid} AND wl_title=rc_title AND wl_namespace=rc_namespace & 65534 " : "") .
|
|
"WHERE rc_timestamp > '{$cutoff}' {$hidem} " .
|
|
"ORDER BY rc_timestamp DESC LIMIT {$limit}";
|
|
$res = wfQuery( $sql2, DB_READ, $fname );
|
|
|
|
if(isset($from)) {
|
|
$note = wfMsg( "rcnotefrom", $limit,
|
|
$wgLang->timeanddate( $from, true ) );
|
|
} else {
|
|
$note = wfMsg( "rcnote", $limit, $days );
|
|
}
|
|
$wgOut->addHTML( "\n<hr>\n{$note}\n<br>" );
|
|
|
|
$note = rcDayLimitLinks( $days, $limit, "Recentchanges", "hideminor={$hideminor}", false, $mlink );
|
|
|
|
$note .= "<br>\n" . wfMsg( "rclistfrom",
|
|
$sk->makeKnownLink( $wgLang->specialPage( "Recentchanges" ),
|
|
$wgLang->timeanddate( $now, true ), "hideminor={$hideminor}&from=$now" ) );
|
|
|
|
$wgOut->addHTML( "{$note}\n" );
|
|
|
|
$count1 = wfNumRows( $res );
|
|
$obj1 = wfFetchObject( $res );
|
|
|
|
$s = $sk->beginRecentChangesList();
|
|
while ( $limit ) {
|
|
if ( ( 0 == $count1 ) ) { break; }
|
|
|
|
$ts = $obj1->rc_timestamp;
|
|
$u = $obj1->rc_user;
|
|
$ut = $obj1->rc_user_text;
|
|
$ns = $obj1->rc_namespace;
|
|
$ttl = $obj1->rc_title;
|
|
$com = $obj1->rc_comment;
|
|
$me = ( $obj1->rc_minor > 0 );
|
|
$new = ( $obj1->rc_new > 0 );
|
|
$watched = ($obj1->wl_user > 0);
|
|
$oldid = $obj1->rc_this_oldid ;
|
|
$diffid = $obj1->rc_last_oldid ;
|
|
|
|
$obj1 = wfFetchObject( $res );
|
|
--$count1;
|
|
if ( ! ( $hideminor && $me ) ) {
|
|
$s .= $sk->recentChangesLine( $ts, $u, $ut, $ns, $ttl,
|
|
$com, $me, $new, $watched, $oldid , $diffid );
|
|
--$limit;
|
|
}
|
|
}
|
|
$s .= $sk->endRecentChangesList();
|
|
|
|
wfFreeResult( $res );
|
|
$wgOut->addHTML( $s );
|
|
}
|
|
|
|
function rcCountLink( $lim, $d, $page="Recentchanges", $more="" )
|
|
{
|
|
global $wgUser, $wgLang;
|
|
$sk = $wgUser->getSkin();
|
|
$s = $sk->makeKnownLink( $wgLang->specialPage( $page ),
|
|
($lim ? "{$lim}" : wfMsg( "all" ) ), "{$more}" .
|
|
($d ? "days={$d}&" : "") . "limit={$lim}" );
|
|
return $s;
|
|
}
|
|
|
|
function rcDaysLink( $lim, $d, $page="Recentchanges", $more="" )
|
|
{
|
|
global $wgUser, $wgLang;
|
|
$sk = $wgUser->getSkin();
|
|
$s = $sk->makeKnownLink( $wgLang->specialPage( $page ),
|
|
($d ? "{$d}" : wfMsg( "all" ) ), "{$more}days={$d}" .
|
|
($lim ? "&limit={$lim}" : "") );
|
|
return $s;
|
|
}
|
|
|
|
function rcDayLimitLinks( $days, $limit, $page="Recentchanges", $more="", $doall = false, $mlink = "" )
|
|
{
|
|
if ($more != "") $more .= "&";
|
|
$cl = rcCountLink( 50, $days, $page, $more ) . " | " .
|
|
rcCountLink( 100, $days, $page, $more ) . " | " .
|
|
rcCountLink( 250, $days, $page, $more ) . " | " .
|
|
rcCountLink( 500, $days, $page, $more ) .
|
|
( $doall ? ( " | " . rcCountLink( 0, $days, $page, $more ) ) : "" );
|
|
$dl = rcDaysLink( $limit, 1, $page, $more ) . " | " .
|
|
rcDaysLink( $limit, 3, $page, $more ) . " | " .
|
|
rcDaysLink( $limit, 7, $page, $more ) . " | " .
|
|
rcDaysLink( $limit, 14, $page, $more ) . " | " .
|
|
rcDaysLink( $limit, 30, $page, $more ) .
|
|
( $doall ? ( " | " . rcDaysLink( $limit, 0, $page, $more ) ) : "" );
|
|
$shm = wfMsg( "showhideminor", $mlink );
|
|
$note = wfMsg( "rclinks", $cl, $dl, $shm );
|
|
return $note;
|
|
}
|
|
|
|
function rcLimitLinks( $page="Recentchanges", $more="", $doall = false )
|
|
{
|
|
if ($more != "") $more .= "&";
|
|
$cl = rcCountLink( 50, 0, $page, $more ) . " | " .
|
|
rcCountLink( 100, 0, $page, $more ) . " | " .
|
|
rcCountLink( 250, 0, $page, $more ) . " | " .
|
|
rcCountLink( 500, 0, $page, $more ) .
|
|
( $doall ? ( " | " . rcCountLink( 0, $days, $page, $more ) ) : "" );
|
|
$note = wfMsg( "rclinks", $cl, "", $mlink );
|
|
return $note;
|
|
}
|
|
|
|
?>
|