Load all extension messages in the specified language code, not only messages defined...
[mediawiki.git] / includes / ImagePage.php
blob55e63baffe8912536f4e7e8bd98d48c1b8a94b41
1 <?php
3 if( !defined( 'MEDIAWIKI' ) )
4 die( 1 );
6 /**
7 * Special handling for image description pages
9 * @ingroup Media
11 class ImagePage extends Article {
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;
20 function __construct( $title ) {
21 parent::__construct( $title );
22 $this->dupes = null;
23 $this->repo = null;
26 protected function loadFile() {
27 if ( $this->fileLoaded ) {
28 return true;
30 $this->fileLoaded = true;
32 $this->displayImg = $this->img = false;
33 wfRunHooks( 'ImagePageFindFile', array( $this, &$this->img, &$this->displayImg ) );
34 if ( !$this->img ) {
35 $this->img = wfFindFile( $this->mTitle );
36 if ( !$this->img ) {
37 $this->img = wfLocalFile( $this->mTitle );
40 if ( !$this->displayImg ) {
41 $this->displayImg = $this->img;
43 $this->repo = $this->img->getRepo();
46 /**
47 * Handler for action=render
48 * Include body text only; none of the image extras
50 function render() {
51 global $wgOut;
52 $wgOut->setArticleBodyOnly( true );
53 parent::view();
56 function view() {
57 global $wgOut, $wgShowEXIF, $wgRequest, $wgUser;
58 $this->loadFile();
60 if ( $this->mTitle->getNamespace() == NS_IMAGE && $this->img->getRedirected() ) {
61 if ( $this->mTitle->getDBkey() == $this->img->getName() ) {
62 // mTitle is the same as the redirect target so ask Article
63 // to perform the redirect for us.
64 return Article::view();
65 } else {
66 // mTitle is not the same as the redirect target so it is
67 // probably the redirect page itself. Fake the redirect symbol
68 $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
69 $this->viewRedirect( Title::makeTitle( NS_IMAGE, $this->img->getName() ),
70 /* $overwriteSubtitle */ true, /* $forceKnown */ true );
71 $this->viewUpdates();
72 return;
76 $diff = $wgRequest->getVal( 'diff' );
77 $diffOnly = $wgRequest->getBool( 'diffonly', $wgUser->getOption( 'diffonly' ) );
79 if ( $this->mTitle->getNamespace() != NS_IMAGE || ( isset( $diff ) && $diffOnly ) )
80 return Article::view();
82 if ( $wgShowEXIF && $this->displayImg->exists() ) {
83 // FIXME: bad interface, see note on MediaHandler::formatMetadata().
84 $formattedMetadata = $this->displayImg->formatMetadata();
85 $showmeta = $formattedMetadata !== false;
86 } else {
87 $showmeta = false;
90 if ( $this->displayImg->exists() )
91 $wgOut->addHTML( $this->showTOC($showmeta) );
93 $this->openShowImage();
95 # No need to display noarticletext, we use our own message, output in openShowImage()
96 if ( $this->getID() ) {
97 Article::view();
98 } else {
99 # Just need to set the right headers
100 $wgOut->setArticleFlag( true );
101 $wgOut->setRobotpolicy( 'noindex,nofollow' );
102 $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
103 $this->viewUpdates();
106 # Show shared description, if needed
107 if ( $this->mExtraDescription ) {
108 $fol = wfMsgNoTrans( 'shareddescriptionfollows' );
109 if( $fol != '-' && !wfEmptyMsg( 'shareddescriptionfollows', $fol ) ) {
110 $wgOut->addWikiText( $fol );
112 $wgOut->addHTML( '<div id="shared-image-desc">' . $this->mExtraDescription . '</div>' );
113 } else {
114 $this->checkSharedConflict();
117 $this->closeShowImage();
118 $this->imageHistory();
119 // TODO: Cleanup the following
121 $wgOut->addHTML( Xml::element( 'h2',
122 array( 'id' => 'filelinks' ),
123 wfMsg( 'imagelinks' ) ) . "\n" );
124 $this->imageDupes();
125 // TODO: We may want to find local images redirecting to a foreign
126 // file: "The following local files redirect to this file"
127 if ( $this->img->isLocal() ) {
128 $this->imageRedirects();
130 $this->imageLinks();
132 if ( $showmeta ) {
133 global $wgStylePath, $wgStyleVersion;
134 $expand = htmlspecialchars( wfEscapeJsString( wfMsg( 'metadata-expand' ) ) );
135 $collapse = htmlspecialchars( wfEscapeJsString( wfMsg( 'metadata-collapse' ) ) );
136 $wgOut->addHTML( Xml::element( 'h2', array( 'id' => 'metadata' ), wfMsg( 'metadata' ) ). "\n" );
137 $wgOut->addWikiText( $this->makeMetadataTable( $formattedMetadata ) );
138 $wgOut->addScriptFile( 'metadata.js' );
139 $wgOut->addHTML(
140 "<script type=\"text/javascript\">attachMetadataToggle('mw_metadata', '$expand', '$collapse');</script>\n" );
144 public function getRedirectTarget() {
145 $this->loadFile();
146 if ( $this->img->isLocal() ) {
147 return parent::getRedirectTarget();
149 // Foreign image page
150 $from = $this->img->getRedirected();
151 $to = $this->img->getName();
152 if ( $from == $to ) {
153 return null;
155 return $this->mRedirectTarget = Title::makeTitle( NS_IMAGE, $to );
157 public function followRedirect() {
158 $this->loadFile();
159 if ( $this->img->isLocal() ) {
160 return parent::followRedirect();
162 $from = $this->img->getRedirected();
163 $to = $this->img->getName();
164 if ( $from == $to ) {
165 return false;
167 return Title::makeTitle( NS_IMAGE, $to );
169 public function isRedirect( $text = false ) {
170 $this->loadFile();
171 if ( $this->img->isLocal() )
172 return parent::isRedirect( $text );
174 return (bool)$this->img->getRedirected();
177 public function isLocal() {
178 $this->loadFile();
179 return $this->img->isLocal();
182 public function getFile() {
183 $this->loadFile();
184 return $this->img;
187 public function getDisplayedFile() {
188 $this->loadFile();
189 return $this->displayImg;
192 public function getDuplicates() {
193 $this->loadFile();
194 if ( !is_null($this->dupes) ) {
195 return $this->dupes;
197 if ( !( $hash = $this->img->getSha1() ) ) {
198 return $this->dupes = array();
200 $dupes = RepoGroup::singleton()->findBySha1( $hash );
201 // Remove duplicates with self and non matching file sizes
202 $self = $this->img->getRepoName().':'.$this->img->getName();
203 $size = $this->img->getSize();
204 foreach ( $dupes as $index => $file ) {
205 $key = $file->getRepoName().':'.$file->getName();
206 if ( $key == $self )
207 unset( $dupes[$index] );
208 if ( $file->getSize() != $size )
209 unset( $dupes[$index] );
211 return $this->dupes = $dupes;
217 * Create the TOC
219 * @access private
221 * @param bool $metadata Whether or not to show the metadata link
222 * @return string
224 function showTOC( $metadata ) {
225 global $wgLang;
226 $r = '<ul id="filetoc">
227 <li><a href="#file">' . $wgLang->getNsText( NS_IMAGE ) . '</a></li>
228 <li><a href="#filehistory">' . wfMsgHtml( 'filehist' ) . '</a></li>
229 <li><a href="#filelinks">' . wfMsgHtml( 'imagelinks' ) . '</a></li>' .
230 ($metadata ? ' <li><a href="#metadata">' . wfMsgHtml( 'metadata' ) . '</a></li>' : '') . '
231 </ul>';
232 return $r;
236 * Make a table with metadata to be shown in the output page.
238 * FIXME: bad interface, see note on MediaHandler::formatMetadata().
240 * @access private
242 * @param array $exif The array containing the EXIF data
243 * @return string
245 function makeMetadataTable( $metadata ) {
246 $r = wfMsg( 'metadata-help' ) . "\n\n";
247 $r .= "{| id=mw_metadata class=mw_metadata\n";
248 foreach ( $metadata as $type => $stuff ) {
249 foreach ( $stuff as $v ) {
250 $class = Sanitizer::escapeId( $v['id'] );
251 if( $type == 'collapsed' ) {
252 $class .= ' collapsable';
254 $r .= "|- class=\"$class\"\n";
255 $r .= "!| {$v['name']}\n";
256 $r .= "|| {$v['value']}\n";
259 $r .= '|}';
260 return $r;
264 * Overloading Article's getContent method.
266 * Omit noarticletext if sharedupload; text will be fetched from the
267 * shared upload server if possible.
269 function getContent() {
270 $this->loadFile();
271 if( $this->img && !$this->img->isLocal() && 0 == $this->getID() ) {
272 return '';
274 return Article::getContent();
277 function openShowImage() {
278 global $wgOut, $wgUser, $wgImageLimits, $wgRequest, $wgLang, $wgContLang;
280 $this->loadFile();
282 $full_url = $this->displayImg->getURL();
283 $linkAttribs = false;
284 $sizeSel = intval( $wgUser->getOption( 'imagesize') );
285 if( !isset( $wgImageLimits[$sizeSel] ) ) {
286 $sizeSel = User::getDefaultOption( 'imagesize' );
288 // The user offset might still be incorrect, specially if
289 // $wgImageLimits got changed (see bug #8858).
290 if( !isset( $wgImageLimits[$sizeSel] ) ) {
291 // Default to the first offset in $wgImageLimits
292 $sizeSel = 0;
295 $max = $wgImageLimits[$sizeSel];
296 $maxWidth = $max[0];
297 $maxHeight = $max[1];
298 $sk = $wgUser->getSkin();
299 $dirmark = $wgContLang->getDirMark();
301 if ( $this->displayImg->exists() ) {
302 # image
303 $page = $wgRequest->getIntOrNull( 'page' );
304 if ( is_null( $page ) ) {
305 $params = array();
306 $page = 1;
307 } else {
308 $params = array( 'page' => $page );
310 $width_orig = $this->displayImg->getWidth();
311 $width = $width_orig;
312 $height_orig = $this->displayImg->getHeight();
313 $height = $height_orig;
314 $mime = $this->displayImg->getMimeType();
315 $showLink = false;
316 $linkAttribs = array( 'href' => $full_url );
317 $longDesc = $this->displayImg->getLongDesc();
319 wfRunHooks( 'ImageOpenShowImageInlineBefore', array( &$this , &$wgOut ) ) ;
321 if ( $this->displayImg->allowInlineDisplay() ) {
322 # image
324 # "Download high res version" link below the image
325 #$msgsize = wfMsgHtml('file-info-size', $width_orig, $height_orig, $sk->formatSize( $this->displayImg->getSize() ), $mime );
326 # We'll show a thumbnail of this image
327 if ( $width > $maxWidth || $height > $maxHeight ) {
328 # Calculate the thumbnail size.
329 # First case, the limiting factor is the width, not the height.
330 if ( $width / $height >= $maxWidth / $maxHeight ) {
331 $height = round( $height * $maxWidth / $width);
332 $width = $maxWidth;
333 # Note that $height <= $maxHeight now.
334 } else {
335 $newwidth = floor( $width * $maxHeight / $height);
336 $height = round( $height * $newwidth / $width );
337 $width = $newwidth;
338 # Note that $height <= $maxHeight now, but might not be identical
339 # because of rounding.
341 $msgbig = wfMsgHtml( 'show-big-image' );
342 $msgsmall = wfMsgExt( 'show-big-image-thumb',
343 array( 'parseinline' ), $wgLang->formatNum( $width ), $wgLang->formatNum( $height ) );
344 } else {
345 # Image is small enough to show full size on image page
346 $msgbig = htmlspecialchars( $this->displayImg->getName() );
347 $msgsmall = wfMsgExt( 'file-nohires', array( 'parseinline' ) );
350 $params['width'] = $width;
351 $thumbnail = $this->displayImg->transform( $params );
353 $anchorclose = "<br />";
354 if( $this->displayImg->mustRender() ) {
355 $showLink = true;
356 } else {
357 $anchorclose .=
358 $msgsmall .
359 '<br />' . Xml::tags( 'a', $linkAttribs, $msgbig ) . "$dirmark " . $longDesc;
362 if ( $this->displayImg->isMultipage() ) {
363 $wgOut->addHTML( '<table class="multipageimage"><tr><td>' );
366 if ( $thumbnail ) {
367 $options = array(
368 'alt' => $this->displayImg->getTitle()->getPrefixedText(),
369 'file-link' => true,
371 $wgOut->addHTML( '<div class="fullImageLink" id="file">' .
372 $thumbnail->toHtml( $options ) .
373 $anchorclose . '</div>' );
376 if ( $this->displayImg->isMultipage() ) {
377 $count = $this->displayImg->pageCount();
379 if ( $page > 1 ) {
380 $label = $wgOut->parse( wfMsg( 'imgmultipageprev' ), false );
381 $link = $sk->makeKnownLinkObj( $this->mTitle, $label, 'page='. ($page-1) );
382 $thumb1 = $sk->makeThumbLinkObj( $this->mTitle, $this->displayImg, $link, $label, 'none',
383 array( 'page' => $page - 1 ) );
384 } else {
385 $thumb1 = '';
388 if ( $page < $count ) {
389 $label = wfMsg( 'imgmultipagenext' );
390 $link = $sk->makeKnownLinkObj( $this->mTitle, $label, 'page='. ($page+1) );
391 $thumb2 = $sk->makeThumbLinkObj( $this->mTitle, $this->displayImg, $link, $label, 'none',
392 array( 'page' => $page + 1 ) );
393 } else {
394 $thumb2 = '';
397 global $wgScript;
399 $formParams = array(
400 'name' => 'pageselector',
401 'action' => $wgScript,
402 'onchange' => 'document.pageselector.submit();',
405 $option = array();
406 for ( $i=1; $i <= $count; $i++ ) {
407 $options[] = Xml::option( $wgLang->formatNum($i), $i, $i == $page );
409 $select = Xml::tags( 'select',
410 array( 'id' => 'pageselector', 'name' => 'page' ),
411 implode( "\n", $options ) );
413 $wgOut->addHTML(
414 '</td><td><div class="multipageimagenavbox">' .
415 Xml::openElement( 'form', $formParams ) .
416 Xml::hidden( 'title', $this->getTitle()->getPrefixedDbKey() ) .
417 wfMsgExt( 'imgmultigoto', array( 'parseinline', 'replaceafter' ), $select ) .
418 Xml::submitButton( wfMsg( 'imgmultigo' ) ) .
419 Xml::closeElement( 'form' ) .
420 "<hr />$thumb1\n$thumb2<br clear=\"all\" /></div></td></tr></table>"
423 } else {
424 #if direct link is allowed but it's not a renderable image, show an icon.
425 if ( $this->displayImg->isSafeFile() ) {
426 $icon= $this->displayImg->iconThumb();
428 $wgOut->addHTML( '<div class="fullImageLink" id="file">' .
429 $icon->toHtml( array( 'desc-link' => true ) ) .
430 '</div>' );
433 $showLink = true;
437 if ($showLink) {
438 $filename = wfEscapeWikiText( $this->displayImg->getName() );
440 if ( !$this->displayImg->isSafeFile() ) {
441 $warning = wfMsgNoTrans( 'mediawarning' );
442 $wgOut->addWikiText( <<<EOT
443 <div class="fullMedia">
444 <span class="dangerousLink">[[Media:$filename|$filename]]</span>$dirmark
445 <span class="fileInfo"> $longDesc</span>
446 </div>
448 <div class="mediaWarning">$warning</div>
451 } else {
452 $wgOut->addWikiText( <<<EOT
453 <div class="fullMedia">
454 [[Media:$filename|$filename]]$dirmark <span class="fileInfo"> $longDesc</span>
455 </div>
461 if( !$this->displayImg->isLocal() ) {
462 $this->printSharedImageText();
464 } else {
465 # Image does not exist
467 $title = SpecialPage::getTitleFor( 'Upload' );
468 $link = $sk->makeKnownLinkObj($title, wfMsgHtml('noimage-linktext'),
469 'wpDestFile=' . urlencode( $this->displayImg->getName() ) );
470 $wgOut->addHTML( wfMsgWikiHtml( 'noimage', $link ) );
475 * Show a notice that the file is from a shared repository
477 function printSharedImageText() {
478 global $wgOut, $wgUser;
480 $this->loadFile();
482 $descUrl = $this->img->getDescriptionUrl();
483 $descText = $this->img->getDescriptionText();
484 $s = "<div class='sharedUploadNotice'>" . wfMsgWikiHtml( 'sharedupload' );
485 if ( $descUrl ) {
486 $sk = $wgUser->getSkin();
487 $link = $sk->makeExternalLink( $descUrl, wfMsg( 'shareduploadwiki-linktext' ) );
488 $msg = ( $descText ) ? 'shareduploadwiki-desc' : 'shareduploadwiki';
489 $msg = wfMsgExt( $msg, array( 'parseinline', 'replaceafter' ), $link );
490 if ( $msg != '-' ) {
491 # Show message only if not voided by local sysops
492 $s .= $msg;
495 $s .= "</div>";
496 $wgOut->addHTML( $s );
498 if ( $descText ) {
499 $this->mExtraDescription = $descText;
504 * Check for files with the same name on the foreign repos.
506 function checkSharedConflict() {
507 global $wgOut, $wgUser;
509 $repoGroup = RepoGroup::singleton();
510 if( !$repoGroup->hasForeignRepos() ) {
511 return;
514 $this->loadFile();
515 if( !$this->img->isLocal() ) {
516 return;
519 $this->dupFile = null;
520 $repoGroup->forEachForeignRepo( array( $this, 'checkSharedConflictCallback' ) );
522 if( !$this->dupFile )
523 return;
524 $dupfile = $this->dupFile;
525 $same = (
526 ($this->img->getSha1() == $dupfile->getSha1()) &&
527 ($this->img->getSize() == $dupfile->getSize())
530 $sk = $wgUser->getSkin();
531 $descUrl = $dupfile->getDescriptionUrl();
532 if( $same ) {
533 $link = $sk->makeExternalLink( $descUrl, wfMsg( 'shareduploadduplicate-linktext' ) );
534 $wgOut->addHTML( '<div id="shared-image-dup">' . wfMsgWikiHtml( 'shareduploadduplicate', $link ) . '</div>' );
535 } else {
536 $link = $sk->makeExternalLink( $descUrl, wfMsg( 'shareduploadconflict-linktext' ) );
537 $wgOut->addHTML( '<div id="shared-image-conflict">' . wfMsgWikiHtml( 'shareduploadconflict', $link ) . '</div>' );
541 function checkSharedConflictCallback( $repo ) {
542 $this->loadFile();
543 $dupfile = $repo->newFile( $this->img->getTitle() );
544 if( $dupfile && $dupfile->exists() ) {
545 $this->dupFile = $dupfile;
546 return $dupfile->exists();
548 return false;
551 function getUploadUrl() {
552 $this->loadFile();
553 $uploadTitle = SpecialPage::getTitleFor( 'Upload' );
554 return $uploadTitle->getFullUrl( 'wpDestFile=' . urlencode( $this->img->getName() ) );
558 * Print out the various links at the bottom of the image page, e.g. reupload,
559 * external editing (and instructions link) etc.
561 function uploadLinksBox() {
562 global $wgUser, $wgOut;
564 $this->loadFile();
565 if( !$this->img->isLocal() )
566 return;
568 $sk = $wgUser->getSkin();
570 $wgOut->addHtml( '<br /><ul>' );
572 # "Upload a new version of this file" link
573 if( UploadForm::userCanReUpload($wgUser,$this->img->name) ) {
574 $ulink = $sk->makeExternalLink( $this->getUploadUrl(), wfMsg( 'uploadnewversion-linktext' ) );
575 $wgOut->addHtml( "<li><div class='plainlinks'>{$ulink}</div></li>" );
578 # Link to Special:FileDuplicateSearch
579 $dupeLink = $sk->makeKnownLinkObj( SpecialPage::getTitleFor( 'FileDuplicateSearch', $this->mTitle->getDBkey() ), wfMsgHtml( 'imagepage-searchdupe' ) );
580 $wgOut->addHtml( "<li>{$dupeLink}</li>" );
582 # External editing link
583 $elink = $sk->makeKnownLinkObj( $this->mTitle, wfMsgHtml( 'edit-externally' ), 'action=edit&externaledit=true&mode=file' );
584 $wgOut->addHtml( '<li>' . $elink . '<div>' . wfMsgWikiHtml( 'edit-externally-help' ) . '</div></li>' );
586 $wgOut->addHtml( '</ul>' );
589 function closeShowImage()
591 # For overloading
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.
599 function imageHistory()
601 global $wgOut, $wgUseExternalEditor;
603 $this->loadFile();
604 if ( $this->img->exists() ) {
605 $list = new ImageHistoryList( $this );
606 $file = $this->img;
607 $dims = $file->getDimensionsString();
608 $s = $list->beginImageHistoryList();
609 $s .= $list->imageHistoryLine( true, $file );
610 // old image versions
611 $hist = $this->img->getHistory();
612 foreach( $hist as $file ) {
613 $dims = $file->getDimensionsString();
614 $s .= $list->imageHistoryLine( false, $file );
616 $s .= $list->endImageHistoryList();
617 } else { $s=''; }
618 $wgOut->addHTML( $s );
620 $this->img->resetHistory(); // free db resources
622 # Exist check because we don't want to show this on pages where an image
623 # doesn't exist along with the noimage message, that would suck. -ævar
624 if( $wgUseExternalEditor && $this->img->exists() ) {
625 $this->uploadLinksBox();
630 function imageLinks()
632 global $wgUser, $wgOut;
634 $limit = 100;
636 $dbr = wfGetDB( DB_SLAVE );
638 $res = $dbr->select(
639 array( 'imagelinks', 'page' ),
640 array( 'page_namespace', 'page_title' ),
641 array( 'il_to' => $this->mTitle->getDBkey(), 'il_from = page_id' ),
642 __METHOD__,
643 array( 'LIMIT' => $limit + 1)
646 if ( 0 == $dbr->numRows( $res ) ) {
647 $wgOut->addHTML( "<div id='mw-imagepage-nolinkstoimage'>\n" );
648 $wgOut->addWikiMsg( 'nolinkstoimage' );
649 $wgOut->addHTML( "</div>\n" );
650 return;
652 $wgOut->addHTML( "<div id='mw-imagepage-section-linkstoimage'>\n" );
653 $wgOut->addWikiMsg( 'linkstoimage' );
654 $wgOut->addHTML( "<ul class='mw-imagepage-linktoimage'>\n" );
656 $sk = $wgUser->getSkin();
657 $count = 0;
658 while ( $s = $res->fetchObject() ) {
659 $count++;
660 if ( $count <= $limit ) {
661 // We have not yet reached the extra one that tells us there is more to fetch
662 $name = Title::makeTitle( $s->page_namespace, $s->page_title );
663 $link = $sk->makeKnownLinkObj( $name, "" );
664 $wgOut->addHTML( "<li>{$link}</li>\n" );
667 $wgOut->addHTML( "</ul></div>\n" );
668 $res->free();
670 // Add a links to [[Special:Whatlinkshere]]
671 if ( $count > $limit )
672 $wgOut->addWikiMsg( 'morelinkstoimage', $this->mTitle->getPrefixedDBkey() );
675 function imageRedirects()
677 global $wgUser, $wgOut;
679 $redirects = $this->getTitle()->getRedirectsHere( NS_IMAGE );
680 if ( count( $redirects ) == 0 ) return;
682 $wgOut->addHTML( "<div id='mw-imagepage-section-redirectstofile'>\n" );
683 $wgOut->addWikiMsg( 'redirectstofile' );
684 $wgOut->addHTML( "<ul class='mw-imagepage-redirectstofile'>\n" );
686 $sk = $wgUser->getSkin();
687 foreach ( $redirects as $title ) {
688 $link = $sk->makeKnownLinkObj( $title, "" );
689 $wgOut->addHTML( "<li>{$link}</li>\n" );
691 $wgOut->addHTML( "</ul></div>\n" );
695 function imageDupes() {
696 global $wgOut, $wgUser;
698 $this->loadFile();
700 $dupes = $this->getDuplicates();
701 if ( count( $dupes ) == 0 ) return;
703 $wgOut->addHTML( "<div id='mw-imagepage-section-duplicates'>\n" );
704 $wgOut->addWikiMsg( 'duplicatesoffile' );
705 $wgOut->addHTML( "<ul class='mw-imagepage-duplicates'>\n" );
707 $sk = $wgUser->getSkin();
708 foreach ( $dupes as $file ) {
709 if ( $file->isLocal() )
710 $link = $sk->makeKnownLinkObj( $file->getTitle(), "" );
711 else
712 $link = $sk->makeExternalLink( $file->getDescriptionUrl(),
713 $file->getTitle()->getPrefixedText() );
714 $wgOut->addHTML( "<li>{$link}</li>\n" );
716 $wgOut->addHTML( "</ul></div>\n" );
720 * Delete the file, or an earlier version of it
722 public function delete() {
723 $this->loadFile();
724 if( !$this->img->exists() || !$this->img->isLocal() || $this->img->getRedirected() ) {
725 // Standard article deletion
726 Article::delete();
727 return;
729 $deleter = new FileDeleteForm( $this->img );
730 $deleter->execute();
734 * Revert the file to an earlier version
736 public function revert() {
737 $this->loadFile();
738 $reverter = new FileRevertForm( $this->img );
739 $reverter->execute();
743 * Override handling of action=purge
745 function doPurge() {
746 $this->loadFile();
747 if( $this->img->exists() ) {
748 wfDebug( "ImagePage::doPurge purging " . $this->img->getName() . "\n" );
749 $update = new HTMLCacheUpdate( $this->mTitle, 'imagelinks' );
750 $update->doUpdate();
751 $this->img->upgradeRow();
752 $this->img->purgeCache();
753 } else {
754 wfDebug( "ImagePage::doPurge no image\n" );
756 parent::doPurge();
760 * Display an error with a wikitext description
762 function showError( $description ) {
763 global $wgOut;
764 $wgOut->setPageTitle( wfMsg( "internalerror" ) );
765 $wgOut->setRobotpolicy( "noindex,nofollow" );
766 $wgOut->setArticleRelated( false );
767 $wgOut->enableClientCache( false );
768 $wgOut->addWikiText( $description );
774 * Builds the image revision log shown on image pages
776 * @ingroup Media
778 class ImageHistoryList {
780 protected $imagePage, $img, $skin, $title, $repo;
782 public function __construct( $imagePage ) {
783 global $wgUser;
784 $this->skin = $wgUser->getSkin();
785 $this->current = $imagePage->getFile();
786 $this->img = $imagePage->getDisplayedFile();
787 $this->title = $imagePage->getTitle();
788 $this->imagePage = $imagePage;
791 function getImagePage() {
792 return $this->imagePage;
795 function getSkin() {
796 return $this->skin;
799 function getFile() {
800 return $this->img;
803 public function beginImageHistoryList() {
804 global $wgOut, $wgUser;
805 return Xml::element( 'h2', array( 'id' => 'filehistory' ), wfMsg( 'filehist' ) )
806 . $wgOut->parse( wfMsgNoTrans( 'filehist-help' ) )
807 . Xml::openElement( 'table', array( 'class' => 'filehistory' ) ) . "\n"
808 . '<tr><td></td>'
809 . ( $this->current->isLocal() && ($wgUser->isAllowed('delete') || $wgUser->isAllowed('deleterevision') ) ? '<td></td>' : '' )
810 . '<th>' . wfMsgHtml( 'filehist-datetime' ) . '</th>'
811 . '<th>' . wfMsgHtml( 'filehist-dimensions' ) . '</th>'
812 . '<th>' . wfMsgHtml( 'filehist-user' ) . '</th>'
813 . '<th>' . wfMsgHtml( 'filehist-comment' ) . '</th>'
814 . "</tr>\n";
817 public function endImageHistoryList() {
818 return "</table>\n";
821 public function imageHistoryLine( $iscur, $file ) {
822 global $wgUser, $wgLang, $wgContLang, $wgTitle;
824 $timestamp = wfTimestamp(TS_MW, $file->getTimestamp());
825 $img = $iscur ? $file->getName() : $file->getArchiveName();
826 $user = $file->getUser('id');
827 $usertext = $file->getUser('text');
828 $size = $file->getSize();
829 $description = $file->getDescription();
830 $dims = $file->getDimensionsString();
831 $sha1 = $file->getSha1();
833 $local = $this->current->isLocal();
834 $row = $css = $selected = '';
836 // Deletion link
837 if( $local && ($wgUser->isAllowed('delete') || $wgUser->isAllowed('deleterevision') ) ) {
838 $row .= '<td>';
839 # Link to remove from history
840 if( $wgUser->isAllowed( 'delete' ) ) {
841 $q = array();
842 $q[] = 'action=delete';
843 if( !$iscur )
844 $q[] = 'oldimage=' . urlencode( $img );
845 $row .= $this->skin->makeKnownLinkObj(
846 $this->title,
847 wfMsgHtml( $iscur ? 'filehist-deleteall' : 'filehist-deleteone' ),
848 implode( '&', $q )
851 # Link to hide content
852 if( $wgUser->isAllowed( 'deleterevision' ) ) {
853 if( $wgUser->isAllowed('delete') ) {
854 $row .= '<br/>';
856 $revdel = SpecialPage::getTitleFor( 'Revisiondelete' );
857 // If file is top revision or locked from this user, don't link
858 if( $iscur || !$file->userCan(File::DELETED_RESTRICTED) ) {
859 $del = wfMsgHtml( 'rev-delundel' );
860 } else {
861 // If the file was hidden, link to sha-1
862 list($ts,$name) = explode('!',$img,2);
863 $del = $this->skin->makeKnownLinkObj( $revdel, wfMsg( 'rev-delundel' ),
864 'target=' . urlencode( $wgTitle->getPrefixedText() ) .
865 '&oldimage=' . urlencode( $ts ) );
866 // Bolden oversighted content
867 if( $file->isDeleted(File::DELETED_RESTRICTED) )
868 $del = "<strong>$del</strong>";
870 $row .= "<tt style='white-space: nowrap;'><small>$del</small></tt>";
872 $row .= '</td>';
875 // Reversion link/current indicator
876 $row .= '<td>';
877 if( $iscur ) {
878 $row .= wfMsgHtml( 'filehist-current' );
879 } elseif( $local && $wgUser->isLoggedIn() && $this->title->userCan( 'edit' ) ) {
880 if( $file->isDeleted(File::DELETED_FILE) ) {
881 $row .= wfMsgHtml('filehist-revert');
882 } else {
883 $q = array();
884 $q[] = 'action=revert';
885 $q[] = 'oldimage=' . urlencode( $img );
886 $q[] = 'wpEditToken=' . urlencode( $wgUser->editToken( $img ) );
887 $row .= $this->skin->makeKnownLinkObj( $this->title,
888 wfMsgHtml( 'filehist-revert' ),
889 implode( '&', $q ) );
892 $row .= '</td>';
894 // Date/time and image link
895 if( $file->getTimestamp() === $this->img->getTimestamp() ) {
896 $selected = "class='filehistory-selected'";
898 $row .= "<td $selected style='white-space: nowrap;'>";
899 if( !$file->userCan(File::DELETED_FILE) ) {
900 # Don't link to unviewable files
901 $row .= '<span class="history-deleted">' . $wgLang->timeAndDate( $timestamp, true ) . '</span>';
902 } else if( $file->isDeleted(File::DELETED_FILE) ) {
903 $revdel = SpecialPage::getTitleFor( 'Revisiondelete' );
904 # Make a link to review the image
905 $url = $this->skin->makeKnownLinkObj( $revdel, $wgLang->timeAndDate( $timestamp, true ),
906 "target=".$wgTitle->getPrefixedText()."&file=$sha1.".$this->current->getExtension() );
907 $row .= '<span class="history-deleted">'.$url.'</span>';
908 } else {
909 $url = $iscur ? $this->current->getUrl() : $this->current->getArchiveUrl( $img );
910 $row .= Xml::element( 'a', array( 'href' => $url ), $wgLang->timeAndDate( $timestamp, true ) );
913 $row .= "</td><td>";
915 // Image dimensions
916 $row .= htmlspecialchars( $dims );
918 // File size
919 $row .= " <span style='white-space: nowrap;'>(" . $this->skin->formatSize( $size ) . ')</span>';
921 // Uploading user
922 $row .= '</td><td>';
923 if( $local ) {
924 // Hide deleted usernames
925 if( $file->isDeleted(File::DELETED_USER) ) {
926 $row .= '<span class="history-deleted">' . wfMsgHtml( 'rev-deleted-user' ) . '</span>';
927 } else {
928 $row .= $this->skin->userLink( $user, $usertext ) . " <span style='white-space: nowrap;'>" .
929 $this->skin->userToolLinks( $user, $usertext ) . "</span>";
931 } else {
932 $row .= htmlspecialchars( $usertext );
934 $row .= '</td><td>';
936 // Don't show deleted descriptions
937 if ( $file->isDeleted(File::DELETED_COMMENT) ) {
938 $row .= '<span class="history-deleted">' . wfMsgHtml('rev-deleted-comment') . '</span>';
939 } else {
940 $row .= $this->skin->commentBlock( $description, $this->title );
942 $row .= '</td>';
944 wfRunHooks( 'ImagePageFileHistoryLine', array( $this, $file, &$row, &$rowClass ) );
945 $classAttr = $rowClass ? " class='$rowClass'" : "";
947 return "<tr{$classAttr}>{$row}</tr>\n";