* Use local context instead of global variables
[lhc/web/wiklou.git] / includes / RecentChange.php
1 <?php
2
3 /**
4 * Utility class for creating new RC entries
5 *
6 * mAttribs:
7 * rc_id id of the row in the recentchanges table
8 * rc_timestamp time the entry was made
9 * rc_cur_time timestamp on the cur row
10 * rc_namespace namespace #
11 * rc_title non-prefixed db key
12 * rc_type is new entry, used to determine whether updating is necessary
13 * rc_minor is minor
14 * rc_cur_id page_id of associated page entry
15 * rc_user user id who made the entry
16 * rc_user_text user name who made the entry
17 * rc_comment edit summary
18 * rc_this_oldid rev_id associated with this entry (or zero)
19 * rc_last_oldid rev_id associated with the entry before this one (or zero)
20 * rc_bot is bot, hidden
21 * rc_ip IP address of the user in dotted quad notation
22 * rc_new obsolete, use rc_type==RC_NEW
23 * rc_patrolled boolean whether or not someone has marked this edit as patrolled
24 * rc_old_len integer byte length of the text before the edit
25 * rc_new_len the same after the edit
26 * rc_deleted partial deletion
27 * rc_logid the log_id value for this log entry (or zero)
28 * rc_log_type the log type (or null)
29 * rc_log_action the log action (or null)
30 * rc_params log params
31 *
32 * mExtra:
33 * prefixedDBkey prefixed db key, used by external app via msg queue
34 * lastTimestamp timestamp of previous entry, used in WHERE clause during update
35 * lang the interwiki prefix, automatically set in save()
36 * oldSize text size before the change
37 * newSize text size after the change
38 *
39 * temporary: not stored in the database
40 * notificationtimestamp
41 * numberofWatchingusers
42 *
43 * @todo document functions and variables
44 */
45 class RecentChange {
46 var $mAttribs = array(), $mExtra = array();
47
48 /**
49 * @var Title
50 */
51 var $mTitle = false;
52
53 /**
54 * @var Title
55 */
56 var $mMovedToTitle = false;
57 var $numberofWatchingusers = 0 ; # Dummy to prevent error message in SpecialRecentchangeslinked
58
59 # Factory methods
60
61 public static function newFromRow( $row ) {
62 $rc = new RecentChange;
63 $rc->loadFromRow( $row );
64 return $rc;
65 }
66
67 public static function newFromCurRow( $row ) {
68 $rc = new RecentChange;
69 $rc->loadFromCurRow( $row );
70 $rc->notificationtimestamp = false;
71 $rc->numberofWatchingusers = false;
72 return $rc;
73 }
74
75 /**
76 * Obtain the recent change with a given rc_id value
77 *
78 * @param $rcid Int rc_id value to retrieve
79 * @return RecentChange
80 */
81 public static function newFromId( $rcid ) {
82 $dbr = wfGetDB( DB_SLAVE );
83 $res = $dbr->select( 'recentchanges', '*', array( 'rc_id' => $rcid ), __METHOD__ );
84 if( $res && $dbr->numRows( $res ) > 0 ) {
85 $row = $dbr->fetchObject( $res );
86 return self::newFromRow( $row );
87 } else {
88 return null;
89 }
90 }
91
92 /**
93 * Find the first recent change matching some specific conditions
94 *
95 * @param $conds Array of conditions
96 * @param $fname Mixed: override the method name in profiling/logs
97 * @return RecentChange
98 */
99 public static function newFromConds( $conds, $fname = false ) {
100 if( $fname === false )
101 $fname = __METHOD__;
102 $dbr = wfGetDB( DB_SLAVE );
103 $res = $dbr->select(
104 'recentchanges',
105 '*',
106 $conds,
107 $fname
108 );
109 if( $res instanceof ResultWrapper && $res->numRows() > 0 ) {
110 $row = $res->fetchObject();
111 $res->free();
112 return self::newFromRow( $row );
113 }
114 return null;
115 }
116
117 # Accessors
118
119 public function setAttribs( $attribs ) {
120 $this->mAttribs = $attribs;
121 }
122
123 public function setExtra( $extra ) {
124 $this->mExtra = $extra;
125 }
126
127 /**
128 *
129 * @return Title
130 */
131 public function &getTitle() {
132 if( $this->mTitle === false ) {
133 $this->mTitle = Title::makeTitle( $this->mAttribs['rc_namespace'], $this->mAttribs['rc_title'] );
134 # Make sure the correct page ID is process cached
135 $this->mTitle->resetArticleID( $this->mAttribs['rc_cur_id'] );
136 }
137 return $this->mTitle;
138 }
139
140 public function getMovedToTitle() {
141 if( $this->mMovedToTitle === false ) {
142 $this->mMovedToTitle = Title::makeTitle( $this->mAttribs['rc_moved_to_ns'],
143 $this->mAttribs['rc_moved_to_title'] );
144 }
145 return $this->mMovedToTitle;
146 }
147
148 # Writes the data in this object to the database
149 public function save() {
150 global $wgLocalInterwiki, $wgPutIPinRC, $wgRC2UDPAddress, $wgRC2UDPOmitBots;
151 $fname = 'RecentChange::save';
152
153 $dbw = wfGetDB( DB_MASTER );
154 if( !is_array($this->mExtra) ) {
155 $this->mExtra = array();
156 }
157 $this->mExtra['lang'] = $wgLocalInterwiki;
158
159 if( !$wgPutIPinRC ) {
160 $this->mAttribs['rc_ip'] = '';
161 }
162
163 # If our database is strict about IP addresses, use NULL instead of an empty string
164 if( $dbw->strictIPs() and $this->mAttribs['rc_ip'] == '' ) {
165 unset( $this->mAttribs['rc_ip'] );
166 }
167
168 # Fixup database timestamps
169 $this->mAttribs['rc_timestamp'] = $dbw->timestamp($this->mAttribs['rc_timestamp']);
170 $this->mAttribs['rc_cur_time'] = $dbw->timestamp($this->mAttribs['rc_cur_time']);
171 $this->mAttribs['rc_id'] = $dbw->nextSequenceValue( 'recentchanges_rc_id_seq' );
172
173 ## If we are using foreign keys, an entry of 0 for the page_id will fail, so use NULL
174 if( $dbw->cascadingDeletes() and $this->mAttribs['rc_cur_id']==0 ) {
175 unset( $this->mAttribs['rc_cur_id'] );
176 }
177
178 # Insert new row
179 $dbw->insert( 'recentchanges', $this->mAttribs, $fname );
180
181 # Set the ID
182 $this->mAttribs['rc_id'] = $dbw->insertId();
183
184 # Notify extensions
185 wfRunHooks( 'RecentChange_save', array( &$this ) );
186
187 # Notify external application via UDP
188 if( $wgRC2UDPAddress && ( !$this->mAttribs['rc_bot'] || !$wgRC2UDPOmitBots ) ) {
189 self::sendToUDP( $this->getIRCLine() );
190 }
191
192 # E-mail notifications
193 global $wgUseEnotif, $wgShowUpdatedMarker, $wgUser;
194 if( $wgUseEnotif || $wgShowUpdatedMarker ) {
195 // Users
196 if( $this->mAttribs['rc_user'] ) {
197 $editor = ($wgUser->getId() == $this->mAttribs['rc_user']) ?
198 $wgUser : User::newFromID( $this->mAttribs['rc_user'] );
199 // Anons
200 } else {
201 $editor = ($wgUser->getName() == $this->mAttribs['rc_user_text']) ?
202 $wgUser : User::newFromName( $this->mAttribs['rc_user_text'], false );
203 }
204 # @todo FIXME: This would be better as an extension hook
205 $enotif = new EmailNotification();
206 $title = Title::makeTitle( $this->mAttribs['rc_namespace'], $this->mAttribs['rc_title'] );
207 $enotif->notifyOnPageChange( $editor, $title,
208 $this->mAttribs['rc_timestamp'],
209 $this->mAttribs['rc_comment'],
210 $this->mAttribs['rc_minor'],
211 $this->mAttribs['rc_last_oldid'] );
212 }
213 }
214
215 public function notifyRC2UDP() {
216 global $wgRC2UDPAddress, $wgRC2UDPOmitBots;
217 # Notify external application via UDP
218 if( $wgRC2UDPAddress && ( !$this->mAttribs['rc_bot'] || !$wgRC2UDPOmitBots ) ) {
219 self::sendToUDP( $this->getIRCLine() );
220 }
221 }
222
223 /**
224 * Send some text to UDP.
225 * @see RecentChange::cleanupForIRC
226 * @param $line String: text to send
227 * @param $address String: defaults to $wgRC2UDPAddress.
228 * @param $prefix String: defaults to $wgRC2UDPPrefix.
229 * @param $port Int: defaults to $wgRC2UDPPort. (Since 1.17)
230 * @return Boolean: success
231 */
232 public static function sendToUDP( $line, $address = '', $prefix = '', $port = '' ) {
233 global $wgRC2UDPAddress, $wgRC2UDPPrefix, $wgRC2UDPPort;
234 # Assume default for standard RC case
235 $address = $address ? $address : $wgRC2UDPAddress;
236 $prefix = $prefix ? $prefix : $wgRC2UDPPrefix;
237 $port = $port ? $port : $wgRC2UDPPort;
238 # Notify external application via UDP
239 if( $address ) {
240 $conn = socket_create( AF_INET, SOCK_DGRAM, SOL_UDP );
241 if( $conn ) {
242 $line = $prefix . $line;
243 wfDebug( __METHOD__ . ": sending UDP line: $line\n" );
244 socket_sendto( $conn, $line, strlen($line), 0, $address, $port );
245 socket_close( $conn );
246 return true;
247 } else {
248 wfDebug( __METHOD__ . ": failed to create UDP socket\n" );
249 }
250 }
251 return false;
252 }
253
254 /**
255 * Remove newlines, carriage returns and decode html entites
256 * @param $text String
257 * @return String
258 */
259 public static function cleanupForIRC( $text ) {
260 return Sanitizer::decodeCharReferences( str_replace( array( "\n", "\r" ), array( "", "" ), $text ) );
261 }
262
263 /**
264 * Mark a given change as patrolled
265 *
266 * @param $change Mixed: RecentChange or corresponding rc_id
267 * @param $auto Boolean: for automatic patrol
268 * @return Array See doMarkPatrolled(), or null if $change is not an existing rc_id
269 */
270 public static function markPatrolled( $change, $auto = false ) {
271 global $wgUser;
272
273 $change = $change instanceof RecentChange
274 ? $change
275 : RecentChange::newFromId($change);
276
277 if( !$change instanceof RecentChange ) {
278 return null;
279 }
280 return $change->doMarkPatrolled( $wgUser, $auto );
281 }
282
283 /**
284 * Mark this RecentChange as patrolled
285 *
286 * NOTE: Can also return 'rcpatroldisabled', 'hookaborted' and 'markedaspatrollederror-noautopatrol' as errors
287 * @param $user User object doing the action
288 * @param $auto Boolean: for automatic patrol
289 * @return array of permissions errors, see Title::getUserPermissionsErrors()
290 */
291 public function doMarkPatrolled( User $user, $auto = false ) {
292 global $wgUseRCPatrol, $wgUseNPPatrol;
293 $errors = array();
294 // If recentchanges patrol is disabled, only new pages
295 // can be patrolled
296 if( !$wgUseRCPatrol && ( !$wgUseNPPatrol || $this->getAttribute('rc_type') != RC_NEW ) ) {
297 $errors[] = array('rcpatroldisabled');
298 }
299 // Automatic patrol needs "autopatrol", ordinary patrol needs "patrol"
300 $right = $auto ? 'autopatrol' : 'patrol';
301 $errors = array_merge( $errors, $this->getTitle()->getUserPermissionsErrors( $right, $user ) );
302 if( !wfRunHooks('MarkPatrolled', array($this->getAttribute('rc_id'), &$wgUser, false)) ) {
303 $errors[] = array('hookaborted');
304 }
305 // Users without the 'autopatrol' right can't patrol their
306 // own revisions
307 if( $user->getName() == $this->getAttribute('rc_user_text') && !$user->isAllowed('autopatrol') ) {
308 $errors[] = array('markedaspatrollederror-noautopatrol');
309 }
310 if( $errors ) {
311 return $errors;
312 }
313 // If the change was patrolled already, do nothing
314 if( $this->getAttribute('rc_patrolled') ) {
315 return array();
316 }
317 // Actually set the 'patrolled' flag in RC
318 $this->reallyMarkPatrolled();
319 // Log this patrol event
320 PatrolLog::record( $this, $auto );
321 wfRunHooks( 'MarkPatrolledComplete', array($this->getAttribute('rc_id'), &$user, false) );
322 return array();
323 }
324
325 /**
326 * Mark this RecentChange patrolled, without error checking
327 * @return Integer: number of affected rows
328 */
329 public function reallyMarkPatrolled() {
330 $dbw = wfGetDB( DB_MASTER );
331 $dbw->update(
332 'recentchanges',
333 array(
334 'rc_patrolled' => 1
335 ),
336 array(
337 'rc_id' => $this->getAttribute('rc_id')
338 ),
339 __METHOD__
340 );
341 return $dbw->affectedRows();
342 }
343
344 /**
345 * Makes an entry in the database corresponding to an edit
346 *
347 * @param $timestamp
348 * @param $title Title
349 * @param $minor
350 * @param $user User
351 * @param $comment
352 * @param $oldId
353 * @param $lastTimestamp
354 * @param $bot
355 * @param $ip string
356 * @param $oldSize int
357 * @param $newSize int
358 * @param $newId int
359 * @param $patrol int
360 * @return RecentChange
361 */
362 public static function notifyEdit( $timestamp, &$title, $minor, &$user, $comment, $oldId,
363 $lastTimestamp, $bot, $ip='', $oldSize=0, $newSize=0, $newId=0, $patrol=0 ) {
364 if( !$ip ) {
365 $ip = wfGetIP();
366 if( !$ip ) $ip = '';
367 }
368
369 $rc = new RecentChange;
370 $rc->mAttribs = array(
371 'rc_timestamp' => $timestamp,
372 'rc_cur_time' => $timestamp,
373 'rc_namespace' => $title->getNamespace(),
374 'rc_title' => $title->getDBkey(),
375 'rc_type' => RC_EDIT,
376 'rc_minor' => $minor ? 1 : 0,
377 'rc_cur_id' => $title->getArticleID(),
378 'rc_user' => $user->getId(),
379 'rc_user_text' => $user->getName(),
380 'rc_comment' => $comment,
381 'rc_this_oldid' => $newId,
382 'rc_last_oldid' => $oldId,
383 'rc_bot' => $bot ? 1 : 0,
384 'rc_moved_to_ns' => 0,
385 'rc_moved_to_title' => '',
386 'rc_ip' => $ip,
387 'rc_patrolled' => intval($patrol),
388 'rc_new' => 0, # obsolete
389 'rc_old_len' => $oldSize,
390 'rc_new_len' => $newSize,
391 'rc_deleted' => 0,
392 'rc_logid' => 0,
393 'rc_log_type' => null,
394 'rc_log_action' => '',
395 'rc_params' => ''
396 );
397
398 $rc->mExtra = array(
399 'prefixedDBkey' => $title->getPrefixedDBkey(),
400 'lastTimestamp' => $lastTimestamp,
401 'oldSize' => $oldSize,
402 'newSize' => $newSize,
403 );
404 $rc->save();
405 return $rc;
406 }
407
408 /**
409 * Makes an entry in the database corresponding to page creation
410 * Note: the title object must be loaded with the new id using resetArticleID()
411 * @todo Document parameters and return
412 *
413 * @param $timestamp
414 * @param $title Title
415 * @param $minor
416 * @param $user User
417 * @param $comment
418 * @param $bot
419 * @param $ip string
420 * @param $size int
421 * @param $newId int
422 * @param $patrol int
423 * @return RecentChange
424 */
425 public static function notifyNew( $timestamp, &$title, $minor, &$user, $comment, $bot,
426 $ip='', $size=0, $newId=0, $patrol=0 ) {
427 if( !$ip ) {
428 $ip = wfGetIP();
429 if( !$ip ) $ip = '';
430 }
431
432 $rc = new RecentChange;
433 $rc->mAttribs = array(
434 'rc_timestamp' => $timestamp,
435 'rc_cur_time' => $timestamp,
436 'rc_namespace' => $title->getNamespace(),
437 'rc_title' => $title->getDBkey(),
438 'rc_type' => RC_NEW,
439 'rc_minor' => $minor ? 1 : 0,
440 'rc_cur_id' => $title->getArticleID(),
441 'rc_user' => $user->getId(),
442 'rc_user_text' => $user->getName(),
443 'rc_comment' => $comment,
444 'rc_this_oldid' => $newId,
445 'rc_last_oldid' => 0,
446 'rc_bot' => $bot ? 1 : 0,
447 'rc_moved_to_ns' => 0,
448 'rc_moved_to_title' => '',
449 'rc_ip' => $ip,
450 'rc_patrolled' => intval($patrol),
451 'rc_new' => 1, # obsolete
452 'rc_old_len' => 0,
453 'rc_new_len' => $size,
454 'rc_deleted' => 0,
455 'rc_logid' => 0,
456 'rc_log_type' => null,
457 'rc_log_action' => '',
458 'rc_params' => ''
459 );
460
461 $rc->mExtra = array(
462 'prefixedDBkey' => $title->getPrefixedDBkey(),
463 'lastTimestamp' => 0,
464 'oldSize' => 0,
465 'newSize' => $size
466 );
467 $rc->save();
468 return $rc;
469 }
470
471 # Makes an entry in the database corresponding to a rename
472
473 /**
474 * @param $timestamp
475 * @param $oldTitle Title
476 * @param $newTitle Title
477 * @param $user User
478 * @param $comment
479 * @param $ip string
480 * @param $overRedir bool
481 * @return void
482 */
483 public static function notifyMove( $timestamp, &$oldTitle, &$newTitle, &$user, $comment, $ip='',
484 $overRedir = false ) {
485 global $wgRequest;
486 if( !$ip ) {
487 $ip = wfGetIP();
488 if( !$ip ) $ip = '';
489 }
490
491 $rc = new RecentChange;
492 $rc->mAttribs = array(
493 'rc_timestamp' => $timestamp,
494 'rc_cur_time' => $timestamp,
495 'rc_namespace' => $oldTitle->getNamespace(),
496 'rc_title' => $oldTitle->getDBkey(),
497 'rc_type' => $overRedir ? RC_MOVE_OVER_REDIRECT : RC_MOVE,
498 'rc_minor' => 0,
499 'rc_cur_id' => $oldTitle->getArticleID(),
500 'rc_user' => $user->getId(),
501 'rc_user_text' => $user->getName(),
502 'rc_comment' => $comment,
503 'rc_this_oldid' => 0,
504 'rc_last_oldid' => 0,
505 'rc_bot' => $user->isAllowed( 'bot' ) ? $wgRequest->getBool( 'bot' , true ) : 0,
506 'rc_moved_to_ns' => $newTitle->getNamespace(),
507 'rc_moved_to_title' => $newTitle->getDBkey(),
508 'rc_ip' => $ip,
509 'rc_new' => 0, # obsolete
510 'rc_patrolled' => 1,
511 'rc_old_len' => null,
512 'rc_new_len' => null,
513 'rc_deleted' => 0,
514 'rc_logid' => 0, # notifyMove not used anymore
515 'rc_log_type' => null,
516 'rc_log_action' => '',
517 'rc_params' => ''
518 );
519
520 $rc->mExtra = array(
521 'prefixedDBkey' => $oldTitle->getPrefixedDBkey(),
522 'lastTimestamp' => 0,
523 'prefixedMoveTo' => $newTitle->getPrefixedDBkey()
524 );
525 $rc->save();
526 }
527
528 public static function notifyMoveToNew( $timestamp, &$oldTitle, &$newTitle, &$user, $comment, $ip='' ) {
529 RecentChange::notifyMove( $timestamp, $oldTitle, $newTitle, $user, $comment, $ip, false );
530 }
531
532 public static function notifyMoveOverRedirect( $timestamp, &$oldTitle, &$newTitle, &$user, $comment, $ip='' ) {
533 RecentChange::notifyMove( $timestamp, $oldTitle, $newTitle, $user, $comment, $ip, true );
534 }
535
536 public static function notifyLog( $timestamp, &$title, &$user, $actionComment, $ip='', $type,
537 $action, $target, $logComment, $params, $newId=0 )
538 {
539 global $wgLogRestrictions;
540 # Don't add private logs to RC!
541 if( isset($wgLogRestrictions[$type]) && $wgLogRestrictions[$type] != '*' ) {
542 return false;
543 }
544 $rc = self::newLogEntry( $timestamp, $title, $user, $actionComment, $ip, $type, $action,
545 $target, $logComment, $params, $newId );
546 $rc->save();
547 return true;
548 }
549
550 /**
551 * @param $timestamp
552 * @param $title Title
553 * @param $user User
554 * @param $actionComment
555 * @param $ip string
556 * @param $type
557 * @param $action
558 * @param $target Title
559 * @param $logComment
560 * @param $params
561 * @param $newId int
562 * @return RecentChange
563 */
564 public static function newLogEntry( $timestamp, &$title, &$user, $actionComment, $ip='',
565 $type, $action, $target, $logComment, $params, $newId=0 ) {
566 global $wgRequest;
567 if( !$ip ) {
568 $ip = wfGetIP();
569 if( !$ip ) {
570 $ip = '';
571 }
572 }
573
574 $rc = new RecentChange;
575 $rc->mAttribs = array(
576 'rc_timestamp' => $timestamp,
577 'rc_cur_time' => $timestamp,
578 'rc_namespace' => $target->getNamespace(),
579 'rc_title' => $target->getDBkey(),
580 'rc_type' => RC_LOG,
581 'rc_minor' => 0,
582 'rc_cur_id' => $target->getArticleID(),
583 'rc_user' => $user->getId(),
584 'rc_user_text' => $user->getName(),
585 'rc_comment' => $logComment,
586 'rc_this_oldid' => 0,
587 'rc_last_oldid' => 0,
588 'rc_bot' => $user->isAllowed( 'bot' ) ? $wgRequest->getBool( 'bot', true ) : 0,
589 'rc_moved_to_ns' => 0,
590 'rc_moved_to_title' => '',
591 'rc_ip' => $ip,
592 'rc_patrolled' => 1,
593 'rc_new' => 0, # obsolete
594 'rc_old_len' => null,
595 'rc_new_len' => null,
596 'rc_deleted' => 0,
597 'rc_logid' => $newId,
598 'rc_log_type' => $type,
599 'rc_log_action' => $action,
600 'rc_params' => $params
601 );
602 $rc->mExtra = array(
603 'prefixedDBkey' => $title->getPrefixedDBkey(),
604 'lastTimestamp' => 0,
605 'actionComment' => $actionComment, // the comment appended to the action, passed from LogPage
606 );
607 return $rc;
608 }
609
610 # Initialises the members of this object from a mysql row object
611 public function loadFromRow( $row ) {
612 $this->mAttribs = get_object_vars( $row );
613 $this->mAttribs['rc_timestamp'] = wfTimestamp(TS_MW, $this->mAttribs['rc_timestamp']);
614 $this->mAttribs['rc_deleted'] = $row->rc_deleted; // MUST be set
615 }
616
617 # Makes a pseudo-RC entry from a cur row
618 public function loadFromCurRow( $row ) {
619 $this->mAttribs = array(
620 'rc_timestamp' => wfTimestamp(TS_MW, $row->rev_timestamp),
621 'rc_cur_time' => $row->rev_timestamp,
622 'rc_user' => $row->rev_user,
623 'rc_user_text' => $row->rev_user_text,
624 'rc_namespace' => $row->page_namespace,
625 'rc_title' => $row->page_title,
626 'rc_comment' => $row->rev_comment,
627 'rc_minor' => $row->rev_minor_edit ? 1 : 0,
628 'rc_type' => $row->page_is_new ? RC_NEW : RC_EDIT,
629 'rc_cur_id' => $row->page_id,
630 'rc_this_oldid' => $row->rev_id,
631 'rc_last_oldid' => isset($row->rc_last_oldid) ? $row->rc_last_oldid : 0,
632 'rc_bot' => 0,
633 'rc_moved_to_ns' => 0,
634 'rc_moved_to_title' => '',
635 'rc_ip' => '',
636 'rc_id' => $row->rc_id,
637 'rc_patrolled' => $row->rc_patrolled,
638 'rc_new' => $row->page_is_new, # obsolete
639 'rc_old_len' => $row->rc_old_len,
640 'rc_new_len' => $row->rc_new_len,
641 'rc_params' => isset($row->rc_params) ? $row->rc_params : '',
642 'rc_log_type' => isset($row->rc_log_type) ? $row->rc_log_type : null,
643 'rc_log_action' => isset($row->rc_log_action) ? $row->rc_log_action : null,
644 'rc_log_id' => isset($row->rc_log_id) ? $row->rc_log_id: 0,
645 'rc_deleted' => $row->rc_deleted // MUST be set
646 );
647 }
648
649 /**
650 * Get an attribute value
651 *
652 * @param $name String Attribute name
653 * @return mixed
654 */
655 public function getAttribute( $name ) {
656 return isset( $this->mAttribs[$name] ) ? $this->mAttribs[$name] : null;
657 }
658
659 public function getAttributes() {
660 return $this->mAttribs;
661 }
662
663 /**
664 * Gets the end part of the diff URL associated with this object
665 * Blank if no diff link should be displayed
666 */
667 public function diffLinkTrail( $forceCur ) {
668 if( $this->mAttribs['rc_type'] == RC_EDIT ) {
669 $trail = "curid=" . (int)($this->mAttribs['rc_cur_id']) .
670 "&oldid=" . (int)($this->mAttribs['rc_last_oldid']);
671 if( $forceCur ) {
672 $trail .= '&diff=0' ;
673 } else {
674 $trail .= '&diff=' . (int)($this->mAttribs['rc_this_oldid']);
675 }
676 } else {
677 $trail = '';
678 }
679 return $trail;
680 }
681
682 public function getIRCLine() {
683 global $wgUseRCPatrol, $wgUseNPPatrol, $wgRC2UDPInterwikiPrefix, $wgLocalInterwiki;
684
685 if( $this->mAttribs['rc_type'] == RC_LOG ) {
686 $titleObj = Title::newFromText( 'Log/' . $this->mAttribs['rc_log_type'], NS_SPECIAL );
687 } else {
688 $titleObj =& $this->getTitle();
689 }
690 $title = $titleObj->getPrefixedText();
691 $title = self::cleanupForIRC( $title );
692
693 if( $this->mAttribs['rc_type'] == RC_LOG ) {
694 $url = '';
695 } else {
696 if( $this->mAttribs['rc_type'] == RC_NEW ) {
697 $url = 'oldid=' . $this->mAttribs['rc_this_oldid'];
698 } else {
699 $url = 'diff=' . $this->mAttribs['rc_this_oldid'] . '&oldid=' . $this->mAttribs['rc_last_oldid'];
700 }
701 if ( $wgUseRCPatrol || ( $this->mAttribs['rc_type'] == RC_NEW && $wgUseNPPatrol ) ) {
702 $url .= '&rcid=' . $this->mAttribs['rc_id'];
703 }
704 // XXX: *HACK* this should use getFullURL(), hacked for SSL madness --brion 2005-12-26
705 // XXX: *HACK^2* the preg_replace() undoes much of what getInternalURL() does, but we
706 // XXX: need to call it so that URL paths on the Wikimedia secure server can be fixed
707 // XXX: by a custom GetInternalURL hook --vyznev 2008-12-10
708 $url = preg_replace( '/title=[^&]*&/', '', $titleObj->getInternalURL( $url ) );
709 }
710
711 if( isset( $this->mExtra['oldSize'] ) && isset( $this->mExtra['newSize'] ) ) {
712 $szdiff = $this->mExtra['newSize'] - $this->mExtra['oldSize'];
713 if($szdiff < -500) {
714 $szdiff = "\002$szdiff\002";
715 } elseif($szdiff >= 0) {
716 $szdiff = '+' . $szdiff ;
717 }
718 $szdiff = '(' . $szdiff . ')' ;
719 } else {
720 $szdiff = '';
721 }
722
723 $user = self::cleanupForIRC( $this->mAttribs['rc_user_text'] );
724
725 if ( $this->mAttribs['rc_type'] == RC_LOG ) {
726 $targetText = $this->getTitle()->getPrefixedText();
727 $comment = self::cleanupForIRC( str_replace( "[[$targetText]]", "[[\00302$targetText\00310]]", $this->mExtra['actionComment'] ) );
728 $flag = $this->mAttribs['rc_log_action'];
729 } else {
730 $comment = self::cleanupForIRC( $this->mAttribs['rc_comment'] );
731 $flag = '';
732 if ( !$this->mAttribs['rc_patrolled'] && ( $wgUseRCPatrol || $this->mAttribs['rc_new'] && $wgUseNPPatrol ) ) {
733 $flag .= '!';
734 }
735 $flag .= ( $this->mAttribs['rc_new'] ? "N" : "" ) . ( $this->mAttribs['rc_minor'] ? "M" : "" ) . ( $this->mAttribs['rc_bot'] ? "B" : "" );
736 }
737
738 if ( $wgRC2UDPInterwikiPrefix === true && $wgLocalInterwiki !== false ) {
739 $prefix = $wgLocalInterwiki;
740 } elseif ( $wgRC2UDPInterwikiPrefix ) {
741 $prefix = $wgRC2UDPInterwikiPrefix;
742 } else {
743 $prefix = false;
744 }
745 if ( $prefix !== false ) {
746 $titleString = "\00314[[\00303$prefix:\00307$title\00314]]";
747 } else {
748 $titleString = "\00314[[\00307$title\00314]]";
749 }
750
751 # see http://www.irssi.org/documentation/formats for some colour codes. prefix is \003,
752 # no colour (\003) switches back to the term default
753 $fullString = "$titleString\0034 $flag\00310 " .
754 "\00302$url\003 \0035*\003 \00303$user\003 \0035*\003 $szdiff \00310$comment\003\n";
755
756 return $fullString;
757 }
758
759 /**
760 * Returns the change size (HTML).
761 * The lengths can be given optionally.
762 */
763 public function getCharacterDifference( $old = 0, $new = 0 ) {
764 if( $old === 0 ) {
765 $old = $this->mAttribs['rc_old_len'];
766 }
767 if( $new === 0 ) {
768 $new = $this->mAttribs['rc_new_len'];
769 }
770 if( $old === null || $new === null ) {
771 return '';
772 }
773 return ChangesList::showCharacterDifference( $old, $new );
774 }
775 }