getVal( 'action' ) === 'purge'; if ( $purge && $wgUser->isAllowed( 'purge' ) ) { $messageMemc->delete( $timekey ); $messageMemc->delete( $key ); } } /** * Check whether feeds can be used and that $type is a valid feed type * * @param string $type Feed type, as requested by the user * @return bool */ public static function checkFeedOutput( $type ) { global $wgOut, $wgFeed, $wgFeedClasses; if ( !$wgFeed ) { $wgOut->addWikiMsg( 'feed-unavailable' ); return false; } if ( !isset( $wgFeedClasses[$type] ) ) { $wgOut->addWikiMsg( 'feed-invalid' ); return false; } return true; } /** * Format a diff for the newsfeed * * @param object $row Row from the recentchanges table * @return string */ public static function formatDiff( $row ) { $titleObj = Title::makeTitle( $row->rc_namespace, $row->rc_title ); $timestamp = wfTimestamp( TS_MW, $row->rc_timestamp ); $actiontext = ''; if ( $row->rc_type == RC_LOG ) { $rcRow = (array)$row; // newFromRow() only accepts arrays for RC rows $actiontext = LogFormatter::newFromRow( $rcRow )->getActionText(); } return self::formatDiffRow( $titleObj, $row->rc_last_oldid, $row->rc_this_oldid, $timestamp, $row->rc_deleted & Revision::DELETED_COMMENT ? wfMessage( 'rev-deleted-comment' )->escaped() : $row->rc_comment, $actiontext ); } /** * Really format a diff for the newsfeed * * @param Title $title Title object * @param int $oldid Old revision's id * @param int $newid New revision's id * @param int $timestamp New revision's timestamp * @param string $comment New revision's comment * @param string $actiontext Text of the action; in case of log event * @return string */ public static function formatDiffRow( $title, $oldid, $newid, $timestamp, $comment, $actiontext = '' ) { global $wgFeedDiffCutoff, $wgLang; // log entries $completeText = '
' . implode( ' ', array_filter( array( $actiontext, Linker::formatComment( $comment ) ) ) ) . "
\n"; // NOTE: Check permissions for anonymous users, not current user. // No "privileged" version should end up in the cache. // Most feed readers will not log in anyway. $anon = new User(); $accErrors = $title->getUserPermissionsErrors( 'read', $anon, true ); // Can't diff special pages, unreadable pages or pages with no new revision // to compare against: just return the text. if ( $title->getNamespace() < 0 || $accErrors || !$newid ) { return $completeText; } if ( $oldid ) { #$diffText = $de->getDiff( wfMessage( 'revisionasof', # $wgLang->timeanddate( $timestamp ), # $wgLang->date( $timestamp ), # $wgLang->time( $timestamp ) )->text(), # wfMessage( 'currentrev' )->text() ); $diffText = ''; // Don't bother generating the diff if we won't be able to show it if ( $wgFeedDiffCutoff > 0 ) { $rev = Revision::newFromId( $oldid ); if ( !$rev ) { $diffText = false; } else { $context = clone RequestContext::getMain(); $context->setTitle( $title ); $contentHandler = $rev->getContentHandler(); $de = $contentHandler->createDifferenceEngine( $context, $oldid, $newid ); $diffText = $de->getDiff( wfMessage( 'previousrevision' )->text(), // hack wfMessage( 'revisionasof', $wgLang->timeanddate( $timestamp ), $wgLang->date( $timestamp ), $wgLang->time( $timestamp ) )->text() ); } } if ( $wgFeedDiffCutoff <= 0 || ( strlen( $diffText ) > $wgFeedDiffCutoff ) ) { // Omit large diffs $diffText = self::getDiffLink( $title, $newid, $oldid ); } elseif ( $diffText === false ) { // Error in diff engine, probably a missing revision $diffText = "Can't load revision $newid
"; } else { // Diff output fine, clean up any illegal UTF-8 $diffText = UtfNormal\Validator::cleanUp( $diffText ); $diffText = self::applyDiffStyle( $diffText ); } } else { $rev = Revision::newFromId( $newid ); if ( $wgFeedDiffCutoff <= 0 || is_null( $rev ) ) { $newContent = ContentHandler::getForTitle( $title )->makeEmptyContent(); } else { $newContent = $rev->getContent(); } if ( $newContent instanceof TextContent ) { // only textual content has a "source view". $text = $newContent->getNativeData(); if ( $wgFeedDiffCutoff <= 0 || strlen( $text ) > $wgFeedDiffCutoff ) { $html = null; } else { $html = nl2br( htmlspecialchars( $text ) ); } } else { //XXX: we could get an HTML representation of the content via getParserOutput, but that may // contain JS magic and generally may not be suitable for inclusion in a feed. // Perhaps Content should have a getDescriptiveHtml method and/or a getSourceText method. //Compare also ApiFeedContributions::feedItemDesc $html = null; } if ( $html === null ) { // Omit large new page diffs, bug 29110 // Also use diff link for non-textual content $diffText = self::getDiffLink( $title, $newid ); } else { $diffText = '' . wfMessage( 'newpage' )->text() . '
' . '