MediaWiki  1.29.1
ImageHistoryList.php
Go to the documentation of this file.
1 <?php
27 
31  protected $title;
32 
36  protected $img;
37 
41  protected $imagePage;
42 
46  protected $current;
47 
48  protected $repo, $showThumb;
49  protected $preventClickjacking = false;
50 
54  public function __construct( $imagePage ) {
56  $this->current = $imagePage->getPage()->getFile();
57  $this->img = $imagePage->getDisplayedFile();
58  $this->title = $imagePage->getTitle();
59  $this->imagePage = $imagePage;
60  $this->showThumb = $wgShowArchiveThumbnails && $this->img->canRender();
61  $this->setContext( $imagePage->getContext() );
62  }
63 
67  public function getImagePage() {
68  return $this->imagePage;
69  }
70 
74  public function getFile() {
75  return $this->img;
76  }
77 
82  public function beginImageHistoryList( $navLinks = '' ) {
83  return Xml::element( 'h2', [ 'id' => 'filehistory' ], $this->msg( 'filehist' )->text() )
84  . "\n"
85  . "<div id=\"mw-imagepage-section-filehistory\">\n"
86  . $this->msg( 'filehist-help' )->parseAsBlock()
87  . $navLinks . "\n"
88  . Xml::openElement( 'table', [ 'class' => 'wikitable filehistory' ] ) . "\n"
89  . '<tr><th></th>'
90  . ( $this->current->isLocal()
91  && ( $this->getUser()->isAllowedAny( 'delete', 'deletedhistory' ) ) ? '<th></th>' : '' )
92  . '<th>' . $this->msg( 'filehist-datetime' )->escaped() . '</th>'
93  . ( $this->showThumb ? '<th>' . $this->msg( 'filehist-thumb' )->escaped() . '</th>' : '' )
94  . '<th>' . $this->msg( 'filehist-dimensions' )->escaped() . '</th>'
95  . '<th>' . $this->msg( 'filehist-user' )->escaped() . '</th>'
96  . '<th>' . $this->msg( 'filehist-comment' )->escaped() . '</th>'
97  . "</tr>\n";
98  }
99 
104  public function endImageHistoryList( $navLinks = '' ) {
105  return "</table>\n$navLinks\n</div>\n";
106  }
107 
113  public function imageHistoryLine( $iscur, $file ) {
115 
116  $user = $this->getUser();
117  $lang = $this->getLanguage();
118  $timestamp = wfTimestamp( TS_MW, $file->getTimestamp() );
119  $img = $iscur ? $file->getName() : $file->getArchiveName();
120  $userId = $file->getUser( 'id' );
121  $userText = $file->getUser( 'text' );
122  $description = $file->getDescription( File::FOR_THIS_USER, $user );
123 
124  $local = $this->current->isLocal();
125  $row = $selected = '';
126 
127  // Deletion link
128  if ( $local && ( $user->isAllowedAny( 'delete', 'deletedhistory' ) ) ) {
129  $row .= '<td>';
130  # Link to remove from history
131  if ( $user->isAllowed( 'delete' ) ) {
132  $q = [ 'action' => 'delete' ];
133  if ( !$iscur ) {
134  $q['oldimage'] = $img;
135  }
136  $row .= Linker::linkKnown(
137  $this->title,
138  $this->msg( $iscur ? 'filehist-deleteall' : 'filehist-deleteone' )->escaped(),
139  [], $q
140  );
141  }
142  # Link to hide content. Don't show useless link to people who cannot hide revisions.
143  $canHide = $user->isAllowed( 'deleterevision' );
144  if ( $canHide || ( $user->isAllowed( 'deletedhistory' ) && $file->getVisibility() ) ) {
145  if ( $user->isAllowed( 'delete' ) ) {
146  $row .= '<br />';
147  }
148  // If file is top revision or locked from this user, don't link
149  if ( $iscur || !$file->userCan( File::DELETED_RESTRICTED, $user ) ) {
150  $del = Linker::revDeleteLinkDisabled( $canHide );
151  } else {
152  list( $ts, ) = explode( '!', $img, 2 );
153  $query = [
154  'type' => 'oldimage',
155  'target' => $this->title->getPrefixedText(),
156  'ids' => $ts,
157  ];
159  $file->isDeleted( File::DELETED_RESTRICTED ), $canHide );
160  }
161  $row .= $del;
162  }
163  $row .= '</td>';
164  }
165 
166  // Reversion link/current indicator
167  $row .= '<td>';
168  if ( $iscur ) {
169  $row .= $this->msg( 'filehist-current' )->escaped();
170  } elseif ( $local && $this->title->quickUserCan( 'edit', $user )
171  && $this->title->quickUserCan( 'upload', $user )
172  ) {
173  if ( $file->isDeleted( File::DELETED_FILE ) ) {
174  $row .= $this->msg( 'filehist-revert' )->escaped();
175  } else {
176  $row .= Linker::linkKnown(
177  $this->title,
178  $this->msg( 'filehist-revert' )->escaped(),
179  [],
180  [
181  'action' => 'revert',
182  'oldimage' => $img,
183  ]
184  );
185  }
186  }
187  $row .= '</td>';
188 
189  // Date/time and image link
190  if ( $file->getTimestamp() === $this->img->getTimestamp() ) {
191  $selected = "class='filehistory-selected'";
192  }
193  $row .= "<td $selected style='white-space: nowrap;'>";
194  if ( !$file->userCan( File::DELETED_FILE, $user ) ) {
195  # Don't link to unviewable files
196  $row .= '<span class="history-deleted">'
197  . $lang->userTimeAndDate( $timestamp, $user ) . '</span>';
198  } elseif ( $file->isDeleted( File::DELETED_FILE ) ) {
199  if ( $local ) {
200  $this->preventClickjacking();
201  $revdel = SpecialPage::getTitleFor( 'Revisiondelete' );
202  # Make a link to review the image
203  $url = Linker::linkKnown(
204  $revdel,
205  $lang->userTimeAndDate( $timestamp, $user ),
206  [],
207  [
208  'target' => $this->title->getPrefixedText(),
209  'file' => $img,
210  'token' => $user->getEditToken( $img )
211  ]
212  );
213  } else {
214  $url = $lang->userTimeAndDate( $timestamp, $user );
215  }
216  $row .= '<span class="history-deleted">' . $url . '</span>';
217  } elseif ( !$file->exists() ) {
218  $row .= '<span class="mw-file-missing">'
219  . $lang->userTimeAndDate( $timestamp, $user ) . '</span>';
220  } else {
221  $url = $iscur ? $this->current->getUrl() : $this->current->getArchiveUrl( $img );
222  $row .= Xml::element(
223  'a',
224  [ 'href' => $url ],
225  $lang->userTimeAndDate( $timestamp, $user )
226  );
227  }
228  $row .= "</td>";
229 
230  // Thumbnail
231  if ( $this->showThumb ) {
232  $row .= '<td>' . $this->getThumbForLine( $file ) . '</td>';
233  }
234 
235  // Image dimensions + size
236  $row .= '<td>';
237  $row .= htmlspecialchars( $file->getDimensionsString() );
238  $row .= $this->msg( 'word-separator' )->escaped();
239  $row .= '<span style="white-space: nowrap;">';
240  $row .= $this->msg( 'parentheses' )->sizeParams( $file->getSize() )->escaped();
241  $row .= '</span>';
242  $row .= '</td>';
243 
244  // Uploading user
245  $row .= '<td>';
246  // Hide deleted usernames
247  if ( $file->isDeleted( File::DELETED_USER ) ) {
248  $row .= '<span class="history-deleted">'
249  . $this->msg( 'rev-deleted-user' )->escaped() . '</span>';
250  } else {
251  if ( $local ) {
252  $row .= Linker::userLink( $userId, $userText );
253  $row .= '<span style="white-space: nowrap;">';
254  $row .= Linker::userToolLinks( $userId, $userText );
255  $row .= '</span>';
256  } else {
257  $row .= htmlspecialchars( $userText );
258  }
259  }
260  $row .= '</td>';
261 
262  // Don't show deleted descriptions
263  if ( $file->isDeleted( File::DELETED_COMMENT ) ) {
264  $row .= '<td><span class="history-deleted">' .
265  $this->msg( 'rev-deleted-comment' )->escaped() . '</span></td>';
266  } else {
267  $row .= '<td dir="' . $wgContLang->getDir() . '">' .
268  Linker::formatComment( $description, $this->title ) . '</td>';
269  }
270 
271  $rowClass = null;
272  Hooks::run( 'ImagePageFileHistoryLine', [ $this, $file, &$row, &$rowClass ] );
273  $classAttr = $rowClass ? " class='$rowClass'" : '';
274 
275  return "<tr{$classAttr}>{$row}</tr>\n";
276  }
277 
282  protected function getThumbForLine( $file ) {
283  $lang = $this->getLanguage();
284  $user = $this->getUser();
285  if ( $file->allowInlineDisplay() && $file->userCan( File::DELETED_FILE, $user )
286  && !$file->isDeleted( File::DELETED_FILE )
287  ) {
288  $params = [
289  'width' => '120',
290  'height' => '120',
291  ];
292  $timestamp = wfTimestamp( TS_MW, $file->getTimestamp() );
293 
294  $thumbnail = $file->transform( $params );
295  $options = [
296  'alt' => $this->msg( 'filehist-thumbtext',
297  $lang->userTimeAndDate( $timestamp, $user ),
298  $lang->userDate( $timestamp, $user ),
299  $lang->userTime( $timestamp, $user ) )->text(),
300  'file-link' => true,
301  ];
302 
303  if ( !$thumbnail ) {
304  return $this->msg( 'filehist-nothumb' )->escaped();
305  }
306 
307  return $thumbnail->toHtml( $options );
308  } else {
309  return $this->msg( 'filehist-nothumb' )->escaped();
310  }
311  }
312 
316  protected function preventClickjacking( $enable = true ) {
317  $this->preventClickjacking = $enable;
318  }
319 
323  public function getPreventClickjacking() {
325  }
326 }
File\DELETED_USER
const DELETED_USER
Definition: File.php:55
ImageHistoryList\$img
File $img
Definition: ImageHistoryList.php:36
ContextSource\msg
msg()
Get a Message object with context set Parameters are the same as wfMessage()
Definition: ContextSource.php:187
ImageHistoryList
Builds the image revision log shown on image pages.
Definition: ImageHistoryList.php:26
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
$lang
if(!isset( $args[0])) $lang
Definition: testCompression.php:33
ImageHistoryList\$showThumb
$showThumb
Definition: ImageHistoryList.php:48
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
ImageHistoryList\imageHistoryLine
imageHistoryLine( $iscur, $file)
Definition: ImageHistoryList.php:113
wfTimestamp
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Definition: GlobalFunctions.php:1994
ImageHistoryList\__construct
__construct( $imagePage)
Definition: ImageHistoryList.php:54
$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
$params
$params
Definition: styleTest.css.php:40
Linker\linkKnown
static linkKnown( $target, $html=null, $customAttribs=[], $query=[], $options=[ 'known'])
Identical to link(), except $options defaults to 'known'.
Definition: Linker.php:159
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
ImagePage
Class for viewing MediaWiki file description pages.
Definition: ImagePage.php:30
ContextSource\getUser
getUser()
Get the User object.
Definition: ContextSource.php:133
Xml\openElement
static openElement( $element, $attribs=null)
This opens an XML element.
Definition: Xml.php:109
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
ContextSource\getLanguage
getLanguage()
Get the Language object.
Definition: ContextSource.php:143
ImageHistoryList\getImagePage
getImagePage()
Definition: ImageHistoryList.php:67
$query
null for the wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition: hooks.txt:1572
File
Implements some public methods and some protected utility functions which are required by multiple ch...
Definition: File.php:51
File\DELETED_COMMENT
const DELETED_COMMENT
Definition: File.php:54
Article\getTitle
getTitle()
Get the title object of the article.
Definition: Article.php:174
ImageHistoryList\$repo
$repo
Definition: ImageHistoryList.php:48
ContextSource
The simplest way of implementing IContextSource is to hold a RequestContext as a member variable and ...
Definition: ContextSource.php:30
Xml\element
static element( $element, $attribs=null, $contents='', $allowShortTag=true)
Format an XML element with given attributes and, optionally, text content.
Definition: Xml.php:39
Article\getPage
getPage()
Get the WikiPage object of this instance.
Definition: Article.php:184
Article\getContext
getContext()
Gets the context this Article is executed in.
Definition: Article.php:1932
Linker\revDeleteLinkDisabled
static revDeleteLinkDisabled( $delete=true)
Creates a dead (show/hide) link for deleting revisions/log entries.
Definition: Linker.php:2078
File\FOR_THIS_USER
const FOR_THIS_USER
Definition: File.php:70
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
ContextSource\setContext
setContext(IContextSource $context)
Set the IContextSource object.
Definition: ContextSource.php:58
ImageHistoryList\preventClickjacking
preventClickjacking( $enable=true)
Definition: ImageHistoryList.php:316
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
ImageHistoryList\$imagePage
ImagePage $imagePage
Definition: ImageHistoryList.php:41
ImageHistoryList\getFile
getFile()
Definition: ImageHistoryList.php:74
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
title
title
Definition: parserTests.txt:211
ImagePage\getDisplayedFile
getDisplayedFile()
Definition: ImagePage.php:226
File\getName
getName()
Return the name of this file.
Definition: File.php:297
Linker\formatComment
static formatComment( $comment, $title=null, $local=false, $wikiId=null)
This function is called by all recent changes variants, by the page history, and by the user contribu...
Definition: Linker.php:1094
Title
Represents a title within MediaWiki.
Definition: Title.php:39
ImageHistoryList\$title
Title $title
Definition: ImageHistoryList.php:31
ImageHistoryList\getThumbForLine
getThumbForLine( $file)
Definition: ImageHistoryList.php:282
Linker\revDeleteLink
static revDeleteLink( $query=[], $restricted=false, $delete=true)
Creates a (show/hide) link for deleting revisions/log entries.
Definition: Linker.php:2056
ImageHistoryList\beginImageHistoryList
beginImageHistoryList( $navLinks='')
Definition: ImageHistoryList.php:82
File\DELETED_FILE
const DELETED_FILE
Definition: File.php:53
ImageHistoryList\$preventClickjacking
$preventClickjacking
Definition: ImageHistoryList.php:49
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:131
ImageHistoryList\$current
File $current
Definition: ImageHistoryList.php:46
$options
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
Definition: hooks.txt:1049
ImageHistoryList\getPreventClickjacking
getPreventClickjacking()
Definition: ImageHistoryList.php:323
ImageHistoryList\endImageHistoryList
endImageHistoryList( $navLinks='')
Definition: ImageHistoryList.php:104
$wgContLang
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang
Definition: design.txt:56
$wgShowArchiveThumbnails
$wgShowArchiveThumbnails
Show thumbnails for old images on the image description page.
Definition: DefaultSettings.php:1215