Add noratelimit right to list of core rights, was missing.
[lhc/web/wiklou.git] / includes / FeedUtils.php
1 <?php
2
3 // TODO: document
4 class FeedUtils {
5
6 public static function checkPurge( $timekey, $key ) {
7 global $wgRequest, $wgUser, $messageMemc;
8 $purge = $wgRequest->getVal( 'action' ) === 'purge';
9 if ( $purge && $wgUser->isAllowed('purge') ) {
10 $messageMemc->delete( $timekey );
11 $messageMemc->delete( $key );
12 }
13 }
14
15 public static function checkFeedOutput( $type ) {
16 global $wgFeed, $wgOut, $wgFeedClasses;
17
18 if ( !$wgFeed ) {
19 global $wgOut;
20 $wgOut->addWikiMsg( 'feed-unavailable' );
21 return false;
22 }
23
24 if( !isset( $wgFeedClasses[$type] ) ) {
25 wfHttpError( 500, "Internal Server Error", "Unsupported feed type." );
26 return false;
27 }
28
29 return true;
30 }
31
32 /**
33 * Format a diff for the newsfeed
34 */
35 public static function formatDiff( $row ) {
36 global $wgUser;
37
38 $titleObj = Title::makeTitle( $row->rc_namespace, $row->rc_title );
39 $timestamp = wfTimestamp( TS_MW, $row->rc_timestamp );
40 $actiontext = '';
41 if( $row->rc_type == RC_LOG ) {
42 if( $row->rc_deleted & LogPage::DELETED_ACTION ) {
43 $actiontext = wfMsgHtml('rev-deleted-event');
44 } else {
45 $actiontext = LogPage::actionText( $row->rc_log_type, $row->rc_log_action,
46 $titleObj, $wgUser->getSkin(), LogPage::extractParams($row->rc_params,true,true) );
47 }
48 }
49 return self::formatDiffRow( $titleObj,
50 $row->rc_last_oldid, $row->rc_this_oldid,
51 $timestamp,
52 ($row->rc_deleted & Revision::DELETED_COMMENT) ? wfMsgHtml('rev-deleted-comment') : $row->rc_comment,
53 $actiontext );
54 }
55
56 public static function formatDiffRow( $title, $oldid, $newid, $timestamp, $comment, $actiontext='' ) {
57 global $wgFeedDiffCutoff, $wgContLang, $wgUser;
58 wfProfileIn( __FUNCTION__ );
59
60 $skin = $wgUser->getSkin();
61 # log enties
62 if( $actiontext ) {
63 $comment = "$actiontext $comment";
64 }
65 $completeText = '<p>' . $skin->formatComment( $comment ) . "</p>\n";
66
67 //NOTE: Check permissions for anonymous users, not current user.
68 // No "privileged" version should end up in the cache.
69 // Most feed readers will not log in anway.
70 $anon = new User();
71 $accErrors = $title->getUserPermissionsErrors( 'read', $anon, true );
72
73 if( $title->getNamespace() >= 0 && !$accErrors ) {
74 if( $oldid ) {
75 wfProfileIn( __FUNCTION__."-dodiff" );
76
77 $de = new DifferenceEngine( $title, $oldid, $newid );
78 #$diffText = $de->getDiff( wfMsg( 'revisionasof',
79 # $wgContLang->timeanddate( $timestamp ) ),
80 # wfMsg( 'currentrev' ) );
81 $diffText = $de->getDiff(
82 wfMsg( 'previousrevision' ), // hack
83 wfMsg( 'revisionasof',
84 $wgContLang->timeanddate( $timestamp ) ) );
85
86
87 if ( strlen( $diffText ) > $wgFeedDiffCutoff ) {
88 // Omit large diffs
89 $diffLink = $title->escapeFullUrl(
90 'diff=' . $newid .
91 '&oldid=' . $oldid );
92 $diffText = '<a href="' .
93 $diffLink .
94 '">' .
95 htmlspecialchars( wfMsgForContent( 'difference' ) ) .
96 '</a>';
97 } elseif ( $diffText === false ) {
98 // Error in diff engine, probably a missing revision
99 $diffText = "<p>Can't load revision $newid</p>";
100 } else {
101 // Diff output fine, clean up any illegal UTF-8
102 $diffText = UtfNormal::cleanUp( $diffText );
103 $diffText = self::applyDiffStyle( $diffText );
104 }
105 wfProfileOut( __FUNCTION__."-dodiff" );
106 } else {
107 $rev = Revision::newFromId( $newid );
108 if( is_null( $rev ) ) {
109 $newtext = '';
110 } else {
111 $newtext = $rev->getText();
112 }
113 $diffText = '<p><b>' . wfMsg( 'newpage' ) . '</b></p>' .
114 '<div>' . nl2br( htmlspecialchars( $newtext ) ) . '</div>';
115 }
116 $completeText .= $diffText;
117 }
118
119 wfProfileOut( __FUNCTION__ );
120 return $completeText;
121 }
122
123 /**
124 * Hacky application of diff styles for the feeds.
125 * Might be 'cleaner' to use DOM or XSLT or something,
126 * but *gack* it's a pain in the ass.
127 *
128 * @param $text String:
129 * @return string
130 * @private
131 */
132 public static function applyDiffStyle( $text ) {
133 $styles = array(
134 'diff' => 'background-color: white; color:black;',
135 'diff-otitle' => 'background-color: white; color:black;',
136 'diff-ntitle' => 'background-color: white; color:black;',
137 'diff-addedline' => 'background: #cfc; color:black; font-size: smaller;',
138 'diff-deletedline' => 'background: #ffa; color:black; font-size: smaller;',
139 'diff-context' => 'background: #eee; color:black; font-size: smaller;',
140 'diffchange' => 'color: red; font-weight: bold; text-decoration: none;',
141 );
142
143 foreach( $styles as $class => $style ) {
144 $text = preg_replace( "/(<[^>]+)class=(['\"])$class\\2([^>]*>)/",
145 "\\1style=\"$style\"\\3", $text );
146 }
147
148 return $text;
149 }
150
151 }