Merge "Revert "Log the reason why revision->getContent() returns null""
[lhc/web/wiklou.git] / includes / revisiondelete / RevDelArchiveItem.php
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.
7 *
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.
12 *
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
17 *
18 * @file
19 * @ingroup RevisionDelete
20 */
21
22 /**
23 * Item class for a archive table row
24 */
25 class RevDelArchiveItem extends RevDelRevisionItem {
26 public function __construct( $list, $row ) {
27 RevDelItem::__construct( $list, $row );
28 $this->revision = Revision::newFromArchiveRow( $row,
29 [ 'page' => $this->list->title->getArticleID() ] );
30 }
31
32 public function getIdField() {
33 return 'ar_timestamp';
34 }
35
36 public function getTimestampField() {
37 return 'ar_timestamp';
38 }
39
40 public function getAuthorIdField() {
41 return 'ar_user';
42 }
43
44 public function getAuthorNameField() {
45 return 'ar_user_text';
46 }
47
48 public function getAuthorActorField() {
49 return 'ar_actor';
50 }
51
52 public function getId() {
53 # Convert DB timestamp to MW timestamp
54 return $this->revision->getTimestamp();
55 }
56
57 public function setBits( $bits ) {
58 $dbw = wfGetDB( DB_MASTER );
59 $dbw->update( 'archive',
60 [ 'ar_deleted' => $bits ],
61 [
62 'ar_namespace' => $this->list->title->getNamespace(),
63 'ar_title' => $this->list->title->getDBkey(),
64 // use timestamp for index
65 'ar_timestamp' => $this->row->ar_timestamp,
66 'ar_rev_id' => $this->row->ar_rev_id,
67 'ar_deleted' => $this->getBits()
68 ],
69 __METHOD__ );
70
71 return (bool)$dbw->affectedRows();
72 }
73
74 protected function getRevisionLink() {
75 $date = $this->list->getLanguage()->userTimeAndDate(
76 $this->revision->getTimestamp(), $this->list->getUser() );
77
78 if ( $this->isDeleted() && !$this->canViewContent() ) {
79 return htmlspecialchars( $date );
80 }
81
82 return $this->getLinkRenderer()->makeLink(
83 SpecialPage::getTitleFor( 'Undelete' ),
84 $date,
85 [],
86 [
87 'target' => $this->list->title->getPrefixedText(),
88 'timestamp' => $this->revision->getTimestamp()
89 ]
90 );
91 }
92
93 protected function getDiffLink() {
94 if ( $this->isDeleted() && !$this->canViewContent() ) {
95 return $this->list->msg( 'diff' )->escaped();
96 }
97
98 return $this->getLinkRenderer()->makeLink(
99 SpecialPage::getTitleFor( 'Undelete' ),
100 $this->list->msg( 'diff' )->text(),
101 [],
102 [
103 'target' => $this->list->title->getPrefixedText(),
104 'diff' => 'prev',
105 'timestamp' => $this->revision->getTimestamp()
106 ]
107 );
108 }
109 }