* Removed getSelectOptions, which did nothing other than send FOR UPDATE on some...
[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 # 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 $change = $change instanceof RecentChange
272 ? $change
273 : RecentChange::newFromId($change);
274 if( !$change instanceof RecentChange ) {
275 return null;
276 }
277 return $change->doMarkPatrolled( $auto );
278 }
279
280 /**
281 * Mark this RecentChange as patrolled
282 *
283 * NOTE: Can also return 'rcpatroldisabled', 'hookaborted' and 'markedaspatrollederror-noautopatrol' as errors
284 * @param $auto Boolean: for automatic patrol
285 * @return array of permissions errors, see Title::getUserPermissionsErrors()
286 */
287 public function doMarkPatrolled( $auto = false ) {
288 global $wgUser, $wgUseRCPatrol, $wgUseNPPatrol;
289 $errors = array();
290 // If recentchanges patrol is disabled, only new pages
291 // can be patrolled
292 if( !$wgUseRCPatrol && ( !$wgUseNPPatrol || $this->getAttribute('rc_type') != RC_NEW ) ) {
293 $errors[] = array('rcpatroldisabled');
294 }
295 // Automatic patrol needs "autopatrol", ordinary patrol needs "patrol"
296 $right = $auto ? 'autopatrol' : 'patrol';
297 $errors = array_merge( $errors, $this->getTitle()->getUserPermissionsErrors( $right, $wgUser ) );
298 if( !wfRunHooks('MarkPatrolled', array($this->getAttribute('rc_id'), &$wgUser, false)) ) {
299 $errors[] = array('hookaborted');
300 }
301 // Users without the 'autopatrol' right can't patrol their
302 // own revisions
303 if( $wgUser->getName() == $this->getAttribute('rc_user_text') && !$wgUser->isAllowed('autopatrol') ) {
304 $errors[] = array('markedaspatrollederror-noautopatrol');
305 }
306 if( $errors ) {
307 return $errors;
308 }
309 // If the change was patrolled already, do nothing
310 if( $this->getAttribute('rc_patrolled') ) {
311 return array();
312 }
313 // Actually set the 'patrolled' flag in RC
314 $this->reallyMarkPatrolled();
315 // Log this patrol event
316 PatrolLog::record( $this, $auto );
317 wfRunHooks( 'MarkPatrolledComplete', array($this->getAttribute('rc_id'), &$wgUser, false) );
318 return array();
319 }
320
321 /**
322 * Mark this RecentChange patrolled, without error checking
323 * @return Integer: number of affected rows
324 */
325 public function reallyMarkPatrolled() {
326 $dbw = wfGetDB( DB_MASTER );
327 $dbw->update(
328 'recentchanges',
329 array(
330 'rc_patrolled' => 1
331 ),
332 array(
333 'rc_id' => $this->getAttribute('rc_id')
334 ),
335 __METHOD__
336 );
337 return $dbw->affectedRows();
338 }
339
340 /**
341 * Makes an entry in the database corresponding to an edit
342 *
343 * @static
344 * @param $timestamp
345 * @param $title Title
346 * @param $minor
347 * @param $user User
348 * @param $comment
349 * @param $oldId
350 * @param $lastTimestamp
351 * @param $bot
352 * @param $ip string
353 * @param $oldSize int
354 * @param $newSize int
355 * @param $newId int
356 * @param $patrol int
357 * @return RecentChange
358 */
359 public static function notifyEdit( $timestamp, &$title, $minor, &$user, $comment, $oldId,
360 $lastTimestamp, $bot, $ip='', $oldSize=0, $newSize=0, $newId=0, $patrol=0 ) {
361 if( !$ip ) {
362 $ip = wfGetIP();
363 if( !$ip ) $ip = '';
364 }
365
366 $rc = new RecentChange;
367 $rc->mAttribs = array(
368 'rc_timestamp' => $timestamp,
369 'rc_cur_time' => $timestamp,
370 'rc_namespace' => $title->getNamespace(),
371 'rc_title' => $title->getDBkey(),
372 'rc_type' => RC_EDIT,
373 'rc_minor' => $minor ? 1 : 0,
374 'rc_cur_id' => $title->getArticleID(),
375 'rc_user' => $user->getId(),
376 'rc_user_text' => $user->getName(),
377 'rc_comment' => $comment,
378 'rc_this_oldid' => $newId,
379 'rc_last_oldid' => $oldId,
380 'rc_bot' => $bot ? 1 : 0,
381 'rc_moved_to_ns' => 0,
382 'rc_moved_to_title' => '',
383 'rc_ip' => $ip,
384 'rc_patrolled' => intval($patrol),
385 'rc_new' => 0, # obsolete
386 'rc_old_len' => $oldSize,
387 'rc_new_len' => $newSize,
388 'rc_deleted' => 0,
389 'rc_logid' => 0,
390 'rc_log_type' => null,
391 'rc_log_action' => '',
392 'rc_params' => ''
393 );
394
395 $rc->mExtra = array(
396 'prefixedDBkey' => $title->getPrefixedDBkey(),
397 'lastTimestamp' => $lastTimestamp,
398 'oldSize' => $oldSize,
399 'newSize' => $newSize,
400 );
401 $rc->save();
402 return $rc;
403 }
404
405 /**
406 * Makes an entry in the database corresponding to page creation
407 * Note: the title object must be loaded with the new id using resetArticleID()
408 * @todo Document parameters and return
409 *
410 * @static
411 * @param $timestamp
412 * @param $title Title
413 * @param $minor
414 * @param $user User
415 * @param $comment
416 * @param $bot
417 * @param $ip string
418 * @param $size int
419 * @param $newId int
420 * @param $patrol int
421 * @return RecentChange
422 */
423 public static function notifyNew( $timestamp, &$title, $minor, &$user, $comment, $bot,
424 $ip='', $size=0, $newId=0, $patrol=0 ) {
425 if( !$ip ) {
426 $ip = wfGetIP();
427 if( !$ip ) $ip = '';
428 }
429
430 $rc = new RecentChange;
431 $rc->mAttribs = array(
432 'rc_timestamp' => $timestamp,
433 'rc_cur_time' => $timestamp,
434 'rc_namespace' => $title->getNamespace(),
435 'rc_title' => $title->getDBkey(),
436 'rc_type' => RC_NEW,
437 'rc_minor' => $minor ? 1 : 0,
438 'rc_cur_id' => $title->getArticleID(),
439 'rc_user' => $user->getId(),
440 'rc_user_text' => $user->getName(),
441 'rc_comment' => $comment,
442 'rc_this_oldid' => $newId,
443 'rc_last_oldid' => 0,
444 'rc_bot' => $bot ? 1 : 0,
445 'rc_moved_to_ns' => 0,
446 'rc_moved_to_title' => '',
447 'rc_ip' => $ip,
448 'rc_patrolled' => intval($patrol),
449 'rc_new' => 1, # obsolete
450 'rc_old_len' => 0,
451 'rc_new_len' => $size,
452 'rc_deleted' => 0,
453 'rc_logid' => 0,
454 'rc_log_type' => null,
455 'rc_log_action' => '',
456 'rc_params' => ''
457 );
458
459 $rc->mExtra = array(
460 'prefixedDBkey' => $title->getPrefixedDBkey(),
461 'lastTimestamp' => 0,
462 'oldSize' => 0,
463 'newSize' => $size
464 );
465 $rc->save();
466 return $rc;
467 }
468
469 # Makes an entry in the database corresponding to a rename
470
471 /**
472 * @static
473 * @param $timestamp
474 * @param $oldTitle Title
475 * @param $newTitle Title
476 * @param $user User
477 * @param $comment
478 * @param $ip string
479 * @param $overRedir bool
480 * @return void
481 */
482 public static function notifyMove( $timestamp, &$oldTitle, &$newTitle, &$user, $comment, $ip='',
483 $overRedir = false ) {
484 global $wgRequest;
485 if( !$ip ) {
486 $ip = wfGetIP();
487 if( !$ip ) $ip = '';
488 }
489
490 $rc = new RecentChange;
491 $rc->mAttribs = array(
492 'rc_timestamp' => $timestamp,
493 'rc_cur_time' => $timestamp,
494 'rc_namespace' => $oldTitle->getNamespace(),
495 'rc_title' => $oldTitle->getDBkey(),
496 'rc_type' => $overRedir ? RC_MOVE_OVER_REDIRECT : RC_MOVE,
497 'rc_minor' => 0,
498 'rc_cur_id' => $oldTitle->getArticleID(),
499 'rc_user' => $user->getId(),
500 'rc_user_text' => $user->getName(),
501 'rc_comment' => $comment,
502 'rc_this_oldid' => 0,
503 'rc_last_oldid' => 0,
504 'rc_bot' => $user->isAllowed( 'bot' ) ? $wgRequest->getBool( 'bot' , true ) : 0,
505 'rc_moved_to_ns' => $newTitle->getNamespace(),
506 'rc_moved_to_title' => $newTitle->getDBkey(),
507 'rc_ip' => $ip,
508 'rc_new' => 0, # obsolete
509 'rc_patrolled' => 1,
510 'rc_old_len' => null,
511 'rc_new_len' => null,
512 'rc_deleted' => 0,
513 'rc_logid' => 0, # notifyMove not used anymore
514 'rc_log_type' => null,
515 'rc_log_action' => '',
516 'rc_params' => ''
517 );
518
519 $rc->mExtra = array(
520 'prefixedDBkey' => $oldTitle->getPrefixedDBkey(),
521 'lastTimestamp' => 0,
522 'prefixedMoveTo' => $newTitle->getPrefixedDBkey()
523 );
524 $rc->save();
525 }
526
527 public static function notifyMoveToNew( $timestamp, &$oldTitle, &$newTitle, &$user, $comment, $ip='' ) {
528 RecentChange::notifyMove( $timestamp, $oldTitle, $newTitle, $user, $comment, $ip, false );
529 }
530
531 public static function notifyMoveOverRedirect( $timestamp, &$oldTitle, &$newTitle, &$user, $comment, $ip='' ) {
532 RecentChange::notifyMove( $timestamp, $oldTitle, $newTitle, $user, $comment, $ip, true );
533 }
534
535 public static function notifyLog( $timestamp, &$title, &$user, $actionComment, $ip='', $type,
536 $action, $target, $logComment, $params, $newId=0 )
537 {
538 global $wgLogRestrictions;
539 # Don't add private logs to RC!
540 if( isset($wgLogRestrictions[$type]) && $wgLogRestrictions[$type] != '*' ) {
541 return false;
542 }
543 $rc = self::newLogEntry( $timestamp, $title, $user, $actionComment, $ip, $type, $action,
544 $target, $logComment, $params, $newId );
545 $rc->save();
546 return true;
547 }
548
549 /**
550 * @static
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 }