revisionRecord = static::initRevisionRecord( $list, $row ); } /** * Create revision object from $row sourced from $list * * @param RevisionListBase $list * @param mixed $row * @return RevisionRecord */ protected static function initRevisionRecord( $list, $row ) { return MediaWikiServices::getInstance() ->getRevisionFactory() ->newRevisionFromRow( $row ); } /** * Get the RevisionRecord for the item * * @return RevisionRecord */ protected function getRevisionRecord() : RevisionRecord { return $this->revisionRecord; } public function getIdField() { return 'rev_id'; } public function getTimestampField() { return 'rev_timestamp'; } public function getAuthorIdField() { return 'rev_user'; } public function getAuthorNameField() { return 'rev_user_text'; } public function getAuthorActorField() { return 'rev_actor'; } public function canView() { return RevisionRecord::userCanBitfield( $this->getRevisionRecord()->getVisibility(), RevisionRecord::DELETED_RESTRICTED, $this->list->getUser() ); } public function canViewContent() { return RevisionRecord::userCanBitfield( $this->getRevisionRecord()->getVisibility(), RevisionRecord::DELETED_TEXT, $this->list->getUser() ); } public function getBits() { return $this->getRevisionRecord()->getVisibility(); } public function setBits( $bits ) { $revRecord = $this->getRevisionRecord(); $dbw = wfGetDB( DB_MASTER ); // Update revision table $dbw->update( 'revision', [ 'rev_deleted' => $bits ], [ 'rev_id' => $revRecord->getId(), 'rev_page' => $revRecord->getPageId(), 'rev_deleted' => $this->getBits() // cas ], __METHOD__ ); if ( !$dbw->affectedRows() ) { // Concurrent fail! return false; } // Update recentchanges table $dbw->update( 'recentchanges', [ 'rc_deleted' => $bits, 'rc_patrolled' => RecentChange::PRC_AUTOPATROLLED ], [ 'rc_this_oldid' => $revRecord->getId(), // condition ], __METHOD__ ); return true; } public function isDeleted() { return $this->getRevisionRecord()->isDeleted( RevisionRecord::DELETED_TEXT ); } public function isHideCurrentOp( $newBits ) { return ( $newBits & RevisionRecord::DELETED_TEXT ) && $this->list->getCurrent() == $this->getId(); } /** * Get the HTML link to the revision text. * Overridden by RevDelArchiveItem. * @return string */ protected function getRevisionLink() { $date = $this->list->getLanguage()->userTimeAndDate( $this->getRevisionRecord()->getTimestamp(), $this->list->getUser() ); if ( $this->isDeleted() && !$this->canViewContent() ) { return htmlspecialchars( $date ); } return $this->getLinkRenderer()->makeKnownLink( $this->list->title, $date, [], [ 'oldid' => $this->getRevisionRecord()->getId(), 'unhide' => 1 ] ); } /** * Get the HTML link to the diff. * Overridden by RevDelArchiveItem * @return string */ protected function getDiffLink() { if ( $this->isDeleted() && !$this->canViewContent() ) { return $this->list->msg( 'diff' )->escaped(); } else { return $this->getLinkRenderer()->makeKnownLink( $this->list->title, $this->list->msg( 'diff' )->text(), [], [ 'diff' => $this->getRevisionRecord()->getId(), 'oldid' => 'prev', 'unhide' => 1 ] ); } } /** * @return string A HTML