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