MediaWiki  1.29.2
RevDelFileItem.php
Go to the documentation of this file.
1 <?php
23 
27 class RevDelFileItem extends RevDelItem {
29  protected $list;
31  protected $file;
32 
33  public function __construct( $list, $row ) {
34  parent::__construct( $list, $row );
35  $this->file = RepoGroup::singleton()->getLocalRepo()->newFileFromRow( $row );
36  }
37 
38  public function getIdField() {
39  return 'oi_archive_name';
40  }
41 
42  public function getTimestampField() {
43  return 'oi_timestamp';
44  }
45 
46  public function getAuthorIdField() {
47  return 'oi_user';
48  }
49 
50  public function getAuthorNameField() {
51  return 'oi_user_text';
52  }
53 
54  public function getId() {
55  $parts = explode( '!', $this->row->oi_archive_name );
56 
57  return $parts[0];
58  }
59 
60  public function canView() {
61  return $this->file->userCan( File::DELETED_RESTRICTED, $this->list->getUser() );
62  }
63 
64  public function canViewContent() {
65  return $this->file->userCan( File::DELETED_FILE, $this->list->getUser() );
66  }
67 
68  public function getBits() {
69  return $this->file->getVisibility();
70  }
71 
72  public function setBits( $bits ) {
73  # Queue the file op
74  # @todo FIXME: Move to LocalFile.php
75  if ( $this->isDeleted() ) {
76  if ( $bits & File::DELETED_FILE ) {
77  # Still deleted
78  } else {
79  # Newly undeleted
80  $key = $this->file->getStorageKey();
81  $srcRel = $this->file->repo->getDeletedHashPath( $key ) . $key;
82  $this->list->storeBatch[] = [
83  $this->file->repo->getVirtualUrl( 'deleted' ) . '/' . $srcRel,
84  'public',
85  $this->file->getRel()
86  ];
87  $this->list->cleanupBatch[] = $key;
88  }
89  } elseif ( $bits & File::DELETED_FILE ) {
90  # Newly deleted
91  $key = $this->file->getStorageKey();
92  $dstRel = $this->file->repo->getDeletedHashPath( $key ) . $key;
93  $this->list->deleteBatch[] = [ $this->file->getRel(), $dstRel ];
94  }
95 
96  # Do the database operations
97  $dbw = wfGetDB( DB_MASTER );
98  $dbw->update( 'oldimage',
99  [ 'oi_deleted' => $bits ],
100  [
101  'oi_name' => $this->row->oi_name,
102  'oi_timestamp' => $this->row->oi_timestamp,
103  'oi_deleted' => $this->getBits()
104  ],
105  __METHOD__
106  );
107 
108  return (bool)$dbw->affectedRows();
109  }
110 
111  public function isDeleted() {
112  return $this->file->isDeleted( File::DELETED_FILE );
113  }
114 
120  protected function getLink() {
121  $date = $this->list->getLanguage()->userTimeAndDate(
122  $this->file->getTimestamp(), $this->list->getUser() );
123 
124  if ( !$this->isDeleted() ) {
125  # Regular files...
126  return Html::element( 'a', [ 'href' => $this->file->getUrl() ], $date );
127  }
128 
129  # Hidden files...
130  if ( !$this->canViewContent() ) {
131  $link = htmlspecialchars( $date );
132  } else {
133  $link = $this->getLinkRenderer()->makeLink(
134  SpecialPage::getTitleFor( 'Revisiondelete' ),
135  $date,
136  [],
137  [
138  'target' => $this->list->title->getPrefixedText(),
139  'file' => $this->file->getArchiveName(),
140  'token' => $this->list->getUser()->getEditToken(
141  $this->file->getArchiveName() )
142  ]
143  );
144  }
145 
146  return '<span class="history-deleted">' . $link . '</span>';
147  }
148 
153  protected function getUserTools() {
154  if ( $this->file->userCan( Revision::DELETED_USER, $this->list->getUser() ) ) {
155  $uid = $this->file->getUser( 'id' );
156  $name = $this->file->getUser( 'text' );
158  } else {
159  $link = $this->list->msg( 'rev-deleted-user' )->escaped();
160  }
161  if ( $this->file->isDeleted( Revision::DELETED_USER ) ) {
162  return '<span class="history-deleted">' . $link . '</span>';
163  }
164 
165  return $link;
166  }
167 
174  protected function getComment() {
175  if ( $this->file->userCan( File::DELETED_COMMENT, $this->list->getUser() ) ) {
176  $block = Linker::commentBlock( $this->file->getDescription() );
177  } else {
178  $block = ' ' . $this->list->msg( 'rev-deleted-comment' )->escaped();
179  }
180  if ( $this->file->isDeleted( File::DELETED_COMMENT ) ) {
181  return "<span class=\"history-deleted\">$block</span>";
182  }
183 
184  return $block;
185  }
186 
187  public function getHTML() {
188  $data =
189  $this->list->msg( 'widthheight' )->numParams(
190  $this->file->getWidth(), $this->file->getHeight() )->text() .
191  ' (' . $this->list->msg( 'nbytes' )->numParams( $this->file->getSize() )->text() . ')';
192 
193  return '<li>' . $this->getLink() . ' ' . $this->getUserTools() . ' ' .
194  $data . ' ' . $this->getComment() . '</li>';
195  }
196 
197  public function getApiData( ApiResult $result ) {
198  $file = $this->file;
199  $user = $this->list->getUser();
200  $ret = [
201  'title' => $this->list->title->getPrefixedText(),
202  'archivename' => $file->getArchiveName(),
203  'timestamp' => wfTimestamp( TS_ISO_8601, $file->getTimestamp() ),
204  'width' => $file->getWidth(),
205  'height' => $file->getHeight(),
206  'size' => $file->getSize(),
207  'userhidden' => (bool)$file->isDeleted( Revision::DELETED_USER ),
208  'commenthidden' => (bool)$file->isDeleted( Revision::DELETED_COMMENT ),
209  'contenthidden' => (bool)$this->isDeleted(),
210  ];
211  if ( !$this->isDeleted() ) {
212  $ret += [
213  'url' => $file->getUrl(),
214  ];
215  } elseif ( $this->canViewContent() ) {
216  $ret += [
217  'url' => SpecialPage::getTitleFor( 'Revisiondelete' )->getLinkURL(
218  [
219  'target' => $this->list->title->getPrefixedText(),
220  'file' => $file->getArchiveName(),
221  'token' => $user->getEditToken( $file->getArchiveName() )
222  ]
223  ),
224  ];
225  }
227  $ret += [
228  'userid' => $file->user,
229  'user' => $file->user_text,
230  ];
231  }
233  $ret += [
234  'comment' => $file->description,
235  ];
236  }
237 
238  return $ret;
239  }
240 
241  public function lock() {
242  return $this->file->acquireFileLock();
243  }
244 
245  public function unlock() {
246  return $this->file->releaseFileLock();
247  }
248 }
Revision\DELETED_USER
const DELETED_USER
Definition: Revision.php:92
RevDelFileItem\$file
OldLocalFile $file
Definition: RevDelFileItem.php:31
file
We ve cleaned up the code here by removing clumps of infrequently used code and moving them off somewhere else It s much easier for someone working with this code to see what s _really_ going and make changes or fix bugs In we can take all the code that deals with the little used title reversing we can concentrate it all in an extension file
Definition: hooks.txt:93
RepoGroup\singleton
static singleton()
Get a RepoGroup instance.
Definition: RepoGroup.php:59
Revision\DELETED_COMMENT
const DELETED_COMMENT
Definition: Revision.php:91
RevDelFileItem\getApiData
getApiData(ApiResult $result)
Get the return information about the revision for the API.
Definition: RevDelFileItem.php:197
LocalFile\getTimestamp
getTimestamp()
Definition: LocalFile.php:1915
RevDelFileItem\getAuthorIdField
getAuthorIdField()
Get the DB field name storing user ids.
Definition: RevDelFileItem.php:46
Linker\userLink
static userLink( $userId, $userName, $altUserName=false)
Make user link (or user contributions for unregistered users)
Definition: Linker.php:888
File\DELETED_RESTRICTED
const DELETED_RESTRICTED
Definition: File.php:56
OldLocalFile\isDeleted
isDeleted( $field)
Definition: OldLocalFile.php:293
text
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
Definition: design.txt:12
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1954
wfTimestamp
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Definition: GlobalFunctions.php:1994
RevDelFileItem\lock
lock()
Lock the item against changes outside of the DB.
Definition: RevDelFileItem.php:241
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
$user
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
Definition: hooks.txt:246
File\getUrl
getUrl()
Return the URL of the file.
Definition: File.php:348
RevDelFileItem\getIdField
getIdField()
Get the DB field name associated with the ID list.
Definition: RevDelFileItem.php:38
RevDelFileItem\getTimestampField
getTimestampField()
Get the DB field name storing timestamps.
Definition: RevDelFileItem.php:42
LocalFile\getSize
getSize()
Returns the size of the image file, in bytes.
Definition: LocalFile.php:823
SpecialPage\getTitleFor
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,...
Definition: SpecialPage.php:82
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:304
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
RevDelFileItem\setBits
setBits( $bits)
Set the visibility of the item.
Definition: RevDelFileItem.php:72
Wikimedia\Rdbms\IDatabase
Basic database interface for live and lazy-loaded relation database handles.
Definition: IDatabase.php:40
RevDelFileItem\getAuthorNameField
getAuthorNameField()
Get the DB field name storing user names.
Definition: RevDelFileItem.php:50
File\DELETED_COMMENT
const DELETED_COMMENT
Definition: File.php:54
ApiResult
This class represents the result of the API operations.
Definition: ApiResult.php:33
RevDelFileItem\unlock
unlock()
Unlock the item against changes outside of the DB.
Definition: RevDelFileItem.php:245
RevisionItemBase\getLinkRenderer
getLinkRenderer()
Returns an instance of LinkRenderer.
Definition: RevisionList.php:280
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:3060
RevDelFileItem\__construct
__construct( $list, $row)
Definition: RevDelFileItem.php:33
RevDelFileItem\isDeleted
isDeleted()
Definition: RevDelFileItem.php:111
DB_MASTER
const DB_MASTER
Definition: defines.php:26
RevDelFileItem\getComment
getComment()
Wrap and format the file's comment block, if the current user is allowed to view it.
Definition: RevDelFileItem.php:174
list
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
RevDelFileItem\getHTML
getHTML()
Get the HTML of the list item.
Definition: RevDelFileItem.php:187
RevDelFileItem\getUserTools
getUserTools()
Generate a user tool link cluster if the current user is allowed to view it.
Definition: RevDelFileItem.php:153
RevDelFileItem\canViewContent
canViewContent()
Returns true if the current user can view the item text/file.
Definition: RevDelFileItem.php:64
Linker\userToolLinks
static userToolLinks( $userId, $userText, $redContribsWhenNoEdits=false, $flags=0, $edits=null)
Generate standard user tool links (talk, contributions, block link, etc.)
Definition: Linker.php:921
RevDelFileItem\getBits
getBits()
Get the current deletion bitfield value.
Definition: RevDelFileItem.php:68
RevisionItemBase\$row
$row
The database result row.
Definition: RevisionList.php:159
$ret
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:1956
RevDelFileItem
Item class for an oldimage table row.
Definition: RevDelFileItem.php:27
RevDelFileItem\getLink
getLink()
Get the link to the file.
Definition: RevDelFileItem.php:120
RevDelFileItem\canView
canView()
Returns true if the current user can view the item.
Definition: RevDelFileItem.php:60
OldLocalFile\userCan
userCan( $field, User $user=null)
Determine if the current user is allowed to view a particular field of this image file,...
Definition: OldLocalFile.php:317
RevDelFileItem\getId
getId()
Get the ID, as it would appear in the ids URL parameter.
Definition: RevDelFileItem.php:54
Linker\commentBlock
static commentBlock( $comment, $title=null, $local=false, $wikiId=null)
Wrap a comment in standard punctuation and formatting if it's non-empty, otherwise return empty strin...
Definition: Linker.php:1439
$link
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition: hooks.txt:2929
RevDelFileItem\$list
RevDelFileList $list
Definition: RevDelFileItem.php:29
RevDelFileList
List for oldimage table items.
Definition: RevDelFileList.php:27
File\DELETED_FILE
const DELETED_FILE
Definition: File.php:53
LocalFile\getWidth
getWidth( $page=1)
Return the width of the image.
Definition: LocalFile.php:718
Html\element
static element( $element, $attribs=[], $contents='')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
Definition: Html.php:231
LocalFile\getHeight
getHeight( $page=1)
Return the height of the image.
Definition: LocalFile.php:745
OldLocalFile\getArchiveName
getArchiveName()
Definition: OldLocalFile.php:155
OldLocalFile
Class to represent a file in the oldimage table.
Definition: OldLocalFile.php:29
RevDelItem
Abstract base class for deletable items.
Definition: RevDelItem.php:25