35 $this->file = static::initFile(
$list,
$row );
46 return RepoGroup::singleton()->getLocalRepo()->newFileFromRow(
$row );
50 return 'oi_archive_name';
54 return 'oi_timestamp';
62 return 'oi_user_text';
70 $parts = explode(
'!', $this->row->oi_archive_name );
84 return $this->file->getVisibility();
89 # @todo FIXME: Move to LocalFile.php
95 $key = $this->file->getStorageKey();
96 $srcRel = $this->file->repo->getDeletedHashPath( $key ) . $key;
97 $this->list->storeBatch[] = [
98 $this->file->repo->getVirtualUrl(
'deleted' ) .
'/' . $srcRel,
100 $this->file->getRel()
102 $this->list->cleanupBatch[] = $key;
106 $key = $this->file->getStorageKey();
107 $dstRel = $this->file->repo->getDeletedHashPath( $key ) . $key;
108 $this->list->deleteBatch[] = [ $this->file->getRel(), $dstRel ];
111 # Do the database operations
113 $dbw->update(
'oldimage',
114 [
'oi_deleted' => $bits ],
116 'oi_name' => $this->row->oi_name,
117 'oi_timestamp' => $this->row->oi_timestamp,
118 'oi_deleted' => $this->getBits()
123 return (
bool)$dbw->affectedRows();
136 $date = $this->list->getLanguage()->userTimeAndDate(
137 $this->file->getTimestamp(), $this->list->getUser() );
141 return Html::element(
'a', [
'href' => $this->file->getUrl() ], $date );
146 $link = htmlspecialchars( $date );
149 SpecialPage::getTitleFor(
'Revisiondelete' ),
153 'target' => $this->list->title->getPrefixedText(),
154 'file' => $this->file->getArchiveName(),
155 'token' => $this->list->getUser()->getEditToken(
156 $this->file->getArchiveName() )
161 return '<span class="history-deleted">' . $link .
'</span>';
169 if ( $this->file->userCan( RevisionRecord::DELETED_USER, $this->list->getUser() ) ) {
170 $uid = $this->file->getUser(
'id' );
171 $name = $this->file->getUser(
'text' );
174 $link = $this->list->msg(
'rev-deleted-user' )->escaped();
176 if ( $this->file->isDeleted( RevisionRecord::DELETED_USER ) ) {
177 return '<span class="history-deleted">' . $link .
'</span>';
193 $block =
' ' . $this->list->msg(
'rev-deleted-comment' )->escaped();
196 return "<span class=\"history-deleted\">$block</span>";
204 $this->list->msg(
'widthheight' )->numParams(
205 $this->file->getWidth(), $this->file->getHeight() )->text() .
206 ' (' . $this->list->msg(
'nbytes' )->numParams( $this->file->getSize() )->text() .
')';
214 $user = $this->list->
getUser();
216 'title' => $this->list->title->getPrefixedText(),
222 'userhidden' => (bool)
$file->
isDeleted( RevisionRecord::DELETED_USER ),
223 'commenthidden' => (bool)
$file->
isDeleted( RevisionRecord::DELETED_COMMENT ),
224 'contenthidden' => (bool)$this->
isDeleted(),
232 'url' => SpecialPage::getTitleFor(
'Revisiondelete' )->getLinkURL(
234 'target' => $this->list->title->getPrefixedText(),
241 if (
$file->
userCan( RevisionRecord::DELETED_USER, $user ) ) {
243 'userid' =>
$file->user,
244 'user' =>
$file->user_text,
247 if (
$file->
userCan( RevisionRecord::DELETED_COMMENT, $user ) ) {
249 'comment' =>
$file->description,
257 return $this->file->acquireFileLock();
261 return $this->file->releaseFileLock();
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.
getUrl()
Return the URL of the file.
static userLink( $userId, $userName, $altUserName=false)
Make user link (or user contributions for unregistered users)
static commentBlock( $comment, $title=null, $local=false, $wikiId=null, $useParentheses=true)
Wrap a comment in standard punctuation and formatting if it's non-empty, otherwise return empty strin...
static userToolLinks( $userId, $userText, $redContribsWhenNoEdits=false, $flags=0, $edits=null, $useParentheses=true)
Generate standard user tool links (talk, contributions, block link, etc.)
getWidth( $page=1)
Return the width of the image.
getUser( $type='text')
Returns user who uploaded the file.
getSize()
Returns the size of the image file, in bytes.
getHeight( $page=1)
Return the height of the image.
Class to represent a file in the oldimage table.
userCan( $field, User $user=null)
Determine if the current user is allowed to view a particular field of this image file,...
Item class for an oldimage table row.
getTimestampField()
Get the DB field name storing timestamps.
getComment()
Wrap and format the file's comment block, if the current user is allowed to view it.
getLink()
Get the link to the file.
canViewContent()
Returns true if the current user can view the item text/file.
getId()
Get the ID, as it would appear in the ids URL parameter.
getIdField()
Get the DB field name associated with the ID list.
getBits()
Get the current deletion bitfield value.
getAuthorIdField()
Get the DB field name storing user ids.
static initFile( $list, $row)
Create file object from $row sourced from $list.
getHTML()
Get the HTML of the list item.
getUserTools()
Generate a user tool link cluster if the current user is allowed to view it.
__construct( $list, $row)
unlock()
Unlock the item against changes outside of the DB.
getAuthorNameField()
Get the DB field name storing user names.
lock()
Lock the item against changes outside of the DB.
canView()
Returns true if the current user can view the item.
getAuthorActorField()
Get the DB field name storing actor ids.
setBits( $bits)
Set the visibility of the item.
getApiData(ApiResult $result)
Get the return information about the revision for the API.
List for oldimage table items.
Abstract base class for deletable items.
$row
The database result row.
getLinkRenderer()
Returns an instance of LinkRenderer.