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