#3344: Redirected terms cannot be included in categories
[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>' );
290 if( $wgUser->isAllowed( 'reupload' ) ) {
291 $wgOut->addWikiText( "<li>\n<div>". wfMsg( 'uploadnewversion', $this->getUploadUrl() ) ."</div>\n</li>\n" );
292 }
293 $wgOut->addHTML( '<li>' );
294 $wgOut->addHTML( $sk->makeKnownLinkObj( $this->mTitle,
295 wfMsg( 'edit-externally' ), "action=edit&externaledit=true&mode=file" ) );
296 $wgOut->addWikiText( '<div>' . wfMsg('edit-externally-help') . '</div>' );
297 $wgOut->addHTML( '</li></ul>' );
298 }
299
300 function closeShowImage()
301 {
302 # For overloading
303
304 }
305
306 /**
307 * If the page we've just displayed is in the "Image" namespace,
308 * we follow it with an upload history of the image and its usage.
309 */
310 function imageHistory()
311 {
312 global $wgUser, $wgOut, $wgUseExternalEditor;
313
314 $sk = $wgUser->getSkin();
315
316 $line = $this->img->nextHistoryLine();
317
318 if ( $line ) {
319 $list =& new ImageHistoryList( $sk );
320 $s = $list->beginImageHistoryList() .
321 $list->imageHistoryLine( true, wfTimestamp(TS_MW, $line->img_timestamp),
322 $this->mTitle->getDBkey(), $line->img_user,
323 $line->img_user_text, $line->img_size, $line->img_description );
324
325 while ( $line = $this->img->nextHistoryLine() ) {
326 $s .= $list->imageHistoryLine( false, $line->img_timestamp,
327 $line->oi_archive_name, $line->img_user,
328 $line->img_user_text, $line->img_size, $line->img_description );
329 }
330 $s .= $list->endImageHistoryList();
331 } else { $s=''; }
332 $wgOut->addHTML( $s );
333
334 # Exist check because we don't want to show this on pages where an image
335 # doesn't exist along with the noimage message, that would suck. -ævar
336 if( $wgUseExternalEditor && $this->img->exists() ) {
337 $this->uploadLinksBox();
338 }
339
340 }
341
342 function imageLinks()
343 {
344 global $wgUser, $wgOut;
345
346 $wgOut->addHTML( '<h2 id="filelinks">' . wfMsg( 'imagelinks' ) . "</h2>\n" );
347
348 $dbr =& wfGetDB( DB_SLAVE );
349 $page = $dbr->tableName( 'page' );
350 $imagelinks = $dbr->tableName( 'imagelinks' );
351
352 $sql = "SELECT page_namespace,page_title FROM $imagelinks,$page WHERE il_to=" .
353 $dbr->addQuotes( $this->mTitle->getDBkey() ) . " AND il_from=page_id";
354 $sql = $dbr->limitResult($sql, 500, 0);
355 $res = $dbr->query( $sql, "ImagePage::imageLinks" );
356
357 if ( 0 == $dbr->numRows( $res ) ) {
358 $wgOut->addHtml( '<p>' . wfMsg( "nolinkstoimage" ) . "</p>\n" );
359 return;
360 }
361 $wgOut->addHTML( '<p>' . wfMsg( 'linkstoimage' ) . "</p>\n<ul>" );
362
363 $sk = $wgUser->getSkin();
364 while ( $s = $dbr->fetchObject( $res ) ) {
365 $name = Title::MakeTitle( $s->page_namespace, $s->page_title );
366 $link = $sk->makeKnownLinkObj( $name, "" );
367 $wgOut->addHTML( "<li>{$link}</li>\n" );
368 }
369 $wgOut->addHTML( "</ul>\n" );
370 }
371
372 function delete()
373 {
374 global $wgUser, $wgOut, $wgRequest;
375
376 $confirm = $wgRequest->getBool( 'wpConfirmB' );
377 $image = $wgRequest->getVal( 'image' );
378 $oldimage = $wgRequest->getVal( 'oldimage' );
379
380 # Only sysops can delete images. Previously ordinary users could delete
381 # old revisions, but this is no longer the case.
382 if ( !$wgUser->isAllowed('delete') ) {
383 $wgOut->sysopRequired();
384 return;
385 }
386 if ( $wgUser->isBlocked() ) {
387 return $this->blockedIPpage();
388 }
389 if ( wfReadOnly() ) {
390 $wgOut->readOnlyPage();
391 return;
392 }
393
394 # Better double-check that it hasn't been deleted yet!
395 $wgOut->setPagetitle( wfMsg( 'confirmdelete' ) );
396 if ( ( !is_null( $image ) )
397 && ( '' == trim( $image ) ) ) {
398 $wgOut->fatalError( wfMsg( 'cannotdelete' ) );
399 return;
400 }
401
402 $this->img = new Image( $this->mTitle );
403
404 # Deleting old images doesn't require confirmation
405 if ( !is_null( $oldimage ) || $confirm ) {
406 if( $wgUser->matchEditToken( $wgRequest->getVal( 'wpEditToken' ), $oldimage ) ) {
407 $this->doDelete();
408 } else {
409 $wgOut->fatalError( wfMsg( 'sessionfailure' ) );
410 }
411 return;
412 }
413
414 if ( !is_null( $image ) ) {
415 $q = '&image=' . urlencode( $image );
416 } else if ( !is_null( $oldimage ) ) {
417 $q = '&oldimage=' . urlencode( $oldimage );
418 } else {
419 $q = '';
420 }
421 return $this->confirmDelete( $q, $wgRequest->getText( 'wpReason' ) );
422 }
423
424 function doDelete()
425 {
426 global $wgOut, $wgUser, $wgContLang, $wgRequest;
427 global $wgUseSquid, $wgInternalServer, $wgPostCommitUpdateList;
428 $fname = 'ImagePage::doDelete';
429
430 $reason = $wgRequest->getVal( 'wpReason' );
431 $oldimage = $wgRequest->getVal( 'oldimage' );
432
433 $dbw =& wfGetDB( DB_MASTER );
434
435 if ( !is_null( $oldimage ) ) {
436 if ( strlen( $oldimage ) < 16 ) {
437 $wgOut->unexpectedValueError( 'oldimage', htmlspecialchars($oldimage) );
438 return;
439 }
440 if ( strstr( $oldimage, "/" ) || strstr( $oldimage, "\\" ) ) {
441 $wgOut->unexpectedValueError( 'oldimage', htmlspecialchars($oldimage) );
442 return;
443 }
444
445 # Invalidate description page cache
446 $this->mTitle->invalidateCache();
447
448 # Squid purging
449 if ( $wgUseSquid ) {
450 $urlArr = Array(
451 $wgInternalServer.wfImageArchiveUrl( $oldimage ),
452 $wgInternalServer.$this->mTitle->getFullURL()
453 );
454 wfPurgeSquidServers($urlArr);
455 }
456 $this->doDeleteOldImage( $oldimage );
457 $dbw->delete( 'oldimage', array( 'oi_archive_name' => $oldimage ) );
458 $deleted = $oldimage;
459 } else {
460 $image = $this->mTitle->getDBkey();
461 $dest = wfImageDir( $image );
462 $archive = wfImageDir( $image );
463
464 # Delete the image file if it exists; due to sync problems
465 # or manual trimming sometimes the file will be missing.
466 $targetFile = "{$dest}/{$image}";
467 if( file_exists( $targetFile ) && ! @unlink( $targetFile ) ) {
468 # If the deletion operation actually failed, bug out:
469 $wgOut->fileDeleteError( $targetFile );
470 return;
471 }
472 $dbw->delete( 'image', array( 'img_name' => $image ) );
473 $res = $dbw->select( 'oldimage', array( 'oi_archive_name' ), array( 'oi_name' => $image ) );
474
475 # Purge archive URLs from the squid
476 $urlArr = Array();
477 while ( $s = $dbw->fetchObject( $res ) ) {
478 $this->doDeleteOldImage( $s->oi_archive_name );
479 $urlArr[] = $wgInternalServer.wfImageArchiveUrl( $s->oi_archive_name );
480 }
481
482 # And also the HTML of all pages using this image
483 $linksTo = $this->img->getLinksTo();
484 if ( $wgUseSquid ) {
485 $u = SquidUpdate::newFromTitles( $linksTo, $urlArr );
486 array_push( $wgPostCommitUpdateList, $u );
487 }
488
489 $dbw->delete( 'oldimage', array( 'oi_name' => $image ) );
490
491 # Image itself is now gone, and database is cleaned.
492 # Now we remove the image description page.
493
494 $article = new Article( $this->mTitle );
495 $article->doDeleteArticle( $reason ); # ignore errors
496
497 # Invalidate parser cache and client cache for pages using this image
498 # This is left until relatively late to reduce lock time
499 Title::touchArray( $linksTo );
500
501 /* Delete thumbnails and refresh image metadata cache */
502 $this->img->purgeCache();
503
504
505 $deleted = $image;
506 }
507
508 $wgOut->setPagetitle( wfMsg( 'actioncomplete' ) );
509 $wgOut->setRobotpolicy( 'noindex,nofollow' );
510
511 $loglink = '[[Special:Log/delete|' . wfMsg( 'deletionlog' ) . ']]';
512 $text = wfMsg( 'deletedtext', $deleted, $loglink );
513
514 $wgOut->addWikiText( $text );
515
516 $wgOut->returnToMain( false, $this->mTitle->getPrefixedText() );
517 }
518
519 function doDeleteOldImage( $oldimage )
520 {
521 global $wgOut;
522
523 $name = substr( $oldimage, 15 );
524 $archive = wfImageArchiveDir( $name );
525
526 # Delete the image if it exists. Sometimes the file will be missing
527 # due to manual intervention or weird sync problems; treat that
528 # condition gracefully and continue to delete the database entry.
529 # Also some records may end up with an empty oi_archive_name field
530 # if the original file was missing when a new upload was made;
531 # don't try to delete the directory then!
532 #
533 $targetFile = "{$archive}/{$oldimage}";
534 if( $oldimage != '' && file_exists( $targetFile ) && !@unlink( $targetFile ) ) {
535 # If we actually have a file and can't delete it, throw an error.
536 $wgOut->fileDeleteError( "{$archive}/{$oldimage}" );
537 } else {
538 # Log the deletion
539 $log = new LogPage( 'delete' );
540 $log->addEntry( 'delete', $this->mTitle, wfMsg('deletedrevision',$oldimage) );
541 }
542 }
543
544 function revert()
545 {
546 global $wgOut, $wgRequest, $wgUser;
547 global $wgUseSquid, $wgInternalServer, $wgDeferredUpdateList;
548
549 $oldimage = $wgRequest->getText( 'oldimage' );
550 if ( strlen( $oldimage ) < 16 ) {
551 $wgOut->unexpectedValueError( 'oldimage', htmlspecialchars($oldimage) );
552 return;
553 }
554 if ( strstr( $oldimage, "/" ) || strstr( $oldimage, "\\" ) ) {
555 $wgOut->unexpectedValueError( 'oldimage', htmlspecialchars($oldimage) );
556 return;
557 }
558
559 if ( wfReadOnly() ) {
560 $wgOut->readOnlyPage();
561 return;
562 }
563 if( $wgUser->isAnon() ) {
564 $wgOut->errorpage( 'uploadnologin', 'uploadnologintext' );
565 return;
566 }
567 if ( ! $this->mTitle->userCanEdit() ) {
568 $wgOut->sysopRequired();
569 return;
570 }
571 if ( $wgUser->isBlocked() ) {
572 return $this->blockedIPpage();
573 }
574 if( !$wgUser->matchEditToken( $wgRequest->getVal( 'wpEditToken' ), $oldimage ) ) {
575 $wgOut->errorpage( 'internalerror', 'sessionfailure' );
576 return;
577 }
578 $name = substr( $oldimage, 15 );
579
580 $dest = wfImageDir( $name );
581 $archive = wfImageArchiveDir( $name );
582 $curfile = "{$dest}/{$name}";
583
584 if ( ! is_file( $curfile ) ) {
585 $wgOut->fileNotFoundError( htmlspecialchars( $curfile ) );
586 return;
587 }
588 $oldver = wfTimestampNow() . "!{$name}";
589
590 $dbr =& wfGetDB( DB_SLAVE );
591 $size = $dbr->selectField( 'oldimage', 'oi_size', array( 'oi_archive_name' => $oldimage ) );
592
593 if ( ! rename( $curfile, "${archive}/{$oldver}" ) ) {
594 $wgOut->fileRenameError( $curfile, "${archive}/{$oldver}" );
595 return;
596 }
597 if ( ! copy( "{$archive}/{$oldimage}", $curfile ) ) {
598 $wgOut->fileCopyError( "${archive}/{$oldimage}", $curfile );
599 }
600
601 # Record upload and update metadata cache
602 $img = Image::newFromName( $name );
603 $img->recordUpload( $oldver, wfMsg( "reverted" ) );
604
605 $wgOut->setPagetitle( wfMsg( 'actioncomplete' ) );
606 $wgOut->setRobotpolicy( 'noindex,nofollow' );
607 $wgOut->addHTML( wfMsg( 'imagereverted' ) );
608
609 $descTitle = $img->getTitle();
610 $wgOut->returnToMain( false, $descTitle->getPrefixedText() );
611 }
612
613 function blockedIPpage() {
614 require_once( 'EditPage.php' );
615 $edit = new EditPage( $this );
616 return $edit->blockedIPpage();
617 }
618
619 }
620
621 /**
622 * @todo document
623 * @package MediaWiki
624 */
625 class ImageHistoryList {
626 function ImageHistoryList( &$skin ) {
627 $this->skin =& $skin;
628 }
629
630 function beginImageHistoryList() {
631 $s = "\n<h2 id=\"filehistory\">" . wfMsg( 'imghistory' ) . "</h2>\n" .
632 "<p>" . wfMsg( 'imghistlegend' ) . "</p>\n".'<ul class="special">';
633 return $s;
634 }
635
636 function endImageHistoryList() {
637 $s = "</ul>\n";
638 return $s;
639 }
640
641 function imageHistoryLine( $iscur, $timestamp, $img, $user, $usertext, $size, $description ) {
642 global $wgUser, $wgLang, $wgContLang, $wgTitle;
643
644 $datetime = $wgLang->timeanddate( $timestamp, true );
645 $del = wfMsg( 'deleteimg' );
646 $delall = wfMsg( 'deleteimgcompletely' );
647 $cur = wfMsg( 'cur' );
648
649 if ( $iscur ) {
650 $url = Image::imageUrl( $img );
651 $rlink = $cur;
652 if ( $wgUser->isAllowed('delete') ) {
653 $link = $wgTitle->escapeLocalURL( 'image=' . $wgTitle->getPartialURL() .
654 '&action=delete' );
655 $style = $this->skin->getInternalLinkAttributes( $link, $delall );
656
657 $dlink = '<a href="'.$link.'"'.$style.'>'.$delall.'</a>';
658 } else {
659 $dlink = $del;
660 }
661 } else {
662 $url = htmlspecialchars( wfImageArchiveUrl( $img ) );
663 if( $wgUser->getID() != 0 && $wgTitle->userCanEdit() ) {
664 $token = urlencode( $wgUser->editToken( $img ) );
665 $rlink = $this->skin->makeKnownLinkObj( $wgTitle,
666 wfMsg( 'revertimg' ), 'action=revert&oldimage=' .
667 urlencode( $img ) . "&wpEditToken=$token" );
668 $dlink = $this->skin->makeKnownLinkObj( $wgTitle,
669 $del, 'action=delete&oldimage=' . urlencode( $img ) .
670 "&wpEditToken=$token" );
671 } else {
672 # Having live active links for non-logged in users
673 # means that bots and spiders crawling our site can
674 # inadvertently change content. Baaaad idea.
675 $rlink = wfMsg( 'revertimg' );
676 $dlink = $del;
677 }
678 }
679 if ( 0 == $user ) {
680 $userlink = $usertext;
681 } else {
682 $userlink = $this->skin->makeLinkObj(
683 Title::makeTitle( NS_USER, $usertext ),
684 $usertext );
685 }
686 $nbytes = wfMsg( 'nbytes', $size );
687 $style = $this->skin->getInternalLinkAttributes( $url, $datetime );
688
689 $s = "<li> ({$dlink}) ({$rlink}) <a href=\"{$url}\"{$style}>{$datetime}</a>"
690 . " . . {$userlink} ({$nbytes})";
691
692 $s .= $this->skin->commentBlock( $description, $wgTitle );
693 $s .= "</li>\n";
694 return $s;
695 }
696
697 }
698
699
700 ?>