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