Merge "Check supportsDirectEditing when suggesting page creation"
[lhc/web/wiklou.git] / includes / page / ImagePage.php
1 <?php
2 /**
3 * Special handling for file description pages.
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 */
22
23 use Wikimedia\Rdbms\ResultWrapper;
24
25 /**
26 * Class for viewing MediaWiki file description pages
27 *
28 * @ingroup Media
29 */
30 class ImagePage extends Article {
31 /** @var File */
32 private $displayImg;
33
34 /** @var FileRepo */
35 private $repo;
36
37 /** @var bool */
38 private $fileLoaded;
39
40 /** @var bool */
41 protected $mExtraDescription = false;
42
43 /**
44 * @var WikiFilePage
45 */
46 protected $mPage;
47
48 /**
49 * @param Title $title
50 * @return WikiFilePage
51 */
52 protected function newPage( Title $title ) {
53 // Overload mPage with a file-specific page
54 return new WikiFilePage( $title );
55 }
56
57 /**
58 * @param File $file
59 * @return void
60 */
61 public function setFile( $file ) {
62 $this->mPage->setFile( $file );
63 $this->displayImg = $file;
64 $this->fileLoaded = true;
65 }
66
67 protected function loadFile() {
68 if ( $this->fileLoaded ) {
69 return;
70 }
71 $this->fileLoaded = true;
72
73 $this->displayImg = $img = false;
74
75 Hooks::run( 'ImagePageFindFile', [ $this, &$img, &$this->displayImg ] );
76 if ( !$img ) { // not set by hook?
77 $img = wfFindFile( $this->getTitle() );
78 if ( !$img ) {
79 $img = wfLocalFile( $this->getTitle() );
80 }
81 }
82 $this->mPage->setFile( $img );
83 if ( !$this->displayImg ) { // not set by hook?
84 $this->displayImg = $img;
85 }
86 $this->repo = $img->getRepo();
87 }
88
89 /**
90 * Handler for action=render
91 * Include body text only; none of the image extras
92 */
93 public function render() {
94 $this->getContext()->getOutput()->setArticleBodyOnly( true );
95 parent::view();
96 }
97
98 public function view() {
99 global $wgShowEXIF;
100
101 $out = $this->getContext()->getOutput();
102 $request = $this->getContext()->getRequest();
103 $diff = $request->getVal( 'diff' );
104 $diffOnly = $request->getBool(
105 'diffonly',
106 $this->getContext()->getUser()->getOption( 'diffonly' )
107 );
108
109 if ( $this->getTitle()->getNamespace() != NS_FILE || ( $diff !== null && $diffOnly ) ) {
110 parent::view();
111 return;
112 }
113
114 $this->loadFile();
115
116 if ( $this->getTitle()->getNamespace() == NS_FILE && $this->mPage->getFile()->getRedirected() ) {
117 if ( $this->getTitle()->getDBkey() == $this->mPage->getFile()->getName() || $diff !== null ) {
118 // mTitle is the same as the redirect target so ask Article
119 // to perform the redirect for us.
120 $request->setVal( 'diffonly', 'true' );
121 parent::view();
122 return;
123 } else {
124 // mTitle is not the same as the redirect target so it is
125 // probably the redirect page itself. Fake the redirect symbol
126 $out->setPageTitle( $this->getTitle()->getPrefixedText() );
127 $out->addHTML( $this->viewRedirect(
128 Title::makeTitle( NS_FILE, $this->mPage->getFile()->getName() ),
129 /* $appendSubtitle */ true,
130 /* $forceKnown */ true )
131 );
132 $this->mPage->doViewUpdates( $this->getContext()->getUser(), $this->getOldID() );
133 return;
134 }
135 }
136
137 if ( $wgShowEXIF && $this->displayImg->exists() ) {
138 // @todo FIXME: Bad interface, see note on MediaHandler::formatMetadata().
139 $formattedMetadata = $this->displayImg->formatMetadata( $this->getContext() );
140 $showmeta = $formattedMetadata !== false;
141 } else {
142 $showmeta = false;
143 }
144
145 if ( !$diff && $this->displayImg->exists() ) {
146 $out->addHTML( $this->showTOC( $showmeta ) );
147 }
148
149 if ( !$diff ) {
150 $this->openShowImage();
151 }
152
153 # No need to display noarticletext, we use our own message, output in openShowImage()
154 if ( $this->mPage->getId() ) {
155 # NS_FILE is in the user language, but this section (the actual wikitext)
156 # should be in page content language
157 $pageLang = $this->getTitle()->getPageViewLanguage();
158 $out->addHTML( Xml::openElement( 'div', [ 'id' => 'mw-imagepage-content',
159 'lang' => $pageLang->getHtmlCode(), 'dir' => $pageLang->getDir(),
160 'class' => 'mw-content-' . $pageLang->getDir() ] ) );
161
162 parent::view();
163
164 $out->addHTML( Xml::closeElement( 'div' ) );
165 } else {
166 # Just need to set the right headers
167 $out->setArticleFlag( true );
168 $out->setPageTitle( $this->getTitle()->getPrefixedText() );
169 $this->mPage->doViewUpdates( $this->getContext()->getUser(), $this->getOldID() );
170 }
171
172 # Show shared description, if needed
173 if ( $this->mExtraDescription ) {
174 $fol = $this->getContext()->msg( 'shareddescriptionfollows' );
175 if ( !$fol->isDisabled() ) {
176 $out->addWikiText( $fol->plain() );
177 }
178 $out->addHTML( '<div id="shared-image-desc">' . $this->mExtraDescription . "</div>\n" );
179 }
180
181 $this->closeShowImage();
182 $this->imageHistory();
183 // TODO: Cleanup the following
184
185 $out->addHTML( Xml::element( 'h2',
186 [ 'id' => 'filelinks' ],
187 $this->getContext()->msg( 'imagelinks' )->text() ) . "\n" );
188 $this->imageDupes();
189 # @todo FIXME: For some freaky reason, we can't redirect to foreign images.
190 # Yet we return metadata about the target. Definitely an issue in the FileRepo
191 $this->imageLinks();
192
193 # Allow extensions to add something after the image links
194 $html = '';
195 Hooks::run( 'ImagePageAfterImageLinks', [ $this, &$html ] );
196 if ( $html ) {
197 $out->addHTML( $html );
198 }
199
200 if ( $showmeta ) {
201 $out->addHTML( Xml::element(
202 'h2',
203 [ 'id' => 'metadata' ],
204 $this->getContext()->msg( 'metadata' )->text() ) . "\n" );
205 $out->addWikiText( $this->makeMetadataTable( $formattedMetadata ) );
206 $out->addModules( [ 'mediawiki.action.view.metadata' ] );
207 }
208
209 // Add remote Filepage.css
210 if ( !$this->repo->isLocal() ) {
211 $css = $this->repo->getDescriptionStylesheetUrl();
212 if ( $css ) {
213 $out->addStyle( $css );
214 }
215 }
216
217 $out->addModuleStyles( [
218 'filepage', // always show the local local Filepage.css, T31277
219 'mediawiki.action.view.filepage', // Add MediaWiki styles for a file page
220 ] );
221 }
222
223 /**
224 * @return File
225 */
226 public function getDisplayedFile() {
227 $this->loadFile();
228 return $this->displayImg;
229 }
230
231 /**
232 * Create the TOC
233 *
234 * @param bool $metadata Whether or not to show the metadata link
235 * @return string
236 */
237 protected function showTOC( $metadata ) {
238 $r = [
239 '<li><a href="#file">' . $this->getContext()->msg( 'file-anchor-link' )->escaped() . '</a></li>',
240 '<li><a href="#filehistory">' . $this->getContext()->msg( 'filehist' )->escaped() . '</a></li>',
241 '<li><a href="#filelinks">' . $this->getContext()->msg( 'imagelinks' )->escaped() . '</a></li>',
242 ];
243
244 Hooks::run( 'ImagePageShowTOC', [ $this, &$r ] );
245
246 if ( $metadata ) {
247 $r[] = '<li><a href="#metadata">' .
248 $this->getContext()->msg( 'metadata' )->escaped() .
249 '</a></li>';
250 }
251
252 return '<ul id="filetoc">' . implode( "\n", $r ) . '</ul>';
253 }
254
255 /**
256 * Make a table with metadata to be shown in the output page.
257 *
258 * @todo FIXME: Bad interface, see note on MediaHandler::formatMetadata().
259 *
260 * @param array $metadata The array containing the Exif data
261 * @return string The metadata table. This is treated as Wikitext (!)
262 */
263 protected function makeMetadataTable( $metadata ) {
264 $r = "<div class=\"mw-imagepage-section-metadata\">";
265 $r .= $this->getContext()->msg( 'metadata-help' )->plain();
266 $r .= "<table id=\"mw_metadata\" class=\"mw_metadata\">\n";
267 foreach ( $metadata as $type => $stuff ) {
268 foreach ( $stuff as $v ) {
269 # @todo FIXME: Why is this using escapeId for a class?!
270 $class = Sanitizer::escapeId( $v['id'] );
271 if ( $type == 'collapsed' ) {
272 // Handled by mediawiki.action.view.metadata module.
273 $class .= ' collapsable';
274 }
275 $r .= "<tr class=\"$class\">\n";
276 $r .= "<th>{$v['name']}</th>\n";
277 $r .= "<td>{$v['value']}</td>\n</tr>";
278 }
279 }
280 $r .= "</table>\n</div>\n";
281 return $r;
282 }
283
284 /**
285 * Overloading Article's getContentObject method.
286 *
287 * Omit noarticletext if sharedupload; text will be fetched from the
288 * shared upload server if possible.
289 * @return string
290 */
291 public function getContentObject() {
292 $this->loadFile();
293 if ( $this->mPage->getFile() && !$this->mPage->getFile()->isLocal() && 0 == $this->getId() ) {
294 return null;
295 }
296 return parent::getContentObject();
297 }
298
299 protected function openShowImage() {
300 global $wgEnableUploads, $wgSend404Code, $wgSVGMaxSize;
301
302 $this->loadFile();
303 $out = $this->getContext()->getOutput();
304 $user = $this->getContext()->getUser();
305 $lang = $this->getContext()->getLanguage();
306 $dirmark = $lang->getDirMarkEntity();
307 $request = $this->getContext()->getRequest();
308
309 $max = $this->getImageLimitsFromOption( $user, 'imagesize' );
310 $maxWidth = $max[0];
311 $maxHeight = $max[1];
312
313 if ( $this->displayImg->exists() ) {
314 # image
315 $page = $request->getIntOrNull( 'page' );
316 if ( is_null( $page ) ) {
317 $params = [];
318 $page = 1;
319 } else {
320 $params = [ 'page' => $page ];
321 }
322
323 $renderLang = $request->getVal( 'lang' );
324 if ( !is_null( $renderLang ) ) {
325 $handler = $this->displayImg->getHandler();
326 if ( $handler && $handler->validateParam( 'lang', $renderLang ) ) {
327 $params['lang'] = $renderLang;
328 } else {
329 $renderLang = null;
330 }
331 }
332
333 $width_orig = $this->displayImg->getWidth( $page );
334 $width = $width_orig;
335 $height_orig = $this->displayImg->getHeight( $page );
336 $height = $height_orig;
337
338 $filename = wfEscapeWikiText( $this->displayImg->getName() );
339 $linktext = $filename;
340
341 // Avoid PHP 7.1 warning from passing $this by reference
342 $imagePage = $this;
343
344 Hooks::run( 'ImageOpenShowImageInlineBefore', [ &$imagePage, &$out ] );
345
346 if ( $this->displayImg->allowInlineDisplay() ) {
347 # image
348 # "Download high res version" link below the image
349 # $msgsize = $this->getContext()->msg( 'file-info-size', $width_orig, $height_orig,
350 # Linker::formatSize( $this->displayImg->getSize() ), $mime )->escaped();
351 # We'll show a thumbnail of this image
352 if ( $width > $maxWidth || $height > $maxHeight || $this->displayImg->isVectorized() ) {
353 list( $width, $height ) = $this->getDisplayWidthHeight(
354 $maxWidth, $maxHeight, $width, $height
355 );
356 $linktext = $this->getContext()->msg( 'show-big-image' )->escaped();
357
358 $thumbSizes = $this->getThumbSizes( $width_orig, $height_orig );
359 # Generate thumbnails or thumbnail links as needed...
360 $otherSizes = [];
361 foreach ( $thumbSizes as $size ) {
362 // We include a thumbnail size in the list, if it is
363 // less than or equal to the original size of the image
364 // asset ($width_orig/$height_orig). We also exclude
365 // the current thumbnail's size ($width/$height)
366 // since that is added to the message separately, so
367 // it can be denoted as the current size being shown.
368 // Vectorized images are limited by $wgSVGMaxSize big,
369 // so all thumbs less than or equal that are shown.
370 if ( ( ( $size[0] <= $width_orig && $size[1] <= $height_orig )
371 || ( $this->displayImg->isVectorized()
372 && max( $size[0], $size[1] ) <= $wgSVGMaxSize )
373 )
374 && $size[0] != $width && $size[1] != $height
375 ) {
376 $sizeLink = $this->makeSizeLink( $params, $size[0], $size[1] );
377 if ( $sizeLink ) {
378 $otherSizes[] = $sizeLink;
379 }
380 }
381 }
382 $otherSizes = array_unique( $otherSizes );
383
384 $sizeLinkBigImagePreview = $this->makeSizeLink( $params, $width, $height );
385 $msgsmall = $this->getThumbPrevText( $params, $sizeLinkBigImagePreview );
386 if ( count( $otherSizes ) ) {
387 $msgsmall .= ' ' .
388 Html::rawElement(
389 'span',
390 [ 'class' => 'mw-filepage-other-resolutions' ],
391 $this->getContext()->msg( 'show-big-image-other' )
392 ->rawParams( $lang->pipeList( $otherSizes ) )
393 ->params( count( $otherSizes ) )
394 ->parse()
395 );
396 }
397 } elseif ( $width == 0 && $height == 0 ) {
398 # Some sort of audio file that doesn't have dimensions
399 # Don't output a no hi res message for such a file
400 $msgsmall = '';
401 } else {
402 # Image is small enough to show full size on image page
403 $msgsmall = $this->getContext()->msg( 'file-nohires' )->parse();
404 }
405
406 $params['width'] = $width;
407 $params['height'] = $height;
408 $thumbnail = $this->displayImg->transform( $params );
409 Linker::processResponsiveImages( $this->displayImg, $thumbnail, $params );
410
411 $anchorclose = Html::rawElement(
412 'div',
413 [ 'class' => 'mw-filepage-resolutioninfo' ],
414 $msgsmall
415 );
416
417 $isMulti = $this->displayImg->isMultipage() && $this->displayImg->pageCount() > 1;
418 if ( $isMulti ) {
419 $out->addModules( 'mediawiki.page.image.pagination' );
420 $out->addHTML( '<table class="multipageimage"><tr><td>' );
421 }
422
423 if ( $thumbnail ) {
424 $options = [
425 'alt' => $this->displayImg->getTitle()->getPrefixedText(),
426 'file-link' => true,
427 ];
428 $out->addHTML( '<div class="fullImageLink" id="file">' .
429 $thumbnail->toHtml( $options ) .
430 $anchorclose . "</div>\n" );
431 }
432
433 if ( $isMulti ) {
434 $count = $this->displayImg->pageCount();
435
436 if ( $page > 1 ) {
437 $label = $out->parse( $this->getContext()->msg( 'imgmultipageprev' )->text(), false );
438 // on the client side, this link is generated in ajaxifyPageNavigation()
439 // in the mediawiki.page.image.pagination module
440 $link = Linker::linkKnown(
441 $this->getTitle(),
442 $label,
443 [],
444 [ 'page' => $page - 1 ]
445 );
446 $thumb1 = Linker::makeThumbLinkObj(
447 $this->getTitle(),
448 $this->displayImg,
449 $link,
450 $label,
451 'none',
452 [ 'page' => $page - 1 ]
453 );
454 } else {
455 $thumb1 = '';
456 }
457
458 if ( $page < $count ) {
459 $label = $this->getContext()->msg( 'imgmultipagenext' )->text();
460 $link = Linker::linkKnown(
461 $this->getTitle(),
462 $label,
463 [],
464 [ 'page' => $page + 1 ]
465 );
466 $thumb2 = Linker::makeThumbLinkObj(
467 $this->getTitle(),
468 $this->displayImg,
469 $link,
470 $label,
471 'none',
472 [ 'page' => $page + 1 ]
473 );
474 } else {
475 $thumb2 = '';
476 }
477
478 global $wgScript;
479
480 $formParams = [
481 'name' => 'pageselector',
482 'action' => $wgScript,
483 ];
484 $options = [];
485 for ( $i = 1; $i <= $count; $i++ ) {
486 $options[] = Xml::option( $lang->formatNum( $i ), $i, $i == $page );
487 }
488 $select = Xml::tags( 'select',
489 [ 'id' => 'pageselector', 'name' => 'page' ],
490 implode( "\n", $options ) );
491
492 $out->addHTML(
493 '</td><td><div class="multipageimagenavbox">' .
494 Xml::openElement( 'form', $formParams ) .
495 Html::hidden( 'title', $this->getTitle()->getPrefixedDBkey() ) .
496 $this->getContext()->msg( 'imgmultigoto' )->rawParams( $select )->parse() .
497 $this->getContext()->msg( 'word-separator' )->escaped() .
498 Xml::submitButton( $this->getContext()->msg( 'imgmultigo' )->text() ) .
499 Xml::closeElement( 'form' ) .
500 "<hr />$thumb1\n$thumb2<br style=\"clear: both\" /></div></td></tr></table>"
501 );
502 }
503 } elseif ( $this->displayImg->isSafeFile() ) {
504 # if direct link is allowed but it's not a renderable image, show an icon.
505 $icon = $this->displayImg->iconThumb();
506
507 $out->addHTML( '<div class="fullImageLink" id="file">' .
508 $icon->toHtml( [ 'file-link' => true ] ) .
509 "</div>\n" );
510 }
511
512 $longDesc = $this->getContext()->msg( 'parentheses', $this->displayImg->getLongDesc() )->text();
513
514 $handler = $this->displayImg->getHandler();
515
516 // If this is a filetype with potential issues, warn the user.
517 if ( $handler ) {
518 $warningConfig = $handler->getWarningConfig( $this->displayImg );
519
520 if ( $warningConfig !== null ) {
521 // The warning will be displayed via CSS and JavaScript.
522 // We just need to tell the client side what message to use.
523 $output = $this->getContext()->getOutput();
524 $output->addJsConfigVars( 'wgFileWarning', $warningConfig );
525 $output->addModules( $warningConfig['module'] );
526 $output->addModules( 'mediawiki.filewarning' );
527 }
528 }
529
530 $medialink = "[[Media:$filename|$linktext]]";
531
532 if ( !$this->displayImg->isSafeFile() ) {
533 $warning = $this->getContext()->msg( 'mediawarning' )->plain();
534 // dirmark is needed here to separate the file name, which
535 // most likely ends in Latin characters, from the description,
536 // which may begin with the file type. In RTL environment
537 // this will get messy.
538 // The dirmark, however, must not be immediately adjacent
539 // to the filename, because it can get copied with it.
540 // See T27277.
541 // @codingStandardsIgnoreStart Ignore long line
542 $out->addWikiText( <<<EOT
543 <div class="fullMedia"><span class="dangerousLink">{$medialink}</span> $dirmark<span class="fileInfo">$longDesc</span></div>
544 <div class="mediaWarning">$warning</div>
545 EOT
546 );
547 // @codingStandardsIgnoreEnd
548 } else {
549 $out->addWikiText( <<<EOT
550 <div class="fullMedia">{$medialink} {$dirmark}<span class="fileInfo">$longDesc</span>
551 </div>
552 EOT
553 );
554 }
555
556 $renderLangOptions = $this->displayImg->getAvailableLanguages();
557 if ( count( $renderLangOptions ) >= 1 ) {
558 $currentLanguage = $renderLang;
559 $defaultLang = $this->displayImg->getDefaultRenderLanguage();
560 if ( is_null( $currentLanguage ) ) {
561 $currentLanguage = $defaultLang;
562 }
563 $out->addHTML( $this->doRenderLangOpt( $renderLangOptions, $currentLanguage, $defaultLang ) );
564 }
565
566 // Add cannot animate thumbnail warning
567 if ( !$this->displayImg->canAnimateThumbIfAppropriate() ) {
568 // Include the extension so wiki admins can
569 // customize it on a per file-type basis
570 // (aka say things like use format X instead).
571 // additionally have a specific message for
572 // file-no-thumb-animation-gif
573 $ext = $this->displayImg->getExtension();
574 $noAnimMesg = wfMessageFallback(
575 'file-no-thumb-animation-' . $ext,
576 'file-no-thumb-animation'
577 )->plain();
578
579 $out->addWikiText( <<<EOT
580 <div class="mw-noanimatethumb">{$noAnimMesg}</div>
581 EOT
582 );
583 }
584
585 if ( !$this->displayImg->isLocal() ) {
586 $this->printSharedImageText();
587 }
588 } else {
589 # Image does not exist
590 if ( !$this->getId() ) {
591 $dbr = wfGetDB( DB_REPLICA );
592
593 # No article exists either
594 # Show deletion log to be consistent with normal articles
595 LogEventsList::showLogExtract(
596 $out,
597 [ 'delete', 'move' ],
598 $this->getTitle()->getPrefixedText(),
599 '',
600 [ 'lim' => 10,
601 'conds' => [ 'log_action != ' . $dbr->addQuotes( 'revision' ) ],
602 'showIfEmpty' => false,
603 'msgKey' => [ 'moveddeleted-notice' ]
604 ]
605 );
606 }
607
608 if ( $wgEnableUploads && $user->isAllowed( 'upload' ) ) {
609 // Only show an upload link if the user can upload
610 $uploadTitle = SpecialPage::getTitleFor( 'Upload' );
611 $nofile = [
612 'filepage-nofile-link',
613 $uploadTitle->getFullURL( [ 'wpDestFile' => $this->mPage->getFile()->getName() ] )
614 ];
615 } else {
616 $nofile = 'filepage-nofile';
617 }
618 // Note, if there is an image description page, but
619 // no image, then this setRobotPolicy is overridden
620 // by Article::View().
621 $out->setRobotPolicy( 'noindex,nofollow' );
622 $out->wrapWikiMsg( "<div id='mw-imagepage-nofile' class='plainlinks'>\n$1\n</div>", $nofile );
623 if ( !$this->getId() && $wgSend404Code ) {
624 // If there is no image, no shared image, and no description page,
625 // output a 404, to be consistent with Article::showMissingArticle.
626 $request->response()->statusHeader( 404 );
627 }
628 }
629 $out->setFileVersion( $this->displayImg );
630 }
631
632 /**
633 * Make the text under the image to say what size preview
634 *
635 * @param $params array parameters for thumbnail
636 * @param $sizeLinkBigImagePreview HTML for the current size
637 * @return string HTML output
638 */
639 private function getThumbPrevText( $params, $sizeLinkBigImagePreview ) {
640 if ( $sizeLinkBigImagePreview ) {
641 // Show a different message of preview is different format from original.
642 $previewTypeDiffers = false;
643 $origExt = $thumbExt = $this->displayImg->getExtension();
644 if ( $this->displayImg->getHandler() ) {
645 $origMime = $this->displayImg->getMimeType();
646 $typeParams = $params;
647 $this->displayImg->getHandler()->normaliseParams( $this->displayImg, $typeParams );
648 list( $thumbExt, $thumbMime ) = $this->displayImg->getHandler()->getThumbType(
649 $origExt, $origMime, $typeParams );
650 if ( $thumbMime !== $origMime ) {
651 $previewTypeDiffers = true;
652 }
653 }
654 if ( $previewTypeDiffers ) {
655 return $this->getContext()->msg( 'show-big-image-preview-differ' )->
656 rawParams( $sizeLinkBigImagePreview )->
657 params( strtoupper( $origExt ) )->
658 params( strtoupper( $thumbExt ) )->
659 parse();
660 } else {
661 return $this->getContext()->msg( 'show-big-image-preview' )->
662 rawParams( $sizeLinkBigImagePreview )->
663 parse();
664 }
665 } else {
666 return '';
667 }
668 }
669
670 /**
671 * Creates an thumbnail of specified size and returns an HTML link to it
672 * @param array $params Scaler parameters
673 * @param int $width
674 * @param int $height
675 * @return string
676 */
677 private function makeSizeLink( $params, $width, $height ) {
678 $params['width'] = $width;
679 $params['height'] = $height;
680 $thumbnail = $this->displayImg->transform( $params );
681 if ( $thumbnail && !$thumbnail->isError() ) {
682 return Html::rawElement( 'a', [
683 'href' => $thumbnail->getUrl(),
684 'class' => 'mw-thumbnail-link'
685 ], $this->getContext()->msg( 'show-big-image-size' )->numParams(
686 $thumbnail->getWidth(), $thumbnail->getHeight()
687 )->parse() );
688 } else {
689 return '';
690 }
691 }
692
693 /**
694 * Show a notice that the file is from a shared repository
695 */
696 protected function printSharedImageText() {
697 $out = $this->getContext()->getOutput();
698 $this->loadFile();
699
700 $descUrl = $this->mPage->getFile()->getDescriptionUrl();
701 $descText = $this->mPage->getFile()->getDescriptionText( $this->getContext()->getLanguage() );
702
703 /* Add canonical to head if there is no local page for this shared file */
704 if ( $descUrl && $this->mPage->getId() == 0 ) {
705 $out->setCanonicalUrl( $descUrl );
706 }
707
708 $wrap = "<div class=\"sharedUploadNotice\">\n$1\n</div>\n";
709 $repo = $this->mPage->getFile()->getRepo()->getDisplayName();
710
711 if ( $descUrl &&
712 $descText &&
713 $this->getContext()->msg( 'sharedupload-desc-here' )->plain() !== '-'
714 ) {
715 $out->wrapWikiMsg( $wrap, [ 'sharedupload-desc-here', $repo, $descUrl ] );
716 } elseif ( $descUrl &&
717 $this->getContext()->msg( 'sharedupload-desc-there' )->plain() !== '-'
718 ) {
719 $out->wrapWikiMsg( $wrap, [ 'sharedupload-desc-there', $repo, $descUrl ] );
720 } else {
721 $out->wrapWikiMsg( $wrap, [ 'sharedupload', $repo ], ''/*BACKCOMPAT*/ );
722 }
723
724 if ( $descText ) {
725 $this->mExtraDescription = $descText;
726 }
727 }
728
729 public function getUploadUrl() {
730 $this->loadFile();
731 $uploadTitle = SpecialPage::getTitleFor( 'Upload' );
732 return $uploadTitle->getFullURL( [
733 'wpDestFile' => $this->mPage->getFile()->getName(),
734 'wpForReUpload' => 1
735 ] );
736 }
737
738 /**
739 * Print out the various links at the bottom of the image page, e.g. reupload,
740 * external editing (and instructions link) etc.
741 */
742 protected function uploadLinksBox() {
743 global $wgEnableUploads;
744
745 if ( !$wgEnableUploads ) {
746 return;
747 }
748
749 $this->loadFile();
750 if ( !$this->mPage->getFile()->isLocal() ) {
751 return;
752 }
753
754 $out = $this->getContext()->getOutput();
755 $out->addHTML( "<ul>\n" );
756
757 # "Upload a new version of this file" link
758 $canUpload = $this->getTitle()->quickUserCan( 'upload', $this->getContext()->getUser() );
759 if ( $canUpload && UploadBase::userCanReUpload(
760 $this->getContext()->getUser(),
761 $this->mPage->getFile() )
762 ) {
763 $ulink = Linker::makeExternalLink(
764 $this->getUploadUrl(),
765 $this->getContext()->msg( 'uploadnewversion-linktext' )->text()
766 );
767 $out->addHTML( "<li id=\"mw-imagepage-reupload-link\">"
768 . "<div class=\"plainlinks\">{$ulink}</div></li>\n" );
769 } else {
770 $out->addHTML( "<li id=\"mw-imagepage-upload-disallowed\">"
771 . $this->getContext()->msg( 'upload-disallowed-here' )->escaped() . "</li>\n" );
772 }
773
774 $out->addHTML( "</ul>\n" );
775 }
776
777 /**
778 * For overloading
779 */
780 protected function closeShowImage() {
781 }
782
783 /**
784 * If the page we've just displayed is in the "Image" namespace,
785 * we follow it with an upload history of the image and its usage.
786 */
787 protected function imageHistory() {
788 $this->loadFile();
789 $out = $this->getContext()->getOutput();
790 $pager = new ImageHistoryPseudoPager( $this );
791 $out->addHTML( $pager->getBody() );
792 $out->preventClickjacking( $pager->getPreventClickjacking() );
793
794 $this->mPage->getFile()->resetHistory(); // free db resources
795
796 # Exist check because we don't want to show this on pages where an image
797 # doesn't exist along with the noimage message, that would suck. -ævar
798 if ( $this->mPage->getFile()->exists() ) {
799 $this->uploadLinksBox();
800 }
801 }
802
803 /**
804 * @param string $target
805 * @param int $limit
806 * @return ResultWrapper
807 */
808 protected function queryImageLinks( $target, $limit ) {
809 $dbr = wfGetDB( DB_REPLICA );
810
811 return $dbr->select(
812 [ 'imagelinks', 'page' ],
813 [ 'page_namespace', 'page_title', 'il_to' ],
814 [ 'il_to' => $target, 'il_from = page_id' ],
815 __METHOD__,
816 [ 'LIMIT' => $limit + 1, 'ORDER BY' => 'il_from', ]
817 );
818 }
819
820 protected function imageLinks() {
821 $limit = 100;
822
823 $out = $this->getContext()->getOutput();
824
825 $rows = [];
826 $redirects = [];
827 foreach ( $this->getTitle()->getRedirectsHere( NS_FILE ) as $redir ) {
828 $redirects[$redir->getDBkey()] = [];
829 $rows[] = (object)[
830 'page_namespace' => NS_FILE,
831 'page_title' => $redir->getDBkey(),
832 ];
833 }
834
835 $res = $this->queryImageLinks( $this->getTitle()->getDBkey(), $limit + 1 );
836 foreach ( $res as $row ) {
837 $rows[] = $row;
838 }
839 $count = count( $rows );
840
841 $hasMore = $count > $limit;
842 if ( !$hasMore && count( $redirects ) ) {
843 $res = $this->queryImageLinks( array_keys( $redirects ),
844 $limit - count( $rows ) + 1 );
845 foreach ( $res as $row ) {
846 $redirects[$row->il_to][] = $row;
847 $count++;
848 }
849 $hasMore = ( $res->numRows() + count( $rows ) ) > $limit;
850 }
851
852 if ( $count == 0 ) {
853 $out->wrapWikiMsg(
854 Html::rawElement( 'div',
855 [ 'id' => 'mw-imagepage-nolinkstoimage' ], "\n$1\n" ),
856 'nolinkstoimage'
857 );
858 return;
859 }
860
861 $out->addHTML( "<div id='mw-imagepage-section-linkstoimage'>\n" );
862 if ( !$hasMore ) {
863 $out->addWikiMsg( 'linkstoimage', $count );
864 } else {
865 // More links than the limit. Add a link to [[Special:Whatlinkshere]]
866 $out->addWikiMsg( 'linkstoimage-more',
867 $this->getContext()->getLanguage()->formatNum( $limit ),
868 $this->getTitle()->getPrefixedDBkey()
869 );
870 }
871
872 $out->addHTML(
873 Html::openElement( 'ul',
874 [ 'class' => 'mw-imagepage-linkstoimage' ] ) . "\n"
875 );
876 $count = 0;
877
878 // Sort the list by namespace:title
879 usort( $rows, [ $this, 'compare' ] );
880
881 // Create links for every element
882 $currentCount = 0;
883 foreach ( $rows as $element ) {
884 $currentCount++;
885 if ( $currentCount > $limit ) {
886 break;
887 }
888
889 $query = [];
890 # Add a redirect=no to make redirect pages reachable
891 if ( isset( $redirects[$element->page_title] ) ) {
892 $query['redirect'] = 'no';
893 }
894 $link = Linker::linkKnown(
895 Title::makeTitle( $element->page_namespace, $element->page_title ),
896 null, [], $query
897 );
898 if ( !isset( $redirects[$element->page_title] ) ) {
899 # No redirects
900 $liContents = $link;
901 } elseif ( count( $redirects[$element->page_title] ) === 0 ) {
902 # Redirect without usages
903 $liContents = $this->getContext()->msg( 'linkstoimage-redirect' )
904 ->rawParams( $link, '' )
905 ->parse();
906 } else {
907 # Redirect with usages
908 $li = '';
909 foreach ( $redirects[$element->page_title] as $row ) {
910 $currentCount++;
911 if ( $currentCount > $limit ) {
912 break;
913 }
914
915 $link2 = Linker::linkKnown( Title::makeTitle( $row->page_namespace, $row->page_title ) );
916 $li .= Html::rawElement(
917 'li',
918 [ 'class' => 'mw-imagepage-linkstoimage-ns' . $element->page_namespace ],
919 $link2
920 ) . "\n";
921 }
922
923 $ul = Html::rawElement(
924 'ul',
925 [ 'class' => 'mw-imagepage-redirectstofile' ],
926 $li
927 ) . "\n";
928 $liContents = $this->getContext()->msg( 'linkstoimage-redirect' )->rawParams(
929 $link, $ul )->parse();
930 }
931 $out->addHTML( Html::rawElement(
932 'li',
933 [ 'class' => 'mw-imagepage-linkstoimage-ns' . $element->page_namespace ],
934 $liContents
935 ) . "\n"
936 );
937
938 };
939 $out->addHTML( Html::closeElement( 'ul' ) . "\n" );
940 $res->free();
941
942 // Add a links to [[Special:Whatlinkshere]]
943 if ( $count > $limit ) {
944 $out->addWikiMsg( 'morelinkstoimage', $this->getTitle()->getPrefixedDBkey() );
945 }
946 $out->addHTML( Html::closeElement( 'div' ) . "\n" );
947 }
948
949 protected function imageDupes() {
950 $this->loadFile();
951 $out = $this->getContext()->getOutput();
952
953 $dupes = $this->mPage->getDuplicates();
954 if ( count( $dupes ) == 0 ) {
955 return;
956 }
957
958 $out->addHTML( "<div id='mw-imagepage-section-duplicates'>\n" );
959 $out->addWikiMsg( 'duplicatesoffile',
960 $this->getContext()->getLanguage()->formatNum( count( $dupes ) ), $this->getTitle()->getDBkey()
961 );
962 $out->addHTML( "<ul class='mw-imagepage-duplicates'>\n" );
963
964 /**
965 * @var $file File
966 */
967 foreach ( $dupes as $file ) {
968 $fromSrc = '';
969 if ( $file->isLocal() ) {
970 $link = Linker::linkKnown( $file->getTitle() );
971 } else {
972 $link = Linker::makeExternalLink( $file->getDescriptionUrl(),
973 $file->getTitle()->getPrefixedText() );
974 $fromSrc = $this->getContext()->msg(
975 'shared-repo-from',
976 $file->getRepo()->getDisplayName()
977 )->text();
978 }
979 $out->addHTML( "<li>{$link} {$fromSrc}</li>\n" );
980 }
981 $out->addHTML( "</ul></div>\n" );
982 }
983
984 /**
985 * Delete the file, or an earlier version of it
986 */
987 public function delete() {
988 $file = $this->mPage->getFile();
989 if ( !$file->exists() || !$file->isLocal() || $file->getRedirected() ) {
990 // Standard article deletion
991 parent::delete();
992 return;
993 }
994
995 $deleter = new FileDeleteForm( $file );
996 $deleter->execute();
997 }
998
999 /**
1000 * Display an error with a wikitext description
1001 *
1002 * @param string $description
1003 */
1004 function showError( $description ) {
1005 $out = $this->getContext()->getOutput();
1006 $out->setPageTitle( $this->getContext()->msg( 'internalerror' ) );
1007 $out->setRobotPolicy( 'noindex,nofollow' );
1008 $out->setArticleRelated( false );
1009 $out->enableClientCache( false );
1010 $out->addWikiText( $description );
1011 }
1012
1013 /**
1014 * Callback for usort() to do link sorts by (namespace, title)
1015 * Function copied from Title::compare()
1016 *
1017 * @param object $a Object page to compare with
1018 * @param object $b Object page to compare with
1019 * @return int Result of string comparison, or namespace comparison
1020 */
1021 protected function compare( $a, $b ) {
1022 if ( $a->page_namespace == $b->page_namespace ) {
1023 return strcmp( $a->page_title, $b->page_title );
1024 } else {
1025 return $a->page_namespace - $b->page_namespace;
1026 }
1027 }
1028
1029 /**
1030 * Returns the corresponding $wgImageLimits entry for the selected user option
1031 *
1032 * @param User $user
1033 * @param string $optionName Name of a option to check, typically imagesize or thumbsize
1034 * @return array
1035 * @since 1.21
1036 */
1037 public function getImageLimitsFromOption( $user, $optionName ) {
1038 global $wgImageLimits;
1039
1040 $option = $user->getIntOption( $optionName );
1041 if ( !isset( $wgImageLimits[$option] ) ) {
1042 $option = User::getDefaultOption( $optionName );
1043 }
1044
1045 // The user offset might still be incorrect, specially if
1046 // $wgImageLimits got changed (see bug #8858).
1047 if ( !isset( $wgImageLimits[$option] ) ) {
1048 // Default to the first offset in $wgImageLimits
1049 $option = 0;
1050 }
1051
1052 return isset( $wgImageLimits[$option] )
1053 ? $wgImageLimits[$option]
1054 : [ 800, 600 ]; // if nothing is set, fallback to a hardcoded default
1055 }
1056
1057 /**
1058 * Output a drop-down box for language options for the file
1059 *
1060 * @param array $langChoices Array of string language codes
1061 * @param string $curLang Language code file is being viewed in.
1062 * @param string $defaultLang Language code that image is rendered in by default
1063 * @return string HTML to insert underneath image.
1064 */
1065 protected function doRenderLangOpt( array $langChoices, $curLang, $defaultLang ) {
1066 global $wgScript;
1067 sort( $langChoices );
1068 $curLang = wfBCP47( $curLang );
1069 $defaultLang = wfBCP47( $defaultLang );
1070 $opts = '';
1071 $haveCurrentLang = false;
1072 $haveDefaultLang = false;
1073
1074 // We make a list of all the language choices in the file.
1075 // Additionally if the default language to render this file
1076 // is not included as being in this file (for example, in svgs
1077 // usually the fallback content is the english content) also
1078 // include a choice for that. Last of all, if we're viewing
1079 // the file in a language not on the list, add it as a choice.
1080 foreach ( $langChoices as $lang ) {
1081 $code = wfBCP47( $lang );
1082 $name = Language::fetchLanguageName( $code, $this->getContext()->getLanguage()->getCode() );
1083 if ( $name !== '' ) {
1084 $display = $this->getContext()->msg( 'img-lang-opt', $code, $name )->text();
1085 } else {
1086 $display = $code;
1087 }
1088 $opts .= "\n" . Xml::option( $display, $code, $curLang === $code );
1089 if ( $curLang === $code ) {
1090 $haveCurrentLang = true;
1091 }
1092 if ( $defaultLang === $code ) {
1093 $haveDefaultLang = true;
1094 }
1095 }
1096 if ( !$haveDefaultLang ) {
1097 // Its hard to know if the content is really in the default language, or
1098 // if its just unmarked content that could be in any language.
1099 $opts = Xml::option(
1100 $this->getContext()->msg( 'img-lang-default' )->text(),
1101 $defaultLang,
1102 $defaultLang === $curLang
1103 ) . $opts;
1104 }
1105 if ( !$haveCurrentLang && $defaultLang !== $curLang ) {
1106 $name = Language::fetchLanguageName( $curLang, $this->getContext()->getLanguage()->getCode() );
1107 if ( $name !== '' ) {
1108 $display = $this->getContext()->msg( 'img-lang-opt', $curLang, $name )->text();
1109 } else {
1110 $display = $curLang;
1111 }
1112 $opts = Xml::option( $display, $curLang, true ) . $opts;
1113 }
1114
1115 $select = Html::rawElement(
1116 'select',
1117 [ 'id' => 'mw-imglangselector', 'name' => 'lang' ],
1118 $opts
1119 );
1120 $submit = Xml::submitButton( $this->getContext()->msg( 'img-lang-go' )->text() );
1121
1122 $formContents = $this->getContext()->msg( 'img-lang-info' )
1123 ->rawParams( $select, $submit )
1124 ->parse();
1125 $formContents .= Html::hidden( 'title', $this->getTitle()->getPrefixedDBkey() );
1126
1127 $langSelectLine = Html::rawElement( 'div', [ 'id' => 'mw-imglangselector-line' ],
1128 Html::rawElement( 'form', [ 'action' => $wgScript ], $formContents )
1129 );
1130 return $langSelectLine;
1131 }
1132
1133 /**
1134 * Get the width and height to display image at.
1135 *
1136 * @note This method assumes that it is only called if one
1137 * of the dimensions are bigger than the max, or if the
1138 * image is vectorized.
1139 *
1140 * @param int $maxWidth Max width to display at
1141 * @param int $maxHeight Max height to display at
1142 * @param int $width Actual width of the image
1143 * @param int $height Actual height of the image
1144 * @throws MWException
1145 * @return array Array (width, height)
1146 */
1147 protected function getDisplayWidthHeight( $maxWidth, $maxHeight, $width, $height ) {
1148 if ( !$maxWidth || !$maxHeight ) {
1149 // should never happen
1150 throw new MWException( 'Using a choice from $wgImageLimits that is 0x0' );
1151 }
1152
1153 if ( !$width || !$height ) {
1154 return [ 0, 0 ];
1155 }
1156
1157 # Calculate the thumbnail size.
1158 if ( $width <= $maxWidth && $height <= $maxHeight ) {
1159 // Vectorized image, do nothing.
1160 } elseif ( $width / $height >= $maxWidth / $maxHeight ) {
1161 # The limiting factor is the width, not the height.
1162 $height = round( $height * $maxWidth / $width );
1163 $width = $maxWidth;
1164 # Note that $height <= $maxHeight now.
1165 } else {
1166 $newwidth = floor( $width * $maxHeight / $height );
1167 $height = round( $height * $newwidth / $width );
1168 $width = $newwidth;
1169 # Note that $height <= $maxHeight now, but might not be identical
1170 # because of rounding.
1171 }
1172 return [ $width, $height ];
1173 }
1174
1175 /**
1176 * Get alternative thumbnail sizes.
1177 *
1178 * @note This will only list several alternatives if thumbnails are rendered on 404
1179 * @param int $origWidth Actual width of image
1180 * @param int $origHeight Actual height of image
1181 * @return array An array of [width, height] pairs.
1182 */
1183 protected function getThumbSizes( $origWidth, $origHeight ) {
1184 global $wgImageLimits;
1185 if ( $this->displayImg->getRepo()->canTransformVia404() ) {
1186 $thumbSizes = $wgImageLimits;
1187 // Also include the full sized resolution in the list, so
1188 // that users know they can get it. This will link to the
1189 // original file asset if mustRender() === false. In the case
1190 // that we mustRender, some users have indicated that they would
1191 // find it useful to have the full size image in the rendered
1192 // image format.
1193 $thumbSizes[] = [ $origWidth, $origHeight ];
1194 } else {
1195 # Creating thumb links triggers thumbnail generation.
1196 # Just generate the thumb for the current users prefs.
1197 $thumbSizes = [
1198 $this->getImageLimitsFromOption( $this->getContext()->getUser(), 'thumbsize' )
1199 ];
1200 if ( !$this->displayImg->mustRender() ) {
1201 // We can safely include a link to the "full-size" preview,
1202 // without actually rendering.
1203 $thumbSizes[] = [ $origWidth, $origHeight ];
1204 }
1205 }
1206 return $thumbSizes;
1207 }
1208
1209 /**
1210 * @see WikiFilePage::getFile
1211 * @return bool|File
1212 */
1213 public function getFile() {
1214 return $this->mPage->getFile();
1215 }
1216
1217 /**
1218 * @see WikiFilePage::isLocal
1219 * @return bool
1220 */
1221 public function isLocal() {
1222 return $this->mPage->isLocal();
1223 }
1224
1225 /**
1226 * @see WikiFilePage::getDuplicates
1227 * @return array|null
1228 */
1229 public function getDuplicates() {
1230 return $this->mPage->getDuplicates();
1231 }
1232
1233 /**
1234 * @see WikiFilePage::getForeignCategories
1235 * @return TitleArray|Title[]
1236 */
1237 public function getForeignCategories() {
1238 $this->mPage->getForeignCategories();
1239 }
1240
1241 }