MediaWiki REL1_30
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 getId() {
54 return $this->row->fa_id;
55 }
56
57 public function setBits( $bits ) {
58 $dbw = wfGetDB( DB_MASTER );
59 $dbw->update( 'filearchive',
60 [ 'fa_deleted' => $bits ],
61 [
62 'fa_id' => $this->row->fa_id,
63 'fa_deleted' => $this->getBits(),
64 ],
65 __METHOD__
66 );
67
68 return (bool)$dbw->affectedRows();
69 }
70
71 protected function getLink() {
72 $date = $this->list->getLanguage()->userTimeAndDate(
73 $this->file->getTimestamp(), $this->list->getUser() );
74
75 # Hidden files...
76 if ( !$this->canViewContent() ) {
77 $link = htmlspecialchars( $date );
78 } else {
79 $undelete = SpecialPage::getTitleFor( 'Undelete' );
80 $key = $this->file->getKey();
81 $link = $this->getLinkRenderer()->makeLink( $undelete, $date, [],
82 [
83 'target' => $this->list->title->getPrefixedText(),
84 'file' => $key,
85 'token' => $this->list->getUser()->getEditToken( $key )
86 ]
87 );
88 }
89 if ( $this->isDeleted() ) {
90 $link = '<span class="history-deleted">' . $link . '</span>';
91 }
92
93 return $link;
94 }
95
96 public function getApiData( ApiResult $result ) {
97 $file = $this->file;
98 $user = $this->list->getUser();
99 $ret = [
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(),
105 'userhidden' => (bool)$file->isDeleted( Revision::DELETED_USER ),
106 'commenthidden' => (bool)$file->isDeleted( Revision::DELETED_COMMENT ),
107 'contenthidden' => (bool)$this->isDeleted(),
108 ];
109 if ( $this->canViewContent() ) {
110 $ret += [
111 'url' => SpecialPage::getTitleFor( 'Revisiondelete' )->getLinkURL(
112 [
113 'target' => $this->list->title->getPrefixedText(),
114 'file' => $file->getKey(),
115 'token' => $user->getEditToken( $file->getKey() )
116 ]
117 ),
118 ];
119 }
120 if ( $file->userCan( Revision::DELETED_USER, $user ) ) {
121 $ret += [
122 'userid' => $file->getUser( 'id' ),
123 'user' => $file->getUser( 'text' ),
124 ];
125 }
126 if ( $file->userCan( Revision::DELETED_COMMENT, $user ) ) {
127 $ret += [
128 'comment' => $file->getRawDescription(),
129 ];
130 }
131
132 return $ret;
133 }
134
135 public function lock() {
136 return $this->lockFile->acquireFileLock();
137 }
138
139 public function unlock() {
140 return $this->lockFile->releaseFileLock();
141 }
142}
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:45
getUser( $type='text')
Returns ID or name of user who uploaded the file.
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.
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.
const DELETED_USER
Definition Revision.php:92
const DELETED_COMMENT
Definition Revision.php:91
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
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:1975
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition hooks.txt:2989
const DB_MASTER
Definition defines.php:26