Merge "Use local context to get messages"
[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( 'oldimage', '*',
458 array(
459 'oi_name' => $this->title->getDBkey(),
460 'oi_archive_name' => $archiveNames
461 ),
462 __METHOD__,
463 array( 'ORDER BY' => 'oi_timestamp DESC' )
464 );
465 }
466
467 public function newItem( $row ) {
468 return new RevDel_FileItem( $this, $row );
469 }
470
471 public function clearFileOps() {
472 $this->deleteBatch = array();
473 $this->storeBatch = array();
474 $this->cleanupBatch = array();
475 }
476
477 public function doPreCommitUpdates() {
478 $status = Status::newGood();
479 $repo = RepoGroup::singleton()->getLocalRepo();
480 if ( $this->storeBatch ) {
481 $status->merge( $repo->storeBatch( $this->storeBatch, FileRepo::OVERWRITE_SAME ) );
482 }
483 if ( !$status->isOK() ) {
484 return $status;
485 }
486 if ( $this->deleteBatch ) {
487 $status->merge( $repo->deleteBatch( $this->deleteBatch ) );
488 }
489 if ( !$status->isOK() ) {
490 // Running cleanupDeletedBatch() after a failed storeBatch() with the DB already
491 // modified (but destined for rollback) causes data loss
492 return $status;
493 }
494 if ( $this->cleanupBatch ) {
495 $status->merge( $repo->cleanupDeletedBatch( $this->cleanupBatch ) );
496 }
497 return $status;
498 }
499
500 public function doPostCommitUpdates() {
501 $file = wfLocalFile( $this->title );
502 $file->purgeCache();
503 $file->purgeDescription();
504 return Status::newGood();
505 }
506
507 public function getSuppressBit() {
508 return File::DELETED_RESTRICTED;
509 }
510 }
511
512 /**
513 * Item class for an oldimage table row
514 */
515 class RevDel_FileItem extends RevDel_Item {
516
517 /**
518 * @var File
519 */
520 var $file;
521
522 public function __construct( $list, $row ) {
523 parent::__construct( $list, $row );
524 $this->file = RepoGroup::singleton()->getLocalRepo()->newFileFromRow( $row );
525 }
526
527 public function getIdField() {
528 return 'oi_archive_name';
529 }
530
531 public function getTimestampField() {
532 return 'oi_timestamp';
533 }
534
535 public function getAuthorIdField() {
536 return 'oi_user';
537 }
538
539 public function getAuthorNameField() {
540 return 'oi_user_text';
541 }
542
543 public function getId() {
544 $parts = explode( '!', $this->row->oi_archive_name );
545 return $parts[0];
546 }
547
548 public function canView() {
549 return $this->file->userCan( File::DELETED_RESTRICTED, $this->list->getUser() );
550 }
551
552 public function canViewContent() {
553 return $this->file->userCan( File::DELETED_FILE, $this->list->getUser() );
554 }
555
556 public function getBits() {
557 return $this->file->getVisibility();
558 }
559
560 public function setBits( $bits ) {
561 # Queue the file op
562 # @todo FIXME: Move to LocalFile.php
563 if ( $this->isDeleted() ) {
564 if ( $bits & File::DELETED_FILE ) {
565 # Still deleted
566 } else {
567 # Newly undeleted
568 $key = $this->file->getStorageKey();
569 $srcRel = $this->file->repo->getDeletedHashPath( $key ) . $key;
570 $this->list->storeBatch[] = array(
571 $this->file->repo->getVirtualUrl( 'deleted' ) . '/' . $srcRel,
572 'public',
573 $this->file->getRel()
574 );
575 $this->list->cleanupBatch[] = $key;
576 }
577 } elseif ( $bits & File::DELETED_FILE ) {
578 # Newly deleted
579 $key = $this->file->getStorageKey();
580 $dstRel = $this->file->repo->getDeletedHashPath( $key ) . $key;
581 $this->list->deleteBatch[] = array( $this->file->getRel(), $dstRel );
582 }
583
584 # Do the database operations
585 $dbw = wfGetDB( DB_MASTER );
586 $dbw->update( 'oldimage',
587 array( 'oi_deleted' => $bits ),
588 array(
589 'oi_name' => $this->row->oi_name,
590 'oi_timestamp' => $this->row->oi_timestamp,
591 'oi_deleted' => $this->getBits()
592 ),
593 __METHOD__
594 );
595 return (bool)$dbw->affectedRows();
596 }
597
598 public function isDeleted() {
599 return $this->file->isDeleted( File::DELETED_FILE );
600 }
601
602 /**
603 * Get the link to the file.
604 * Overridden by RevDel_ArchivedFileItem.
605 * @return string
606 */
607 protected function getLink() {
608 $date = htmlspecialchars( $this->list->getLanguage()->userTimeAndDate(
609 $this->file->getTimestamp(), $this->list->getUser() ) );
610
611 if ( !$this->isDeleted() ) {
612 # Regular files...
613 return Html::rawElement( 'a', array( 'href' => $this->file->getUrl() ), $date );
614 }
615
616 # Hidden files...
617 if ( !$this->canViewContent() ) {
618 $link = $date;
619 } else {
620 $link = Linker::link(
621 SpecialPage::getTitleFor( 'Revisiondelete' ),
622 $date,
623 array(),
624 array(
625 'target' => $this->list->title->getPrefixedText(),
626 'file' => $this->file->getArchiveName(),
627 'token' => $this->list->getUser()->getEditToken(
628 $this->file->getArchiveName() )
629 )
630 );
631 }
632 return '<span class="history-deleted">' . $link . '</span>';
633 }
634 /**
635 * Generate a user tool link cluster if the current user is allowed to view it
636 * @return string HTML
637 */
638 protected function getUserTools() {
639 if( $this->file->userCan( Revision::DELETED_USER, $this->list->getUser() ) ) {
640 $link = Linker::userLink( $this->file->user, $this->file->user_text ) .
641 Linker::userToolLinks( $this->file->user, $this->file->user_text );
642 } else {
643 $link = $this->list->msg( 'rev-deleted-user' )->escaped();
644 }
645 if( $this->file->isDeleted( Revision::DELETED_USER ) ) {
646 return '<span class="history-deleted">' . $link . '</span>';
647 }
648 return $link;
649 }
650
651 /**
652 * Wrap and format the file's comment block, if the current
653 * user is allowed to view it.
654 *
655 * @return string HTML
656 */
657 protected function getComment() {
658 if( $this->file->userCan( File::DELETED_COMMENT, $this->list->getUser() ) ) {
659 $block = Linker::commentBlock( $this->file->description );
660 } else {
661 $block = ' ' . $this->list->msg( 'rev-deleted-comment' )->escaped();
662 }
663 if( $this->file->isDeleted( File::DELETED_COMMENT ) ) {
664 return "<span class=\"history-deleted\">$block</span>";
665 }
666 return $block;
667 }
668
669 public function getHTML() {
670 $data =
671 $this->list->msg( 'widthheight' )->numParams(
672 $this->file->getWidth(), $this->file->getHeight() )->text() .
673 ' (' . $this->list->msg( 'nbytes' )->numParams( $this->file->getSize() )->text() . ')';
674
675 return '<li>' . $this->getLink() . ' ' . $this->getUserTools() . ' ' .
676 $data . ' ' . $this->getComment(). '</li>';
677 }
678 }
679
680 /**
681 * List for filearchive table items
682 */
683 class RevDel_ArchivedFileList extends RevDel_FileList {
684 public function getType() {
685 return 'filearchive';
686 }
687
688 public static function getRelationType() {
689 return 'fa_id';
690 }
691
692 /**
693 * @param $db DatabaseBase
694 * @return mixed
695 */
696 public function doQuery( $db ) {
697 $ids = array_map( 'intval', $this->ids );
698 return $db->select( 'filearchive', '*',
699 array(
700 'fa_name' => $this->title->getDBkey(),
701 'fa_id' => $ids
702 ),
703 __METHOD__,
704 array( 'ORDER BY' => 'fa_id DESC' )
705 );
706 }
707
708 public function newItem( $row ) {
709 return new RevDel_ArchivedFileItem( $this, $row );
710 }
711 }
712
713 /**
714 * Item class for a filearchive table row
715 */
716 class RevDel_ArchivedFileItem extends RevDel_FileItem {
717 public function __construct( $list, $row ) {
718 RevDel_Item::__construct( $list, $row );
719 $this->file = ArchivedFile::newFromRow( $row );
720 }
721
722 public function getIdField() {
723 return 'fa_id';
724 }
725
726 public function getTimestampField() {
727 return 'fa_timestamp';
728 }
729
730 public function getAuthorIdField() {
731 return 'fa_user';
732 }
733
734 public function getAuthorNameField() {
735 return 'fa_user_text';
736 }
737
738 public function getId() {
739 return $this->row->fa_id;
740 }
741
742 public function setBits( $bits ) {
743 $dbw = wfGetDB( DB_MASTER );
744 $dbw->update( 'filearchive',
745 array( 'fa_deleted' => $bits ),
746 array(
747 'fa_id' => $this->row->fa_id,
748 'fa_deleted' => $this->getBits(),
749 ),
750 __METHOD__
751 );
752 return (bool)$dbw->affectedRows();
753 }
754
755 protected function getLink() {
756 $date = htmlspecialchars( $this->list->getLanguage()->userTimeAndDate(
757 $this->file->getTimestamp(), $this->list->getUser() ) );
758
759 # Hidden files...
760 if( !$this->canViewContent() ) {
761 $link = $date;
762 } else {
763 $undelete = SpecialPage::getTitleFor( 'Undelete' );
764 $key = $this->file->getKey();
765 $link = Linker::link( $undelete, $date, array(),
766 array(
767 'target' => $this->list->title->getPrefixedText(),
768 'file' => $key,
769 'token' => $this->list->getUser()->getEditToken( $key )
770 )
771 );
772 }
773 if( $this->isDeleted() ) {
774 $link = '<span class="history-deleted">' . $link . '</span>';
775 }
776 return $link;
777 }
778 }
779
780 /**
781 * List for logging table items
782 */
783 class RevDel_LogList extends RevDel_List {
784 public function getType() {
785 return 'logging';
786 }
787
788 public static function getRelationType() {
789 return 'log_id';
790 }
791
792 /**
793 * @param $db DatabaseBase
794 * @return mixed
795 */
796 public function doQuery( $db ) {
797 $ids = array_map( 'intval', $this->ids );
798 return $db->select( 'logging', '*',
799 array( 'log_id' => $ids ),
800 __METHOD__,
801 array( 'ORDER BY' => 'log_id DESC' )
802 );
803 }
804
805 public function newItem( $row ) {
806 return new RevDel_LogItem( $this, $row );
807 }
808
809 public function getSuppressBit() {
810 return Revision::DELETED_RESTRICTED;
811 }
812
813 public function getLogAction() {
814 return 'event';
815 }
816
817 public function getLogParams( $params ) {
818 return array(
819 implode( ',', $params['ids'] ),
820 "ofield={$params['oldBits']}",
821 "nfield={$params['newBits']}"
822 );
823 }
824 }
825
826 /**
827 * Item class for a logging table row
828 */
829 class RevDel_LogItem extends RevDel_Item {
830 public function getIdField() {
831 return 'log_id';
832 }
833
834 public function getTimestampField() {
835 return 'log_timestamp';
836 }
837
838 public function getAuthorIdField() {
839 return 'log_user';
840 }
841
842 public function getAuthorNameField() {
843 return 'log_user_text';
844 }
845
846 public function canView() {
847 return LogEventsList::userCan( $this->row, Revision::DELETED_RESTRICTED, $this->list->getUser() );
848 }
849
850 public function canViewContent() {
851 return true; // none
852 }
853
854 public function getBits() {
855 return $this->row->log_deleted;
856 }
857
858 public function setBits( $bits ) {
859 $dbw = wfGetDB( DB_MASTER );
860 $dbw->update( 'recentchanges',
861 array(
862 'rc_deleted' => $bits,
863 'rc_patrolled' => 1
864 ),
865 array(
866 'rc_logid' => $this->row->log_id,
867 'rc_timestamp' => $this->row->log_timestamp // index
868 ),
869 __METHOD__
870 );
871 $dbw->update( 'logging',
872 array( 'log_deleted' => $bits ),
873 array(
874 'log_id' => $this->row->log_id,
875 'log_deleted' => $this->getBits()
876 ),
877 __METHOD__
878 );
879 return (bool)$dbw->affectedRows();
880 }
881
882 public function getHTML() {
883 $date = htmlspecialchars( $this->list->getLanguage()->userTimeAndDate(
884 $this->row->log_timestamp, $this->list->getUser() ) );
885 $title = Title::makeTitle( $this->row->log_namespace, $this->row->log_title );
886 $formatter = LogFormatter::newFromRow( $this->row );
887 $formatter->setContext( $this->list->getContext() );
888 $formatter->setAudience( LogFormatter::FOR_THIS_USER );
889
890 // Log link for this page
891 $loglink = Linker::link(
892 SpecialPage::getTitleFor( 'Log' ),
893 $this->list->msg( 'log' )->escaped(),
894 array(),
895 array( 'page' => $title->getPrefixedText() )
896 );
897 $loglink = $this->list->msg( 'parentheses' )->rawParams( $loglink )->escaped();
898 // User links and action text
899 $action = $formatter->getActionText();
900 // Comment
901 $comment = $this->list->getLanguage()->getDirMark() . Linker::commentBlock( $this->row->log_comment );
902 if( LogEventsList::isDeleted($this->row,LogPage::DELETED_COMMENT) ) {
903 $comment = '<span class="history-deleted">' . $comment . '</span>';
904 }
905
906 return "<li>$loglink $date $action $comment</li>";
907 }
908 }