d64201cfb11d3dcd01b712e350f805a03b86c6e1
[lhc/web/wiklou.git] / includes / revisiondelete / RevisionDelete.php
1 <?php
2 /**
3 * Base implementations for deletable items.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup RevisionDelete
22 */
23
24 /**
25 * List for revision table items
26 *
27 * This will check both the 'revision' table for live revisions and the
28 * 'archive' table for traditionally-deleted revisions that have an
29 * ar_rev_id saved.
30 *
31 * See RevDel_RevisionItem and RevDel_ArchivedRevisionItem for items.
32 */
33 class RevDel_RevisionList extends RevDel_List {
34 var $currentRevId;
35
36 public function getType() {
37 return 'revision';
38 }
39
40 public static function getRelationType() {
41 return 'rev_id';
42 }
43
44 /**
45 * @param $db DatabaseBase
46 * @return mixed
47 */
48 public function doQuery( $db ) {
49 $ids = array_map( 'intval', $this->ids );
50 $live = $db->select(
51 array( 'revision', 'page', 'user' ),
52 array_merge( Revision::selectFields(), Revision::selectUserFields() ),
53 array(
54 'rev_page' => $this->title->getArticleID(),
55 'rev_id' => $ids,
56 ),
57 __METHOD__,
58 array( 'ORDER BY' => 'rev_id DESC' ),
59 array(
60 'page' => Revision::pageJoinCond(),
61 'user' => Revision::userJoinCond() )
62 );
63
64 if ( $live->numRows() >= count( $ids ) ) {
65 // All requested revisions are live, keeps things simple!
66 return $live;
67 }
68
69 // Check if any requested revisions are available fully deleted.
70 $archived = $db->select( array( 'archive' ), '*',
71 array(
72 'ar_rev_id' => $ids
73 ),
74 __METHOD__,
75 array( 'ORDER BY' => 'ar_rev_id DESC' )
76 );
77
78 if ( $archived->numRows() == 0 ) {
79 return $live;
80 } elseif ( $live->numRows() == 0 ) {
81 return $archived;
82 } else {
83 // Combine the two! Whee
84 $rows = array();
85 foreach ( $live as $row ) {
86 $rows[$row->rev_id] = $row;
87 }
88 foreach ( $archived as $row ) {
89 $rows[$row->ar_rev_id] = $row;
90 }
91 krsort( $rows );
92 return new FakeResultWrapper( array_values( $rows ) );
93 }
94 }
95
96 public function newItem( $row ) {
97 if ( isset( $row->rev_id ) ) {
98 return new RevDel_RevisionItem( $this, $row );
99 } elseif ( isset( $row->ar_rev_id ) ) {
100 return new RevDel_ArchivedRevisionItem( $this, $row );
101 } else {
102 // This shouldn't happen. :)
103 throw new MWException( 'Invalid row type in RevDel_RevisionList' );
104 }
105 }
106
107 public function getCurrent() {
108 if ( is_null( $this->currentRevId ) ) {
109 $dbw = wfGetDB( DB_MASTER );
110 $this->currentRevId = $dbw->selectField(
111 'page', 'page_latest', $this->title->pageCond(), __METHOD__ );
112 }
113 return $this->currentRevId;
114 }
115
116 public function getSuppressBit() {
117 return Revision::DELETED_RESTRICTED;
118 }
119
120 public function doPreCommitUpdates() {
121 $this->title->invalidateCache();
122 return Status::newGood();
123 }
124
125 public function doPostCommitUpdates() {
126 $this->title->purgeSquid();
127 // Extensions that require referencing previous revisions may need this
128 wfRunHooks( 'ArticleRevisionVisibilitySet', array( &$this->title ) );
129 return Status::newGood();
130 }
131 }
132
133 /**
134 * Item class for a live revision table row
135 */
136 class RevDel_RevisionItem extends RevDel_Item {
137 var $revision;
138
139 public function __construct( $list, $row ) {
140 parent::__construct( $list, $row );
141 $this->revision = new Revision( $row );
142 }
143
144 public function getIdField() {
145 return 'rev_id';
146 }
147
148 public function getTimestampField() {
149 return 'rev_timestamp';
150 }
151
152 public function getAuthorIdField() {
153 return 'rev_user';
154 }
155
156 public function getAuthorNameField() {
157 return 'user_name'; // see Revision::selectUserFields()
158 }
159
160 public function canView() {
161 return $this->revision->userCan( Revision::DELETED_RESTRICTED, $this->list->getUser() );
162 }
163
164 public function canViewContent() {
165 return $this->revision->userCan( Revision::DELETED_TEXT, $this->list->getUser() );
166 }
167
168 public function getBits() {
169 return $this->revision->getVisibility();
170 }
171
172 public function setBits( $bits ) {
173 $dbw = wfGetDB( DB_MASTER );
174 // Update revision table
175 $dbw->update( 'revision',
176 array( 'rev_deleted' => $bits ),
177 array(
178 'rev_id' => $this->revision->getId(),
179 'rev_page' => $this->revision->getPage(),
180 'rev_deleted' => $this->getBits()
181 ),
182 __METHOD__
183 );
184 if ( !$dbw->affectedRows() ) {
185 // Concurrent fail!
186 return false;
187 }
188 // Update recentchanges table
189 $dbw->update( 'recentchanges',
190 array(
191 'rc_deleted' => $bits,
192 'rc_patrolled' => 1
193 ),
194 array(
195 'rc_this_oldid' => $this->revision->getId(), // condition
196 // non-unique timestamp index
197 'rc_timestamp' => $dbw->timestamp( $this->revision->getTimestamp() ),
198 ),
199 __METHOD__
200 );
201 return true;
202 }
203
204 public function isDeleted() {
205 return $this->revision->isDeleted( Revision::DELETED_TEXT );
206 }
207
208 public function isHideCurrentOp( $newBits ) {
209 return ( $newBits & Revision::DELETED_TEXT )
210 && $this->list->getCurrent() == $this->getId();
211 }
212
213 /**
214 * Get the HTML link to the revision text.
215 * Overridden by RevDel_ArchiveItem.
216 * @return string
217 */
218 protected function getRevisionLink() {
219 $date = htmlspecialchars( $this->list->getLanguage()->userTimeAndDate(
220 $this->revision->getTimestamp(), $this->list->getUser() ) );
221
222 if ( $this->isDeleted() && !$this->canViewContent() ) {
223 return $date;
224 }
225 return Linker::linkKnown(
226 $this->list->title,
227 $date,
228 array(),
229 array(
230 'oldid' => $this->revision->getId(),
231 'unhide' => 1
232 )
233 );
234 }
235
236 /**
237 * Get the HTML link to the diff.
238 * Overridden by RevDel_ArchiveItem
239 * @return string
240 */
241 protected function getDiffLink() {
242 if ( $this->isDeleted() && !$this->canViewContent() ) {
243 return $this->list->msg( 'diff' )->escaped();
244 } else {
245 return
246 Linker::linkKnown(
247 $this->list->title,
248 $this->list->msg( 'diff' )->escaped(),
249 array(),
250 array(
251 'diff' => $this->revision->getId(),
252 'oldid' => 'prev',
253 'unhide' => 1
254 )
255 );
256 }
257 }
258
259 public function getHTML() {
260 $difflink = $this->list->msg( 'parentheses' )
261 ->rawParams( $this->getDiffLink() )->escaped();
262 $revlink = $this->getRevisionLink();
263 $userlink = Linker::revUserLink( $this->revision );
264 $comment = Linker::revComment( $this->revision );
265 if ( $this->isDeleted() ) {
266 $revlink = "<span class=\"history-deleted\">$revlink</span>";
267 }
268 return "<li>$difflink $revlink $userlink $comment</li>";
269 }
270 }
271
272 /**
273 * List for archive table items, i.e. revisions deleted via action=delete
274 */
275 class RevDel_ArchiveList extends RevDel_RevisionList {
276 public function getType() {
277 return 'archive';
278 }
279
280 public static function getRelationType() {
281 return 'ar_timestamp';
282 }
283
284 /**
285 * @param $db DatabaseBase
286 * @return mixed
287 */
288 public function doQuery( $db ) {
289 $timestamps = array();
290 foreach ( $this->ids as $id ) {
291 $timestamps[] = $db->timestamp( $id );
292 }
293 return $db->select( 'archive', '*',
294 array(
295 'ar_namespace' => $this->title->getNamespace(),
296 'ar_title' => $this->title->getDBkey(),
297 'ar_timestamp' => $timestamps
298 ),
299 __METHOD__,
300 array( 'ORDER BY' => 'ar_timestamp DESC' )
301 );
302 }
303
304 public function newItem( $row ) {
305 return new RevDel_ArchiveItem( $this, $row );
306 }
307
308 public function doPreCommitUpdates() {
309 return Status::newGood();
310 }
311
312 public function doPostCommitUpdates() {
313 return Status::newGood();
314 }
315 }
316
317 /**
318 * Item class for a archive table row
319 */
320 class RevDel_ArchiveItem extends RevDel_RevisionItem {
321 public function __construct( $list, $row ) {
322 RevDel_Item::__construct( $list, $row );
323 $this->revision = Revision::newFromArchiveRow( $row,
324 array( 'page' => $this->list->title->getArticleID() ) );
325 }
326
327 public function getIdField() {
328 return 'ar_timestamp';
329 }
330
331 public function getTimestampField() {
332 return 'ar_timestamp';
333 }
334
335 public function getAuthorIdField() {
336 return 'ar_user';
337 }
338
339 public function getAuthorNameField() {
340 return 'ar_user_text';
341 }
342
343 public function getId() {
344 # Convert DB timestamp to MW timestamp
345 return $this->revision->getTimestamp();
346 }
347
348 public function setBits( $bits ) {
349 $dbw = wfGetDB( DB_MASTER );
350 $dbw->update( 'archive',
351 array( 'ar_deleted' => $bits ),
352 array(
353 'ar_namespace' => $this->list->title->getNamespace(),
354 'ar_title' => $this->list->title->getDBkey(),
355 // use timestamp for index
356 'ar_timestamp' => $this->row->ar_timestamp,
357 'ar_rev_id' => $this->row->ar_rev_id,
358 'ar_deleted' => $this->getBits()
359 ),
360 __METHOD__ );
361 return (bool)$dbw->affectedRows();
362 }
363
364 protected function getRevisionLink() {
365 $date = htmlspecialchars( $this->list->getLanguage()->userTimeAndDate(
366 $this->revision->getTimestamp(), $this->list->getUser() ) );
367
368 if ( $this->isDeleted() && !$this->canViewContent() ) {
369 return $date;
370 }
371
372 return Linker::link(
373 SpecialPage::getTitleFor( 'Undelete' ),
374 $date,
375 array(),
376 array(
377 'target' => $this->list->title->getPrefixedText(),
378 'timestamp' => $this->revision->getTimestamp()
379 )
380 );
381 }
382
383 protected function getDiffLink() {
384 if ( $this->isDeleted() && !$this->canViewContent() ) {
385 return $this->list->msg( 'diff' )->escaped();
386 }
387
388 return Linker::link(
389 SpecialPage::getTitleFor( 'Undelete' ),
390 $this->list->msg( 'diff' )->escaped(),
391 array(),
392 array(
393 'target' => $this->list->title->getPrefixedText(),
394 'diff' => 'prev',
395 'timestamp' => $this->revision->getTimestamp()
396 )
397 );
398 }
399 }
400
401
402 /**
403 * Item class for a archive table row by ar_rev_id -- actually
404 * used via RevDel_RevisionList.
405 */
406 class RevDel_ArchivedRevisionItem extends RevDel_ArchiveItem {
407 public function __construct( $list, $row ) {
408 RevDel_Item::__construct( $list, $row );
409
410 $this->revision = Revision::newFromArchiveRow( $row,
411 array( 'page' => $this->list->title->getArticleID() ) );
412 }
413
414 public function getIdField() {
415 return 'ar_rev_id';
416 }
417
418 public function getId() {
419 return $this->revision->getId();
420 }
421
422 public function setBits( $bits ) {
423 $dbw = wfGetDB( DB_MASTER );
424 $dbw->update( 'archive',
425 array( 'ar_deleted' => $bits ),
426 array( 'ar_rev_id' => $this->row->ar_rev_id,
427 'ar_deleted' => $this->getBits()
428 ),
429 __METHOD__ );
430 return (bool)$dbw->affectedRows();
431 }
432 }
433
434 /**
435 * List for oldimage table items
436 */
437 class RevDel_FileList extends RevDel_List {
438 public function getType() {
439 return 'oldimage';
440 }
441
442 public static function getRelationType() {
443 return 'oi_archive_name';
444 }
445
446 var $storeBatch, $deleteBatch, $cleanupBatch;
447
448 /**
449 * @param $db DatabaseBase
450 * @return mixed
451 */
452 public function doQuery( $db ) {
453 $archiveNames = array();
454 foreach( $this->ids as $timestamp ) {
455 $archiveNames[] = $timestamp . '!' . $this->title->getDBkey();
456 }
457 return $db->select(
458 'oldimage',
459 OldLocalFile::selectFields(),
460 array(
461 'oi_name' => $this->title->getDBkey(),
462 'oi_archive_name' => $archiveNames
463 ),
464 __METHOD__,
465 array( 'ORDER BY' => 'oi_timestamp DESC' )
466 );
467 }
468
469 public function newItem( $row ) {
470 return new RevDel_FileItem( $this, $row );
471 }
472
473 public function clearFileOps() {
474 $this->deleteBatch = array();
475 $this->storeBatch = array();
476 $this->cleanupBatch = array();
477 }
478
479 public function doPreCommitUpdates() {
480 $status = Status::newGood();
481 $repo = RepoGroup::singleton()->getLocalRepo();
482 if ( $this->storeBatch ) {
483 $status->merge( $repo->storeBatch( $this->storeBatch, FileRepo::OVERWRITE_SAME ) );
484 }
485 if ( !$status->isOK() ) {
486 return $status;
487 }
488 if ( $this->deleteBatch ) {
489 $status->merge( $repo->deleteBatch( $this->deleteBatch ) );
490 }
491 if ( !$status->isOK() ) {
492 // Running cleanupDeletedBatch() after a failed storeBatch() with the DB already
493 // modified (but destined for rollback) causes data loss
494 return $status;
495 }
496 if ( $this->cleanupBatch ) {
497 $status->merge( $repo->cleanupDeletedBatch( $this->cleanupBatch ) );
498 }
499 return $status;
500 }
501
502 public function doPostCommitUpdates() {
503 $file = wfLocalFile( $this->title );
504 $file->purgeCache();
505 $file->purgeDescription();
506 return Status::newGood();
507 }
508
509 public function getSuppressBit() {
510 return File::DELETED_RESTRICTED;
511 }
512 }
513
514 /**
515 * Item class for an oldimage table row
516 */
517 class RevDel_FileItem extends RevDel_Item {
518
519 /**
520 * @var File
521 */
522 var $file;
523
524 public function __construct( $list, $row ) {
525 parent::__construct( $list, $row );
526 $this->file = RepoGroup::singleton()->getLocalRepo()->newFileFromRow( $row );
527 }
528
529 public function getIdField() {
530 return 'oi_archive_name';
531 }
532
533 public function getTimestampField() {
534 return 'oi_timestamp';
535 }
536
537 public function getAuthorIdField() {
538 return 'oi_user';
539 }
540
541 public function getAuthorNameField() {
542 return 'oi_user_text';
543 }
544
545 public function getId() {
546 $parts = explode( '!', $this->row->oi_archive_name );
547 return $parts[0];
548 }
549
550 public function canView() {
551 return $this->file->userCan( File::DELETED_RESTRICTED, $this->list->getUser() );
552 }
553
554 public function canViewContent() {
555 return $this->file->userCan( File::DELETED_FILE, $this->list->getUser() );
556 }
557
558 public function getBits() {
559 return $this->file->getVisibility();
560 }
561
562 public function setBits( $bits ) {
563 # Queue the file op
564 # @todo FIXME: Move to LocalFile.php
565 if ( $this->isDeleted() ) {
566 if ( $bits & File::DELETED_FILE ) {
567 # Still deleted
568 } else {
569 # Newly undeleted
570 $key = $this->file->getStorageKey();
571 $srcRel = $this->file->repo->getDeletedHashPath( $key ) . $key;
572 $this->list->storeBatch[] = array(
573 $this->file->repo->getVirtualUrl( 'deleted' ) . '/' . $srcRel,
574 'public',
575 $this->file->getRel()
576 );
577 $this->list->cleanupBatch[] = $key;
578 }
579 } elseif ( $bits & File::DELETED_FILE ) {
580 # Newly deleted
581 $key = $this->file->getStorageKey();
582 $dstRel = $this->file->repo->getDeletedHashPath( $key ) . $key;
583 $this->list->deleteBatch[] = array( $this->file->getRel(), $dstRel );
584 }
585
586 # Do the database operations
587 $dbw = wfGetDB( DB_MASTER );
588 $dbw->update( 'oldimage',
589 array( 'oi_deleted' => $bits ),
590 array(
591 'oi_name' => $this->row->oi_name,
592 'oi_timestamp' => $this->row->oi_timestamp,
593 'oi_deleted' => $this->getBits()
594 ),
595 __METHOD__
596 );
597 return (bool)$dbw->affectedRows();
598 }
599
600 public function isDeleted() {
601 return $this->file->isDeleted( File::DELETED_FILE );
602 }
603
604 /**
605 * Get the link to the file.
606 * Overridden by RevDel_ArchivedFileItem.
607 * @return string
608 */
609 protected function getLink() {
610 $date = htmlspecialchars( $this->list->getLanguage()->userTimeAndDate(
611 $this->file->getTimestamp(), $this->list->getUser() ) );
612
613 if ( !$this->isDeleted() ) {
614 # Regular files...
615 return Html::rawElement( 'a', array( 'href' => $this->file->getUrl() ), $date );
616 }
617
618 # Hidden files...
619 if ( !$this->canViewContent() ) {
620 $link = $date;
621 } else {
622 $link = Linker::link(
623 SpecialPage::getTitleFor( 'Revisiondelete' ),
624 $date,
625 array(),
626 array(
627 'target' => $this->list->title->getPrefixedText(),
628 'file' => $this->file->getArchiveName(),
629 'token' => $this->list->getUser()->getEditToken(
630 $this->file->getArchiveName() )
631 )
632 );
633 }
634 return '<span class="history-deleted">' . $link . '</span>';
635 }
636 /**
637 * Generate a user tool link cluster if the current user is allowed to view it
638 * @return string HTML
639 */
640 protected function getUserTools() {
641 if( $this->file->userCan( Revision::DELETED_USER, $this->list->getUser() ) ) {
642 $link = Linker::userLink( $this->file->user, $this->file->user_text ) .
643 Linker::userToolLinks( $this->file->user, $this->file->user_text );
644 } else {
645 $link = $this->list->msg( 'rev-deleted-user' )->escaped();
646 }
647 if( $this->file->isDeleted( Revision::DELETED_USER ) ) {
648 return '<span class="history-deleted">' . $link . '</span>';
649 }
650 return $link;
651 }
652
653 /**
654 * Wrap and format the file's comment block, if the current
655 * user is allowed to view it.
656 *
657 * @return string HTML
658 */
659 protected function getComment() {
660 if( $this->file->userCan( File::DELETED_COMMENT, $this->list->getUser() ) ) {
661 $block = Linker::commentBlock( $this->file->description );
662 } else {
663 $block = ' ' . $this->list->msg( 'rev-deleted-comment' )->escaped();
664 }
665 if( $this->file->isDeleted( File::DELETED_COMMENT ) ) {
666 return "<span class=\"history-deleted\">$block</span>";
667 }
668 return $block;
669 }
670
671 public function getHTML() {
672 $data =
673 $this->list->msg( 'widthheight' )->numParams(
674 $this->file->getWidth(), $this->file->getHeight() )->text() .
675 ' (' . $this->list->msg( 'nbytes' )->numParams( $this->file->getSize() )->text() . ')';
676
677 return '<li>' . $this->getLink() . ' ' . $this->getUserTools() . ' ' .
678 $data . ' ' . $this->getComment(). '</li>';
679 }
680 }
681
682 /**
683 * List for filearchive table items
684 */
685 class RevDel_ArchivedFileList extends RevDel_FileList {
686 public function getType() {
687 return 'filearchive';
688 }
689
690 public static function getRelationType() {
691 return 'fa_id';
692 }
693
694 /**
695 * @param $db DatabaseBase
696 * @return mixed
697 */
698 public function doQuery( $db ) {
699 $ids = array_map( 'intval', $this->ids );
700 return $db->select(
701 'filearchive',
702 ArchivedFile::selectFields(),
703 array(
704 'fa_name' => $this->title->getDBkey(),
705 'fa_id' => $ids
706 ),
707 __METHOD__,
708 array( 'ORDER BY' => 'fa_id DESC' )
709 );
710 }
711
712 public function newItem( $row ) {
713 return new RevDel_ArchivedFileItem( $this, $row );
714 }
715 }
716
717 /**
718 * Item class for a filearchive table row
719 */
720 class RevDel_ArchivedFileItem extends RevDel_FileItem {
721 public function __construct( $list, $row ) {
722 RevDel_Item::__construct( $list, $row );
723 $this->file = ArchivedFile::newFromRow( $row );
724 }
725
726 public function getIdField() {
727 return 'fa_id';
728 }
729
730 public function getTimestampField() {
731 return 'fa_timestamp';
732 }
733
734 public function getAuthorIdField() {
735 return 'fa_user';
736 }
737
738 public function getAuthorNameField() {
739 return 'fa_user_text';
740 }
741
742 public function getId() {
743 return $this->row->fa_id;
744 }
745
746 public function setBits( $bits ) {
747 $dbw = wfGetDB( DB_MASTER );
748 $dbw->update( 'filearchive',
749 array( 'fa_deleted' => $bits ),
750 array(
751 'fa_id' => $this->row->fa_id,
752 'fa_deleted' => $this->getBits(),
753 ),
754 __METHOD__
755 );
756 return (bool)$dbw->affectedRows();
757 }
758
759 protected function getLink() {
760 $date = htmlspecialchars( $this->list->getLanguage()->userTimeAndDate(
761 $this->file->getTimestamp(), $this->list->getUser() ) );
762
763 # Hidden files...
764 if( !$this->canViewContent() ) {
765 $link = $date;
766 } else {
767 $undelete = SpecialPage::getTitleFor( 'Undelete' );
768 $key = $this->file->getKey();
769 $link = Linker::link( $undelete, $date, array(),
770 array(
771 'target' => $this->list->title->getPrefixedText(),
772 'file' => $key,
773 'token' => $this->list->getUser()->getEditToken( $key )
774 )
775 );
776 }
777 if( $this->isDeleted() ) {
778 $link = '<span class="history-deleted">' . $link . '</span>';
779 }
780 return $link;
781 }
782 }
783
784 /**
785 * List for logging table items
786 */
787 class RevDel_LogList extends RevDel_List {
788 public function getType() {
789 return 'logging';
790 }
791
792 public static function getRelationType() {
793 return 'log_id';
794 }
795
796 /**
797 * @param $db DatabaseBase
798 * @return mixed
799 */
800 public function doQuery( $db ) {
801 $ids = array_map( 'intval', $this->ids );
802 return $db->select( 'logging', '*',
803 array( 'log_id' => $ids ),
804 __METHOD__,
805 array( 'ORDER BY' => 'log_id DESC' )
806 );
807 }
808
809 public function newItem( $row ) {
810 return new RevDel_LogItem( $this, $row );
811 }
812
813 public function getSuppressBit() {
814 return Revision::DELETED_RESTRICTED;
815 }
816
817 public function getLogAction() {
818 return 'event';
819 }
820
821 public function getLogParams( $params ) {
822 return array(
823 implode( ',', $params['ids'] ),
824 "ofield={$params['oldBits']}",
825 "nfield={$params['newBits']}"
826 );
827 }
828 }
829
830 /**
831 * Item class for a logging table row
832 */
833 class RevDel_LogItem extends RevDel_Item {
834 public function getIdField() {
835 return 'log_id';
836 }
837
838 public function getTimestampField() {
839 return 'log_timestamp';
840 }
841
842 public function getAuthorIdField() {
843 return 'log_user';
844 }
845
846 public function getAuthorNameField() {
847 return 'log_user_text';
848 }
849
850 public function canView() {
851 return LogEventsList::userCan( $this->row, Revision::DELETED_RESTRICTED, $this->list->getUser() );
852 }
853
854 public function canViewContent() {
855 return true; // none
856 }
857
858 public function getBits() {
859 return $this->row->log_deleted;
860 }
861
862 public function setBits( $bits ) {
863 $dbw = wfGetDB( DB_MASTER );
864 $dbw->update( 'recentchanges',
865 array(
866 'rc_deleted' => $bits,
867 'rc_patrolled' => 1
868 ),
869 array(
870 'rc_logid' => $this->row->log_id,
871 'rc_timestamp' => $this->row->log_timestamp // index
872 ),
873 __METHOD__
874 );
875 $dbw->update( 'logging',
876 array( 'log_deleted' => $bits ),
877 array(
878 'log_id' => $this->row->log_id,
879 'log_deleted' => $this->getBits()
880 ),
881 __METHOD__
882 );
883 return (bool)$dbw->affectedRows();
884 }
885
886 public function getHTML() {
887 $date = htmlspecialchars( $this->list->getLanguage()->userTimeAndDate(
888 $this->row->log_timestamp, $this->list->getUser() ) );
889 $title = Title::makeTitle( $this->row->log_namespace, $this->row->log_title );
890 $formatter = LogFormatter::newFromRow( $this->row );
891 $formatter->setContext( $this->list->getContext() );
892 $formatter->setAudience( LogFormatter::FOR_THIS_USER );
893
894 // Log link for this page
895 $loglink = Linker::link(
896 SpecialPage::getTitleFor( 'Log' ),
897 $this->list->msg( 'log' )->escaped(),
898 array(),
899 array( 'page' => $title->getPrefixedText() )
900 );
901 $loglink = $this->list->msg( 'parentheses' )->rawParams( $loglink )->escaped();
902 // User links and action text
903 $action = $formatter->getActionText();
904 // Comment
905 $comment = $this->list->getLanguage()->getDirMark() . Linker::commentBlock( $this->row->log_comment );
906 if( LogEventsList::isDeleted( $this->row, LogPage::DELETED_COMMENT ) ) {
907 $comment = '<span class="history-deleted">' . $comment . '</span>';
908 }
909
910 return "<li>$loglink $date $action $comment</li>";
911 }
912 }