MediaWiki REL1_31
RevDelArchivedFileItem.php
Go to the documentation of this file.
1<?php
29 protected $lockFile;
30
31 public function __construct( $list, $row ) {
33 $this->file = ArchivedFile::newFromRow( $row );
34 $this->lockFile = RepoGroup::singleton()->getLocalRepo()->newFile( $row->fa_name );
35 }
36
37 public function getIdField() {
38 return 'fa_id';
39 }
40
41 public function getTimestampField() {
42 return 'fa_timestamp';
43 }
44
45 public function getAuthorIdField() {
46 return 'fa_user';
47 }
48
49 public function getAuthorNameField() {
50 return 'fa_user_text';
51 }
52
53 public function getAuthorActorField() {
54 return 'fa_actor';
55 }
56
57 public function getId() {
58 return $this->row->fa_id;
59 }
60
61 public function setBits( $bits ) {
62 $dbw = wfGetDB( DB_MASTER );
63 $dbw->update( 'filearchive',
64 [ 'fa_deleted' => $bits ],
65 [
66 'fa_id' => $this->row->fa_id,
67 'fa_deleted' => $this->getBits(),
68 ],
69 __METHOD__
70 );
71
72 return (bool)$dbw->affectedRows();
73 }
74
75 protected function getLink() {
76 $date = $this->list->getLanguage()->userTimeAndDate(
77 $this->file->getTimestamp(), $this->list->getUser() );
78
79 # Hidden files...
80 if ( !$this->canViewContent() ) {
81 $link = htmlspecialchars( $date );
82 } else {
83 $undelete = SpecialPage::getTitleFor( 'Undelete' );
84 $key = $this->file->getKey();
85 $link = $this->getLinkRenderer()->makeLink( $undelete, $date, [],
86 [
87 'target' => $this->list->title->getPrefixedText(),
88 'file' => $key,
89 'token' => $this->list->getUser()->getEditToken( $key )
90 ]
91 );
92 }
93 if ( $this->isDeleted() ) {
94 $link = '<span class="history-deleted">' . $link . '</span>';
95 }
96
97 return $link;
98 }
99
100 public function getApiData( ApiResult $result ) {
101 $file = $this->file;
102 $user = $this->list->getUser();
103 $ret = [
104 'title' => $this->list->title->getPrefixedText(),
105 'timestamp' => wfTimestamp( TS_ISO_8601, $file->getTimestamp() ),
106 'width' => $file->getWidth(),
107 'height' => $file->getHeight(),
108 'size' => $file->getSize(),
109 'userhidden' => (bool)$file->isDeleted( Revision::DELETED_USER ),
110 'commenthidden' => (bool)$file->isDeleted( Revision::DELETED_COMMENT ),
111 'contenthidden' => (bool)$this->isDeleted(),
112 ];
113 if ( $this->canViewContent() ) {
114 $ret += [
115 'url' => SpecialPage::getTitleFor( 'Revisiondelete' )->getLinkURL(
116 [
117 'target' => $this->list->title->getPrefixedText(),
118 'file' => $file->getKey(),
119 'token' => $user->getEditToken( $file->getKey() )
120 ]
121 ),
122 ];
123 }
124 if ( $file->userCan( Revision::DELETED_USER, $user ) ) {
125 $ret += [
126 'userid' => $file->getUser( 'id' ),
127 'user' => $file->getUser( 'text' ),
128 ];
129 }
130 if ( $file->userCan( Revision::DELETED_COMMENT, $user ) ) {
131 $ret += [
132 'comment' => $file->getRawDescription(),
133 ];
134 }
135
136 return $ret;
137 }
138
139 public function lock() {
140 return $this->lockFile->acquireFileLock();
141 }
142
143 public function unlock() {
144 return $this->lockFile->releaseFileLock();
145 }
146}
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
This class represents the result of the API operations.
Definition ApiResult.php:33
static newFromRow( $row)
Loads a file object from the filearchive table.
Class to represent a local file in the wiki's own database.
Definition LocalFile.php:46
static singleton()
Get a RepoGroup instance.
Definition RepoGroup.php:59
Item class for a filearchive table row.
getIdField()
Get the DB field name associated with the ID list.
getAuthorNameField()
Get the DB field name storing user names.
getApiData(ApiResult $result)
Get the return information about the revision for the API.
unlock()
Unlock the item against changes outside of the DB.
getTimestampField()
Get the DB field name storing timestamps.
setBits( $bits)
Set the visibility of the item.
getLink()
Get the link to the file.
lock()
Lock the item against changes outside of the DB.
getId()
Get the ID, as it would appear in the ids URL parameter.
getAuthorActorField()
Get the DB field name storing actor ids.
getAuthorIdField()
Get the DB field name storing user ids.
Item class for an oldimage table row.
RevDelFileList $list
canViewContent()
Returns true if the current user can view the item text/file.
OldLocalFile $file
$row
The database result row.
__construct( $list, $row)
getLinkRenderer()
Returns an instance of LinkRenderer.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition deferred.txt:11
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition hooks.txt:2005
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition hooks.txt:3021
const DB_MASTER
Definition defines.php:29