don't just assume we get a valid title object
[lhc/web/wiklou.git] / includes / RecentChange.php
1 <?php
2 /**
3 *
4 * @package MediaWiki
5 */
6
7 /**
8 * Various globals
9 */
10 define( 'RC_EDIT', 0);
11 define( 'RC_NEW', 1);
12 define( 'RC_MOVE', 2);
13 define( 'RC_LOG', 3);
14 define( 'RC_MOVE_OVER_REDIRECT', 4);
15
16
17 /**
18 * Utility class for creating new RC entries
19 * mAttribs:
20 * rc_id id of the row in the recentchanges table
21 * rc_timestamp time the entry was made
22 * rc_cur_time timestamp on the cur row
23 * rc_namespace namespace #
24 * rc_title non-prefixed db key
25 * rc_type is new entry, used to determine whether updating is necessary
26 * rc_minor is minor
27 * rc_cur_id page_id of associated page entry
28 * rc_user user id who made the entry
29 * rc_user_text user name who made the entry
30 * rc_comment edit summary
31 * rc_this_oldid rev_id associated with this entry (or zero)
32 * rc_last_oldid rev_id associated with the entry before this one (or zero)
33 * rc_bot is bot, hidden
34 * rc_ip IP address of the user in dotted quad notation
35 * rc_new obsolete, use rc_type==RC_NEW
36 * rc_patrolled boolean whether or not someone has marked this edit as patrolled
37 *
38 * mExtra:
39 * prefixedDBkey prefixed db key, used by external app via msg queue
40 * lastTimestamp timestamp of previous entry, used in WHERE clause during update
41 * lang the interwiki prefix, automatically set in save()
42 * oldSize text size before the change
43 * newSize text size after the change
44 *
45 * temporary: not stored in the database
46 * notificationtimestamp
47 * numberofWatchingusers
48 *
49 * @todo document functions and variables
50 * @package MediaWiki
51 */
52 class RecentChange
53 {
54 var $mAttribs = array(), $mExtra = array();
55 var $mTitle = false, $mMovedToTitle = false;
56
57 # Factory methods
58
59 /* static */ function newFromRow( $row )
60 {
61 $rc = new RecentChange;
62 $rc->loadFromRow( $row );
63 return $rc;
64 }
65
66 /* static */ function newFromCurRow( $row, $rc_this_oldid = 0 )
67 {
68 $rc = new RecentChange;
69 $rc->loadFromCurRow( $row, $rc_this_oldid );
70 $rc->notificationtimestamp = false;
71 $rc->numberofWatchingusers = false;
72 return $rc;
73 }
74
75 # Accessors
76
77 function setAttribs( $attribs )
78 {
79 $this->mAttribs = $attribs;
80 }
81
82 function setExtra( $extra )
83 {
84 $this->mExtra = $extra;
85 }
86
87 function &getTitle()
88 {
89 if ( $this->mTitle === false ) {
90 $this->mTitle = Title::makeTitle( $this->mAttribs['rc_namespace'], $this->mAttribs['rc_title'] );
91 }
92 return $this->mTitle;
93 }
94
95 function getMovedToTitle()
96 {
97 if ( $this->mMovedToTitle === false ) {
98 $this->mMovedToTitle = Title::makeTitle( $this->mAttribs['rc_moved_to_ns'],
99 $this->mAttribs['rc_moved_to_title'] );
100 }
101 return $this->mMovedToTitle;
102 }
103
104 # Writes the data in this object to the database
105 function save()
106 {
107 global $wgLocalInterwiki, $wgPutIPinRC, $wgRC2UDPAddress, $wgRC2UDPPort, $wgRC2UDPPrefix;
108 $fname = 'RecentChange::save';
109
110 $dbw =& wfGetDB( DB_MASTER );
111 if ( !is_array($this->mExtra) ) {
112 $this->mExtra = array();
113 }
114 $this->mExtra['lang'] = $wgLocalInterwiki;
115
116 if ( !$wgPutIPinRC ) {
117 $this->mAttribs['rc_ip'] = '';
118 }
119
120 # Fixup database timestamps
121 $this->mAttribs['rc_timestamp']=$dbw->timestamp($this->mAttribs['rc_timestamp']);
122 $this->mAttribs['rc_cur_time']=$dbw->timestamp($this->mAttribs['rc_cur_time']);
123
124 # Insert new row
125 $dbw->insert( 'recentchanges', $this->mAttribs, $fname );
126
127 # Update old rows, if necessary
128 if ( $this->mAttribs['rc_type'] == RC_EDIT ) {
129 $oldid = $this->mAttribs['rc_last_oldid'];
130 $ns = $this->mAttribs['rc_namespace'];
131 $title = $this->mAttribs['rc_title'];
132 $lastTime = $this->mExtra['lastTimestamp'];
133 $now = $this->mAttribs['rc_timestamp'];
134 $curId = $this->mAttribs['rc_cur_id'];
135
136 # Don't bother looking for entries that have probably
137 # been purged, it just locks up the indexes needlessly.
138 global $wgRCMaxAge;
139 $age = time() - wfTimestamp( TS_UNIX, $lastTime );
140 if( $age < $wgRCMaxAge ) {
141 # live hack, will commit once tested - kate
142 # Update rc_this_oldid for the entries which were current
143 #$dbw->update( 'recentchanges',
144 # array( /* SET */
145 # 'rc_this_oldid' => $oldid
146 # ), array( /* WHERE */
147 # 'rc_namespace' => $ns,
148 # 'rc_title' => $title,
149 # 'rc_timestamp' => $dbw->timestamp( $lastTime )
150 # ), $fname
151 #);
152 }
153
154 # Update rc_cur_time
155 $dbw->update( 'recentchanges', array( 'rc_cur_time' => $now ),
156 array( 'rc_cur_id' => $curId ), $fname );
157 }
158
159 # Notify external application via UDP
160 if ( $wgRC2UDPAddress ) {
161 $conn = socket_create( AF_INET, SOCK_DGRAM, SOL_UDP );
162 if ( $conn ) {
163 $line = $wgRC2UDPPrefix . $this->getIRCLine();
164 socket_sendto( $conn, $line, strlen($line), 0, $wgRC2UDPAddress, $wgRC2UDPPort );
165 socket_close( $conn );
166 }
167 }
168 }
169
170 # Marks a certain row as patrolled
171 function markPatrolled( $rcid )
172 {
173 $fname = 'RecentChange::markPatrolled';
174
175 $dbw =& wfGetDB( DB_MASTER );
176
177 $dbw->update( 'recentchanges',
178 array( /* SET */
179 'rc_patrolled' => 1
180 ), array( /* WHERE */
181 'rc_id' => $rcid
182 ), $fname
183 );
184 }
185
186 # Makes an entry in the database corresponding to an edit
187 /*static*/ function notifyEdit( $timestamp, &$title, $minor, &$user, $comment,
188 $oldId, $lastTimestamp, $bot = "default", $ip = '', $oldSize = 0, $newSize = 0,
189 $newId = 0)
190 {
191 if ( $bot == 'default ' ) {
192 $bot = $user->isBot();
193 }
194
195 if ( !$ip ) {
196 global $wgIP;
197 $ip = empty( $wgIP ) ? '' : $wgIP;
198 }
199
200 $rc = new RecentChange;
201 $rc->mAttribs = array(
202 'rc_timestamp' => $timestamp,
203 'rc_cur_time' => $timestamp,
204 'rc_namespace' => $title->getNamespace(),
205 'rc_title' => $title->getDBkey(),
206 'rc_type' => RC_EDIT,
207 'rc_minor' => $minor ? 1 : 0,
208 'rc_cur_id' => $title->getArticleID(),
209 'rc_user' => $user->getID(),
210 'rc_user_text' => $user->getName(),
211 'rc_comment' => $comment,
212 'rc_this_oldid' => $newId,
213 'rc_last_oldid' => $oldId,
214 'rc_bot' => $bot ? 1 : 0,
215 'rc_moved_to_ns' => 0,
216 'rc_moved_to_title' => '',
217 'rc_ip' => $ip,
218 'rc_patrolled' => 0,
219 'rc_new' => 0 # obsolete
220 );
221
222 $rc->mExtra = array(
223 'prefixedDBkey' => $title->getPrefixedDBkey(),
224 'lastTimestamp' => $lastTimestamp,
225 'oldSize' => $oldSize,
226 'newSize' => $newSize,
227 );
228 $rc->save();
229 }
230
231 # Makes an entry in the database corresponding to page creation
232 # Note: the title object must be loaded with the new id using resetArticleID()
233 /*static*/ function notifyNew( $timestamp, &$title, $minor, &$user, $comment, $bot = "default",
234 $ip='', $size = 0, $newId = 0 )
235 {
236 if ( !$ip ) {
237 global $wgIP;
238 $ip = empty( $wgIP ) ? '' : $wgIP;
239 }
240 if ( $bot == 'default' ) {
241 $bot = $user->isBot();
242 }
243
244 $rc = new RecentChange;
245 $rc->mAttribs = array(
246 'rc_timestamp' => $timestamp,
247 'rc_cur_time' => $timestamp,
248 'rc_namespace' => $title->getNamespace(),
249 'rc_title' => $title->getDBkey(),
250 'rc_type' => RC_NEW,
251 'rc_minor' => $minor ? 1 : 0,
252 'rc_cur_id' => $title->getArticleID(),
253 'rc_user' => $user->getID(),
254 'rc_user_text' => $user->getName(),
255 'rc_comment' => $comment,
256 'rc_this_oldid' => $newId,
257 'rc_last_oldid' => 0,
258 'rc_bot' => $bot ? 1 : 0,
259 'rc_moved_to_ns' => 0,
260 'rc_moved_to_title' => '',
261 'rc_ip' => $ip,
262 'rc_patrolled' => 0,
263 'rc_new' => 1 # obsolete
264 );
265
266 $rc->mExtra = array(
267 'prefixedDBkey' => $title->getPrefixedDBkey(),
268 'lastTimestamp' => 0,
269 'oldSize' => 0,
270 'newSize' => $size
271 );
272 $rc->save();
273 }
274
275 # Makes an entry in the database corresponding to a rename
276 /*static*/ function notifyMove( $timestamp, &$oldTitle, &$newTitle, &$user, $comment, $ip='', $overRedir = false )
277 {
278 if ( !$ip ) {
279 global $wgIP;
280 $ip = empty( $wgIP ) ? '' : $wgIP;
281 }
282 $rc = new RecentChange;
283 $rc->mAttribs = array(
284 'rc_timestamp' => $timestamp,
285 'rc_cur_time' => $timestamp,
286 'rc_namespace' => $oldTitle->getNamespace(),
287 'rc_title' => $oldTitle->getDBkey(),
288 'rc_type' => $overRedir ? RC_MOVE_OVER_REDIRECT : RC_MOVE,
289 'rc_minor' => 0,
290 'rc_cur_id' => $oldTitle->getArticleID(),
291 'rc_user' => $user->getID(),
292 'rc_user_text' => $user->getName(),
293 'rc_comment' => $comment,
294 'rc_this_oldid' => 0,
295 'rc_last_oldid' => 0,
296 'rc_bot' => $user->isBot() ? 1 : 0,
297 'rc_moved_to_ns' => $newTitle->getNamespace(),
298 'rc_moved_to_title' => $newTitle->getDBkey(),
299 'rc_ip' => $ip,
300 'rc_new' => 0, # obsolete
301 'rc_patrolled' => 1
302 );
303
304 $rc->mExtra = array(
305 'prefixedDBkey' => $oldTitle->getPrefixedDBkey(),
306 'lastTimestamp' => 0,
307 'prefixedMoveTo' => $newTitle->getPrefixedDBkey()
308 );
309 $rc->save();
310 }
311
312 /* static */ function notifyMoveToNew( $timestamp, &$oldTitle, &$newTitle, &$user, $comment, $ip='' ) {
313 RecentChange::notifyMove( $timestamp, $oldTitle, $newTitle, $user, $comment, $ip, false );
314 }
315
316 /* static */ function notifyMoveOverRedirect( $timestamp, &$oldTitle, &$newTitle, &$user, $comment, $ip='' ) {
317 RecentChange::notifyMove( $timestamp, $oldTitle, $newTitle, $user, $comment, $ip='', true );
318 }
319
320 # A log entry is different to an edit in that previous revisions are
321 # not kept
322 /*static*/ function notifyLog( $timestamp, &$title, &$user, $comment, $ip='' )
323 {
324 if ( !$ip ) {
325 global $wgIP;
326 $ip = empty( $wgIP ) ? '' : $wgIP;
327 }
328 $rc = new RecentChange;
329 $rc->mAttribs = array(
330 'rc_timestamp' => $timestamp,
331 'rc_cur_time' => $timestamp,
332 'rc_namespace' => $title->getNamespace(),
333 'rc_title' => $title->getDBkey(),
334 'rc_type' => RC_LOG,
335 'rc_minor' => 0,
336 'rc_cur_id' => $title->getArticleID(),
337 'rc_user' => $user->getID(),
338 'rc_user_text' => $user->getName(),
339 'rc_comment' => $comment,
340 'rc_this_oldid' => 0,
341 'rc_last_oldid' => 0,
342 'rc_bot' => 0,
343 'rc_moved_to_ns' => 0,
344 'rc_moved_to_title' => '',
345 'rc_ip' => $ip,
346 'rc_patrolled' => 1,
347 'rc_new' => 0 # obsolete
348 );
349 $rc->mExtra = array(
350 'prefixedDBkey' => $title->getPrefixedDBkey(),
351 'lastTimestamp' => 0
352 );
353 $rc->save();
354 }
355
356 # Initialises the members of this object from a mysql row object
357 function loadFromRow( $row )
358 {
359 $this->mAttribs = get_object_vars( $row );
360 $this->mExtra = array();
361 }
362
363 # Makes a pseudo-RC entry from a cur row, for watchlists and things
364 function loadFromCurRow( $row )
365 {
366 $this->mAttribs = array(
367 'rc_timestamp' => $row->rev_timestamp,
368 'rc_cur_time' => $row->rev_timestamp,
369 'rc_user' => $row->rev_user,
370 'rc_user_text' => $row->rev_user_text,
371 'rc_namespace' => $row->page_namespace,
372 'rc_title' => $row->page_title,
373 'rc_comment' => $row->rev_comment,
374 'rc_minor' => $row->rev_minor_edit ? 1 : 0,
375 'rc_type' => $row->page_is_new ? RC_NEW : RC_EDIT,
376 'rc_cur_id' => $row->page_id,
377 'rc_this_oldid' => $row->rev_id,
378 'rc_last_oldid' => isset($row->rc_last_oldid) ? $row->rc_last_oldid : 0,
379 'rc_bot' => 0,
380 'rc_moved_to_ns' => 0,
381 'rc_moved_to_title' => '',
382 'rc_ip' => '',
383 'rc_patrolled' => '1', # we can't support patrolling on the Watchlist
384 # currently because it uses cur, not recentchanges
385 'rc_new' => $row->page_is_new # obsolete
386 );
387
388 $this->mExtra = array();
389 }
390
391
392 /**
393 * Gets the end part of the diff URL associated with this object
394 * Blank if no diff link should be displayed
395 */
396 function diffLinkTrail( $forceCur )
397 {
398 if ( $this->mAttribs['rc_type'] == RC_EDIT ) {
399 $trail = "curid=" . (int)($this->mAttribs['rc_cur_id']) .
400 "&oldid=" . (int)($this->mAttribs['rc_last_oldid']);
401 if ( $forceCur ) {
402 $trail .= '&diff=0' ;
403 } else {
404 $trail .= '&diff=' . (int)($this->mAttribs['rc_this_oldid']);
405 }
406 } else {
407 $trail = '';
408 }
409 return $trail;
410 }
411
412 function getIRCLine() {
413 extract($this->mAttribs);
414 extract($this->mExtra);
415
416 $titleObj =& $this->getTitle();
417
418 $bad = array("\n", "\r");
419 $empty = array("", "");
420 $title = $titleObj->getPrefixedText();
421 $title = str_replace($bad, $empty, $title);
422
423 if ( $rc_new ) {
424 $url = $titleObj->getFullURL();
425 } else {
426 $url = $titleObj->getFullURL("diff=0&oldid=$rc_last_oldid");
427 }
428
429 if ( isset( $oldSize ) && isset( $newSize ) ) {
430 $szdiff = $newSize - $oldSize;
431 if ($szdiff < -500)
432 $szdiff = "\002$szdiff\002";
433 else if ($szdiff >= 0)
434 $szdiff = "+$szdiff";
435 $szdiff = "($szdiff)";
436 } else {
437 $szdiff = '';
438 }
439
440 $comment = str_replace($bad, $empty, $rc_comment);
441 $user = str_replace($bad, $empty, $rc_user_text);
442 $flag = ($rc_minor ? "M" : "") . ($rc_new ? "N" : "");
443 # see http://www.irssi.org/?page=docs&doc=formats for some colour codes. prefix is \003,
444 # no colour (\003) switches back to the term default
445 $comment = preg_replace("/\/\* (.*) \*\/(.*)/", "\00315\$1\003 - \00310\$2\003", $comment);
446 $fullString = "\00314[[\00307$title\00314]]\0034 $flag\00310 " .
447 "\00302$url\003 \0035*\003 \00303$user\003 \0035*\003 $szdiff \00310$comment\003\n";
448
449 return $fullString;
450 }
451 }
452 ?>