Merge "Don't retry invalid thumbnail requests due to impossible width"
[mediawiki.git] / includes / revisiondelete / RevDelArchiveItem.php
blob0f1c7f0c9a2ecc23e00baa19827ddece8c9c2599
1 <?php
2 /**
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
18 * @file
19 * @ingroup RevisionDelete
22 /**
23 * Item class for a archive table row
25 class RevDelArchiveItem extends RevDelRevisionItem {
26 public function __construct( $list, $row ) {
27 RevDelItem::__construct( $list, $row );
28 $this->revision = Revision::newFromArchiveRow( $row,
29 array( 'page' => $this->list->title->getArticleID() ) );
32 public function getIdField() {
33 return 'ar_timestamp';
36 public function getTimestampField() {
37 return 'ar_timestamp';
40 public function getAuthorIdField() {
41 return 'ar_user';
44 public function getAuthorNameField() {
45 return 'ar_user_text';
48 public function getId() {
49 # Convert DB timestamp to MW timestamp
50 return $this->revision->getTimestamp();
53 public function setBits( $bits ) {
54 $dbw = wfGetDB( DB_MASTER );
55 $dbw->update( 'archive',
56 array( 'ar_deleted' => $bits ),
57 array(
58 'ar_namespace' => $this->list->title->getNamespace(),
59 'ar_title' => $this->list->title->getDBkey(),
60 // use timestamp for index
61 'ar_timestamp' => $this->row->ar_timestamp,
62 'ar_rev_id' => $this->row->ar_rev_id,
63 'ar_deleted' => $this->getBits()
65 __METHOD__ );
67 return (bool)$dbw->affectedRows();
70 protected function getRevisionLink() {
71 $date = htmlspecialchars( $this->list->getLanguage()->userTimeAndDate(
72 $this->revision->getTimestamp(), $this->list->getUser() ) );
74 if ( $this->isDeleted() && !$this->canViewContent() ) {
75 return $date;
78 return Linker::link(
79 SpecialPage::getTitleFor( 'Undelete' ),
80 $date,
81 array(),
82 array(
83 'target' => $this->list->title->getPrefixedText(),
84 'timestamp' => $this->revision->getTimestamp()
89 protected function getDiffLink() {
90 if ( $this->isDeleted() && !$this->canViewContent() ) {
91 return $this->list->msg( 'diff' )->escaped();
94 return Linker::link(
95 SpecialPage::getTitleFor( 'Undelete' ),
96 $this->list->msg( 'diff' )->escaped(),
97 array(),
98 array(
99 'target' => $this->list->title->getPrefixedText(),
100 'diff' => 'prev',
101 'timestamp' => $this->revision->getTimestamp()