2014-08-07 20:43:55 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
* @ingroup RevisionDelete
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Item class for a live revision table row
|
|
|
|
|
*/
|
|
|
|
|
class RevDelRevisionItem extends RevDelItem {
|
|
|
|
|
/** @var Revision */
|
2014-08-11 20:58:31 +00:00
|
|
|
public $revision;
|
2014-08-07 20:43:55 +00:00
|
|
|
|
|
|
|
|
public function __construct( $list, $row ) {
|
|
|
|
|
parent::__construct( $list, $row );
|
|
|
|
|
$this->revision = new Revision( $row );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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 canView() {
|
|
|
|
|
return $this->revision->userCan( Revision::DELETED_RESTRICTED, $this->list->getUser() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function canViewContent() {
|
|
|
|
|
return $this->revision->userCan( Revision::DELETED_TEXT, $this->list->getUser() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getBits() {
|
|
|
|
|
return $this->revision->getVisibility();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setBits( $bits ) {
|
|
|
|
|
$dbw = wfGetDB( DB_MASTER );
|
|
|
|
|
// Update revision table
|
2014-08-08 13:55:19 +00:00
|
|
|
$dbw->update( 'revision',
|
|
|
|
|
array( 'rev_deleted' => $bits ),
|
|
|
|
|
array(
|
|
|
|
|
'rev_id' => $this->revision->getId(),
|
|
|
|
|
'rev_page' => $this->revision->getPage(),
|
2015-05-22 23:39:05 +00:00
|
|
|
'rev_deleted' => $this->getBits() // cas
|
2014-08-08 13:55:19 +00:00
|
|
|
),
|
|
|
|
|
__METHOD__
|
|
|
|
|
);
|
2014-08-07 20:43:55 +00:00
|
|
|
if ( !$dbw->affectedRows() ) {
|
|
|
|
|
// Concurrent fail!
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
// Update recentchanges table
|
2014-08-08 13:55:19 +00:00
|
|
|
$dbw->update( 'recentchanges',
|
|
|
|
|
array(
|
|
|
|
|
'rc_deleted' => $bits,
|
|
|
|
|
'rc_patrolled' => 1
|
|
|
|
|
),
|
|
|
|
|
array(
|
|
|
|
|
'rc_this_oldid' => $this->revision->getId(), // condition
|
2014-08-07 20:43:55 +00:00
|
|
|
// non-unique timestamp index
|
2014-08-08 13:55:19 +00:00
|
|
|
'rc_timestamp' => $dbw->timestamp( $this->revision->getTimestamp() ),
|
|
|
|
|
),
|
|
|
|
|
__METHOD__
|
|
|
|
|
);
|
2014-08-07 20:43:55 +00:00
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function isDeleted() {
|
|
|
|
|
return $this->revision->isDeleted( Revision::DELETED_TEXT );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function isHideCurrentOp( $newBits ) {
|
2014-08-08 13:55:19 +00:00
|
|
|
return ( $newBits & Revision::DELETED_TEXT )
|
|
|
|
|
&& $this->list->getCurrent() == $this->getId();
|
2014-08-07 20:43:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the HTML link to the revision text.
|
|
|
|
|
* Overridden by RevDelArchiveItem.
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
protected function getRevisionLink() {
|
2014-08-08 13:55:19 +00:00
|
|
|
$date = htmlspecialchars( $this->list->getLanguage()->userTimeAndDate(
|
|
|
|
|
$this->revision->getTimestamp(), $this->list->getUser() ) );
|
2014-08-07 20:43:55 +00:00
|
|
|
|
|
|
|
|
if ( $this->isDeleted() && !$this->canViewContent() ) {
|
|
|
|
|
return $date;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-08 13:55:19 +00:00
|
|
|
return Linker::linkKnown(
|
|
|
|
|
$this->list->title,
|
|
|
|
|
$date,
|
|
|
|
|
array(),
|
|
|
|
|
array(
|
|
|
|
|
'oldid' => $this->revision->getId(),
|
|
|
|
|
'unhide' => 1
|
|
|
|
|
)
|
|
|
|
|
);
|
2014-08-07 20:43:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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 {
|
2014-08-08 13:55:19 +00:00
|
|
|
return Linker::linkKnown(
|
|
|
|
|
$this->list->title,
|
|
|
|
|
$this->list->msg( 'diff' )->escaped(),
|
|
|
|
|
array(),
|
|
|
|
|
array(
|
|
|
|
|
'diff' => $this->revision->getId(),
|
|
|
|
|
'oldid' => 'prev',
|
|
|
|
|
'unhide' => 1
|
|
|
|
|
)
|
|
|
|
|
);
|
2014-08-07 20:43:55 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-15 19:17:47 +00:00
|
|
|
/**
|
|
|
|
|
* @return string A HTML <li> element representing this revision, showing
|
|
|
|
|
* change tags and everything
|
|
|
|
|
*/
|
2014-08-07 20:43:55 +00:00
|
|
|
public function getHTML() {
|
|
|
|
|
$difflink = $this->list->msg( 'parentheses' )
|
|
|
|
|
->rawParams( $this->getDiffLink() )->escaped();
|
|
|
|
|
$revlink = $this->getRevisionLink();
|
|
|
|
|
$userlink = Linker::revUserLink( $this->revision );
|
|
|
|
|
$comment = Linker::revComment( $this->revision );
|
|
|
|
|
if ( $this->isDeleted() ) {
|
|
|
|
|
$revlink = "<span class=\"history-deleted\">$revlink</span>";
|
|
|
|
|
}
|
2015-12-15 19:17:47 +00:00
|
|
|
$content = "$difflink $revlink $userlink $comment";
|
|
|
|
|
$attribs = array();
|
|
|
|
|
$tags = $this->getTags();
|
|
|
|
|
if ( $tags ) {
|
|
|
|
|
list( $tagSummary, $classes ) = ChangeTags::formatSummaryRow( $tags, 'revisiondelete' );
|
|
|
|
|
$content .= " $tagSummary";
|
|
|
|
|
$attribs['class'] = implode( ' ', $classes );
|
|
|
|
|
}
|
|
|
|
|
return Xml::tags( 'li', $attribs, $content );
|
|
|
|
|
}
|
2014-08-07 20:43:55 +00:00
|
|
|
|
2015-12-15 19:17:47 +00:00
|
|
|
/**
|
|
|
|
|
* @return string Comma-separated list of tags
|
|
|
|
|
*/
|
|
|
|
|
public function getTags() {
|
|
|
|
|
return $this->row->ts_tags;
|
2014-08-07 20:43:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getApiData( ApiResult $result ) {
|
|
|
|
|
$rev = $this->revision;
|
|
|
|
|
$user = $this->list->getUser();
|
2014-08-08 13:55:19 +00:00
|
|
|
$ret = array(
|
|
|
|
|
'id' => $rev->getId(),
|
|
|
|
|
'timestamp' => wfTimestamp( TS_ISO_8601, $rev->getTimestamp() ),
|
|
|
|
|
);
|
2014-08-07 20:43:55 +00:00
|
|
|
$ret += $rev->isDeleted( Revision::DELETED_USER ) ? array( 'userhidden' => '' ) : array();
|
|
|
|
|
$ret += $rev->isDeleted( Revision::DELETED_COMMENT ) ? array( 'commenthidden' => '' ) : array();
|
|
|
|
|
$ret += $rev->isDeleted( Revision::DELETED_TEXT ) ? array( 'texthidden' => '' ) : array();
|
|
|
|
|
if ( $rev->userCan( Revision::DELETED_USER, $user ) ) {
|
2014-08-08 13:55:19 +00:00
|
|
|
$ret += array(
|
|
|
|
|
'userid' => $rev->getUser( Revision::FOR_THIS_USER ),
|
|
|
|
|
'user' => $rev->getUserText( Revision::FOR_THIS_USER ),
|
|
|
|
|
);
|
2014-08-07 20:43:55 +00:00
|
|
|
}
|
|
|
|
|
if ( $rev->userCan( Revision::DELETED_COMMENT, $user ) ) {
|
2014-08-08 13:55:19 +00:00
|
|
|
$ret += array(
|
|
|
|
|
'comment' => $rev->getComment( Revision::FOR_THIS_USER ),
|
|
|
|
|
);
|
2014-08-07 20:43:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $ret;
|
|
|
|
|
}
|
2014-08-08 13:55:19 +00:00
|
|
|
}
|