56201a2f763dfae07babfc128db118d27be54809
[lhc/web/wiklou.git] / includes / specials / SpecialUpload.php
1 <?php
2 /**
3 * @file
4 * @ingroup SpecialPage
5 */
6
7 /**
8 * implements Special:Upload
9 * @ingroup SpecialPage
10 */
11 class UploadForm extends SpecialPage {
12 /**#@+
13 * @access private
14 */
15 var $mComment, $mLicense, $mIgnoreWarning;
16 var $mCopyrightStatus, $mCopyrightSource, $mReUpload, $mAction, $mUploadClicked;
17 var $mDestWarningAck;
18 var $mLocalFile;
19
20 var $mUpload; // Instance of UploadBase or derivative
21
22 # Placeholders for text injection by hooks (must be HTML)
23 # extensions should take care to _append_ to the present value
24 var $uploadFormTextTop;
25 var $uploadFormTextAfterSummary;
26 var $mTokenOk = false;
27 var $mForReUpload = false;
28 /**#@-*/
29
30 /**
31 * Constructor : initialise object
32 * Get data POSTed through the form and assign them to the object
33 * @param $request Data posted.
34 */
35 function __construct( $request = null ) {
36 global $wgUser, $wgRequest;
37
38 parent::__construct( 'Upload' );
39
40 $this->setHeaders();
41 $this->outputHeader();
42
43 if ( is_null( $request ) ) {
44 $request = $wgRequest;
45 }
46
47 // Guess the desired name from the filename if not provided
48 $this->mDesiredDestName = $request->getText( 'wpDestFile' );
49 if( !$this->mDesiredDestName )
50 $this->mDesiredDestName = $request->getText( 'wpUploadFile' );
51
52 $this->mIgnoreWarning = $request->getCheck( 'wpIgnoreWarning' );
53 $this->mComment = $request->getText( 'wpUploadDescription' );
54
55 if( !$request->wasPosted() ) {
56 # GET requests just give the main form; no data except destination
57 # filename and description
58 return;
59 }
60 //if it was posted check for the token (no remote POST'ing with user credentials)
61 $token = $request->getVal( 'wpEditToken' );
62 $this->mTokenOk = $wgUser->matchEditToken( $token );
63
64 # Placeholders for text injection by hooks (empty per default)
65 $this->uploadFormTextTop = "";
66 $this->uploadFormTextAfterSummary = "";
67
68 $this->mUploadClicked = $request->getCheck( 'wpUpload' );
69
70 $this->mLicense = $request->getText( 'wpLicense' );
71 $this->mCopyrightStatus = $request->getText( 'wpUploadCopyStatus' );
72 $this->mCopyrightSource = $request->getText( 'wpUploadSource' );
73 $this->mWatchthis = $request->getBool( 'wpWatchthis' );
74 $this->mSourceType = $request->getText( 'wpSourceType' );
75 $this->mDestWarningAck = $request->getText( 'wpDestFileWarningAck' );
76
77 $this->mForReUpload = $request->getBool( 'wpForReUpload' );
78
79 $this->mReUpload = $request->getCheck( 'wpReUpload' );
80
81 $this->mAction = $request->getVal( 'action' );
82 $this->mUpload = UploadBase::createFromRequest( $request );
83 }
84
85
86 /**
87 * Start doing stuff
88 * @access public
89 */
90 function execute( $par ) {
91 global $wgUser, $wgOut;
92 # Check uploading enabled
93 if( !UploadBase::isEnabled() ) {
94 $wgOut->showErrorPage( 'uploaddisabled', 'uploaddisabledtext' );
95 return;
96 }
97 # Check permissions
98 if( $this->mUpload ) {
99 $permission = $this->mUpload->isAllowed( $wgUser );
100 } else {
101 $permission = $wgUser->isAllowed( 'upload' ) ? true : 'upload';
102 }
103 if( $permission !== true ) {
104 if( !$wgUser->isLoggedIn() ) {
105 $wgOut->showErrorPage( 'uploadnologin', 'uploadnologintext' );
106 } else {
107 $wgOut->permissionRequired( $permission );
108 }
109 return;
110 }
111
112 # Check blocks
113 if( $wgUser->isBlocked() ) {
114 $wgOut->blockedPage();
115 return;
116 }
117
118 if( wfReadOnly() ) {
119 $wgOut->readOnlyPage();
120 return;
121 }
122 //check token if uploading or reUploading
123 if( !$this->mTokenOk && !$this->mReUpload && ($this->mUpload && (
124 'submit' == $this->mAction ||
125 $this->mUploadClicked
126 )
127 )
128 ){
129 $this->mainUploadForm ( wfMsg( 'session_fail_preview' ) );
130 return ;
131 }
132
133
134 if( $this->mReUpload ) {
135 // User choose to cancel upload
136 if( !$this->mUpload->unsaveUploadedFile() ) {
137 return;
138 }
139 # Because it is probably checked and shouldn't be
140 $this->mIgnoreWarning = false;
141 $this->mainUploadForm();
142 } elseif( $this->mUpload && (
143 'submit' == $this->mAction ||
144 $this->mUploadClicked
145 ) ) {
146 $this->processUpload();
147 } else {
148 $this->mainUploadForm();
149 }
150
151 if( $this->mUpload )
152 $this->mUpload->cleanupTempFile();
153 }
154
155 /**
156 * Do the upload
157 * Checks are made in SpecialUpload::execute()
158 *
159 * FIXME this should really use the standard Status class (instead of associative array)
160 * FIXME would be nice if we refactored this into the upload api.
161 * (the special upload page is not the only response point that needs clean localized error msgs)
162 *
163 * @access private
164 */
165 function processUpload(){
166 global $wgOut, $wgFileExtensions, $wgLang;
167 $details = $this->internalProcessUpload();
168 switch( $details['status'] ) {
169 case UploadBase::SUCCESS:
170 $wgOut->redirect( $this->mLocalFile->getTitle()->getFullURL() );
171 break;
172
173 case UploadBase::BEFORE_PROCESSING:
174 $this->uploadError( $details['error'] );
175 break;
176 case UploadBase::LARGE_FILE_SERVER:
177 $this->mainUploadForm( wfMsgHtml( 'largefileserver' ) );
178 break;
179
180 case UploadBase::EMPTY_FILE:
181 $this->mainUploadForm( wfMsgHtml( 'emptyfile' ) );
182 break;
183
184 case UploadBase::MIN_LENGTH_PARTNAME:
185 $this->mainUploadForm( wfMsgHtml( 'minlength1' ) );
186 break;
187
188 case UploadBase::ILLEGAL_FILENAME:
189 $this->uploadError( wfMsgExt( 'illegalfilename',
190 'parseinline', $details['filtered'] ) );
191 break;
192
193 case UploadBase::PROTECTED_PAGE:
194 $wgOut->showPermissionsErrorPage( $details['permissionserrors'] );
195 break;
196
197 case UploadBase::OVERWRITE_EXISTING_FILE:
198 $this->uploadError( wfMsgExt( $details['overwrite'],
199 'parseinline' ) );
200 break;
201
202 case UploadBase::FILETYPE_MISSING:
203 $this->uploadError( wfMsgExt( 'filetype-missing', array ( 'parseinline' ) ) );
204 break;
205
206 case UploadBase::FILETYPE_BADTYPE:
207 $finalExt = $details['finalExt'];
208 $this->uploadError(
209 wfMsgExt( 'filetype-banned-type',
210 array( 'parseinline' ),
211 htmlspecialchars( $finalExt ),
212 implode(
213 wfMsgExt( 'comma-separator', array( 'escapenoentities' ) ),
214 $wgFileExtensions
215 ),
216 $wgLang->formatNum( count( $wgFileExtensions ) )
217 )
218 );
219 break;
220
221 case UploadBase::VERIFICATION_ERROR:
222 unset( $details['status'] );
223 $code = array_shift( $details );
224 $this->uploadError( wfMsgExt( $code, 'parseinline', $details ) );
225 break;
226
227 case UploadBase::UPLOAD_VERIFICATION_ERROR:
228 $error = $details['error'];
229 $this->uploadError( wfMsgExt( $error, 'parseinline' ) );
230 break;
231
232 case UploadBase::UPLOAD_WARNING:
233 unset( $details['status'] );
234 $this->uploadWarning( $details );
235 break;
236
237 case UploadBase::INTERNAL_ERROR:
238 $status = $details['internal'];
239 $this->showError( $wgOut->parse( $status->getWikiText() ) );
240 break;
241
242 default:
243 throw new MWException( __METHOD__ . ": Unknown value `{$details['status']}`" );
244 }
245 }
246
247 /**
248 * Really do the upload
249 * Checks are made in SpecialUpload::execute()
250 *
251 * @param array $resultDetails contains result-specific dict of additional values
252 *
253 * @access private
254 */
255 function internalProcessUpload() {
256 global $wgUser;
257
258 if( !wfRunHooks( 'UploadForm:BeforeProcessing', array( &$this ) ) )
259 {
260 wfDebug( "Hook 'UploadForm:BeforeProcessing' broke processing the file.\n" );
261 return array( 'status' => UploadBase::BEFORE_PROCESSING );
262 }
263
264 /**
265 * If the image is protected, non-sysop users won't be able
266 * to modify it by uploading a new revision.
267 */
268 $permErrors = $this->mUpload->verifyPermissions( $wgUser );
269 if( $permErrors !== true ) {
270 return array( 'status' => UploadBase::PROTECTED_PAGE, 'permissionserrors' => $permErrors );
271 }
272
273 // Fetch the file if required
274 $status = $this->mUpload->fetchFile();
275 if( !$status->isOK() ){
276 return array( 'status' =>UploadBase::BEFORE_PROCESSING, 'error'=>$status->getWikiText() );
277 }
278
279 // Check whether this is a sane upload
280 $result = $this->mUpload->verifyUpload();
281 if( $result != UploadBase::OK )
282 return $result;
283
284 $this->mLocalFile = $this->mUpload->getLocalFile();
285
286 if( !$this->mIgnoreWarning ) {
287 $warnings = $this->mUpload->checkWarnings();
288
289 if( count( $warnings ) ) {
290 $warnings['status'] = UploadBase::UPLOAD_WARNING;
291 return $warnings;
292 }
293 }
294
295
296 /**
297 * Try actually saving the thing...
298 * It will show an error form on failure. No it will not.
299 */
300 if( !$this->mForReUpload ) {
301 $pageText = self::getInitialPageText( $this->mComment, $this->mLicense,
302 $this->mCopyrightStatus, $this->mCopyrightSource );
303 }
304 $status = $this->mUpload->performUpload( $this->mComment, $pageText, $this->mWatchthis, $wgUser );
305
306 if ( !$status->isGood() ) {
307 return array( 'status' => UploadBase::INTERNAL_ERROR, 'internal' => $status );
308 } else {
309 // Success, redirect to description page
310 wfRunHooks( 'SpecialUploadComplete', array( &$this ) );
311 return UploadBase::SUCCESS;
312 }
313 }
314
315 /**
316 * Do existence checks on a file and produce a warning
317 * This check is static and can be done pre-upload via AJAX
318 * Returns an HTML fragment consisting of one or more LI elements if there is a warning
319 * Returns an empty string if there is no warning
320 */
321 static function getExistsWarning( $exists ) {
322 global $wgUser, $wgContLang;
323
324 if( $exists === false )
325 return '';
326
327 $warning = '';
328 $align = $wgContLang->isRtl() ? 'left' : 'right';
329
330 list( $existsType, $file ) = $exists;
331
332 $sk = $wgUser->getSkin();
333
334 if( $existsType == 'exists' ) {
335 // Exact match
336 $dlink = $sk->makeKnownLinkObj( $file->getTitle() );
337 if ( $file->allowInlineDisplay() ) {
338 $dlink2 = $sk->makeImageLinkObj( $file->getTitle(), wfMsgExt( 'fileexists-thumb', 'parseinline' ),
339 $file->getName(), $align, array(), false, true );
340 } elseif ( !$file->allowInlineDisplay() && $file->isSafeFile() ) {
341 $icon = $file->iconThumb();
342 $dlink2 = '<div style="float:' . $align . '" id="mw-media-icon">' .
343 $icon->toHtml( array( 'desc-link' => true ) ) . '<br />' . $dlink . '</div>';
344 } else {
345 $dlink2 = '';
346 }
347
348 $warning .= '<li>' . wfMsgExt( 'fileexists', array('parseinline','replaceafter'), $dlink ) . '</li>' . $dlink2;
349
350 } elseif( $existsType == 'page-exists' ) {
351 $lnk = $sk->makeKnownLinkObj( $file->getTitle(), '', 'redirect=no' );
352 $warning .= '<li>' . wfMsgExt( 'filepageexists', array( 'parseinline', 'replaceafter' ), $lnk ) . '</li>';
353 } elseif ( $existsType == 'exists-normalized' ) {
354 # Check if image with lowercase extension exists.
355 # It's not forbidden but in 99% it makes no sense to upload the same filename with uppercase extension
356 $dlink = $sk->linkKnown( $nt_lc );
357 if ( $file_lc->allowInlineDisplay() ) {
358 // FIXME: replace deprecated makeImageLinkObj by link()
359 $dlink2 = $sk->makeImageLinkObj( $nt_lc, wfMsgExt( 'fileexists-thumb', 'parseinline' ),
360 $nt_lc->getText(), $align, array(), false, true );
361 } elseif ( !$file_lc->allowInlineDisplay() && $file_lc->isSafeFile() ) {
362 $icon = $file_lc->iconThumb();
363 $dlink2 = '<div style="float:' . $align . '" id="mw-media-icon">' .
364 $icon->toHtml( array( 'desc-link' => true ) ) . '<br />' . $dlink . '</div>';
365 } else {
366 $dlink2 = '';
367 }
368
369 $warning .= '<li>' .
370 wfMsgExt( 'fileexists-extension', 'parsemag',
371 $file->getTitle()->getPrefixedText(), $dlink ) .
372 '</li>' . $dlink2;
373
374 } elseif ( ( substr( $partname , 3, 3 ) == 'px-' || substr( $partname , 2, 3 ) == 'px-' )
375 && preg_match( "/[0-9]{2}/" , substr( $partname , 0, 2 ) ) )
376 {
377 # Check for filenames like 50px- or 180px-, these are mostly thumbnails
378 $nt_thb = Title::newFromText( substr( $partname , strpos( $partname , '-' ) +1 ) . '.' . $rawExtension );
379 $file_thb = wfLocalFile( $nt_thb );
380 if ($file_thb->exists() ) {
381 # Check if an image without leading '180px-' (or similiar) exists
382 $dlink = $sk->linkKnown( $nt_thb );
383 if ( $file_thb->allowInlineDisplay() ) {
384 // FIXME: replace deprecated makeImageLinkObj by link()
385 $dlink2 = $sk->makeImageLinkObj( $nt_thb,
386 wfMsgExt( 'fileexists-thumb', 'parseinline' ),
387 $nt_thb->getText(), $align, array(), false, true );
388 } elseif ( !$file_thb->allowInlineDisplay() && $file_thb->isSafeFile() ) {
389 $icon = $file_thb->iconThumb();
390 $dlink2 = '<div style="float:' . $align . '" id="mw-media-icon">' .
391 $icon->toHtml( array( 'desc-link' => true ) ) . '<br />' .
392 $dlink . '</div>';
393 } else {
394 $dlink2 = '';
395 }
396
397 $warning .= '<li>' . wfMsgExt( 'fileexists-thumbnail-yes', 'parsemag', $dlink ) .
398 '</li>' . $dlink2;
399 } else {
400 # Image w/o '180px-' does not exists, but we do not like these filenames
401 $warning .= '<li>' . wfMsgExt( 'file-thumbnail-no', 'parseinline' ,
402 substr( $partname , 0, strpos( $partname , '-' ) +1 ) ) . '</li>';
403 }
404 }
405
406 $filenamePrefixBlacklist = UploadBase::getFilenamePrefixBlacklist();
407 # Do the match
408 foreach( $filenamePrefixBlacklist as $prefix ) {
409 if ( substr( $partname, 0, strlen( $prefix ) ) == $prefix ) {
410 $warning .= '<li>' . wfMsgExt( 'filename-bad-prefix', 'parseinline', $prefix ) . '</li>';
411 break;
412 }
413 }
414
415 if ( $file->wasDeleted() && !$file->exists() ) {
416 # If the file existed before and was deleted, warn the user of this
417 # Don't bother doing so if the file exists now, however
418 $ltitle = SpecialPage::getTitleFor( 'Log' );
419 $llink = $sk->linkKnown(
420 $ltitle,
421 wfMsgHtml( 'deletionlog' ),
422 array(),
423 array(
424 'type' => 'delete',
425 'page' => $file->getTitle()->getPrefixedText()
426 )
427 );
428 $warning .= '<li>' . wfMsgWikiHtml( 'filewasdeleted', $llink ) . '</li>';
429 }
430 return $warning;
431 }
432
433 /**
434 * Get a list of warnings
435 *
436 * @param string local filename, e.g. 'file exists', 'non-descriptive filename'
437 * @return array list of warning messages
438 */
439 static function ajaxGetExistsWarning( $filename ) {
440 $file = wfFindFile( $filename );
441 if( !$file ) {
442 // Force local file so we have an object to do further checks against
443 // if there isn't an exact match...
444 $file = wfLocalFile( $filename );
445 }
446 $s = '&nbsp;';
447 if ( $file ) {
448 $exists = UploadBase::getExistsWarning( $file );
449 $warning = self::getExistsWarning( $exists );
450 // FIXME: We probably also want the prefix blacklist and the wasdeleted check here
451 if ( $warning !== '' ) {
452 $s = "<ul>$warning</ul>";
453 }
454 }
455 return $s;
456 }
457
458 /**
459 * Render a preview of a given license for the AJAX preview on upload
460 *
461 * @param string $license
462 * @return string
463 */
464 public static function ajaxGetLicensePreview( $license ) {
465 global $wgParser, $wgUser;
466 $text = '{{' . $license . '}}';
467 $title = Title::makeTitle( NS_FILE, 'Sample.jpg' );
468 $options = ParserOptions::newFromUser( $wgUser );
469
470 // Expand subst: first, then live templates...
471 $text = $wgParser->preSaveTransform( $text, $title, $wgUser, $options );
472 $output = $wgParser->parse( $text, $title, $options );
473
474 return $output->getText();
475 }
476
477 /**
478 * Construct the human readable warning message from an array of duplicate files
479 */
480 public static function getDupeWarning( $dupes ) {
481 if( $dupes ) {
482 global $wgOut;
483 $msg = "<gallery>";
484 foreach( $dupes as $file ) {
485 $title = $file->getTitle();
486 $msg .= $title->getPrefixedText() .
487 "|" . $title->getText() . "\n";
488 }
489 $msg .= "</gallery>";
490 return "<li>" .
491 wfMsgExt( "file-exists-duplicate", array( "parse" ), count( $dupes ) ) .
492 $wgOut->parse( $msg ) .
493 "</li>\n";
494 } else {
495 return '';
496 }
497 }
498
499
500 /**
501 * Remove a temporarily kept file stashed by saveTempUploadedFile().
502 * @access private
503 * @return success
504 */
505 function unsaveUploadedFile() {
506 global $wgOut;
507 $success = $this->mUpload->unsaveUploadedFile();
508 if ( ! $success ) {
509 $wgOut->showFileDeleteError( $this->mUpload->getTempPath() );
510 return false;
511 } else {
512 return true;
513 }
514 }
515
516 /* Interface code starts below this line *
517 * -------------------------------------------------------------- */
518
519
520 /**
521 * @param string $error as HTML
522 * @access private
523 */
524 function uploadError( $error ) {
525 global $wgOut;
526 $wgOut->addHTML( '<h2>' . wfMsgHtml( 'uploadwarning' ) . "</h2>\n" );
527 $wgOut->addHTML( '<span class="error">' . $error . '</span>' );
528 }
529
530 /**
531 * There's something wrong with this file, not enough to reject it
532 * totally but we require manual intervention to save it for real.
533 * Stash it away, then present a form asking to confirm or cancel.
534 *
535 * @param string $warning as HTML
536 * @access private
537 */
538 function uploadWarning( $warnings ) {
539 global $wgOut, $wgUser;
540 global $wgUseCopyrightUpload;
541
542 $this->mSessionKey = $this->mUpload->stashSession();
543
544 if( $sessionData === false ) {
545 # Couldn't save file; an error has been displayed so let's go.
546 return;
547 }
548
549 $sk = $wgUser->getSkin();
550
551 $wgOut->addHTML( '<h2>' . wfMsgHtml( 'uploadwarning' ) . "</h2>\n" );
552 $wgOut->addHTML( '<ul class="warning">' );
553 foreach( $warnings as $warning => $args ) {
554 $msg = null;
555 if( $warning == 'exists' ) {
556
557 //we should not have produced this warning if the user already acknowledged the destination warning
558 //at any rate I don't see why we should hid this warning if mDestWarningAck has been checked
559 //(it produces an empty warning page when no other warnings are fired)
560 //if ( !$this->mDestWarningAck )
561 $msg = self::getExistsWarning( $args );
562
563 } elseif( $warning == 'duplicate' ) {
564 $msg = $this->getDupeWarning( $args );
565 } elseif( $warning == 'duplicate-archive' ) {
566 $titleText = Title::makeTitle( NS_FILE, $args )->getPrefixedText();
567 $msg = Xml::tags( 'li', null, wfMsgExt( 'file-deleted-duplicate', array( 'parseinline' ), array( $titleText ) ) );
568 } elseif( $warning == 'filewasdeleted' ) {
569 $ltitle = SpecialPage::getTitleFor( 'Log' );
570 $llink = $sk->makeKnownLinkObj( $ltitle, wfMsgHtml( 'deletionlog' ),
571 'type=delete&page=' . $args->getPrefixedUrl() );
572 $msg = "\t<li>" . wfMsgWikiHtml( 'filewasdeleted', $llink ) . "</li>\n";
573 } else {
574 if( is_bool( $args ) )
575 $args = array();
576 elseif( !is_array( $args ) )
577 $args = array( $args );
578 $msg = "\t<li>" . wfMsgExt( $warning, 'parseinline', $args ) . "</li>\n";
579 }
580 if( $msg )
581 $wgOut->addHTML( $msg );
582 }
583
584 $titleObj = SpecialPage::getTitleFor( 'Upload' );
585
586 if ( $wgUseCopyrightUpload ) {
587 $copyright = Xml::hidden( 'wpUploadCopyStatus', $this->mCopyrightStatus ) . "\n" .
588 Xml::hidden( 'wpUploadSource', $this->mCopyrightSource ) . "\n";
589 } else {
590 $copyright = '';
591 }
592 //add the wpEditToken
593 $token = htmlspecialchars( $wgUser->editToken() );
594 $wgOut->addHTML(
595 Xml::openElement( 'form', array( 'method' => 'post', 'action' => $titleObj->getLocalURL( 'action=submit' ),
596 'enctype' => 'multipart/form-data', 'id' => 'uploadwarning' ) ) . "\n" .
597 Xml::hidden('wpEditToken', $token) .
598 Xml::hidden( 'wpIgnoreWarning', '1' ) . "\n" .
599 Xml::hidden( 'wpSourceType', 'stash' ) . "\n" .
600 Xml::hidden( 'wpSessionKey', $this->mSessionKey ) . "\n" .
601 Xml::hidden( 'wpUploadDescription', $this->mComment ) . "\n" .
602 Xml::hidden( 'wpLicense', $this->mLicense ) . "\n" .
603 Xml::hidden( 'wpDestFile', $this->mDesiredDestName ) . "\n" .
604 Xml::hidden( 'wpWatchthis', $this->mWatchthis ) . "\n" .
605 "{$copyright}<br />" .
606 Xml::submitButton( wfMsg( 'ignorewarning' ), array ( 'name' => 'wpUpload', 'id' => 'wpUpload', 'checked' => 'checked' ) ) . ' ' .
607 Xml::submitButton( wfMsg( 'reuploaddesc' ), array ( 'name' => 'wpReUpload', 'id' => 'wpReUpload' ) ) .
608 Xml::closeElement( 'form' ) . "\n"
609 );
610 }
611
612 /**
613 * Displays the main upload form, optionally with a highlighted
614 * error message up at the top.
615 *
616 * @param string $msg as HTML
617 * @access private
618 */
619 function mainUploadForm( $msg='' ) {
620 global $wgOut, $wgUser, $wgLang, $wgMaxUploadSize, $wgEnableFirefogg;
621 global $wgUseCopyrightUpload, $wgUseAjax, $wgAjaxUploadDestCheck, $wgAjaxLicensePreview;
622 global $wgRequest;
623 global $wgStylePath, $wgStyleVersion;
624 global $wgEnableJS2system;
625
626 $useAjaxDestCheck = $wgUseAjax && $wgAjaxUploadDestCheck;
627 $useAjaxLicensePreview = $wgUseAjax && $wgAjaxLicensePreview;
628
629 $adc = wfBoolToStr( $useAjaxDestCheck );
630 $alp = wfBoolToStr( $useAjaxLicensePreview );
631 $uef = wfBoolToStr( $wgEnableFirefogg );
632 $autofill = wfBoolToStr( $this->mDesiredDestName == '' );
633
634
635 $wgOut->addScript( "<script type=\"text/javascript\">
636 wgAjaxUploadDestCheck = {$adc};
637 wgAjaxLicensePreview = {$alp};
638 wgEnableFirefogg = {$uef};
639 wgUploadAutoFill = {$autofill};
640 </script>" );
641
642 if( $wgEnableJS2system ){
643 //js2version of upload page:
644 $wgOut->addScriptClass( 'uploadPage' );
645 }else{
646 //legacy upload code:
647 $wgOut->addScriptFile( 'upload.js' );
648 $wgOut->addScriptFile( 'edit.js' ); // For <charinsert> support
649 }
650
651 if( !wfRunHooks( 'UploadForm:initial', array( &$this ) ) )
652 {
653 wfDebug( "Hook 'UploadForm:initial' broke output of the upload form" );
654 return false;
655 }
656
657 if( $this->mDesiredDestName ) {
658 $title = Title::makeTitleSafe( NS_FILE, $this->mDesiredDestName );
659 // Show a subtitle link to deleted revisions (to sysops et al only)
660 if( $title instanceof Title && ( $count = $title->isDeleted() ) > 0 && $wgUser->isAllowed( 'deletedhistory' ) ) {
661 $link = wfMsgExt(
662 $wgUser->isAllowed( 'delete' ) ? 'thisisdeleted' : 'viewdeleted',
663 array( 'parse', 'replaceafter' ),
664 $wgUser->getSkin()->makeKnownLinkObj(
665 SpecialPage::getTitleFor( 'Undelete', $title->getPrefixedText() ),
666 wfMsgExt( 'restorelink', array( 'parsemag', 'escape' ), $count )
667 )
668 );
669 $wgOut->addHTML( "<div id=\"contentSub2\">{$link}</div>" );
670 }
671
672 // Show the relevant lines from deletion log (for still deleted files only)
673 if( $title instanceof Title && $title->isDeletedQuick() && !$title->exists() ) {
674 $this->showDeletionLog( $wgOut, $title->getPrefixedText() );
675 }
676 }
677
678 $cols = intval($wgUser->getOption( 'cols' ));
679
680 if( $wgUser->getOption( 'editwidth' ) ) {
681 $width = " style=\"width:100%\"";
682 } else {
683 $width = '';
684 }
685
686 if ( '' != $msg ) {
687 $sub = wfMsgHtml( 'uploaderror' );
688 $wgOut->addHTML( "<h2>{$sub}</h2>\n" .
689 "<span class='error'>{$msg}</span>\n" );
690 }
691
692 $wgOut->addHTML( '<div id="uploadtext">' );
693 $wgOut->addWikiMsg( 'uploadtext', $this->mDesiredDestName );
694 $wgOut->addHTML( "</div>\n" );
695
696 # Print a list of allowed file extensions, if so configured. We ignore
697 # MIME type here, it's incomprehensible to most people and too long.
698 global $wgCheckFileExtensions, $wgStrictFileExtensions,
699 $wgFileExtensions, $wgFileBlacklist;
700
701 $allowedExtensions = '';
702 if( $wgCheckFileExtensions ) {
703 $delim = wfMsgExt( 'comma-separator', array( 'escapenoentities' ) );
704 if( $wgStrictFileExtensions ) {
705 # Everything not permitted is banned
706 $extensionsList =
707 '<div id="mw-upload-permitted">' .
708 wfMsgWikiHtml( 'upload-permitted', implode( $wgFileExtensions, $delim ) ) .
709 "</div>\n";
710 } else {
711 # We have to list both preferred and prohibited
712 $extensionsList =
713 '<div id="mw-upload-preferred">' .
714 wfMsgWikiHtml( 'upload-preferred', implode( $wgFileExtensions, $delim ) ) .
715 "</div>\n" .
716 '<div id="mw-upload-prohibited">' .
717 wfMsgWikiHtml( 'upload-prohibited', implode( $wgFileBlacklist, $delim ) ) .
718 "</div>\n";
719 }
720 } else {
721 # Everything is permitted.
722 $extensionsList = '';
723 }
724
725 # Get the maximum file size from php.ini as $wgMaxUploadSize works for uploads from URL via CURL only
726 # See http://www.php.net/manual/en/ini.core.php#ini.upload-max-filesize for possible values of upload_max_filesize
727 $val = trim( ini_get( 'upload_max_filesize' ) );
728 $last = strtoupper( ( substr( $val, -1 ) ) );
729 switch( $last ) {
730 case 'G':
731 $val2 = substr( $val, 0, -1 ) * 1024 * 1024 * 1024;
732 break;
733 case 'M':
734 $val2 = substr( $val, 0, -1 ) * 1024 * 1024;
735 break;
736 case 'K':
737 $val2 = substr( $val, 0, -1 ) * 1024;
738 break;
739 default:
740 $val2 = $val;
741 }
742 $maxUploadSize = '<div id="mw-upload-maxfilesize">' .
743 wfMsgExt( 'upload-maxfilesize', array( 'parseinline', 'escapenoentities' ),
744 $wgLang->formatSize( $val2 ) ) .
745 "</div>\n";
746 //add a hidden filed for upload by url (uses the $wgMaxUploadSize var)
747 if( UploadFromUrl::isEnabled() ){
748 $maxUploadSize.='<div id="mw-upload-maxfilesize-url" style="display:none">' .
749 wfMsgExt( 'upload-maxfilesize', array( 'parseinline', 'escapenoentities' ),
750 $wgLang->formatSize( $wgMaxUploadSize ) ) .
751 "</div>\n";
752 }
753
754 $sourcefilename = wfMsgExt( 'sourcefilename', array( 'parseinline', 'escapenoentities' ) );
755 $destfilename = wfMsgExt( 'destfilename', array( 'parseinline', 'escapenoentities' ) );
756
757 $msg = ( $this->mForReUpload ) ? 'filereuploadsummary' : 'fileuploadsummary';
758 $summary = wfMsgExt( $msg, 'parseinline' );
759
760 $licenses = new Licenses();
761 $license = wfMsgExt( 'license', array( 'parseinline' ) );
762 $nolicense = wfMsgHtml( 'nolicense' );
763 $licenseshtml = $licenses->getHtml();
764
765 $ulb = wfMsgHtml( 'uploadbtn' );
766
767
768 $titleObj = SpecialPage::getTitleFor( 'Upload' );
769
770 $encDestName = htmlspecialchars( $this->mDesiredDestName );
771
772 $watchChecked = $this->watchCheck() ? 'checked="checked"' : '';
773 # Re-uploads should not need "file exist already" warnings
774 $warningChecked = ($this->mIgnoreWarning || $this->mForReUpload) ? 'checked="checked"' : '';
775
776 // Prepare form for upload or upload/copy
777 //javascript moved from inline calls to setup:
778 if( UploadFromUrl::isEnabled() && $wgUser->isAllowed( 'upload_by_url' ) ) {
779 if($wgEnableJS2system){
780 $filename_form =
781 Xml::input( 'wpSourceType', false, 'file', array( 'id'=>'wpSourceTypeFile', 'type' => 'radio', 'checked' => 'checked' ) ) .
782 Xml::input( 'wpUploadFile', 60, false, array( 'id'=>'wpUploadFile', 'type'=>'file', 'tabindex' => '1' ) ) .
783 wfMsgHTML( 'upload_source_file' ) . "<br/>" .
784 Xml::input( 'wpSourceType', false, 'Url', array( 'id'=>'wpSourceTypeURL', 'type' => 'radio' )) .
785 Xml::input( 'wpUploadFileURL', 60, false, array( 'id'=>'wpUploadFileURL', 'type' => 'text', 'tabindex' => '1')) .
786 wfMsgHtml( 'upload_source_url' ) ;
787 }else{
788 //@@todo depreciate (not needed once $wgEnableJS2system is turned on)
789 $filename_form =
790 "<input type='radio' id='wpSourceTypeFile' name='wpSourceType' value='file' " .
791 "onchange='toggle_element_activation(\"wpUploadFileURL\",\"wpUploadFile\")' checked='checked' />" .
792 "<input tabindex='1' type='file' name='wpUploadFile' id='wpUploadFile' " .
793 "onfocus='" .
794 "toggle_element_activation(\"wpUploadFileURL\",\"wpUploadFile\");" .
795 "toggle_element_check(\"wpSourceTypeFile\",\"wpSourceTypeURL\")' " .
796 "onchange='fillDestFilename(\"wpUploadFile\")' size='60' />" .
797 wfMsgHTML( 'upload_source_file' ) . "<br/>" .
798 "<input type='radio' id='wpSourceTypeURL' name='wpSourceType' value='Url' " .
799 "onchange='toggle_element_activation(\"wpUploadFile\",\"wpUploadFileURL\")' />" .
800 "<input tabindex='1' type='text' name='wpUploadFileURL' id='wpUploadFileURL' " .
801 "onfocus='" .
802 "toggle_element_activation(\"wpUploadFile\",\"wpUploadFileURL\");" .
803 "toggle_element_check(\"wpSourceTypeURL\",\"wpSourceTypeFile\")' " .
804 "onchange='fillDestFilename(\"wpUploadFileURL\")' size='60' disabled='disabled' />" .
805 wfMsgHtml( 'upload_source_url' ) ;
806
807 }
808 } else {
809 $filename_form =
810 "<input tabindex='1' type='file' name='wpUploadFile' id='wpUploadFile' size='60' />" .
811 "<input type='hidden' name='wpSourceType' value='upload' />" ;
812 }
813
814 if ( $useAjaxDestCheck ) {
815 $warningRow = "<tr><td colspan='2' id='wpDestFile-warning'>&nbsp;</td></tr>";
816 $destOnkeyup = '';
817 } else {
818 $warningRow = '';
819 $destOnkeyup = '';
820 }
821 # Uploading a new version? If so, the name is fixed.
822 $on = $this->mForReUpload ? "readonly='readonly'" : "";
823
824 $encComment = htmlspecialchars( $this->mComment );
825
826 //add the wpEditToken
827 $token = htmlspecialchars( $wgUser->editToken() );
828 $wgOut->addHTML(
829 Xml::openElement( 'form', array( 'method' => 'post', 'action' => $titleObj->getLocalURL( 'action=submit' ),
830 'enctype' => 'multipart/form-data', 'id' => 'mw-upload-form' ) ) .
831 Xml::hidden('wpEditToken', $token) .
832 Xml::openElement( 'fieldset' ) .
833 Xml::element( 'legend', null, wfMsg( 'upload' ) ) .
834 Xml::openElement( 'table', array( 'border' => '0', 'id' => 'mw-upload-table' ) ) .
835 "<tr>
836 {$this->uploadFormTextTop}
837 <td class='mw-label'>
838 <label for='wpUploadFile'>{$sourcefilename}</label>
839 </td>
840 <td class='mw-input'>
841 {$filename_form}
842 </td>
843 </tr>
844 <tr>
845 <td></td>
846 <td>
847 {$maxUploadSize}
848 {$extensionsList}
849 </td>
850 </tr>
851 <tr>
852 <td class='mw-label'>
853 <label for='wpDestFile'>{$destfilename}</label>
854 </td>
855 <td class='mw-input'>"
856 );
857 if( $this->mForReUpload ) {
858 $wgOut->addHTML(
859 Xml::hidden( 'wpDestFile', $this->mDesiredDestName, array('id'=>'wpDestFile','tabindex'=>2) ) .
860 "<tt>" .
861 $encDestName .
862 "</tt>"
863 );
864 }
865 else {
866 $wgOut->addHTML(
867 "<input tabindex='2' type='text' name='wpDestFile' id='wpDestFile' size='60'
868 value=\"{$encDestName}\" $destOnkeyup />"
869 );
870 }
871
872
873 $wgOut->addHTML(
874 "</td>
875 </tr>
876 <tr>
877 <td class='mw-label'>
878 <label for='wpUploadDescription'>{$summary}</label>
879 </td>
880 <td class='mw-input'>
881 <textarea tabindex='3' name='wpUploadDescription' id='wpUploadDescription' rows='6'
882 cols='{$cols}'{$width}>$encComment</textarea>
883 {$this->uploadFormTextAfterSummary}
884 </td>
885 </tr>
886 <tr>"
887 );
888
889 # Re-uploads should not need license info
890 if ( !$this->mForReUpload && $licenseshtml != '' ) {
891 global $wgStylePath;
892 $wgOut->addHTML( "
893 <td class='mw-label'>
894 <label for='wpLicense'>$license</label>
895 </td>
896 <td class='mw-input'>
897 <select name='wpLicense' id='wpLicense' tabindex='4'
898 onchange='licenseSelectorCheck()'>
899 <option value=''>$nolicense</option>
900 $licenseshtml
901 </select>
902 </td>
903 </tr>
904 <tr>"
905 );
906 if( $useAjaxLicensePreview ) {
907 $wgOut->addHTML( "
908 <td></td>
909 <td id=\"mw-license-preview\"></td>
910 </tr>
911 <tr>"
912 );
913 }
914 }
915
916 if ( !$this->mForReUpload && $wgUseCopyrightUpload ) {
917 $filestatus = wfMsgExt( 'filestatus', 'escapenoentities' );
918 $copystatus = htmlspecialchars( $this->mCopyrightStatus );
919 $filesource = wfMsgExt( 'filesource', 'escapenoentities' );
920 $uploadsource = htmlspecialchars( $this->mCopyrightSource );
921
922 $wgOut->addHTML( "
923 <td class='mw-label' style='white-space: nowrap;'>
924 <label for='wpUploadCopyStatus'>$filestatus</label></td>
925 <td class='mw-input'>
926 <input tabindex='5' type='text' name='wpUploadCopyStatus' id='wpUploadCopyStatus'
927 value=\"$copystatus\" size='60' />
928 </td>
929 </tr>
930 <tr>
931 <td class='mw-label'>
932 <label for='wpUploadCopyStatus'>$filesource</label>
933 </td>
934 <td class='mw-input'>
935 <input tabindex='6' type='text' name='wpUploadSource' id='wpUploadCopyStatus'
936 value=\"$uploadsource\" size='60' />
937 </td>
938 </tr>
939 <tr>"
940 );
941 }
942
943 $wgOut->addHTML( "
944 <td></td>
945 <td>
946 <input tabindex='7' type='checkbox' name='wpWatchthis' id='wpWatchthis' $watchChecked value='true' />
947 <label for='wpWatchthis'>" . wfMsgHtml( 'watchthisupload' ) . "</label>
948 <input tabindex='8' type='checkbox' name='wpIgnoreWarning' id='wpIgnoreWarning' value='true' $warningChecked />
949 <label for='wpIgnoreWarning'>" . wfMsgHtml( 'ignorewarnings' ) . "</label>
950 </td>
951 </tr>
952 $warningRow
953 <tr>
954 <td></td>
955 <td class='mw-input'>
956 <input tabindex='9' type='submit' name='wpUpload' value=\"{$ulb}\"" .
957 $wgUser->getSkin()->tooltipAndAccesskey( 'upload' ) . " />
958 </td>
959 </tr>
960 <tr>
961 <td></td>
962 <td class='mw-input'>"
963 );
964 $wgOut->addHTML( '<div class="mw-editTools">' );
965 $wgOut->addWikiMsgArray( 'edittools', array(), array( 'content' ) );
966 $wgOut->addHTML( '</div>' );
967 $wgOut->addHTML( "
968 </td>
969 </tr>" .
970 Xml::closeElement( 'table' ) .
971 Xml::hidden( 'wpDestFileWarningAck', '', array( 'id' => 'wpDestFileWarningAck' ) ) .
972 Xml::hidden( 'wpForReUpload', $this->mForReUpload, array( 'id' => 'wpForReUpload' ) ) .
973 Xml::closeElement( 'fieldset' ) .
974 Xml::closeElement( 'form' )
975 );
976 $uploadfooter = wfMsgNoTrans( 'uploadfooter' );
977 if( $uploadfooter != '-' && !wfEmptyMsg( 'uploadfooter', $uploadfooter ) ){
978 $wgOut->addWikiText( '<div id="mw-upload-footer-message">' . $uploadfooter . '</div>' );
979 }
980 }
981
982 /* -------------------------------------------------------------- */
983
984 /**
985 * See if we should check the 'watch this page' checkbox on the form
986 * based on the user's preferences and whether we're being asked
987 * to create a new file or update an existing one.
988 *
989 * In the case where 'watch edits' is off but 'watch creations' is on,
990 * we'll leave the box unchecked.
991 *
992 * Note that the page target can be changed *on the form*, so our check
993 * state can get out of sync.
994 */
995 function watchCheck() {
996 global $wgUser;
997 if( $wgUser->getOption( 'watchdefault' ) ) {
998 // Watch all edits!
999 return true;
1000 }
1001
1002 $local = wfLocalFile( $this->mDesiredDestName );
1003 if( $local && $local->exists() ) {
1004 // We're uploading a new version of an existing file.
1005 // No creation, so don't watch it if we're not already.
1006 return $local->getTitle()->userIsWatching();
1007 } else {
1008 // New page should get watched if that's our option.
1009 return $wgUser->getOption( 'watchcreations' );
1010 }
1011 }
1012
1013 /**
1014 * Check if a user is the last uploader
1015 *
1016 * @param User $user
1017 * @param string $img, image name
1018 * @return bool
1019 * @deprecated Use UploadBase::userCanReUpload
1020 */
1021 public static function userCanReUpload( User $user, $img ) {
1022 wfDeprecated( __METHOD__ );
1023
1024 if( $user->isAllowed( 'reupload' ) )
1025 return true; // non-conditional
1026 if( !$user->isAllowed( 'reupload-own' ) )
1027 return false;
1028
1029 $dbr = wfGetDB( DB_SLAVE );
1030 $row = $dbr->selectRow('image',
1031 /* SELECT */ 'img_user',
1032 /* WHERE */ array( 'img_name' => $img )
1033 );
1034 if ( !$row )
1035 return false;
1036
1037 return $user->getId() == $row->img_user;
1038 }
1039
1040 /**
1041 * Display an error with a wikitext description
1042 */
1043 function showError( $description ) {
1044 global $wgOut;
1045 $wgOut->setPageTitle( wfMsg( "internalerror" ) );
1046 $wgOut->setRobotPolicy( "noindex,nofollow" );
1047 $wgOut->setArticleRelated( false );
1048 $wgOut->enableClientCache( false );
1049 $wgOut->addWikiText( $description );
1050 }
1051
1052 /**
1053 * Get the initial image page text based on a comment and optional file status information
1054 */
1055 static function getInitialPageText( $comment='', $license='', $copyStatus='', $source='' ) {
1056 global $wgUseCopyrightUpload;
1057 if ( $wgUseCopyrightUpload ) {
1058 if ( $license != '' ) {
1059 $licensetxt = '== ' . wfMsgForContent( 'license' ) . " ==\n" . '{{' . $license . '}}' . "\n";
1060 }
1061 $pageText = '== ' . wfMsg ( 'filedesc' ) . " ==\n" . $comment . "\n" .
1062 '== ' . wfMsgForContent ( 'filestatus' ) . " ==\n" . $copyStatus . "\n" .
1063 "$licensetxt" .
1064 '== ' . wfMsgForContent ( 'filesource' ) . " ==\n" . $source ;
1065 } else {
1066 if ( $license != '' ) {
1067 $filedesc = $comment == '' ? '' : '== ' . wfMsg ( 'filedesc' ) . " ==\n" . $comment . "\n";
1068 $pageText = $filedesc .
1069 '== ' . wfMsgForContent ( 'license' ) . " ==\n" . '{{' . $license . '}}' . "\n";
1070 } else {
1071 $pageText = $comment;
1072 }
1073 }
1074 return $pageText;
1075 }
1076
1077 /**
1078 * If there are rows in the deletion log for this file, show them,
1079 * along with a nice little note for the user
1080 *
1081 * @param OutputPage $out
1082 * @param string filename
1083 */
1084 private function showDeletionLog( $out, $filename ) {
1085 global $wgUser;
1086 $loglist = new LogEventsList( $wgUser->getSkin(), $out );
1087 $pager = new LogPager( $loglist, 'delete', false, $filename );
1088 if( $pager->getNumRows() > 0 ) {
1089 $out->addHTML( '<div class="mw-warning-with-logexcerpt">' );
1090 $out->addWikiMsg( 'upload-wasdeleted' );
1091 $out->addHTML(
1092 $loglist->beginLogEventsList() .
1093 $pager->getBody() .
1094 $loglist->endLogEventsList()
1095 );
1096 $out->addHTML( '</div>' );
1097 }
1098 }
1099 }