Remove "info"-toolbar. This used to be shown for browsers which don't
[lhc/web/wiklou.git] / includes / ImagePage.php
1 <?php
2 /**
3 * @package MediaWiki
4 */
5
6 /**
7 *
8 */
9 if( !defined( 'MEDIAWIKI' ) )
10 die();
11
12 require_once( 'Image.php' );
13
14 /**
15 * Special handling for image description pages
16 * @package MediaWiki
17 */
18 class ImagePage extends Article {
19
20 /* private */ var $img; // Image object this page is shown for
21 var $mExtraDescription = false;
22
23 function render() {
24 global $wgOut;
25 $wgOut->setArticleBodyOnly(true);
26 $wgOut->addWikitext($this->getContent(true));
27 }
28
29 function view() {
30 global $wgUseExternalEditor, $wgOut, $wgShowEXIF;
31
32 $this->img = new Image( $this->mTitle );
33
34 if( $this->mTitle->getNamespace() == NS_IMAGE ) {
35 if ($wgShowEXIF && $this->img->exists()) {
36 $exif = $this->img->getExifData();
37 $showmeta = count($exif) ? true : false;
38 } else {
39 $exif = false;
40 $showmeta = false;
41 }
42
43 if ($this->img->exists())
44 $wgOut->addHTML($this->showTOC($showmeta));
45
46 $this->openShowImage();
47 if ($exif)
48 $wgOut->addWikiText($this->makeMetadataTable($exif));
49
50 # No need to display noarticletext, we use our own message, output in openShowImage()
51 if( $this->getID() ) {
52 Article::view();
53 } else {
54 # Just need to set the right headers
55 $wgOut->setArticleFlag( true );
56 $wgOut->setRobotpolicy( 'index,follow' );
57 $wgOut->setPageTitle( $this->mTitle->getPrefixedText() );
58 $wgOut->addMetaTags();
59 $this->viewUpdates();
60 }
61
62 if ($this->mExtraDescription) {
63 $fol = wfMsg('shareddescriptionfollows');
64 if ($fol != '-')
65 $wgOut->addWikiText(wfMsg('shareddescriptionfollows'));
66 $wgOut->addHTML($this->mExtraDescription);
67 }
68
69 $this->closeShowImage();
70 $this->imageHistory();
71 $this->imageLinks();
72 } else {
73 Article::view();
74 }
75 }
76
77 /**
78 * Create the TOC
79 *
80 * @access private
81 *
82 * @param bool $metadata Whether or not to show the metadata link
83 * @return string
84 */
85 function showTOC( $metadata ) {
86 global $wgLang;
87 $r = '<ul id="filetoc">
88 <li><a href="#file">' . $wgLang->getNsText( NS_IMAGE ) . '</a></li>' .
89 ($metadata ? '<li><a href="#metadata">' . wfMsgHtml( 'metadata' ) . '</a></li>' : '') . '
90 <li><a href="#filehistory">' . wfMsgHtml( 'imghistory' ) . '</a></li>
91 <li><a href="#filelinks">' . wfMsgHtml( 'imagelinks' ) . '</a></li>
92 </ul>';
93 return $r;
94 }
95
96 /**
97 * Make a table with metadata to be shown in the output page.
98 *
99 * @access private
100 *
101 * @param array $exif The array containing the EXIF data
102 * @return string
103 */
104 function makeMetadataTable( $exif ) {
105 $r = "{| class=metadata align=right width=250px\n";
106 $r .= '|+ id=metadata | '. htmlspecialchars( wfMsgHtml( 'metadata' ) ) . "\n";
107 foreach( $exif as $k => $v ) {
108 $tag = strtolower( $k );
109 $r .= "! class=$tag |" . wfMsg( "exif-$tag" ) . "\n";
110 $r .= "| class=$tag |" . htmlspecialchars( $v ) . "\n";
111 $r .= "|-\n";
112 }
113 return substr($r, 0, -3) . '|}';
114 }
115
116 /**
117 * Overloading Article's getContent method.
118 * Omit noarticletext if sharedupload
119 *
120 * @param $noredir If true, do not follow redirects
121 */
122 function getContent( $noredir )
123 {
124 if ( $this->img && $this->img->fromSharedDirectory && 0 == $this->getID() ) {
125 return '';
126 }
127 return Article::getContent( $noredir );
128 }
129
130 function openShowImage()
131 {
132 global $wgOut, $wgUser, $wgImageLimits, $wgRequest,
133 $wgUseImageResize, $wgRepositoryBaseUrl,
134 $wgUseExternalEditor, $wgServer, $wgFetchCommonsDescriptions;
135 $full_url = $this->img->getViewURL();
136 $anchoropen = '';
137 $anchorclose = '';
138
139 if( $wgUser->getOption( 'imagesize' ) == '' ) {
140 $sizeSel = User::getDefaultOption( 'imagesize' );
141 } else {
142 $sizeSel = intval( $wgUser->getOption( 'imagesize' ) );
143 }
144 if( !isset( $wgImageLimits[$sizeSel] ) ) {
145 $sizeSel = User::getDefaultOption( 'imagesize' );
146 }
147 $max = $wgImageLimits[$sizeSel];
148 $maxWidth = $max[0];
149 $maxHeight = $max[1];
150 $sk = $wgUser->getSkin();
151
152 if ( $this->img->exists() ) {
153 # image
154 $width = $this->img->getWidth();
155 $height = $this->img->getHeight();
156 $showLink = false;
157
158 if ( $this->img->allowInlineDisplay() and $width and $height) {
159 # image
160
161 # "Download high res version" link below the image
162 $msg = wfMsgHtml('showbigimage', $width, $height, intval( $this->img->getSize()/1024 ) );
163 if ( $width > $maxWidth ) {
164 $height = floor( $height * $maxWidth / $width );
165 $width = $maxWidth;
166 }
167 if ( $height > $maxHeight ) {
168 $width = floor( $width * $maxHeight / $height );
169 $height = $maxHeight;
170 }
171 if ( !$this->img->mustRender()
172 && ( $width != $this->img->getWidth() || $height != $this->img->getHeight() ) ) {
173 if( $wgUseImageResize ) {
174 $thumbnail = $this->img->getThumbnail( $width );
175 if ( $thumbnail == null ) {
176 $url = $full_url;
177 } else {
178 $url = $thumbnail->getUrl();
179 }
180 } else {
181 # No resize ability? Show the full image, but scale
182 # it down in the browser so it fits on the page.
183 $url = $full_url;
184 }
185 $anchoropen = "<a href=\"{$full_url}\">";
186 $anchorclose = "</a><br />\n$anchoropen{$msg}</a>";
187 } else {
188 $url = $full_url;
189 $showLink = $this->img->mustRender();
190 }
191 $wgOut->addHTML( '<div class="fullImageLink" id="file">' . $anchoropen .
192 "<img border=\"0\" src=\"{$url}\" width=\"{$width}\" height=\"{$height}\" alt=\"" .
193 htmlspecialchars( $wgRequest->getVal( 'image' ) ).'" />' . $anchorclose . '</div>' );
194 } else {
195 #if direct link is allowed but it's not a renderable image, show an icon.
196 if ($this->img->isSafeFile()) {
197 $icon= $this->img->iconThumb();
198
199 $wgOut->addHTML( '<div class="fullImageLink" id="file"><a href="' . $full_url . '">' .
200 $icon->toHtml() .
201 '</a></div>' );
202 }
203
204 $showLink = true;
205 }
206
207
208 if ($showLink) {
209 $filename = wfEscapeWikiText( $this->img->getName() );
210 $info = wfMsg( 'fileinfo',
211 ceil($this->img->getSize()/1024.0),
212 $this->img->getMimeType() );
213
214 if (!$this->img->isSafeFile()) {
215 $warning = wfMsg( 'mediawarning' );
216 $wgOut->addWikiText( <<<END
217 <div class="fullMedia">
218 <span class="dangerousLink">[[Media:$filename|$filename]]</span>
219 <span class="fileInfo"> ($info)</span>
220 </div>
221
222 <div class="mediaWarning">$warning</div>
223 END
224 );
225 } else {
226 $wgOut->addWikiText( <<<END
227 <div class="fullMedia">
228 [[Media:$filename|$filename]] <span class="fileInfo"> ($info)</span>
229 </div>
230 END
231 );
232 }
233 }
234
235 if($this->img->fromSharedDirectory) {
236 $this->printSharedImageText();
237 }
238 } else {
239 # Image does not exist
240
241 $title = Title::makeTitle( NS_SPECIAL, 'Upload' );
242 $link = $sk->makeKnownLinkObj($title, wfMsgHtml('noimage-linktext'),
243 'wpDestFile=' . urlencode( $this->img->getName() ) );
244 $wgOut->addHTML( wfMsgWikiHtml( 'noimage', $link ) );
245 }
246 }
247
248 function printSharedImageText() {
249 global $wgRepositoryBaseUrl, $wgFetchCommonsDescriptions, $wgOut, $wgUser;
250
251 $url = $wgRepositoryBaseUrl . urlencode($this->mTitle->getDBkey());
252 $sharedtext = "<div class='sharedUploadNotice'>" . wfMsgWikiHtml("sharedupload");
253 if ($wgRepositoryBaseUrl && !$wgFetchCommonsDescriptions) {
254
255 $sk = $wgUser->getSkin();
256 $title = Title::makeTitle( NS_SPECIAL, 'Upload' );
257 $link = $sk->makeKnownLinkObj($title, wfMsgHtml('shareduploadwiki-linktext'),
258 array( 'wpDestFile' => urlencode( $this->img->getName() )));
259 $sharedtext .= " " . wfMsgWikiHtml('shareduploadwiki', $link);
260 }
261 $sharedtext .= "</div>";
262 $wgOut->addHTML($sharedtext);
263
264 if ($wgRepositoryBaseUrl && $wgFetchCommonsDescriptions) {
265 require_once("HttpFunctions.php");
266 $ur = ini_set('allow_url_fopen', true);
267 $text = wfGetHTTP($url . '?action=render');
268 ini_set('allow_url_fopen', $ur);
269 if ($text)
270 $this->mExtraDescription = $text;
271 }
272 }
273
274 function getUploadUrl() {
275 global $wgServer;
276 $uploadTitle = Title::makeTitle( NS_SPECIAL, 'Upload' );
277 return $wgServer . $uploadTitle->getLocalUrl( 'wpDestFile=' . urlencode( $this->img->getName() ) );
278 }
279
280
281 function uploadLinksBox()
282 {
283 global $wgUser, $wgOut;
284
285 if ($this->img->fromSharedDirectory)
286 return;
287
288 $sk = $wgUser->getSkin();
289 $wgOut->addHTML( '<br /><ul><li>' );
290 $wgOut->addWikiText( '<div>'. wfMsg( 'uploadnewversion', $this->getUploadUrl() ) .'</div>' );
291 $wgOut->addHTML( '</li><li>' );
292 $wgOut->addHTML( $sk->makeKnownLinkObj( $this->mTitle,
293 wfMsg( 'edit-externally' ), "action=edit&externaledit=true&mode=file" ) );
294 $wgOut->addWikiText( '<div>' . wfMsg('edit-externally-help') . '</div>' );
295 $wgOut->addHTML( '</li></ul>' );
296 }
297
298 function closeShowImage()
299 {
300 # For overloading
301
302 }
303
304 /**
305 * If the page we've just displayed is in the "Image" namespace,
306 * we follow it with an upload history of the image and its usage.
307 */
308 function imageHistory()
309 {
310 global $wgUser, $wgOut, $wgUseExternalEditor;
311
312 $sk = $wgUser->getSkin();
313
314 $line = $this->img->nextHistoryLine();
315
316 if ( $line ) {
317 $list =& new ImageHistoryList( $sk );
318 $s = $list->beginImageHistoryList() .
319 $list->imageHistoryLine( true, wfTimestamp(TS_MW, $line->img_timestamp),
320 $this->mTitle->getDBkey(), $line->img_user,
321 $line->img_user_text, $line->img_size, $line->img_description );
322
323 while ( $line = $this->img->nextHistoryLine() ) {
324 $s .= $list->imageHistoryLine( false, $line->img_timestamp,
325 $line->oi_archive_name, $line->img_user,
326 $line->img_user_text, $line->img_size, $line->img_description );
327 }
328 $s .= $list->endImageHistoryList();
329 } else { $s=''; }
330 $wgOut->addHTML( $s );
331
332 # Exist check because we don't want to show this on pages where an image
333 # doesn't exist along with the noimage message, that would suck. -ævar
334 if( $wgUseExternalEditor && $this->img->exists() ) {
335 $this->uploadLinksBox();
336 }
337
338 }
339
340 function imageLinks()
341 {
342 global $wgUser, $wgOut;
343
344 $wgOut->addHTML( '<h2 id="filelinks">' . wfMsg( 'imagelinks' ) . "</h2>\n" );
345
346 $dbr =& wfGetDB( DB_SLAVE );
347 $page = $dbr->tableName( 'page' );
348 $imagelinks = $dbr->tableName( 'imagelinks' );
349
350 $sql = "SELECT page_namespace,page_title FROM $imagelinks,$page WHERE il_to=" .
351 $dbr->addQuotes( $this->mTitle->getDBkey() ) . " AND il_from=page_id";
352 $sql = $dbr->limitResult($sql, 500, 0);
353 $res = $dbr->query( $sql, "ImagePage::imageLinks" );
354
355 if ( 0 == $dbr->numRows( $res ) ) {
356 $wgOut->addHtml( '<p>' . wfMsg( "nolinkstoimage" ) . "</p>\n" );
357 return;
358 }
359 $wgOut->addHTML( '<p>' . wfMsg( 'linkstoimage' ) . "</p>\n<ul>" );
360
361 $sk = $wgUser->getSkin();
362 while ( $s = $dbr->fetchObject( $res ) ) {
363 $name = Title::MakeTitle( $s->page_namespace, $s->page_title );
364 $link = $sk->makeKnownLinkObj( $name, "" );
365 $wgOut->addHTML( "<li>{$link}</li>\n" );
366 }
367 $wgOut->addHTML( "</ul>\n" );
368 }
369
370 function delete()
371 {
372 global $wgUser, $wgOut, $wgRequest;
373
374 $confirm = $wgRequest->getBool( 'wpConfirmB' );
375 $image = $wgRequest->getVal( 'image' );
376 $oldimage = $wgRequest->getVal( 'oldimage' );
377
378 # Only sysops can delete images. Previously ordinary users could delete
379 # old revisions, but this is no longer the case.
380 if ( !$wgUser->isAllowed('delete') ) {
381 $wgOut->sysopRequired();
382 return;
383 }
384 if ( $wgUser->isBlocked() ) {
385 return $this->blockedIPpage();
386 }
387 if ( wfReadOnly() ) {
388 $wgOut->readOnlyPage();
389 return;
390 }
391
392 # Better double-check that it hasn't been deleted yet!
393 $wgOut->setPagetitle( wfMsg( 'confirmdelete' ) );
394 if ( ( !is_null( $image ) )
395 && ( '' == trim( $image ) ) ) {
396 $wgOut->fatalError( wfMsg( 'cannotdelete' ) );
397 return;
398 }
399
400 $this->img = new Image( $this->mTitle );
401
402 # Deleting old images doesn't require confirmation
403 if ( !is_null( $oldimage ) || $confirm ) {
404 if( $wgUser->matchEditToken( $wgRequest->getVal( 'wpEditToken' ), $oldimage ) ) {
405 $this->doDelete();
406 } else {
407 $wgOut->fatalError( wfMsg( 'sessionfailure' ) );
408 }
409 return;
410 }
411
412 if ( !is_null( $image ) ) {
413 $q = '&image=' . urlencode( $image );
414 } else if ( !is_null( $oldimage ) ) {
415 $q = '&oldimage=' . urlencode( $oldimage );
416 } else {
417 $q = '';
418 }
419 return $this->confirmDelete( $q, $wgRequest->getText( 'wpReason' ) );
420 }
421
422 function doDelete()
423 {
424 global $wgOut, $wgUser, $wgContLang, $wgRequest;
425 global $wgUseSquid, $wgInternalServer, $wgPostCommitUpdateList;
426 $fname = 'ImagePage::doDelete';
427
428 $reason = $wgRequest->getVal( 'wpReason' );
429 $oldimage = $wgRequest->getVal( 'oldimage' );
430
431 $dbw =& wfGetDB( DB_MASTER );
432
433 if ( !is_null( $oldimage ) ) {
434 if ( strlen( $oldimage ) < 16 ) {
435 $wgOut->unexpectedValueError( 'oldimage', htmlspecialchars($oldimage) );
436 return;
437 }
438 if ( strstr( $oldimage, "/" ) || strstr( $oldimage, "\\" ) ) {
439 $wgOut->unexpectedValueError( 'oldimage', htmlspecialchars($oldimage) );
440 return;
441 }
442
443 # Invalidate description page cache
444 $this->mTitle->invalidateCache();
445
446 # Squid purging
447 if ( $wgUseSquid ) {
448 $urlArr = Array(
449 $wgInternalServer.wfImageArchiveUrl( $oldimage ),
450 $wgInternalServer.$this->mTitle->getFullURL()
451 );
452 wfPurgeSquidServers($urlArr);
453 }
454 $this->doDeleteOldImage( $oldimage );
455 $dbw->delete( 'oldimage', array( 'oi_archive_name' => $oldimage ) );
456 $deleted = $oldimage;
457 } else {
458 $image = $this->mTitle->getDBkey();
459 $dest = wfImageDir( $image );
460 $archive = wfImageDir( $image );
461
462 # Delete the image file if it exists; due to sync problems
463 # or manual trimming sometimes the file will be missing.
464 $targetFile = "{$dest}/{$image}";
465 if( file_exists( $targetFile ) && ! @unlink( $targetFile ) ) {
466 # If the deletion operation actually failed, bug out:
467 $wgOut->fileDeleteError( $targetFile );
468 return;
469 }
470 $dbw->delete( 'image', array( 'img_name' => $image ) );
471 $res = $dbw->select( 'oldimage', array( 'oi_archive_name' ), array( 'oi_name' => $image ) );
472
473 # Purge archive URLs from the squid
474 $urlArr = Array();
475 while ( $s = $dbw->fetchObject( $res ) ) {
476 $this->doDeleteOldImage( $s->oi_archive_name );
477 $urlArr[] = $wgInternalServer.wfImageArchiveUrl( $s->oi_archive_name );
478 }
479
480 # And also the HTML of all pages using this image
481 $linksTo = $this->img->getLinksTo();
482 if ( $wgUseSquid ) {
483 $u = SquidUpdate::newFromTitles( $linksTo, $urlArr );
484 array_push( $wgPostCommitUpdateList, $u );
485 }
486
487 $dbw->delete( 'oldimage', array( 'oi_name' => $image ) );
488
489 # Image itself is now gone, and database is cleaned.
490 # Now we remove the image description page.
491
492 $article = new Article( $this->mTitle );
493 $article->doDeleteArticle( $reason ); # ignore errors
494
495 # Invalidate parser cache and client cache for pages using this image
496 # This is left until relatively late to reduce lock time
497 Title::touchArray( $linksTo );
498
499 /* Delete thumbnails and refresh image metadata cache */
500 $this->img->purgeCache();
501
502
503 $deleted = $image;
504 }
505
506 $wgOut->setPagetitle( wfMsg( 'actioncomplete' ) );
507 $wgOut->setRobotpolicy( 'noindex,nofollow' );
508
509 $loglink = '[[Special:Log/delete|' . wfMsg( 'deletionlog' ) . ']]';
510 $text = wfMsg( 'deletedtext', $deleted, $loglink );
511
512 $wgOut->addWikiText( $text );
513
514 $wgOut->returnToMain( false, $this->mTitle->getPrefixedText() );
515 }
516
517 function doDeleteOldImage( $oldimage )
518 {
519 global $wgOut;
520
521 $name = substr( $oldimage, 15 );
522 $archive = wfImageArchiveDir( $name );
523
524 # Delete the image if it exists. Sometimes the file will be missing
525 # due to manual intervention or weird sync problems; treat that
526 # condition gracefully and continue to delete the database entry.
527 # Also some records may end up with an empty oi_archive_name field
528 # if the original file was missing when a new upload was made;
529 # don't try to delete the directory then!
530 #
531 $targetFile = "{$archive}/{$oldimage}";
532 if( $oldimage != '' && file_exists( $targetFile ) && !@unlink( $targetFile ) ) {
533 # If we actually have a file and can't delete it, throw an error.
534 $wgOut->fileDeleteError( "{$archive}/{$oldimage}" );
535 } else {
536 # Log the deletion
537 $log = new LogPage( 'delete' );
538 $log->addEntry( 'delete', $this->mTitle, wfMsg('deletedrevision',$oldimage) );
539 }
540 }
541
542 function revert()
543 {
544 global $wgOut, $wgRequest, $wgUser;
545 global $wgUseSquid, $wgInternalServer, $wgDeferredUpdateList;
546
547 $oldimage = $wgRequest->getText( 'oldimage' );
548 if ( strlen( $oldimage ) < 16 ) {
549 $wgOut->unexpectedValueError( 'oldimage', htmlspecialchars($oldimage) );
550 return;
551 }
552 if ( strstr( $oldimage, "/" ) || strstr( $oldimage, "\\" ) ) {
553 $wgOut->unexpectedValueError( 'oldimage', htmlspecialchars($oldimage) );
554 return;
555 }
556
557 if ( wfReadOnly() ) {
558 $wgOut->readOnlyPage();
559 return;
560 }
561 if( $wgUser->isAnon() ) {
562 $wgOut->errorpage( 'uploadnologin', 'uploadnologintext' );
563 return;
564 }
565 if ( ! $this->mTitle->userCanEdit() ) {
566 $wgOut->sysopRequired();
567 return;
568 }
569 if ( $wgUser->isBlocked() ) {
570 return $this->blockedIPpage();
571 }
572 if( !$wgUser->matchEditToken( $wgRequest->getVal( 'wpEditToken' ), $oldimage ) ) {
573 $wgOut->errorpage( 'internalerror', 'sessionfailure' );
574 return;
575 }
576 $name = substr( $oldimage, 15 );
577
578 $dest = wfImageDir( $name );
579 $archive = wfImageArchiveDir( $name );
580 $curfile = "{$dest}/{$name}";
581
582 if ( ! is_file( $curfile ) ) {
583 $wgOut->fileNotFoundError( htmlspecialchars( $curfile ) );
584 return;
585 }
586 $oldver = wfTimestampNow() . "!{$name}";
587
588 $dbr =& wfGetDB( DB_SLAVE );
589 $size = $dbr->selectField( 'oldimage', 'oi_size', array( 'oi_archive_name' => $oldimage ) );
590
591 if ( ! rename( $curfile, "${archive}/{$oldver}" ) ) {
592 $wgOut->fileRenameError( $curfile, "${archive}/{$oldver}" );
593 return;
594 }
595 if ( ! copy( "{$archive}/{$oldimage}", $curfile ) ) {
596 $wgOut->fileCopyError( "${archive}/{$oldimage}", $curfile );
597 }
598
599 # Record upload and update metadata cache
600 $img = Image::newFromName( $name );
601 $img->recordUpload( $oldver, wfMsg( "reverted" ) );
602
603 $wgOut->setPagetitle( wfMsg( 'actioncomplete' ) );
604 $wgOut->setRobotpolicy( 'noindex,nofollow' );
605 $wgOut->addHTML( wfMsg( 'imagereverted' ) );
606
607 $descTitle = $img->getTitle();
608 $wgOut->returnToMain( false, $descTitle->getPrefixedText() );
609 }
610
611 function blockedIPpage() {
612 require_once( 'EditPage.php' );
613 $edit = new EditPage( $this );
614 return $edit->blockedIPpage();
615 }
616
617 }
618
619 /**
620 * @todo document
621 * @package MediaWiki
622 */
623 class ImageHistoryList {
624 function ImageHistoryList( &$skin ) {
625 $this->skin =& $skin;
626 }
627
628 function beginImageHistoryList() {
629 $s = "\n<h2 id=\"filehistory\">" . wfMsg( 'imghistory' ) . "</h2>\n" .
630 "<p>" . wfMsg( 'imghistlegend' ) . "</p>\n".'<ul class="special">';
631 return $s;
632 }
633
634 function endImageHistoryList() {
635 $s = "</ul>\n";
636 return $s;
637 }
638
639 function imageHistoryLine( $iscur, $timestamp, $img, $user, $usertext, $size, $description ) {
640 global $wgUser, $wgLang, $wgContLang, $wgTitle;
641
642 $datetime = $wgLang->timeanddate( $timestamp, true );
643 $del = wfMsg( 'deleteimg' );
644 $delall = wfMsg( 'deleteimgcompletely' );
645 $cur = wfMsg( 'cur' );
646
647 if ( $iscur ) {
648 $url = Image::imageUrl( $img );
649 $rlink = $cur;
650 if ( $wgUser->isAllowed('delete') ) {
651 $link = $wgTitle->escapeLocalURL( 'image=' . $wgTitle->getPartialURL() .
652 '&action=delete' );
653 $style = $this->skin->getInternalLinkAttributes( $link, $delall );
654
655 $dlink = '<a href="'.$link.'"'.$style.'>'.$delall.'</a>';
656 } else {
657 $dlink = $del;
658 }
659 } else {
660 $url = htmlspecialchars( wfImageArchiveUrl( $img ) );
661 if( $wgUser->getID() != 0 && $wgTitle->userCanEdit() ) {
662 $token = urlencode( $wgUser->editToken( $img ) );
663 $rlink = $this->skin->makeKnownLinkObj( $wgTitle,
664 wfMsg( 'revertimg' ), 'action=revert&oldimage=' .
665 urlencode( $img ) . "&wpEditToken=$token" );
666 $dlink = $this->skin->makeKnownLinkObj( $wgTitle,
667 $del, 'action=delete&oldimage=' . urlencode( $img ) .
668 "&wpEditToken=$token" );
669 } else {
670 # Having live active links for non-logged in users
671 # means that bots and spiders crawling our site can
672 # inadvertently change content. Baaaad idea.
673 $rlink = wfMsg( 'revertimg' );
674 $dlink = $del;
675 }
676 }
677 if ( 0 == $user ) {
678 $userlink = $usertext;
679 } else {
680 $userlink = $this->skin->makeLinkObj(
681 Title::makeTitle( NS_USER, $usertext ),
682 $usertext );
683 }
684 $nbytes = wfMsg( 'nbytes', $size );
685 $style = $this->skin->getInternalLinkAttributes( $url, $datetime );
686
687 $s = "<li> ({$dlink}) ({$rlink}) <a href=\"{$url}\"{$style}>{$datetime}</a>"
688 . " . . {$userlink} ({$nbytes})";
689
690 $s .= $this->skin->commentBlock( $description, $wgTitle );
691 $s .= "</li>\n";
692 return $s;
693 }
694
695 }
696
697
698 ?>