ImagePage subclasses Article, therefore use parent::getContent()
[lhc/web/wiklou.git] / includes / ImagePage.php
1 <?php
2
3 if ( !defined( 'MEDIAWIKI' ) )
4 die( 1 );
5
6 /**
7 * Special handling for image description pages
8 *
9 * @ingroup Media
10 */
11 class ImagePage extends Article {
12
13 /* private */ var $img; // Image object
14 /* private */ var $displayImg;
15 /* private */ var $repo;
16 /* private */ var $fileLoaded;
17 var $mExtraDescription = false;
18 var $dupes;
19
20 function __construct( $title ) {
21 parent::__construct( $title );
22 $this->dupes = null;
23 $this->repo = null;
24 }
25
26 /**
27 * @param $file File:
28 * @return void
29 */
30 public function setFile( $file ) {
31 $this->displayImg = $file;
32 $this->img = $file;
33 $this->fileLoaded = true;
34 }
35
36 protected function loadFile() {
37 if ( $this->fileLoaded ) {
38 return true;
39 }
40 $this->fileLoaded = true;
41
42 $this->displayImg = $this->img = false;
43 wfRunHooks( 'ImagePageFindFile', array( $this, &$this->img, &$this->displayImg ) );
44 if ( !$this->img ) {
45 $this->img = wfFindFile( $this->mTitle );
46 if ( !$this->img ) {
47 $this->img = wfLocalFile( $this->mTitle );
48 }
49 }
50 if ( !$this->displayImg ) {
51 $this->displayImg = $this->img;
52 }
53 $this->repo = $this->img->getRepo();
54 }
55
56 /**
57 * Handler for action=render
58 * Include body text only; none of the image extras
59 */
60 public function render() {
61 global $wgOut;
62 $wgOut->setArticleBodyOnly( true );
63 parent::view();
64 }
65
66 public function view() {
67 global $wgOut, $wgShowEXIF, $wgRequest, $wgUser;
68
69 $diff = $wgRequest->getVal( 'diff' );
70 $diffOnly = $wgRequest->getBool( 'diffonly', $wgUser->getOption( 'diffonly' ) );
71
72 if ( $this->mTitle->getNamespace() != NS_FILE || ( isset( $diff ) && $diffOnly ) ) {
73 return parent::view();
74 }
75
76 $this->loadFile();
77
78 if ( $this->mTitle->getNamespace() == NS_FILE && $this->img->getRedirected() ) {
79 if ( $this->mTitle->getDBkey() == $this->img->getName() || isset( $diff ) ) {
80 // mTitle is the same as the redirect target so ask Article
81 // to perform the redirect for us.
82 $wgRequest->setVal( 'diffonly', 'true' );
83 return parent::view();
84 } else {
85 // mTitle is not the same as the redirect target so it is
86 // probably the redirect page itself. Fake the redirect symbol
87 $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
88 $wgOut->addHTML( $this->viewRedirect( Title::makeTitle( NS_FILE, $this->img->getName() ),
89 /* $appendSubtitle */ true, /* $forceKnown */ true ) );
90 $this->viewUpdates();
91 return;
92 }
93 }
94
95 $this->showRedirectedFromHeader();
96
97 if ( $wgShowEXIF && $this->displayImg->exists() ) {
98 // FIXME: bad interface, see note on MediaHandler::formatMetadata().
99 $formattedMetadata = $this->displayImg->formatMetadata();
100 $showmeta = $formattedMetadata !== false;
101 } else {
102 $showmeta = false;
103 }
104
105 if ( !$diff && $this->displayImg->exists() )
106 $wgOut->addHTML( $this->showTOC( $showmeta ) );
107
108 if ( !$diff )
109 $this->openShowImage();
110
111 # No need to display noarticletext, we use our own message, output in openShowImage()
112 if ( $this->getID() ) {
113 parent::view();
114 } else {
115 # Just need to set the right headers
116 $wgOut->setArticleFlag( true );
117 $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
118 $this->viewUpdates();
119 }
120
121 # Show shared description, if needed
122 if ( $this->mExtraDescription ) {
123 $fol = wfMsgNoTrans( 'shareddescriptionfollows' );
124 if ( $fol != '-' && !wfEmptyMsg( 'shareddescriptionfollows', $fol ) ) {
125 $wgOut->addWikiText( $fol );
126 }
127 $wgOut->addHTML( '<div id="shared-image-desc">' . $this->mExtraDescription . "</div>\n" );
128 }
129
130 $this->closeShowImage();
131 $this->imageHistory();
132 // TODO: Cleanup the following
133
134 $wgOut->addHTML( Xml::element( 'h2',
135 array( 'id' => 'filelinks' ),
136 wfMsg( 'imagelinks' ) ) . "\n" );
137 $this->imageDupes();
138 # TODO! FIXME! For some freaky reason, we can't redirect to foreign images.
139 # Yet we return metadata about the target. Definitely an issue in the FileRepo
140 $this->imageRedirects();
141 $this->imageLinks();
142
143 # Allow extensions to add something after the image links
144 $html = '';
145 wfRunHooks( 'ImagePageAfterImageLinks', array( $this, &$html ) );
146 if ( $html )
147 $wgOut->addHTML( $html );
148
149 if ( $showmeta ) {
150 $wgOut->addHTML( Xml::element( 'h2', array( 'id' => 'metadata' ), wfMsg( 'metadata' ) ) . "\n" );
151 $wgOut->addWikiText( $this->makeMetadataTable( $formattedMetadata ) );
152 $wgOut->addModules( array( 'mediawiki.legacy.metadata' ) );
153 }
154
155 $css = $this->repo->getDescriptionStylesheetUrl();
156 if ( $css ) {
157 $wgOut->addStyle( $css );
158 }
159 }
160
161 public function getRedirectTarget() {
162 $this->loadFile();
163 if ( $this->img->isLocal() ) {
164 return parent::getRedirectTarget();
165 }
166 // Foreign image page
167 $from = $this->img->getRedirected();
168 $to = $this->img->getName();
169 if ( $from == $to ) {
170 return null;
171 }
172 return $this->mRedirectTarget = Title::makeTitle( NS_FILE, $to );
173 }
174 public function followRedirect() {
175 $this->loadFile();
176 if ( $this->img->isLocal() ) {
177 return parent::followRedirect();
178 }
179 $from = $this->img->getRedirected();
180 $to = $this->img->getName();
181 if ( $from == $to ) {
182 return false;
183 }
184 return Title::makeTitle( NS_FILE, $to );
185 }
186 public function isRedirect( $text = false ) {
187 $this->loadFile();
188 if ( $this->img->isLocal() )
189 return parent::isRedirect( $text );
190
191 return (bool)$this->img->getRedirected();
192 }
193
194 public function isLocal() {
195 $this->loadFile();
196 return $this->img->isLocal();
197 }
198
199 public function getFile() {
200 $this->loadFile();
201 return $this->img;
202 }
203
204 public function getDisplayedFile() {
205 $this->loadFile();
206 return $this->displayImg;
207 }
208
209 public function getDuplicates() {
210 $this->loadFile();
211 if ( !is_null( $this->dupes ) ) {
212 return $this->dupes;
213 }
214 if ( !( $hash = $this->img->getSha1() ) ) {
215 return $this->dupes = array();
216 }
217 $dupes = RepoGroup::singleton()->findBySha1( $hash );
218 // Remove duplicates with self and non matching file sizes
219 $self = $this->img->getRepoName() . ':' . $this->img->getName();
220 $size = $this->img->getSize();
221 foreach ( $dupes as $index => $file ) {
222 $key = $file->getRepoName() . ':' . $file->getName();
223 if ( $key == $self )
224 unset( $dupes[$index] );
225 if ( $file->getSize() != $size )
226 unset( $dupes[$index] );
227 }
228 return $this->dupes = $dupes;
229
230 }
231
232
233 /**
234 * Create the TOC
235 *
236 * @param $metadata Boolean: whether or not to show the metadata link
237 * @return String
238 */
239 protected function showTOC( $metadata ) {
240 $r = array(
241 '<li><a href="#file">' . wfMsgHtml( 'file-anchor-link' ) . '</a></li>',
242 '<li><a href="#filehistory">' . wfMsgHtml( 'filehist' ) . '</a></li>',
243 '<li><a href="#filelinks">' . wfMsgHtml( 'imagelinks' ) . '</a></li>',
244 );
245 if ( $metadata ) {
246 $r[] = '<li><a href="#metadata">' . wfMsgHtml( 'metadata' ) . '</a></li>';
247 }
248
249 wfRunHooks( 'ImagePageShowTOC', array( $this, &$r ) );
250
251 return '<ul id="filetoc">' . implode( "\n", $r ) . '</ul>';
252 }
253
254 /**
255 * Make a table with metadata to be shown in the output page.
256 *
257 * FIXME: bad interface, see note on MediaHandler::formatMetadata().
258 *
259 * @param $metadata Array: the array containing the EXIF data
260 * @return String
261 */
262 protected function makeMetadataTable( $metadata ) {
263 $r = "<div class=\"mw-imagepage-section-metadata\">";
264 $r .= wfMsgNoTrans( 'metadata-help' );
265 $r .= "<table id=\"mw_metadata\" class=\"mw_metadata\">\n";
266 foreach ( $metadata as $type => $stuff ) {
267 foreach ( $stuff as $v ) {
268 # FIXME, why is this using escapeId for a class?!
269 $class = Sanitizer::escapeId( $v['id'] );
270 if ( $type == 'collapsed' ) {
271 $class .= ' collapsable';
272 }
273 $r .= "<tr class=\"$class\">\n";
274 $r .= "<th>{$v['name']}</th>\n";
275 $r .= "<td>{$v['value']}</td>\n</tr>";
276 }
277 }
278 $r .= "</table>\n</div>\n";
279 return $r;
280 }
281
282 /**
283 * Overloading Article's getContent method.
284 *
285 * Omit noarticletext if sharedupload; text will be fetched from the
286 * shared upload server if possible.
287 */
288 public function getContent() {
289 $this->loadFile();
290 if ( $this->img && !$this->img->isLocal() && 0 == $this->getID() ) {
291 return '';
292 }
293 return parent::getContent();
294 }
295
296 protected function openShowImage() {
297 global $wgOut, $wgUser, $wgImageLimits, $wgRequest,
298 $wgLang, $wgContLang, $wgEnableUploads;
299
300 $this->loadFile();
301
302 $full_url = $this->displayImg->getURL();
303 $sizeSel = intval( $wgUser->getOption( 'imagesize' ) );
304 if ( !isset( $wgImageLimits[$sizeSel] ) ) {
305 $sizeSel = User::getDefaultOption( 'imagesize' );
306
307 // The user offset might still be incorrect, specially if
308 // $wgImageLimits got changed (see bug #8858).
309 if ( !isset( $wgImageLimits[$sizeSel] ) ) {
310 // Default to the first offset in $wgImageLimits
311 $sizeSel = 0;
312 }
313 }
314 $max = $wgImageLimits[$sizeSel];
315 $maxWidth = $max[0];
316 $maxHeight = $max[1];
317 $sk = $wgUser->getSkin();
318 $dirmark = $wgContLang->getDirMark();
319
320 if ( $this->displayImg->exists() ) {
321 # image
322 $page = $wgRequest->getIntOrNull( 'page' );
323 if ( is_null( $page ) ) {
324 $params = array();
325 $page = 1;
326 } else {
327 $params = array( 'page' => $page );
328 }
329 $width_orig = $this->displayImg->getWidth( $page );
330 $width = $width_orig;
331 $height_orig = $this->displayImg->getHeight( $page );
332 $height = $height_orig;
333
334 $longDesc = $this->displayImg->getLongDesc();
335
336 wfRunHooks( 'ImageOpenShowImageInlineBefore', array( &$this, &$wgOut ) );
337
338 if ( $this->displayImg->allowInlineDisplay() ) {
339 # image
340
341 # "Download high res version" link below the image
342 # $msgsize = wfMsgHtml('file-info-size', $width_orig, $height_orig, $sk->formatSize( $this->displayImg->getSize() ), $mime );
343 # We'll show a thumbnail of this image
344 if ( $width > $maxWidth || $height > $maxHeight ) {
345 # Calculate the thumbnail size.
346 # First case, the limiting factor is the width, not the height.
347 if ( $width / $height >= $maxWidth / $maxHeight ) {
348 $height = round( $height * $maxWidth / $width );
349 $width = $maxWidth;
350 # Note that $height <= $maxHeight now.
351 } else {
352 $newwidth = floor( $width * $maxHeight / $height );
353 $height = round( $height * $newwidth / $width );
354 $width = $newwidth;
355 # Note that $height <= $maxHeight now, but might not be identical
356 # because of rounding.
357 }
358 $msgbig = wfMsgHtml( 'show-big-image' );
359 $msgsmall = wfMsgExt( 'show-big-image-thumb', 'parseinline',
360 $wgLang->formatNum( $width ),
361 $wgLang->formatNum( $height )
362 );
363 } else {
364 # Image is small enough to show full size on image page
365 $msgsmall = wfMsgExt( 'file-nohires', array( 'parseinline' ) );
366 }
367
368 $params['width'] = $width;
369 $thumbnail = $this->displayImg->transform( $params );
370
371 $showLink = true;
372 $anchorclose = '';
373 if ( !$this->displayImg->mustRender() ) {
374 $anchorclose = "<br />" . $msgsmall;
375 }
376
377 $isMulti = $this->displayImg->isMultipage() && $this->displayImg->pageCount() > 1;
378 if ( $isMulti ) {
379 $wgOut->addHTML( '<table class="multipageimage"><tr><td>' );
380 }
381
382 if ( $thumbnail ) {
383 $options = array(
384 'alt' => $this->displayImg->getTitle()->getPrefixedText(),
385 'file-link' => true,
386 );
387 $wgOut->addHTML( '<div class="fullImageLink" id="file">' .
388 $thumbnail->toHtml( $options ) .
389 $anchorclose . "</div>\n" );
390 }
391
392 if ( $isMulti ) {
393 $count = $this->displayImg->pageCount();
394
395 if ( $page > 1 ) {
396 $label = $wgOut->parse( wfMsg( 'imgmultipageprev' ), false );
397 $link = $sk->link(
398 $this->mTitle,
399 $label,
400 array(),
401 array( 'page' => $page - 1 ),
402 array( 'known', 'noclasses' )
403 );
404 $thumb1 = $sk->makeThumbLinkObj( $this->mTitle, $this->displayImg, $link, $label, 'none',
405 array( 'page' => $page - 1 ) );
406 } else {
407 $thumb1 = '';
408 }
409
410 if ( $page < $count ) {
411 $label = wfMsg( 'imgmultipagenext' );
412 $link = $sk->link(
413 $this->mTitle,
414 $label,
415 array(),
416 array( 'page' => $page + 1 ),
417 array( 'known', 'noclasses' )
418 );
419 $thumb2 = $sk->makeThumbLinkObj( $this->mTitle, $this->displayImg, $link, $label, 'none',
420 array( 'page' => $page + 1 ) );
421 } else {
422 $thumb2 = '';
423 }
424
425 global $wgScript;
426
427 $formParams = array(
428 'name' => 'pageselector',
429 'action' => $wgScript,
430 'onchange' => 'document.pageselector.submit();',
431 );
432
433 for ( $i = 1; $i <= $count; $i++ ) {
434 $options[] = Xml::option( $wgLang->formatNum( $i ), $i, $i == $page );
435 }
436 $select = Xml::tags( 'select',
437 array( 'id' => 'pageselector', 'name' => 'page' ),
438 implode( "\n", $options ) );
439
440 $wgOut->addHTML(
441 '</td><td><div class="multipageimagenavbox">' .
442 Xml::openElement( 'form', $formParams ) .
443 Html::hidden( 'title', $this->getTitle()->getPrefixedDbKey() ) .
444 wfMsgExt( 'imgmultigoto', array( 'parseinline', 'replaceafter' ), $select ) .
445 Xml::submitButton( wfMsg( 'imgmultigo' ) ) .
446 Xml::closeElement( 'form' ) .
447 "<hr />$thumb1\n$thumb2<br clear=\"all\" /></div></td></tr></table>"
448 );
449 }
450 } else {
451 # if direct link is allowed but it's not a renderable image, show an icon.
452 if ( $this->displayImg->isSafeFile() ) {
453 $icon = $this->displayImg->iconThumb();
454
455 $wgOut->addHTML( '<div class="fullImageLink" id="file">' .
456 $icon->toHtml( array( 'file-link' => true ) ) .
457 "</div>\n" );
458 }
459
460 $showLink = true;
461 }
462
463
464 if ( $showLink ) {
465 $filename = wfEscapeWikiText( $this->displayImg->getName() );
466 $linktext = $filename;
467 if ( isset( $msgbig ) ) {
468 $linktext = wfEscapeWikiText( $msgbig );
469 }
470 $medialink = "[[Media:$filename|$linktext]]";
471
472 if ( !$this->displayImg->isSafeFile() ) {
473 $warning = wfMsgNoTrans( 'mediawarning' );
474 $wgOut->addWikiText( <<<EOT
475 <div class="fullMedia"><span class="dangerousLink">{$medialink}</span>$dirmark <span class="fileInfo">$longDesc</span></div>
476 <div class="mediaWarning">$warning</div>
477 EOT
478 );
479 } else {
480 $wgOut->addWikiText( <<<EOT
481 <div class="fullMedia">{$medialink}{$dirmark} <span class="fileInfo">$longDesc</span>
482 </div>
483 EOT
484 );
485 }
486 }
487
488 if ( !$this->displayImg->isLocal() ) {
489 $this->printSharedImageText();
490 }
491 } else {
492 # Image does not exist
493 if ( $wgEnableUploads && $wgUser->isAllowed( 'upload' ) ) {
494 // Only show an upload link if the user can upload
495 $uploadTitle = SpecialPage::getTitleFor( 'Upload' );
496 $nofile = array(
497 'filepage-nofile-link',
498 $uploadTitle->getFullUrl( array( 'wpDestFile' => $this->img->getName() ) )
499 );
500 }
501 else
502 {
503 $nofile = 'filepage-nofile';
504 }
505 $wgOut->setRobotPolicy( 'noindex,nofollow' );
506 $wgOut->wrapWikiMsg( "<div id='mw-imagepage-nofile' class='plainlinks'>\n$1\n</div>", $nofile );
507 }
508 }
509
510 /**
511 * Show a notice that the file is from a shared repository
512 */
513 protected function printSharedImageText() {
514 global $wgOut;
515
516 $this->loadFile();
517
518 $descUrl = $this->img->getDescriptionUrl();
519 $descText = $this->img->getDescriptionText();
520
521 /* Add canonical to head if there is no local page for this shared file */
522 if( $descUrl && $this->getID() == 0 ) {
523 $wgOut->addLink( array( 'rel' => 'canonical', 'href' => $descUrl ) );
524 }
525
526 $wrap = "<div class=\"sharedUploadNotice\">\n$1\n</div>\n";
527 $repo = $this->img->getRepo()->getDisplayName();
528
529 if ( $descUrl && $descText && wfMsgNoTrans( 'sharedupload-desc-here' ) !== '-' ) {
530 $wgOut->wrapWikiMsg( $wrap, array( 'sharedupload-desc-here', $repo, $descUrl ) );
531 } elseif ( $descUrl && wfMsgNoTrans( 'sharedupload-desc-there' ) !== '-' ) {
532 $wgOut->wrapWikiMsg( $wrap, array( 'sharedupload-desc-there', $repo, $descUrl ) );
533 } else {
534 $wgOut->wrapWikiMsg( $wrap, array( 'sharedupload', $repo ), ''/*BACKCOMPAT*/ );
535 }
536
537 if ( $descText ) {
538 $this->mExtraDescription = $descText;
539 }
540 }
541
542 public function getUploadUrl() {
543 $this->loadFile();
544 $uploadTitle = SpecialPage::getTitleFor( 'Upload' );
545 return $uploadTitle->getFullUrl( array(
546 'wpDestFile' => $this->img->getName(),
547 'wpForReUpload' => 1
548 ) );
549 }
550
551 /**
552 * Print out the various links at the bottom of the image page, e.g. reupload,
553 * external editing (and instructions link) etc.
554 */
555 protected function uploadLinksBox() {
556 global $wgUser, $wgOut, $wgEnableUploads, $wgUseExternalEditor;
557
558 if ( !$wgEnableUploads ) { return; }
559
560 $this->loadFile();
561 if ( !$this->img->isLocal() )
562 return;
563
564 $sk = $wgUser->getSkin();
565
566 $wgOut->addHTML( "<br /><ul>\n" );
567
568 # "Upload a new version of this file" link
569 if ( UploadBase::userCanReUpload( $wgUser, $this->img->name ) ) {
570 $ulink = $sk->makeExternalLink( $this->getUploadUrl(), wfMsg( 'uploadnewversion-linktext' ) );
571 $wgOut->addHTML( "<li id=\"mw-imagepage-reupload-link\"><div class=\"plainlinks\">{$ulink}</div></li>\n" );
572 }
573
574 # External editing link
575 if ( $wgUseExternalEditor ) {
576 $elink = $sk->link(
577 $this->mTitle,
578 wfMsgHtml( 'edit-externally' ),
579 array(),
580 array(
581 'action' => 'edit',
582 'externaledit' => 'true',
583 'mode' => 'file'
584 ),
585 array( 'known', 'noclasses' )
586 );
587 $wgOut->addHTML( '<li id="mw-imagepage-edit-external">' . $elink . ' <small>' . wfMsgExt( 'edit-externally-help', array( 'parseinline' ) ) . "</small></li>\n" );
588 }
589
590 $wgOut->addHTML( "</ul>\n" );
591 }
592
593 protected function closeShowImage() { } # For overloading
594
595 /**
596 * If the page we've just displayed is in the "Image" namespace,
597 * we follow it with an upload history of the image and its usage.
598 */
599 protected function imageHistory() {
600 global $wgOut;
601
602 $this->loadFile();
603 $pager = new ImageHistoryPseudoPager( $this );
604 $wgOut->addHTML( $pager->getBody() );
605
606 $this->img->resetHistory(); // free db resources
607
608 # Exist check because we don't want to show this on pages where an image
609 # doesn't exist along with the noimage message, that would suck. -ævar
610 if ( $this->img->exists() ) {
611 $this->uploadLinksBox();
612 }
613 }
614
615 protected function imageLinks() {
616 global $wgUser, $wgOut, $wgLang;
617
618 $limit = 100;
619
620 $dbr = wfGetDB( DB_SLAVE );
621
622 $res = $dbr->select(
623 array( 'imagelinks', 'page' ),
624 array( 'page_namespace', 'page_title' ),
625 array( 'il_to' => $this->mTitle->getDBkey(), 'il_from = page_id' ),
626 __METHOD__,
627 array( 'LIMIT' => $limit + 1 )
628 );
629 $count = $dbr->numRows( $res );
630 if ( $count == 0 ) {
631 $wgOut->wrapWikiMsg( Html::rawElement( 'div', array ( 'id' => 'mw-imagepage-nolinkstoimage' ), "\n$1\n" ), 'nolinkstoimage' );
632 return;
633 }
634
635 $wgOut->addHTML( "<div id='mw-imagepage-section-linkstoimage'>\n" );
636 if ( $count <= $limit - 1 ) {
637 $wgOut->addWikiMsg( 'linkstoimage', $count );
638 } else {
639 // More links than the limit. Add a link to [[Special:Whatlinkshere]]
640 $wgOut->addWikiMsg( 'linkstoimage-more',
641 $wgLang->formatNum( $limit ),
642 $this->mTitle->getPrefixedDBkey()
643 );
644 }
645
646 $wgOut->addHTML( Html::openElement( 'ul', array( 'class' => 'mw-imagepage-linkstoimage' ) ) . "\n" );
647 $sk = $wgUser->getSkin();
648 $count = 0;
649 $elements = array();
650 foreach ( $res as $s ) {
651 $count++;
652 if ( $count <= $limit ) {
653 // We have not yet reached the extra one that tells us there is more to fetch
654 $elements[] = $s;
655 }
656 }
657
658 // Sort the list by namespace:title
659 usort ( $elements, array( $this, 'compare' ) );
660
661 // Create links for every element
662 foreach( $elements as $element ) {
663 $link = $sk->linkKnown( Title::makeTitle( $element->page_namespace, $element->page_title ) );
664 $wgOut->addHTML( Html::rawElement(
665 'li',
666 array( 'id' => 'mw-imagepage-linkstoimage-ns' . $element->page_namespace ),
667 $link
668 ) . "\n"
669 );
670
671 };
672 $wgOut->addHTML( Html::closeElement( 'ul' ) . "\n" );
673 $res->free();
674
675 // Add a links to [[Special:Whatlinkshere]]
676 if ( $count > $limit ) {
677 $wgOut->addWikiMsg( 'morelinkstoimage', $this->mTitle->getPrefixedDBkey() );
678 }
679 $wgOut->addHTML( Html::closeElement( 'div' ) . "\n" );
680 }
681
682 protected function imageRedirects() {
683 global $wgUser, $wgOut, $wgLang;
684
685 $redirects = $this->getTitle()->getRedirectsHere( NS_FILE );
686 if ( count( $redirects ) == 0 ) return;
687
688 $wgOut->addHTML( "<div id='mw-imagepage-section-redirectstofile'>\n" );
689 $wgOut->addWikiMsg( 'redirectstofile',
690 $wgLang->formatNum( count( $redirects ) )
691 );
692 $wgOut->addHTML( "<ul class='mw-imagepage-redirectstofile'>\n" );
693
694 $sk = $wgUser->getSkin();
695 foreach ( $redirects as $title ) {
696 $link = $sk->link(
697 $title,
698 null,
699 array(),
700 array( 'redirect' => 'no' ),
701 array( 'known', 'noclasses' )
702 );
703 $wgOut->addHTML( "<li>{$link}</li>\n" );
704 }
705 $wgOut->addHTML( "</ul></div>\n" );
706
707 }
708
709 protected function imageDupes() {
710 global $wgOut, $wgUser, $wgLang;
711
712 $this->loadFile();
713
714 $dupes = $this->getDuplicates();
715 if ( count( $dupes ) == 0 ) return;
716
717 $wgOut->addHTML( "<div id='mw-imagepage-section-duplicates'>\n" );
718 $wgOut->addWikiMsg( 'duplicatesoffile',
719 $wgLang->formatNum( count( $dupes ) ), $this->mTitle->getDBkey()
720 );
721 $wgOut->addHTML( "<ul class='mw-imagepage-duplicates'>\n" );
722
723 $sk = $wgUser->getSkin();
724 foreach ( $dupes as $file ) {
725 $fromSrc = '';
726 if ( $file->isLocal() ) {
727 $link = $sk->link(
728 $file->getTitle(),
729 null,
730 array(),
731 array(),
732 array( 'known', 'noclasses' )
733 );
734 } else {
735 $link = $sk->makeExternalLink( $file->getDescriptionUrl(),
736 $file->getTitle()->getPrefixedText() );
737 $fromSrc = wfMsg( 'shared-repo-from', $file->getRepo()->getDisplayName() );
738 }
739 $wgOut->addHTML( "<li>{$link} {$fromSrc}</li>\n" );
740 }
741 $wgOut->addHTML( "</ul></div>\n" );
742 }
743
744 /**
745 * Delete the file, or an earlier version of it
746 */
747 public function delete() {
748 global $wgUploadMaintenance;
749 if ( $wgUploadMaintenance && $this->mTitle && $this->mTitle->getNamespace() == NS_FILE ) {
750 global $wgOut;
751 $wgOut->wrapWikiMsg( "<div class='error'>\n$1\n</div>\n", array( 'filedelete-maintenance' ) );
752 return;
753 }
754
755 $this->loadFile();
756 if ( !$this->img->exists() || !$this->img->isLocal() || $this->img->getRedirected() ) {
757 // Standard article deletion
758 parent::delete();
759 return;
760 }
761 $deleter = new FileDeleteForm( $this->img );
762 $deleter->execute();
763 }
764
765 /**
766 * Revert the file to an earlier version
767 */
768 public function revert() {
769 $this->loadFile();
770 $reverter = new FileRevertForm( $this->img );
771 $reverter->execute();
772 }
773
774 /**
775 * Override handling of action=purge
776 */
777 public function doPurge() {
778 $this->loadFile();
779 if ( $this->img->exists() ) {
780 wfDebug( "ImagePage::doPurge purging " . $this->img->getName() . "\n" );
781 $update = new HTMLCacheUpdate( $this->mTitle, 'imagelinks' );
782 $update->doUpdate();
783 $this->img->upgradeRow();
784 $this->img->purgeCache();
785 } else {
786 wfDebug( "ImagePage::doPurge no image for " . $this->img->getName() . "; limiting purge to cache only\n" );
787 // even if the file supposedly doesn't exist, force any cached information
788 // to be updated (in case the cached information is wrong)
789 $this->img->purgeCache();
790 }
791 parent::doPurge();
792 }
793
794 /**
795 * Display an error with a wikitext description
796 */
797 function showError( $description ) {
798 global $wgOut;
799 $wgOut->setPageTitle( wfMsg( "internalerror" ) );
800 $wgOut->setRobotPolicy( "noindex,nofollow" );
801 $wgOut->setArticleRelated( false );
802 $wgOut->enableClientCache( false );
803 $wgOut->addWikiText( $description );
804 }
805
806
807 /**
808 * Callback for usort() to do link sorts by (namespace, title)
809 * Function copied from Title::compare()
810 *
811 * @param $a object page to compare with
812 * @param $b object page to compare with
813 * @return Integer: result of string comparison, or namespace comparison
814 */
815 protected function compare( $a, $b ) {
816 if ( $a->page_namespace == $b->page_namespace ) {
817 return strcmp( $a->page_title, $b->page_title );
818 } else {
819 return $a->page_namespace - $b->page_namespace;
820 }
821 }
822 }
823
824 /**
825 * Builds the image revision log shown on image pages
826 *
827 * @ingroup Media
828 */
829 class ImageHistoryList {
830
831 protected $imagePage, $img, $skin, $title, $repo, $showThumb;
832
833 public function __construct( $imagePage ) {
834 global $wgUser, $wgShowArchiveThumbnails;
835 $this->skin = $wgUser->getSkin();
836 $this->current = $imagePage->getFile();
837 $this->img = $imagePage->getDisplayedFile();
838 $this->title = $imagePage->getTitle();
839 $this->imagePage = $imagePage;
840 $this->showThumb = $wgShowArchiveThumbnails && $this->img->canRender();
841 }
842
843 public function getImagePage() {
844 return $this->imagePage;
845 }
846
847 public function getSkin() {
848 return $this->skin;
849 }
850
851 public function getFile() {
852 return $this->img;
853 }
854
855 public function beginImageHistoryList( $navLinks = '' ) {
856 global $wgOut, $wgUser;
857 return Xml::element( 'h2', array( 'id' => 'filehistory' ), wfMsg( 'filehist' ) ) . "\n"
858 . "<div id=\"mw-imagepage-section-filehistory\">\n"
859 . $wgOut->parse( wfMsgNoTrans( 'filehist-help' ) )
860 . $navLinks . "\n"
861 . Xml::openElement( 'table', array( 'class' => 'wikitable filehistory' ) ) . "\n"
862 . '<tr><td></td>'
863 . ( $this->current->isLocal() && ( $wgUser->isAllowed( 'delete' ) || $wgUser->isAllowed( 'deletedhistory' ) ) ? '<td></td>' : '' )
864 . '<th>' . wfMsgHtml( 'filehist-datetime' ) . '</th>'
865 . ( $this->showThumb ? '<th>' . wfMsgHtml( 'filehist-thumb' ) . '</th>' : '' )
866 . '<th>' . wfMsgHtml( 'filehist-dimensions' ) . '</th>'
867 . '<th>' . wfMsgHtml( 'filehist-user' ) . '</th>'
868 . '<th>' . wfMsgHtml( 'filehist-comment' ) . '</th>'
869 . "</tr>\n";
870 }
871
872 public function endImageHistoryList( $navLinks = '' ) {
873 return "</table>\n$navLinks\n</div>\n";
874 }
875
876 public function imageHistoryLine( $iscur, $file ) {
877 global $wgUser, $wgLang;
878
879 $timestamp = wfTimestamp( TS_MW, $file->getTimestamp() );
880 $img = $iscur ? $file->getName() : $file->getArchiveName();
881 $user = $file->getUser( 'id' );
882 $usertext = $file->getUser( 'text' );
883 $description = $file->getDescription();
884
885 $local = $this->current->isLocal();
886 $row = $selected = '';
887
888 // Deletion link
889 if ( $local && ( $wgUser->isAllowed( 'delete' ) || $wgUser->isAllowed( 'deletedhistory' ) ) ) {
890 $row .= '<td>';
891 # Link to remove from history
892 if ( $wgUser->isAllowed( 'delete' ) ) {
893 $q = array( 'action' => 'delete' );
894 if ( !$iscur )
895 $q['oldimage'] = $img;
896 $row .= $this->skin->link(
897 $this->title,
898 wfMsgHtml( $iscur ? 'filehist-deleteall' : 'filehist-deleteone' ),
899 array(), $q, array( 'known' )
900 );
901 }
902 # Link to hide content. Don't show useless link to people who cannot hide revisions.
903 $canHide = $wgUser->isAllowed( 'deleterevision' );
904 if ( $canHide || ( $wgUser->isAllowed( 'deletedhistory' ) && $file->getVisibility() ) ) {
905 if ( $wgUser->isAllowed( 'delete' ) ) {
906 $row .= '<br />';
907 }
908 // If file is top revision or locked from this user, don't link
909 if ( $iscur || !$file->userCan( File::DELETED_RESTRICTED ) ) {
910 $del = $this->skin->revDeleteLinkDisabled( $canHide );
911 } else {
912 list( $ts, $name ) = explode( '!', $img, 2 );
913 $query = array(
914 'type' => 'oldimage',
915 'target' => $this->title->getPrefixedText(),
916 'ids' => $ts,
917 );
918 $del = $this->skin->revDeleteLink( $query,
919 $file->isDeleted( File::DELETED_RESTRICTED ), $canHide );
920 }
921 $row .= $del;
922 }
923 $row .= '</td>';
924 }
925
926 // Reversion link/current indicator
927 $row .= '<td>';
928 if ( $iscur ) {
929 $row .= wfMsgHtml( 'filehist-current' );
930 } elseif ( $local && $wgUser->isLoggedIn() && $this->title->userCan( 'edit' ) ) {
931 if ( $file->isDeleted( File::DELETED_FILE ) ) {
932 $row .= wfMsgHtml( 'filehist-revert' );
933 } else {
934 $row .= $this->skin->link(
935 $this->title,
936 wfMsgHtml( 'filehist-revert' ),
937 array(),
938 array(
939 'action' => 'revert',
940 'oldimage' => $img,
941 'wpEditToken' => $wgUser->editToken( $img )
942 ),
943 array( 'known', 'noclasses' )
944 );
945 }
946 }
947 $row .= '</td>';
948
949 // Date/time and image link
950 if ( $file->getTimestamp() === $this->img->getTimestamp() ) {
951 $selected = "class='filehistory-selected'";
952 }
953 $row .= "<td $selected style='white-space: nowrap;'>";
954 if ( !$file->userCan( File::DELETED_FILE ) ) {
955 # Don't link to unviewable files
956 $row .= '<span class="history-deleted">' . $wgLang->timeAndDate( $timestamp, true ) . '</span>';
957 } elseif ( $file->isDeleted( File::DELETED_FILE ) ) {
958 $revdel = SpecialPage::getTitleFor( 'Revisiondelete' );
959 # Make a link to review the image
960 $url = $this->skin->link(
961 $revdel,
962 $wgLang->timeAndDate( $timestamp, true ),
963 array(),
964 array(
965 'target' => $this->title->getPrefixedText(),
966 'file' => $img,
967 'token' => $wgUser->editToken( $img )
968 ),
969 array( 'known', 'noclasses' )
970 );
971 $row .= '<span class="history-deleted">' . $url . '</span>';
972 } else {
973 $url = $iscur ? $this->current->getUrl() : $this->current->getArchiveUrl( $img );
974 $row .= Xml::element( 'a', array( 'href' => $url ), $wgLang->timeAndDate( $timestamp, true ) );
975 }
976 $row .= "</td>";
977
978 // Thumbnail
979 if ( $this->showThumb ) {
980 $row .= '<td>' . $this->getThumbForLine( $file ) . '</td>';
981 }
982
983 // Image dimensions + size
984 $row .= '<td>';
985 $row .= htmlspecialchars( $file->getDimensionsString() );
986 $row .= " <span style='white-space: nowrap;'>(" . $this->skin->formatSize( $file->getSize() ) . ')</span>';
987 $row .= '</td>';
988
989 // Uploading user
990 $row .= '<td>';
991 if ( $local ) {
992 // Hide deleted usernames
993 if ( $file->isDeleted( File::DELETED_USER ) ) {
994 $row .= '<span class="history-deleted">' . wfMsgHtml( 'rev-deleted-user' ) . '</span>';
995 } else {
996 $row .= $this->skin->userLink( $user, $usertext ) . " <span style='white-space: nowrap;'>" .
997 $this->skin->userToolLinks( $user, $usertext ) . "</span>";
998 }
999 } else {
1000 $row .= htmlspecialchars( $usertext );
1001 }
1002 $row .= '</td><td>';
1003
1004 // Don't show deleted descriptions
1005 if ( $file->isDeleted( File::DELETED_COMMENT ) ) {
1006 $row .= '<span class="history-deleted">' . wfMsgHtml( 'rev-deleted-comment' ) . '</span>';
1007 } else {
1008 $row .= $this->skin->commentBlock( $description, $this->title );
1009 }
1010 $row .= '</td>';
1011
1012 $rowClass = null;
1013 wfRunHooks( 'ImagePageFileHistoryLine', array( $this, $file, &$row, &$rowClass ) );
1014 $classAttr = $rowClass ? " class='$rowClass'" : "";
1015
1016 return "<tr{$classAttr}>{$row}</tr>\n";
1017 }
1018
1019 protected function getThumbForLine( $file ) {
1020 global $wgLang;
1021
1022 if ( $file->allowInlineDisplay() && $file->userCan( File::DELETED_FILE ) && !$file->isDeleted( File::DELETED_FILE ) ) {
1023 $params = array(
1024 'width' => '120',
1025 'height' => '120',
1026 );
1027 $timestamp = wfTimestamp( TS_MW, $file->getTimestamp() );
1028
1029 $thumbnail = $file->transform( $params );
1030 $options = array(
1031 'alt' => wfMsg( 'filehist-thumbtext',
1032 $wgLang->timeAndDate( $timestamp, true ),
1033 $wgLang->date( $timestamp, true ),
1034 $wgLang->time( $timestamp, true ) ),
1035 'file-link' => true,
1036 );
1037
1038 if ( !$thumbnail ) return wfMsgHtml( 'filehist-nothumb' );
1039
1040 return $thumbnail->toHtml( $options );
1041 } else {
1042 return wfMsgHtml( 'filehist-nothumb' );
1043 }
1044 }
1045 }
1046
1047 class ImageHistoryPseudoPager extends ReverseChronologicalPager {
1048 function __construct( $imagePage ) {
1049 parent::__construct();
1050 $this->mImagePage = $imagePage;
1051 $this->mTitle = clone ( $imagePage->getTitle() );
1052 $this->mTitle->setFragment( '#filehistory' );
1053 $this->mImg = null;
1054 $this->mHist = array();
1055 $this->mRange = array( 0, 0 ); // display range
1056 }
1057
1058 function getTitle() {
1059 return $this->mTitle;
1060 }
1061
1062 function getQueryInfo() {
1063 return false;
1064 }
1065
1066 function getIndexField() {
1067 return '';
1068 }
1069
1070 function formatRow( $row ) {
1071 return '';
1072 }
1073
1074 function getBody() {
1075 $s = '';
1076 $this->doQuery();
1077 if ( count( $this->mHist ) ) {
1078 $list = new ImageHistoryList( $this->mImagePage );
1079 # Generate prev/next links
1080 $navLink = $this->getNavigationBar();
1081 $s = $list->beginImageHistoryList( $navLink );
1082 // Skip rows there just for paging links
1083 for ( $i = $this->mRange[0]; $i <= $this->mRange[1]; $i++ ) {
1084 $file = $this->mHist[$i];
1085 $s .= $list->imageHistoryLine( !$file->isOld(), $file );
1086 }
1087 $s .= $list->endImageHistoryList( $navLink );
1088 }
1089 return $s;
1090 }
1091
1092 function doQuery() {
1093 if ( $this->mQueryDone ) return;
1094 $this->mImg = $this->mImagePage->getFile(); // ensure loading
1095 if ( !$this->mImg->exists() ) {
1096 return;
1097 }
1098 $queryLimit = $this->mLimit + 1; // limit plus extra row
1099 if ( $this->mIsBackwards ) {
1100 // Fetch the file history
1101 $this->mHist = $this->mImg->getHistory( $queryLimit, null, $this->mOffset, false );
1102 // The current rev may not meet the offset/limit
1103 $numRows = count( $this->mHist );
1104 if ( $numRows <= $this->mLimit && $this->mImg->getTimestamp() > $this->mOffset ) {
1105 $this->mHist = array_merge( array( $this->mImg ), $this->mHist );
1106 }
1107 } else {
1108 // The current rev may not meet the offset
1109 if ( !$this->mOffset || $this->mImg->getTimestamp() < $this->mOffset ) {
1110 $this->mHist[] = $this->mImg;
1111 }
1112 // Old image versions (fetch extra row for nav links)
1113 $oiLimit = count( $this->mHist ) ? $this->mLimit : $this->mLimit + 1;
1114 // Fetch the file history
1115 $this->mHist = array_merge( $this->mHist,
1116 $this->mImg->getHistory( $oiLimit, $this->mOffset, null, false ) );
1117 }
1118 $numRows = count( $this->mHist ); // Total number of query results
1119 if ( $numRows ) {
1120 # Index value of top item in the list
1121 $firstIndex = $this->mIsBackwards ?
1122 $this->mHist[$numRows - 1]->getTimestamp() : $this->mHist[0]->getTimestamp();
1123 # Discard the extra result row if there is one
1124 if ( $numRows > $this->mLimit && $numRows > 1 ) {
1125 if ( $this->mIsBackwards ) {
1126 # Index value of item past the index
1127 $this->mPastTheEndIndex = $this->mHist[0]->getTimestamp();
1128 # Index value of bottom item in the list
1129 $lastIndex = $this->mHist[1]->getTimestamp();
1130 # Display range
1131 $this->mRange = array( 1, $numRows - 1 );
1132 } else {
1133 # Index value of item past the index
1134 $this->mPastTheEndIndex = $this->mHist[$numRows - 1]->getTimestamp();
1135 # Index value of bottom item in the list
1136 $lastIndex = $this->mHist[$numRows - 2]->getTimestamp();
1137 # Display range
1138 $this->mRange = array( 0, $numRows - 2 );
1139 }
1140 } else {
1141 # Setting indexes to an empty string means that they will be
1142 # omitted if they would otherwise appear in URLs. It just so
1143 # happens that this is the right thing to do in the standard
1144 # UI, in all the relevant cases.
1145 $this->mPastTheEndIndex = '';
1146 # Index value of bottom item in the list
1147 $lastIndex = $this->mIsBackwards ?
1148 $this->mHist[0]->getTimestamp() : $this->mHist[$numRows - 1]->getTimestamp();
1149 # Display range
1150 $this->mRange = array( 0, $numRows - 1 );
1151 }
1152 } else {
1153 $firstIndex = '';
1154 $lastIndex = '';
1155 $this->mPastTheEndIndex = '';
1156 }
1157 if ( $this->mIsBackwards ) {
1158 $this->mIsFirst = ( $numRows < $queryLimit );
1159 $this->mIsLast = ( $this->mOffset == '' );
1160 $this->mLastShown = $firstIndex;
1161 $this->mFirstShown = $lastIndex;
1162 } else {
1163 $this->mIsFirst = ( $this->mOffset == '' );
1164 $this->mIsLast = ( $numRows < $queryLimit );
1165 $this->mLastShown = $lastIndex;
1166 $this->mFirstShown = $firstIndex;
1167 }
1168 $this->mQueryDone = true;
1169 }
1170 }