3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
19 * @ingroup RevisionDelete
23 * Item class for a filearchive table row
25 class RevDelArchivedFileItem
extends RevDelFileItem
{
26 /** @var $list RevDelArchivedFileList */
27 /** @var $file ArchivedFile */
31 public function __construct( $list, $row ) {
32 RevDelItem
::__construct( $list, $row );
33 $this->file
= ArchivedFile
::newFromRow( $row );
34 $this->lockFile
= RepoGroup
::singleton()->getLocalRepo()->newFile( $row->fa_name
);
37 public function getIdField() {
41 public function getTimestampField() {
42 return 'fa_timestamp';
45 public function getAuthorIdField() {
49 public function getAuthorNameField() {
50 return 'fa_user_text';
53 public function getId() {
54 return $this->row
->fa_id
;
57 public function setBits( $bits ) {
58 $dbw = wfGetDB( DB_MASTER
);
59 $dbw->update( 'filearchive',
60 [ 'fa_deleted' => $bits ],
62 'fa_id' => $this->row
->fa_id
,
63 'fa_deleted' => $this->getBits(),
68 return (bool)$dbw->affectedRows();
71 protected function getLink() {
72 $date = htmlspecialchars( $this->list->getLanguage()->userTimeAndDate(
73 $this->file
->getTimestamp(), $this->list->getUser() ) );
76 if ( !$this->canViewContent() ) {
79 $undelete = SpecialPage
::getTitleFor( 'Undelete' );
80 $key = $this->file
->getKey();
81 $link = Linker
::link( $undelete, $date, [],
83 'target' => $this->list->title
->getPrefixedText(),
85 'token' => $this->list->getUser()->getEditToken( $key )
89 if ( $this->isDeleted() ) {
90 $link = '<span class="history-deleted">' . $link . '</span>';
96 public function getApiData( ApiResult
$result ) {
98 $user = $this->list->getUser();
100 'title' => $this->list->title
->getPrefixedText(),
101 'timestamp' => wfTimestamp( TS_ISO_8601
, $file->getTimestamp() ),
102 'width' => $file->getWidth(),
103 'height' => $file->getHeight(),
104 'size' => $file->getSize(),
106 $ret +
= $file->isDeleted( Revision
::DELETED_USER
) ?
[ 'userhidden' => '' ] : [];
107 $ret +
= $file->isDeleted( Revision
::DELETED_COMMENT
) ?
[ 'commenthidden' => '' ] : [];
108 $ret +
= $this->isDeleted() ?
[ 'contenthidden' => '' ] : [];
109 if ( $this->canViewContent() ) {
111 'url' => SpecialPage
::getTitleFor( 'Revisiondelete' )->getLinkURL(
113 'target' => $this->list->title
->getPrefixedText(),
114 'file' => $file->getKey(),
115 'token' => $user->getEditToken( $file->getKey() )
120 if ( $file->userCan( Revision
::DELETED_USER
, $user ) ) {
122 'userid' => $file->getUser( 'id' ),
123 'user' => $file->getUser( 'text' ),
126 if ( $file->userCan( Revision
::DELETED_COMMENT
, $user ) ) {
128 'comment' => $file->getRawDescription(),
135 public function lock() {
136 return $this->lockFile
->acquireFileLock();
139 public function unlock() {
140 return $this->lockFile
->releaseFileLock();