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