3 * Special handling for file description pages.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
24 * Class for viewing MediaWiki file description pages
28 class ImagePage
extends Article
{
40 var $mExtraDescription = false;
44 * @return WikiFilePage
46 protected function newPage( Title
$title ) {
47 // Overload mPage with a file-specific page
48 return new WikiFilePage( $title );
52 * Constructor from a page id
53 * @param int $id article ID to load
54 * @return ImagePage|null
56 public static function newFromID( $id ) {
57 $t = Title
::newFromID( $id );
58 # @todo FIXME: Doesn't inherit right
59 return $t == null ?
null : new self( $t );
60 # return $t == null ? null : new static( $t ); // PHP 5.3
67 public function setFile( $file ) {
68 $this->mPage
->setFile( $file );
69 $this->displayImg
= $file;
70 $this->fileLoaded
= true;
73 protected function loadFile() {
74 if ( $this->fileLoaded
) {
77 $this->fileLoaded
= true;
79 $this->displayImg
= $img = false;
80 wfRunHooks( 'ImagePageFindFile', array( $this, &$img, &$this->displayImg
) );
81 if ( !$img ) { // not set by hook?
82 $img = wfFindFile( $this->getTitle() );
84 $img = wfLocalFile( $this->getTitle() );
87 $this->mPage
->setFile( $img );
88 if ( !$this->displayImg
) { // not set by hook?
89 $this->displayImg
= $img;
91 $this->repo
= $img->getRepo();
95 * Handler for action=render
96 * Include body text only; none of the image extras
98 public function render() {
99 $this->getContext()->getOutput()->setArticleBodyOnly( true );
103 public function view() {
106 $out = $this->getContext()->getOutput();
107 $request = $this->getContext()->getRequest();
108 $diff = $request->getVal( 'diff' );
109 $diffOnly = $request->getBool( 'diffonly', $this->getContext()->getUser()->getOption( 'diffonly' ) );
111 if ( $this->getTitle()->getNamespace() != NS_FILE ||
( $diff !== null && $diffOnly ) ) {
118 if ( $this->getTitle()->getNamespace() == NS_FILE
&& $this->mPage
->getFile()->getRedirected() ) {
119 if ( $this->getTitle()->getDBkey() == $this->mPage
->getFile()->getName() ||
$diff !== null ) {
120 // mTitle is the same as the redirect target so ask Article
121 // to perform the redirect for us.
122 $request->setVal( 'diffonly', 'true' );
126 // mTitle is not the same as the redirect target so it is
127 // probably the redirect page itself. Fake the redirect symbol
128 $out->setPageTitle( $this->getTitle()->getPrefixedText() );
129 $out->addHTML( $this->viewRedirect( Title
::makeTitle( NS_FILE
, $this->mPage
->getFile()->getName() ),
130 /* $appendSubtitle */ true, /* $forceKnown */ true ) );
131 $this->mPage
->doViewUpdates( $this->getContext()->getUser() );
136 if ( $wgShowEXIF && $this->displayImg
->exists() ) {
137 // @todo FIXME: Bad interface, see note on MediaHandler::formatMetadata().
138 $formattedMetadata = $this->displayImg
->formatMetadata();
139 $showmeta = $formattedMetadata !== false;
144 if ( !$diff && $this->displayImg
->exists() ) {
145 $out->addHTML( $this->showTOC( $showmeta ) );
149 $this->openShowImage();
152 # No need to display noarticletext, we use our own message, output in openShowImage()
153 if ( $this->mPage
->getID() ) {
154 # NS_FILE is in the user language, but this section (the actual wikitext)
155 # should be in page content language
156 $pageLang = $this->getTitle()->getPageViewLanguage();
157 $out->addHTML( Xml
::openElement( 'div', array( 'id' => 'mw-imagepage-content',
158 'lang' => $pageLang->getHtmlCode(), 'dir' => $pageLang->getDir(),
159 'class' => 'mw-content-' . $pageLang->getDir() ) ) );
163 $out->addHTML( Xml
::closeElement( 'div' ) );
165 # Just need to set the right headers
166 $out->setArticleFlag( true );
167 $out->setPageTitle( $this->getTitle()->getPrefixedText() );
168 $this->mPage
->doViewUpdates( $this->getContext()->getUser() );
171 # Show shared description, if needed
172 if ( $this->mExtraDescription
) {
173 $fol = wfMessage( 'shareddescriptionfollows' );
174 if ( !$fol->isDisabled() ) {
175 $out->addWikiText( $fol->plain() );
177 $out->addHTML( '<div id="shared-image-desc">' . $this->mExtraDescription
. "</div>\n" );
180 $this->closeShowImage();
181 $this->imageHistory();
182 // TODO: Cleanup the following
184 $out->addHTML( Xml
::element( 'h2',
185 array( 'id' => 'filelinks' ),
186 wfMessage( 'imagelinks' )->text() ) . "\n" );
188 # @todo FIXME: For some freaky reason, we can't redirect to foreign images.
189 # Yet we return metadata about the target. Definitely an issue in the FileRepo
192 # Allow extensions to add something after the image links
194 wfRunHooks( 'ImagePageAfterImageLinks', array( $this, &$html ) );
196 $out->addHTML( $html );
200 $out->addHTML( Xml
::element(
202 array( 'id' => 'metadata' ),
203 wfMessage( 'metadata' )->text() ) . "\n" );
204 $out->addWikiText( $this->makeMetadataTable( $formattedMetadata ) );
205 $out->addModules( array( 'mediawiki.action.view.metadata' ) );
208 // Add remote Filepage.css
209 if ( !$this->repo
->isLocal() ) {
210 $css = $this->repo
->getDescriptionStylesheetUrl();
212 $out->addStyle( $css );
215 // always show the local local Filepage.css, bug 29277
216 $out->addModuleStyles( 'filepage' );
222 public function getDisplayedFile() {
224 return $this->displayImg
;
230 * @param $metadata Boolean: whether or not to show the metadata link
233 protected function showTOC( $metadata ) {
235 '<li><a href="#file">' . wfMessage( 'file-anchor-link' )->escaped() . '</a></li>',
236 '<li><a href="#filehistory">' . wfMessage( 'filehist' )->escaped() . '</a></li>',
237 '<li><a href="#filelinks">' . wfMessage( 'imagelinks' )->escaped() . '</a></li>',
240 $r[] = '<li><a href="#metadata">' . wfMessage( 'metadata' )->escaped() . '</a></li>';
243 wfRunHooks( 'ImagePageShowTOC', array( $this, &$r ) );
245 return '<ul id="filetoc">' . implode( "\n", $r ) . '</ul>';
249 * Make a table with metadata to be shown in the output page.
251 * @todo FIXME: Bad interface, see note on MediaHandler::formatMetadata().
253 * @param array $metadata the array containing the Exif data
254 * @return String The metadata table. This is treated as Wikitext (!)
256 protected function makeMetadataTable( $metadata ) {
257 $r = "<div class=\"mw-imagepage-section-metadata\">";
258 $r .= wfMessage( 'metadata-help' )->plain();
259 $r .= "<table id=\"mw_metadata\" class=\"mw_metadata\">\n";
260 foreach ( $metadata as $type => $stuff ) {
261 foreach ( $stuff as $v ) {
262 # @todo FIXME: Why is this using escapeId for a class?!
263 $class = Sanitizer
::escapeId( $v['id'] );
264 if ( $type == 'collapsed' ) {
265 $class .= ' collapsable'; // sic
267 $r .= "<tr class=\"$class\">\n";
268 $r .= "<th>{$v['name']}</th>\n";
269 $r .= "<td>{$v['value']}</td>\n</tr>";
272 $r .= "</table>\n</div>\n";
277 * Overloading Article's getContentObject method.
279 * Omit noarticletext if sharedupload; text will be fetched from the
280 * shared upload server if possible.
283 public function getContentObject() {
285 if ( $this->mPage
->getFile() && !$this->mPage
->getFile()->isLocal() && 0 == $this->getID() ) {
288 return parent
::getContentObject();
291 protected function openShowImage() {
292 global $wgImageLimits, $wgEnableUploads, $wgSend404Code;
295 $out = $this->getContext()->getOutput();
296 $user = $this->getContext()->getUser();
297 $lang = $this->getContext()->getLanguage();
298 $dirmark = $lang->getDirMarkEntity();
299 $request = $this->getContext()->getRequest();
301 $max = $this->getImageLimitsFromOption( $user, 'imagesize' );
303 $maxHeight = $max[1];
305 if ( $this->displayImg
->exists() ) {
307 $page = $request->getIntOrNull( 'page' );
308 if ( is_null( $page ) ) {
312 $params = array( 'page' => $page );
315 $renderLang = $request->getVal( 'lang' );
316 if ( !is_null( $renderLang ) ) {
317 $params['lang'] = $renderLang;
320 $width_orig = $this->displayImg
->getWidth( $page );
321 $width = $width_orig;
322 $height_orig = $this->displayImg
->getHeight( $page );
323 $height = $height_orig;
325 $filename = wfEscapeWikiText( $this->displayImg
->getName() );
326 $linktext = $filename;
328 wfRunHooks( 'ImageOpenShowImageInlineBefore', array( &$this, &$out ) );
330 if ( $this->displayImg
->allowInlineDisplay() ) {
333 # "Download high res version" link below the image
334 # $msgsize = wfMessage( 'file-info-size', $width_orig, $height_orig, Linker::formatSize( $this->displayImg->getSize() ), $mime )->escaped();
335 # We'll show a thumbnail of this image
336 if ( $width > $maxWidth ||
$height > $maxHeight ) {
337 # Calculate the thumbnail size.
338 # First case, the limiting factor is the width, not the height.
339 if ( $width / $height >= $maxWidth / $maxHeight ) { // FIXME: Possible division by 0. bug 36911
340 $height = round( $height * $maxWidth / $width ); // FIXME: Possible division by 0. bug 36911
342 # Note that $height <= $maxHeight now.
344 $newwidth = floor( $width * $maxHeight / $height ); // FIXME: Possible division by 0. bug 36911
345 $height = round( $height * $newwidth / $width ); // FIXME: Possible division by 0. bug 36911
347 # Note that $height <= $maxHeight now, but might not be identical
348 # because of rounding.
350 $linktext = wfMessage( 'show-big-image' )->escaped();
351 if ( $this->displayImg
->getRepo()->canTransformVia404() ) {
352 $thumbSizes = $wgImageLimits;
354 # Creating thumb links triggers thumbnail generation.
355 # Just generate the thumb for the current users prefs.
356 $thumbSizes = array( $this->getImageLimitsFromOption( $user, 'thumbsize' ) );
358 # Generate thumbnails or thumbnail links as needed...
359 $otherSizes = array();
360 foreach ( $thumbSizes as $size ) {
361 if ( $size[0] < $width_orig && $size[1] < $height_orig
362 && $size[0] != $width && $size[1] != $height )
364 $sizeLink = $this->makeSizeLink( $params, $size[0], $size[1] );
366 $otherSizes[] = $sizeLink;
371 $sizeLinkBigImagePreview = $this->makeSizeLink( $params, $width, $height );
372 if ( $sizeLinkBigImagePreview ) {
373 $msgsmall .= wfMessage( 'show-big-image-preview' )->
374 rawParams( $sizeLinkBigImagePreview )->
377 if ( count( $otherSizes ) ) {
379 Html
::rawElement( 'span', array( 'class' => 'mw-filepage-other-resolutions' ),
380 wfMessage( 'show-big-image-other' )->rawParams( $lang->pipeList( $otherSizes ) )->
381 params( count( $otherSizes ) )->parse()
384 } elseif ( $width == 0 && $height == 0 ) {
385 # Some sort of audio file that doesn't have dimensions
386 # Don't output a no hi res message for such a file
388 } elseif ( $this->displayImg
->isVectorized() ) {
389 # For vectorized images, full size is just the frame size
392 # Image is small enough to show full size on image page
393 $msgsmall = wfMessage( 'file-nohires' )->parse();
396 $params['width'] = $width;
397 $params['height'] = $height;
398 $thumbnail = $this->displayImg
->transform( $params );
400 $anchorclose = Html
::rawElement( 'div', array( 'class' => 'mw-filepage-resolutioninfo' ), $msgsmall );
402 $isMulti = $this->displayImg
->isMultipage() && $this->displayImg
->pageCount() > 1;
404 $out->addHTML( '<table class="multipageimage"><tr><td>' );
409 'alt' => $this->displayImg
->getTitle()->getPrefixedText(),
412 $out->addHTML( '<div class="fullImageLink" id="file">' .
413 $thumbnail->toHtml( $options ) .
414 $anchorclose . "</div>\n" );
418 $count = $this->displayImg
->pageCount();
421 $label = $out->parse( wfMessage( 'imgmultipageprev' )->text(), false );
422 $link = Linker
::linkKnown(
426 array( 'page' => $page - 1 )
428 $thumb1 = Linker
::makeThumbLinkObj( $this->getTitle(), $this->displayImg
, $link, $label, 'none',
429 array( 'page' => $page - 1 ) );
434 if ( $page < $count ) {
435 $label = wfMessage( 'imgmultipagenext' )->text();
436 $link = Linker
::linkKnown(
440 array( 'page' => $page +
1 )
442 $thumb2 = Linker
::makeThumbLinkObj( $this->getTitle(), $this->displayImg
, $link, $label, 'none',
443 array( 'page' => $page +
1 ) );
451 'name' => 'pageselector',
452 'action' => $wgScript,
453 'onchange' => 'document.pageselector.submit();',
456 for ( $i = 1; $i <= $count; $i++
) {
457 $options[] = Xml
::option( $lang->formatNum( $i ), $i, $i == $page );
459 $select = Xml
::tags( 'select',
460 array( 'id' => 'pageselector', 'name' => 'page' ),
461 implode( "\n", $options ) );
464 '</td><td><div class="multipageimagenavbox">' .
465 Xml
::openElement( 'form', $formParams ) .
466 Html
::hidden( 'title', $this->getTitle()->getPrefixedDBkey() ) .
467 wfMessage( 'imgmultigoto' )->rawParams( $select )->parse() .
468 Xml
::submitButton( wfMessage( 'imgmultigo' )->text() ) .
469 Xml
::closeElement( 'form' ) .
470 "<hr />$thumb1\n$thumb2<br style=\"clear: both\" /></div></td></tr></table>"
473 } elseif ( $this->displayImg
->isSafeFile() ) {
474 # if direct link is allowed but it's not a renderable image, show an icon.
475 $icon = $this->displayImg
->iconThumb();
477 $out->addHTML( '<div class="fullImageLink" id="file">' .
478 $icon->toHtml( array( 'file-link' => true ) ) .
482 $longDesc = wfMessage( 'parentheses', $this->displayImg
->getLongDesc() )->text();
484 $medialink = "[[Media:$filename|$linktext]]";
486 if ( !$this->displayImg
->isSafeFile() ) {
487 $warning = wfMessage( 'mediawarning' )->plain();
488 // dirmark is needed here to separate the file name, which
489 // most likely ends in Latin characters, from the description,
490 // which may begin with the file type. In RTL environment
491 // this will get messy.
492 // The dirmark, however, must not be immediately adjacent
493 // to the filename, because it can get copied with it.
495 $out->addWikiText( <<<EOT
496 <div class="fullMedia"><span class="dangerousLink">{$medialink}</span> $dirmark<span class="fileInfo">$longDesc</span></div>
497 <div class="mediaWarning">$warning</div>
501 $out->addWikiText( <<<EOT
502 <div class="fullMedia">{$medialink} {$dirmark}<span class="fileInfo">$longDesc</span>
508 // Add cannot animate thumbnail warning
509 if ( !$this->displayImg
->canAnimateThumbIfAppropriate() ) {
510 // Include the extension so wiki admins can
511 // customize it on a per file-type basis
512 // (aka say things like use format X instead).
513 // additionally have a specific message for
514 // file-no-thumb-animation-gif
515 $ext = $this->displayImg
->getExtension();
516 $noAnimMesg = wfMessageFallback(
517 'file-no-thumb-animation-' . $ext,
518 'file-no-thumb-animation'
521 $out->addWikiText( <<<EOT
522 <div class="mw-noanimatethumb">{$noAnimMesg}</div>
527 if ( !$this->displayImg
->isLocal() ) {
528 $this->printSharedImageText();
531 # Image does not exist
532 if ( !$this->getID() ) {
533 # No article exists either
534 # Show deletion log to be consistent with normal articles
535 LogEventsList
::showLogExtract(
537 array( 'delete', 'move' ),
538 $this->getTitle()->getPrefixedText(),
541 'conds' => array( "log_action != 'revision'" ),
542 'showIfEmpty' => false,
543 'msgKey' => array( 'moveddeleted-notice' )
548 if ( $wgEnableUploads && $user->isAllowed( 'upload' ) ) {
549 // Only show an upload link if the user can upload
550 $uploadTitle = SpecialPage
::getTitleFor( 'Upload' );
552 'filepage-nofile-link',
553 $uploadTitle->getFullURL( array( 'wpDestFile' => $this->mPage
->getFile()->getName() ) )
556 $nofile = 'filepage-nofile';
558 // Note, if there is an image description page, but
559 // no image, then this setRobotPolicy is overridden
560 // by Article::View().
561 $out->setRobotPolicy( 'noindex,nofollow' );
562 $out->wrapWikiMsg( "<div id='mw-imagepage-nofile' class='plainlinks'>\n$1\n</div>", $nofile );
563 if ( !$this->getID() && $wgSend404Code ) {
564 // If there is no image, no shared image, and no description page,
565 // output a 404, to be consistent with articles.
566 $request->response()->header( 'HTTP/1.1 404 Not Found' );
569 $out->setFileVersion( $this->displayImg
);
573 * Creates an thumbnail of specified size and returns an HTML link to it
574 * @param array $params Scaler parameters
579 private function makeSizeLink( $params, $width, $height ) {
580 $params['width'] = $width;
581 $params['height'] = $height;
582 $thumbnail = $this->displayImg
->transform( $params );
583 if ( $thumbnail && !$thumbnail->isError() ) {
584 return Html
::rawElement( 'a', array(
585 'href' => $thumbnail->getUrl(),
586 'class' => 'mw-thumbnail-link'
587 ), wfMessage( 'show-big-image-size' )->numParams(
588 $thumbnail->getWidth(), $thumbnail->getHeight()
596 * Show a notice that the file is from a shared repository
598 protected function printSharedImageText() {
599 $out = $this->getContext()->getOutput();
602 $descUrl = $this->mPage
->getFile()->getDescriptionUrl();
603 $descText = $this->mPage
->getFile()->getDescriptionText();
605 /* Add canonical to head if there is no local page for this shared file */
606 if ( $descUrl && $this->mPage
->getID() == 0 ) {
607 $out->setCanonicalUrl( $descUrl );
610 $wrap = "<div class=\"sharedUploadNotice\">\n$1\n</div>\n";
611 $repo = $this->mPage
->getFile()->getRepo()->getDisplayName();
613 if ( $descUrl && $descText && wfMessage( 'sharedupload-desc-here' )->plain() !== '-' ) {
614 $out->wrapWikiMsg( $wrap, array( 'sharedupload-desc-here', $repo, $descUrl ) );
615 } elseif ( $descUrl && wfMessage( 'sharedupload-desc-there' )->plain() !== '-' ) {
616 $out->wrapWikiMsg( $wrap, array( 'sharedupload-desc-there', $repo, $descUrl ) );
618 $out->wrapWikiMsg( $wrap, array( 'sharedupload', $repo ), ''/*BACKCOMPAT*/ );
622 $this->mExtraDescription
= $descText;
626 public function getUploadUrl() {
628 $uploadTitle = SpecialPage
::getTitleFor( 'Upload' );
629 return $uploadTitle->getFullURL( array(
630 'wpDestFile' => $this->mPage
->getFile()->getName(),
636 * Print out the various links at the bottom of the image page, e.g. reupload,
637 * external editing (and instructions link) etc.
639 protected function uploadLinksBox() {
640 global $wgEnableUploads;
642 if ( !$wgEnableUploads ) {
647 if ( !$this->mPage
->getFile()->isLocal() ) {
651 $out = $this->getContext()->getOutput();
652 $out->addHTML( "<ul>\n" );
654 # "Upload a new version of this file" link
655 $canUpload = $this->getTitle()->userCan( 'upload', $this->getContext()->getUser() );
656 if ( $canUpload && UploadBase
::userCanReUpload( $this->getContext()->getUser(), $this->mPage
->getFile()->name
) ) {
657 $ulink = Linker
::makeExternalLink( $this->getUploadUrl(), wfMessage( 'uploadnewversion-linktext' )->text() );
658 $out->addHTML( "<li id=\"mw-imagepage-reupload-link\"><div class=\"plainlinks\">{$ulink}</div></li>\n" );
660 $out->addHTML( "<li id=\"mw-imagepage-upload-disallowed\">" . $this->getContext()->msg( 'upload-disallowed-here' )->escaped() . "</li>\n" );
663 $out->addHTML( "</ul>\n" );
666 protected function closeShowImage() { } # For overloading
669 * If the page we've just displayed is in the "Image" namespace,
670 * we follow it with an upload history of the image and its usage.
672 protected function imageHistory() {
674 $out = $this->getContext()->getOutput();
675 $pager = new ImageHistoryPseudoPager( $this );
676 $out->addHTML( $pager->getBody() );
677 $out->preventClickjacking( $pager->getPreventClickjacking() );
679 $this->mPage
->getFile()->resetHistory(); // free db resources
681 # Exist check because we don't want to show this on pages where an image
682 # doesn't exist along with the noimage message, that would suck. -ævar
683 if ( $this->mPage
->getFile()->exists() ) {
684 $this->uploadLinksBox();
691 * @return ResultWrapper
693 protected function queryImageLinks( $target, $limit ) {
694 $dbr = wfGetDB( DB_SLAVE
);
697 array( 'imagelinks', 'page' ),
698 array( 'page_namespace', 'page_title', 'page_is_redirect', 'il_to' ),
699 array( 'il_to' => $target, 'il_from = page_id' ),
701 array( 'LIMIT' => $limit +
1, 'ORDER BY' => 'il_from', )
705 protected function imageLinks() {
708 $out = $this->getContext()->getOutput();
709 $res = $this->queryImageLinks( $this->getTitle()->getDBkey(), $limit +
1 );
711 $redirects = array();
712 foreach ( $res as $row ) {
713 if ( $row->page_is_redirect
) {
714 $redirects[$row->page_title
] = array();
718 $count = count( $rows );
720 $hasMore = $count > $limit;
721 if ( !$hasMore && count( $redirects ) ) {
722 $res = $this->queryImageLinks( array_keys( $redirects ),
723 $limit - count( $rows ) +
1 );
724 foreach ( $res as $row ) {
725 $redirects[$row->il_to
][] = $row;
728 $hasMore = ( $res->numRows() +
count( $rows ) ) > $limit;
733 Html
::rawElement( 'div',
734 array( 'id' => 'mw-imagepage-nolinkstoimage' ), "\n$1\n" ),
740 $out->addHTML( "<div id='mw-imagepage-section-linkstoimage'>\n" );
742 $out->addWikiMsg( 'linkstoimage', $count );
744 // More links than the limit. Add a link to [[Special:Whatlinkshere]]
745 $out->addWikiMsg( 'linkstoimage-more',
746 $this->getContext()->getLanguage()->formatNum( $limit ),
747 $this->getTitle()->getPrefixedDBkey()
752 Html
::openElement( 'ul',
753 array( 'class' => 'mw-imagepage-linkstoimage' ) ) . "\n"
757 // Sort the list by namespace:title
758 usort( $rows, array( $this, 'compare' ) );
760 // Create links for every element
762 foreach ( $rows as $element ) {
764 if ( $currentCount > $limit ) {
768 $link = Linker
::linkKnown( Title
::makeTitle( $element->page_namespace
, $element->page_title
) );
769 if ( !isset( $redirects[$element->page_title
] ) ) {
772 } elseif ( count( $redirects[$element->page_title
] ) === 0 ) {
773 # Redirect without usages
774 $liContents = wfMessage( 'linkstoimage-redirect' )->rawParams( $link, '' )->parse();
776 # Redirect with usages
778 foreach ( $redirects[$element->page_title
] as $row ) {
780 if ( $currentCount > $limit ) {
784 $link2 = Linker
::linkKnown( Title
::makeTitle( $row->page_namespace
, $row->page_title
) );
785 $li .= Html
::rawElement(
787 array( 'class' => 'mw-imagepage-linkstoimage-ns' . $element->page_namespace
),
792 $ul = Html
::rawElement(
794 array( 'class' => 'mw-imagepage-redirectstofile' ),
797 $liContents = wfMessage( 'linkstoimage-redirect' )->rawParams(
798 $link, $ul )->parse();
800 $out->addHTML( Html
::rawElement(
802 array( 'class' => 'mw-imagepage-linkstoimage-ns' . $element->page_namespace
),
808 $out->addHTML( Html
::closeElement( 'ul' ) . "\n" );
811 // Add a links to [[Special:Whatlinkshere]]
812 if ( $count > $limit ) {
813 $out->addWikiMsg( 'morelinkstoimage', $this->getTitle()->getPrefixedDBkey() );
815 $out->addHTML( Html
::closeElement( 'div' ) . "\n" );
818 protected function imageDupes() {
820 $out = $this->getContext()->getOutput();
822 $dupes = $this->mPage
->getDuplicates();
823 if ( count( $dupes ) == 0 ) {
827 $out->addHTML( "<div id='mw-imagepage-section-duplicates'>\n" );
828 $out->addWikiMsg( 'duplicatesoffile',
829 $this->getContext()->getLanguage()->formatNum( count( $dupes ) ), $this->getTitle()->getDBkey()
831 $out->addHTML( "<ul class='mw-imagepage-duplicates'>\n" );
836 foreach ( $dupes as $file ) {
838 if ( $file->isLocal() ) {
839 $link = Linker
::linkKnown( $file->getTitle() );
841 $link = Linker
::makeExternalLink( $file->getDescriptionUrl(),
842 $file->getTitle()->getPrefixedText() );
843 $fromSrc = wfMessage( 'shared-repo-from', $file->getRepo()->getDisplayName() )->text();
845 $out->addHTML( "<li>{$link} {$fromSrc}</li>\n" );
847 $out->addHTML( "</ul></div>\n" );
851 * Delete the file, or an earlier version of it
853 public function delete() {
854 $file = $this->mPage
->getFile();
855 if ( !$file->exists() ||
!$file->isLocal() ||
$file->getRedirected() ) {
856 // Standard article deletion
861 $deleter = new FileDeleteForm( $file );
866 * Display an error with a wikitext description
868 * @param $description String
870 function showError( $description ) {
871 $out = $this->getContext()->getOutput();
872 $out->setPageTitle( wfMessage( 'internalerror' ) );
873 $out->setRobotPolicy( 'noindex,nofollow' );
874 $out->setArticleRelated( false );
875 $out->enableClientCache( false );
876 $out->addWikiText( $description );
880 * Callback for usort() to do link sorts by (namespace, title)
881 * Function copied from Title::compare()
883 * @param $a object page to compare with
884 * @param $b object page to compare with
885 * @return Integer: result of string comparison, or namespace comparison
887 protected function compare( $a, $b ) {
888 if ( $a->page_namespace
== $b->page_namespace
) {
889 return strcmp( $a->page_title
, $b->page_title
);
891 return $a->page_namespace
- $b->page_namespace
;
896 * Returns the corresponding $wgImageLimits entry for the selected user option
899 * @param string $optionName Name of a option to check, typically imagesize or thumbsize
903 public function getImageLimitsFromOption( $user, $optionName ) {
904 global $wgImageLimits;
906 $option = $user->getIntOption( $optionName );
907 if ( !isset( $wgImageLimits[$option] ) ) {
908 $option = User
::getDefaultOption( $optionName );
911 // The user offset might still be incorrect, specially if
912 // $wgImageLimits got changed (see bug #8858).
913 if ( !isset( $wgImageLimits[$option] ) ) {
914 // Default to the first offset in $wgImageLimits
918 return isset( $wgImageLimits[$option] )
919 ?
$wgImageLimits[$option]
920 : array( 800, 600 ); // if nothing is set, fallback to a hardcoded default
925 * Builds the image revision log shown on image pages
929 class ImageHistoryList
extends ContextSource
{
944 protected $imagePage;
951 protected $repo, $showThumb;
952 protected $preventClickjacking = false;
955 * @param ImagePage $imagePage
957 public function __construct( $imagePage ) {
958 global $wgShowArchiveThumbnails;
959 $this->current
= $imagePage->getFile();
960 $this->img
= $imagePage->getDisplayedFile();
961 $this->title
= $imagePage->getTitle();
962 $this->imagePage
= $imagePage;
963 $this->showThumb
= $wgShowArchiveThumbnails && $this->img
->canRender();
964 $this->setContext( $imagePage->getContext() );
970 public function getImagePage() {
971 return $this->imagePage
;
977 public function getFile() {
982 * @param $navLinks string
985 public function beginImageHistoryList( $navLinks = '' ) {
986 return Xml
::element( 'h2', array( 'id' => 'filehistory' ), $this->msg( 'filehist' )->text() ) . "\n"
987 . "<div id=\"mw-imagepage-section-filehistory\">\n"
988 . $this->msg( 'filehist-help' )->parseAsBlock()
990 . Xml
::openElement( 'table', array( 'class' => 'wikitable filehistory' ) ) . "\n"
992 . ( $this->current
->isLocal() && ( $this->getUser()->isAllowedAny( 'delete', 'deletedhistory' ) ) ?
'<td></td>' : '' )
993 . '<th>' . $this->msg( 'filehist-datetime' )->escaped() . '</th>'
994 . ( $this->showThumb ?
'<th>' . $this->msg( 'filehist-thumb' )->escaped() . '</th>' : '' )
995 . '<th>' . $this->msg( 'filehist-dimensions' )->escaped() . '</th>'
996 . '<th>' . $this->msg( 'filehist-user' )->escaped() . '</th>'
997 . '<th>' . $this->msg( 'filehist-comment' )->escaped() . '</th>'
1002 * @param $navLinks string
1005 public function endImageHistoryList( $navLinks = '' ) {
1006 return "</table>\n$navLinks\n</div>\n";
1014 public function imageHistoryLine( $iscur, $file ) {
1017 $user = $this->getUser();
1018 $lang = $this->getLanguage();
1019 $timestamp = wfTimestamp( TS_MW
, $file->getTimestamp() );
1020 $img = $iscur ?
$file->getName() : $file->getArchiveName();
1021 $userId = $file->getUser( 'id' );
1022 $userText = $file->getUser( 'text' );
1023 $description = $file->getDescription( File
::FOR_THIS_USER
, $user );
1025 $local = $this->current
->isLocal();
1026 $row = $selected = '';
1029 if ( $local && ( $user->isAllowedAny( 'delete', 'deletedhistory' ) ) ) {
1031 # Link to remove from history
1032 if ( $user->isAllowed( 'delete' ) ) {
1033 $q = array( 'action' => 'delete' );
1035 $q['oldimage'] = $img;
1037 $row .= Linker
::linkKnown(
1039 $this->msg( $iscur ?
'filehist-deleteall' : 'filehist-deleteone' )->escaped(),
1043 # Link to hide content. Don't show useless link to people who cannot hide revisions.
1044 $canHide = $user->isAllowed( 'deleterevision' );
1045 if ( $canHide ||
( $user->isAllowed( 'deletedhistory' ) && $file->getVisibility() ) ) {
1046 if ( $user->isAllowed( 'delete' ) ) {
1049 // If file is top revision or locked from this user, don't link
1050 if ( $iscur ||
!$file->userCan( File
::DELETED_RESTRICTED
, $user ) ) {
1051 $del = Linker
::revDeleteLinkDisabled( $canHide );
1053 list( $ts, ) = explode( '!', $img, 2 );
1055 'type' => 'oldimage',
1056 'target' => $this->title
->getPrefixedText(),
1059 $del = Linker
::revDeleteLink( $query,
1060 $file->isDeleted( File
::DELETED_RESTRICTED
), $canHide );
1067 // Reversion link/current indicator
1070 $row .= $this->msg( 'filehist-current' )->escaped();
1071 } elseif ( $local && $this->title
->quickUserCan( 'edit', $user )
1072 && $this->title
->quickUserCan( 'upload', $user )
1074 if ( $file->isDeleted( File
::DELETED_FILE
) ) {
1075 $row .= $this->msg( 'filehist-revert' )->escaped();
1077 $row .= Linker
::linkKnown(
1079 $this->msg( 'filehist-revert' )->escaped(),
1082 'action' => 'revert',
1084 'wpEditToken' => $user->getEditToken( $img )
1091 // Date/time and image link
1092 if ( $file->getTimestamp() === $this->img
->getTimestamp() ) {
1093 $selected = "class='filehistory-selected'";
1095 $row .= "<td $selected style='white-space: nowrap;'>";
1096 if ( !$file->userCan( File
::DELETED_FILE
, $user ) ) {
1097 # Don't link to unviewable files
1098 $row .= '<span class="history-deleted">' . $lang->userTimeAndDate( $timestamp, $user ) . '</span>';
1099 } elseif ( $file->isDeleted( File
::DELETED_FILE
) ) {
1101 $this->preventClickjacking();
1102 $revdel = SpecialPage
::getTitleFor( 'Revisiondelete' );
1103 # Make a link to review the image
1104 $url = Linker
::linkKnown(
1106 $lang->userTimeAndDate( $timestamp, $user ),
1109 'target' => $this->title
->getPrefixedText(),
1111 'token' => $user->getEditToken( $img )
1115 $url = $lang->userTimeAndDate( $timestamp, $user );
1117 $row .= '<span class="history-deleted">' . $url . '</span>';
1119 $url = $iscur ?
$this->current
->getUrl() : $this->current
->getArchiveUrl( $img );
1120 $row .= Xml
::element( 'a', array( 'href' => $url ), $lang->userTimeAndDate( $timestamp, $user ) );
1125 if ( $this->showThumb
) {
1126 $row .= '<td>' . $this->getThumbForLine( $file ) . '</td>';
1129 // Image dimensions + size
1131 $row .= htmlspecialchars( $file->getDimensionsString() );
1132 $row .= $this->msg( 'word-separator' )->plain();
1133 $row .= '<span style="white-space: nowrap;">';
1134 $row .= $this->msg( 'parentheses' )->rawParams( Linker
::formatSize( $file->getSize() ) )->plain();
1140 // Hide deleted usernames
1141 if ( $file->isDeleted( File
::DELETED_USER
) ) {
1142 $row .= '<span class="history-deleted">' . $this->msg( 'rev-deleted-user' )->escaped() . '</span>';
1145 $row .= Linker
::userLink( $userId, $userText );
1146 $row .= $this->msg( 'word-separator' )->plain();
1147 $row .= '<span style="white-space: nowrap;">';
1148 $row .= Linker
::userToolLinks( $userId, $userText );
1151 $row .= htmlspecialchars( $userText );
1156 // Don't show deleted descriptions
1157 if ( $file->isDeleted( File
::DELETED_COMMENT
) ) {
1158 $row .= '<td><span class="history-deleted">' . $this->msg( 'rev-deleted-comment' )->escaped() . '</span></td>';
1160 $row .= '<td dir="' . $wgContLang->getDir() . '">' . Linker
::formatComment( $description, $this->title
) . '</td>';
1164 wfRunHooks( 'ImagePageFileHistoryLine', array( $this, $file, &$row, &$rowClass ) );
1165 $classAttr = $rowClass ?
" class='$rowClass'" : '';
1167 return "<tr{$classAttr}>{$row}</tr>\n";
1174 protected function getThumbForLine( $file ) {
1175 $lang = $this->getLanguage();
1176 $user = $this->getUser();
1177 if ( $file->allowInlineDisplay() && $file->userCan( File
::DELETED_FILE
, $user )
1178 && !$file->isDeleted( File
::DELETED_FILE
) )
1184 $timestamp = wfTimestamp( TS_MW
, $file->getTimestamp() );
1186 $thumbnail = $file->transform( $params );
1188 'alt' => $this->msg( 'filehist-thumbtext',
1189 $lang->userTimeAndDate( $timestamp, $user ),
1190 $lang->userDate( $timestamp, $user ),
1191 $lang->userTime( $timestamp, $user ) )->text(),
1192 'file-link' => true,
1195 if ( !$thumbnail ) {
1196 return $this->msg( 'filehist-nothumb' )->escaped();
1199 return $thumbnail->toHtml( $options );
1201 return $this->msg( 'filehist-nothumb' )->escaped();
1206 * @param $enable bool
1208 protected function preventClickjacking( $enable = true ) {
1209 $this->preventClickjacking
= $enable;
1215 public function getPreventClickjacking() {
1216 return $this->preventClickjacking
;
1220 class ImageHistoryPseudoPager
extends ReverseChronologicalPager
{
1221 protected $preventClickjacking = false;
1234 * @param ImagePage $imagePage
1236 function __construct( $imagePage ) {
1237 parent
::__construct( $imagePage->getContext() );
1238 $this->mImagePage
= $imagePage;
1239 $this->mTitle
= clone ( $imagePage->getTitle() );
1240 $this->mTitle
->setFragment( '#filehistory' );
1242 $this->mHist
= array();
1243 $this->mRange
= array( 0, 0 ); // display range
1249 function getTitle() {
1250 return $this->mTitle
;
1253 function getQueryInfo() {
1260 function getIndexField() {
1265 * @param $row object
1268 function formatRow( $row ) {
1275 function getBody() {
1278 if ( count( $this->mHist
) ) {
1279 $list = new ImageHistoryList( $this->mImagePage
);
1280 # Generate prev/next links
1281 $navLink = $this->getNavigationBar();
1282 $s = $list->beginImageHistoryList( $navLink );
1283 // Skip rows there just for paging links
1284 for ( $i = $this->mRange
[0]; $i <= $this->mRange
[1]; $i++
) {
1285 $file = $this->mHist
[$i];
1286 $s .= $list->imageHistoryLine( !$file->isOld(), $file );
1288 $s .= $list->endImageHistoryList( $navLink );
1290 if ( $list->getPreventClickjacking() ) {
1291 $this->preventClickjacking();
1297 function doQuery() {
1298 if ( $this->mQueryDone
) {
1301 $this->mImg
= $this->mImagePage
->getFile(); // ensure loading
1302 if ( !$this->mImg
->exists() ) {
1305 $queryLimit = $this->mLimit +
1; // limit plus extra row
1306 if ( $this->mIsBackwards
) {
1307 // Fetch the file history
1308 $this->mHist
= $this->mImg
->getHistory( $queryLimit, null, $this->mOffset
, false );
1309 // The current rev may not meet the offset/limit
1310 $numRows = count( $this->mHist
);
1311 if ( $numRows <= $this->mLimit
&& $this->mImg
->getTimestamp() > $this->mOffset
) {
1312 $this->mHist
= array_merge( array( $this->mImg
), $this->mHist
);
1315 // The current rev may not meet the offset
1316 if ( !$this->mOffset ||
$this->mImg
->getTimestamp() < $this->mOffset
) {
1317 $this->mHist
[] = $this->mImg
;
1319 // Old image versions (fetch extra row for nav links)
1320 $oiLimit = count( $this->mHist
) ?
$this->mLimit
: $this->mLimit +
1;
1321 // Fetch the file history
1322 $this->mHist
= array_merge( $this->mHist
,
1323 $this->mImg
->getHistory( $oiLimit, $this->mOffset
, null, false ) );
1325 $numRows = count( $this->mHist
); // Total number of query results
1327 # Index value of top item in the list
1328 $firstIndex = $this->mIsBackwards ?
1329 $this->mHist
[$numRows - 1]->getTimestamp() : $this->mHist
[0]->getTimestamp();
1330 # Discard the extra result row if there is one
1331 if ( $numRows > $this->mLimit
&& $numRows > 1 ) {
1332 if ( $this->mIsBackwards
) {
1333 # Index value of item past the index
1334 $this->mPastTheEndIndex
= $this->mHist
[0]->getTimestamp();
1335 # Index value of bottom item in the list
1336 $lastIndex = $this->mHist
[1]->getTimestamp();
1338 $this->mRange
= array( 1, $numRows - 1 );
1340 # Index value of item past the index
1341 $this->mPastTheEndIndex
= $this->mHist
[$numRows - 1]->getTimestamp();
1342 # Index value of bottom item in the list
1343 $lastIndex = $this->mHist
[$numRows - 2]->getTimestamp();
1345 $this->mRange
= array( 0, $numRows - 2 );
1348 # Setting indexes to an empty string means that they will be
1349 # omitted if they would otherwise appear in URLs. It just so
1350 # happens that this is the right thing to do in the standard
1351 # UI, in all the relevant cases.
1352 $this->mPastTheEndIndex
= '';
1353 # Index value of bottom item in the list
1354 $lastIndex = $this->mIsBackwards ?
1355 $this->mHist
[0]->getTimestamp() : $this->mHist
[$numRows - 1]->getTimestamp();
1357 $this->mRange
= array( 0, $numRows - 1 );
1362 $this->mPastTheEndIndex
= '';
1364 if ( $this->mIsBackwards
) {
1365 $this->mIsFirst
= ( $numRows < $queryLimit );
1366 $this->mIsLast
= ( $this->mOffset
== '' );
1367 $this->mLastShown
= $firstIndex;
1368 $this->mFirstShown
= $lastIndex;
1370 $this->mIsFirst
= ( $this->mOffset
== '' );
1371 $this->mIsLast
= ( $numRows < $queryLimit );
1372 $this->mLastShown
= $lastIndex;
1373 $this->mFirstShown
= $firstIndex;
1375 $this->mQueryDone
= true;
1379 * @param $enable bool
1381 protected function preventClickjacking( $enable = true ) {
1382 $this->preventClickjacking
= $enable;
1388 public function getPreventClickjacking() {
1389 return $this->preventClickjacking
;