* De-crappified JS upload dest check feature. Converted to sajax framework. Comprehen...
[lhc/web/wiklou.git] / includes / SpecialUpload.php
1 <?php
2 /**
3 *
4 * @addtogroup SpecialPage
5 */
6
7
8 /**
9 * Entry point
10 */
11 function wfSpecialUpload() {
12 global $wgRequest;
13 $form = new UploadForm( $wgRequest );
14 $form->execute();
15 }
16
17 /**
18 * implements Special:Upload
19 * @addtogroup SpecialPage
20 */
21 class UploadForm {
22 /**#@+
23 * @access private
24 */
25 var $mComment, $mLicense, $mIgnoreWarning, $mCurlError;
26 var $mDestName, $mTempPath, $mFileSize, $mFileProps;
27 var $mCopyrightStatus, $mCopyrightSource, $mReUpload, $mAction, $mUploadClicked;
28 var $mSrcName, $mSessionKey, $mStashed, $mDesiredDestName, $mRemoveTempFile, $mSourceType;
29 var $mDestWarningAck, $mCurlDestHandle;
30 var $mLocalFile;
31
32 # Placeholders for text injection by hooks (must be HTML)
33 # extensions should take care to _append_ to the present value
34 var $uploadFormTextTop;
35 var $uploadFormTextAfterSummary;
36
37 const SESSION_VERSION = 1;
38 /**#@-*/
39
40 /**
41 * Constructor : initialise object
42 * Get data POSTed through the form and assign them to the object
43 * @param $request Data posted.
44 */
45 function UploadForm( &$request ) {
46 global $wgAllowCopyUploads;
47 $this->mDesiredDestName = $request->getText( 'wpDestFile' );
48 $this->mIgnoreWarning = $request->getCheck( 'wpIgnoreWarning' );
49
50 if( !$request->wasPosted() ) {
51 # GET requests just give the main form; no data except wpDestfile.
52 return;
53 }
54
55 # Placeholders for text injection by hooks (empty per default)
56 $this->uploadFormTextTop = "";
57 $this->uploadFormTextAfterSummary = "";
58
59 $this->mReUpload = $request->getCheck( 'wpReUpload' );
60 $this->mUploadClicked = $request->getCheck( 'wpUpload' );
61
62 $this->mComment = $request->getText( 'wpUploadDescription' );
63 $this->mLicense = $request->getText( 'wpLicense' );
64 $this->mCopyrightStatus = $request->getText( 'wpUploadCopyStatus' );
65 $this->mCopyrightSource = $request->getText( 'wpUploadSource' );
66 $this->mWatchthis = $request->getBool( 'wpWatchthis' );
67 $this->mSourceType = $request->getText( 'wpSourceType' );
68 $this->mDestWarningAck = $request->getText( 'wpDestFileWarningAck' );
69
70 $this->mAction = $request->getVal( 'action' );
71
72 $this->mSessionKey = $request->getInt( 'wpSessionKey' );
73 if( !empty( $this->mSessionKey ) &&
74 isset( $_SESSION['wsUploadData'][$this->mSessionKey]['version'] ) &&
75 $_SESSION['wsUploadData'][$this->mSessionKey]['version'] == self::SESSION_VERSION ) {
76 /**
77 * Confirming a temporarily stashed upload.
78 * We don't want path names to be forged, so we keep
79 * them in the session on the server and just give
80 * an opaque key to the user agent.
81 */
82 $data = $_SESSION['wsUploadData'][$this->mSessionKey];
83 $this->mTempPath = $data['mTempPath'];
84 $this->mFileSize = $data['mFileSize'];
85 $this->mSrcName = $data['mSrcName'];
86 $this->mFileProps = $data['mFileProps'];
87 $this->mCurlError = 0/*UPLOAD_ERR_OK*/;
88 $this->mStashed = true;
89 $this->mRemoveTempFile = false;
90 } else {
91 /**
92 *Check for a newly uploaded file.
93 */
94 if( $wgAllowCopyUploads && $this->mSourceType == 'web' ) {
95 $this->initializeFromUrl( $request );
96 } else {
97 $this->initializeFromUpload( $request );
98 }
99 }
100 }
101
102 /**
103 * Initialize the uploaded file from PHP data
104 * @access private
105 */
106 function initializeFromUpload( $request ) {
107 $this->mTempPath = $request->getFileTempName( 'wpUploadFile' );
108 $this->mFileSize = $request->getFileSize( 'wpUploadFile' );
109 $this->mSrcName = $request->getFileName( 'wpUploadFile' );
110 $this->mCurlError = $request->getUploadError( 'wpUploadFile' );
111 $this->mSessionKey = false;
112 $this->mStashed = false;
113 $this->mRemoveTempFile = false; // PHP will handle this
114 }
115
116 /**
117 * Copy a web file to a temporary file
118 * @access private
119 */
120 function initializeFromUrl( $request ) {
121 global $wgTmpDirectory;
122 $url = $request->getText( 'wpUploadFileURL' );
123 $local_file = tempnam( $wgTmpDirectory, 'WEBUPLOAD' );
124
125 $this->mTempPath = $local_file;
126 $this->mFileSize = 0; # Will be set by curlCopy
127 $this->mCurlError = $this->curlCopy( $url, $local_file );
128 $this->mSrcName = array_pop( explode( '/', $url ) );
129 $this->mSessionKey = false;
130 $this->mStashed = false;
131
132 // PHP won't auto-cleanup the file
133 $this->mRemoveTempFile = file_exists( $local_file );
134 }
135
136 /**
137 * Safe copy from URL
138 * Returns true if there was an error, false otherwise
139 */
140 private function curlCopy( $url, $dest ) {
141 global $wgUser, $wgOut;
142
143 if( !$wgUser->isAllowed( 'upload_by_url' ) ) {
144 $wgOut->permissionRequired( 'upload_by_url' );
145 return true;
146 }
147
148 # Maybe remove some pasting blanks :-)
149 $url = trim( $url );
150 if( stripos($url, 'http://') !== 0 && stripos($url, 'ftp://') !== 0 ) {
151 # Only HTTP or FTP URLs
152 $wgOut->errorPage( 'upload-proto-error', 'upload-proto-error-text' );
153 return true;
154 }
155
156 # Open temporary file
157 $this->mCurlDestHandle = @fopen( $this->mTempPath, "wb" );
158 if( $this->mCurlDestHandle === false ) {
159 # Could not open temporary file to write in
160 $wgOut->errorPage( 'upload-file-error', 'upload-file-error-text');
161 return true;
162 }
163
164 $ch = curl_init();
165 curl_setopt( $ch, CURLOPT_HTTP_VERSION, 1.0); # Probably not needed, but apparently can work around some bug
166 curl_setopt( $ch, CURLOPT_TIMEOUT, 10); # 10 seconds timeout
167 curl_setopt( $ch, CURLOPT_LOW_SPEED_LIMIT, 512); # 0.5KB per second minimum transfer speed
168 curl_setopt( $ch, CURLOPT_URL, $url);
169 curl_setopt( $ch, CURLOPT_WRITEFUNCTION, array( $this, 'uploadCurlCallback' ) );
170 curl_exec( $ch );
171 $error = curl_errno( $ch ) ? true : false;
172 $errornum = curl_errno( $ch );
173 // if ( $error ) print curl_error ( $ch ) ; # Debugging output
174 curl_close( $ch );
175
176 fclose( $this->mCurlDestHandle );
177 unset( $this->mCurlDestHandle );
178 if( $error ) {
179 unlink( $dest );
180 if( wfEmptyMsg( "upload-curl-error$errornum", wfMsg("upload-curl-error$errornum") ) )
181 $wgOut->errorPage( 'upload-misc-error', 'upload-misc-error-text' );
182 else
183 $wgOut->errorPage( "upload-curl-error$errornum", "upload-curl-error$errornum-text" );
184 }
185
186 return $error;
187 }
188
189 /**
190 * Callback function for CURL-based web transfer
191 * Write data to file unless we've passed the length limit;
192 * if so, abort immediately.
193 * @access private
194 */
195 function uploadCurlCallback( $ch, $data ) {
196 global $wgMaxUploadSize;
197 $length = strlen( $data );
198 $this->mFileSize += $length;
199 if( $this->mFileSize > $wgMaxUploadSize ) {
200 return 0;
201 }
202 fwrite( $this->mCurlDestHandle, $data );
203 return $length;
204 }
205
206 /**
207 * Start doing stuff
208 * @access public
209 */
210 function execute() {
211 global $wgUser, $wgOut;
212 global $wgEnableUploads;
213
214 # Check uploading enabled
215 if( !$wgEnableUploads ) {
216 $wgOut->showErrorPage( 'uploaddisabled', 'uploaddisabledtext', array( $this->mDesiredDestName ) );
217 return;
218 }
219
220 # Check permissions
221 if( !$wgUser->isAllowed( 'upload' ) ) {
222 if( !$wgUser->isLoggedIn() ) {
223 $wgOut->showErrorPage( 'uploadnologin', 'uploadnologintext' );
224 } else {
225 $wgOut->permissionRequired( 'upload' );
226 }
227 return;
228 }
229
230 # Check blocks
231 if( $wgUser->isBlocked() ) {
232 $wgOut->blockedPage();
233 return;
234 }
235
236 if( wfReadOnly() ) {
237 $wgOut->readOnlyPage();
238 return;
239 }
240
241 if( $this->mReUpload ) {
242 if( !$this->unsaveUploadedFile() ) {
243 return;
244 }
245 $this->mainUploadForm();
246 } else if( 'submit' == $this->mAction || $this->mUploadClicked ) {
247 $this->processUpload();
248 } else {
249 $this->mainUploadForm();
250 }
251
252 $this->cleanupTempFile();
253 }
254
255 /* -------------------------------------------------------------- */
256
257 /**
258 * Really do the upload
259 * Checks are made in SpecialUpload::execute()
260 * @access private
261 */
262 function processUpload() {
263 global $wgUser, $wgOut;
264
265 if( !wfRunHooks( 'UploadForm:BeforeProcessing', array( &$this ) ) )
266 {
267 wfDebug( "Hook 'UploadForm:BeforeProcessing' broke processing the file." );
268 return false;
269 }
270
271 /* Check for PHP error if any, requires php 4.2 or newer */
272 if( $this->mCurlError == 1/*UPLOAD_ERR_INI_SIZE*/ ) {
273 $this->mainUploadForm( wfMsgHtml( 'largefileserver' ) );
274 return;
275 }
276
277 /**
278 * If there was no filename or a zero size given, give up quick.
279 */
280 if( trim( $this->mSrcName ) == '' || empty( $this->mFileSize ) ) {
281 $this->mainUploadForm( wfMsgHtml( 'emptyfile' ) );
282 return;
283 }
284
285 # Chop off any directories in the given filename
286 if( $this->mDesiredDestName ) {
287 $basename = wfBaseName( $this->mDesiredDestName );
288 } else {
289 $basename = wfBaseName( $this->mSrcName );
290 }
291
292 /**
293 * We'll want to blacklist against *any* 'extension', and use
294 * only the final one for the whitelist.
295 */
296 list( $partname, $ext ) = $this->splitExtensions( $basename );
297
298 if( count( $ext ) ) {
299 $finalExt = $ext[count( $ext ) - 1];
300 } else {
301 $finalExt = '';
302 }
303
304 # If there was more than one "extension", reassemble the base
305 # filename to prevent bogus complaints about length
306 if( count( $ext ) > 1 ) {
307 for( $i = 0; $i < count( $ext ) - 1; $i++ )
308 $partname .= '.' . $ext[$i];
309 }
310
311 if( strlen( $partname ) < 1 ) {
312 $this->mainUploadForm( wfMsgHtml( 'minlength1' ) );
313 return;
314 }
315
316 /**
317 * Filter out illegal characters, and try to make a legible name
318 * out of it. We'll strip some silently that Title would die on.
319 */
320 $filtered = preg_replace ( "/[^".Title::legalChars()."]|:/", '-', $basename );
321 $nt = Title::makeTitleSafe( NS_IMAGE, $filtered );
322 if( is_null( $nt ) ) {
323 $this->uploadError( wfMsgWikiHtml( 'illegalfilename', htmlspecialchars( $filtered ) ) );
324 return;
325 }
326 $this->mLocalFile = wfLocalFile( $nt );
327 $this->mDestName = $this->mLocalFile->getName();
328
329 /**
330 * If the image is protected, non-sysop users won't be able
331 * to modify it by uploading a new revision.
332 */
333 if( !$nt->userCan( 'edit' ) ) {
334 return $this->uploadError( wfMsgWikiHtml( 'protectedpage' ) );
335 }
336
337 /**
338 * In some cases we may forbid overwriting of existing files.
339 */
340 $overwrite = $this->checkOverwrite( $this->mDestName );
341 if( WikiError::isError( $overwrite ) ) {
342 return $this->uploadError( $overwrite->toString() );
343 }
344
345 /* Don't allow users to override the blacklist (check file extension) */
346 global $wgStrictFileExtensions;
347 global $wgFileExtensions, $wgFileBlacklist;
348 if ($finalExt == '') {
349 return $this->uploadError( wfMsgExt( 'filetype-missing', array ( 'parseinline' ) ) );
350 } elseif ( $this->checkFileExtensionList( $ext, $wgFileBlacklist ) ||
351 ($wgStrictFileExtensions && !$this->checkFileExtension( $finalExt, $wgFileExtensions ) ) ) {
352 return $this->uploadError( wfMsgExt( 'filetype-badtype', array ( 'parseinline' ),
353 htmlspecialchars( $finalExt ), implode ( ', ', $wgFileExtensions ) ) );
354 }
355
356 /**
357 * Look at the contents of the file; if we can recognize the
358 * type but it's corrupt or data of the wrong type, we should
359 * probably not accept it.
360 */
361 if( !$this->mStashed ) {
362 $this->mFileProps = File::getPropsFromPath( $this->mTempPath, $finalExt );
363 $this->checkMacBinary();
364 $veri = $this->verify( $this->mTempPath, $finalExt );
365
366 if( $veri !== true ) { //it's a wiki error...
367 return $this->uploadError( $veri->toString() );
368 }
369
370 /**
371 * Provide an opportunity for extensions to add futher checks
372 */
373 $error = '';
374 if( !wfRunHooks( 'UploadVerification',
375 array( $this->mDestName, $this->mTempPath, &$error ) ) ) {
376 return $this->uploadError( $error );
377 }
378 }
379
380
381 /**
382 * Check for non-fatal conditions
383 */
384 if ( ! $this->mIgnoreWarning ) {
385 $warning = '';
386
387 global $wgCapitalLinks;
388 if( $wgCapitalLinks ) {
389 $filtered = ucfirst( $filtered );
390 }
391 if( $this->mDestName != $filtered ) {
392 $warning .= '<li>'.wfMsgHtml( 'badfilename', htmlspecialchars( $this->mDestName ) ).'</li>';
393 }
394
395 global $wgCheckFileExtensions;
396 if ( $wgCheckFileExtensions ) {
397 if ( ! $this->checkFileExtension( $finalExt, $wgFileExtensions ) ) {
398 $warning .= '<li>'.wfMsgExt( 'filetype-badtype', array ( 'parseinline' ),
399 htmlspecialchars( $finalExt ), implode ( ', ', $wgFileExtensions ) ).'</li>';
400 }
401 }
402
403 global $wgUploadSizeWarning;
404 if ( $wgUploadSizeWarning && ( $this->mFileSize > $wgUploadSizeWarning ) ) {
405 $skin = $wgUser->getSkin();
406 $wsize = $skin->formatSize( $wgUploadSizeWarning );
407 $asize = $skin->formatSize( $this->mFileSize );
408 $warning .= '<li>' . wfMsgHtml( 'large-file', $wsize, $asize ) . '</li>';
409 }
410 if ( $this->mFileSize == 0 ) {
411 $warning .= '<li>'.wfMsgHtml( 'emptyfile' ).'</li>';
412 }
413
414 if ( !$this->mDestWarningAck ) {
415 $warning .= self::getExistsWarning( $this->mLocalFile );
416 }
417 if( $warning != '' ) {
418 /**
419 * Stash the file in a temporary location; the user can choose
420 * to let it through and we'll complete the upload then.
421 */
422 return $this->uploadWarning( $warning );
423 }
424 }
425
426 /**
427 * Try actually saving the thing...
428 * It will show an error form on failure.
429 */
430 $pageText = self::getInitialPageText( $this->mComment, $this->mLicense,
431 $this->mCopyrightStatus, $this->mCopyrightSource );
432
433 $status = $this->mLocalFile->upload( $this->mTempPath, $this->mComment, $pageText,
434 File::DELETE_SOURCE, $this->mFileProps );
435 if ( WikiError::isError( $status ) ) {
436 $this->showError( $status );
437 } else {
438 if ( $this->mWatchthis ) {
439 global $wgUser;
440 $wgUser->addWatch( $this->mLocalFile->getTitle() );
441 }
442 // Success, redirect to description page
443 $wgOut->redirect( $this->mLocalFile->getTitle()->getFullURL() );
444 wfRunHooks( 'UploadComplete', array( &$img ) );
445 }
446 }
447
448 /**
449 * Do existence checks on a file and produce a warning
450 * This check is static and can be done pre-upload via AJAX
451 * Returns an HTML fragment consisting of one or more LI elements if there is a warning
452 * Returns an empty string if there is no warning
453 */
454 static function getExistsWarning( $file ) {
455 global $wgUser;
456 // Check for uppercase extension. We allow these filenames but check if an image
457 // with lowercase extension exists already
458 $warning = '';
459 $ext = $file->getExtension();
460 $sk = $wgUser->getSkin();
461 if ( $ext !== '' ) {
462 $partname = substr( $file->getName(), 0, -strlen( $ext ) - 1 );
463 } else {
464 $partname = $file->getName();
465 }
466
467 if ( $ext != strtolower( $ext ) ) {
468 $nt_lc = Title::newFromText( $partname . '.' . strtolower( $ext ) );
469 $file_lc = wfLocalFile( $nt_lc );
470 } else {
471 $file_lc = false;
472 }
473
474 if( $file->exists() ) {
475 $dlink = $sk->makeKnownLinkObj( $file->getTitle() );
476 if ( $file->allowInlineDisplay() ) {
477 $dlink2 = $sk->makeImageLinkObj( $file->getTitle(), wfMsgExt( 'fileexists-thumb', 'parseinline', $dlink ),
478 $file->getName(), 'right', array(), false, true );
479 } elseif ( !$file->allowInlineDisplay() && $file->isSafeFile() ) {
480 $icon = $file->iconThumb();
481 $dlink2 = '<div style="float:right" id="mw-media-icon"><a href="' . $file->getURL() . '">' .
482 $icon->toHtml() . '</a><br />' . $dlink . '</div>';
483 } else {
484 $dlink2 = '';
485 }
486
487 $warning .= '<li>' . wfMsgExt( 'fileexists', 'parseline', $dlink ) . '</li>' . $dlink2;
488
489 } elseif ( $file_lc && $file_lc->exists() ) {
490 # Check if image with lowercase extension exists.
491 # It's not forbidden but in 99% it makes no sense to upload the same filename with uppercase extension
492 $dlink = $sk->makeKnownLinkObj( $nt_lc );
493 if ( $file_lc->allowInlineDisplay() ) {
494 $dlink2 = $sk->makeImageLinkObj( $nt_lc, wfMsgExt( 'fileexists-thumb', 'parseinline', $dlink ),
495 $nt_lc->getText(), 'right', array(), false, true );
496 } elseif ( !$file_lc->allowInlineDisplay() && $file_lc->isSafeFile() ) {
497 $icon = $file_lc->iconThumb();
498 $dlink2 = '<div style="float:right" id="mw-media-icon"><a href="' . $file_lc->getURL() . '">' .
499 $icon->toHtml() . '</a><br />' . $dlink . '</div>';
500 } else {
501 $dlink2 = '';
502 }
503
504 $warning .= '<li>' . wfMsgExt( 'fileexists-extension', 'parsemag' , $partname . '.'
505 . $ext , $dlink ) . '</li>' . $dlink2;
506
507 } elseif ( ( substr( $partname , 3, 3 ) == 'px-' || substr( $partname , 2, 3 ) == 'px-' )
508 && ereg( "[0-9]{2}" , substr( $partname , 0, 2) ) )
509 {
510 # Check for filenames like 50px- or 180px-, these are mostly thumbnails
511 $nt_thb = Title::newFromText( substr( $partname , strpos( $partname , '-' ) +1 ) . '.' . $ext );
512 $file_thb = wfLocalFile( $nt_thb );
513 if ($file_thb->exists() ) {
514 # Check if an image without leading '180px-' (or similiar) exists
515 $dlink = $sk->makeKnownLinkObj( $nt_thb);
516 if ( $file_thb->allowInlineDisplay() ) {
517 $dlink2 = $sk->makeImageLinkObj( $nt_thb,
518 wfMsgExt( 'fileexists-thumb', 'parseinline', $dlink ),
519 $nt_thb->getText(), 'right', array(), false, true );
520 } elseif ( !$file_thb->allowInlineDisplay() && $file_thb->isSafeFile() ) {
521 $icon = $file_thb->iconThumb();
522 $dlink2 = '<div style="float:right" id="mw-media-icon"><a href="' .
523 $file_thb->getURL() . '">' . $icon->toHtml() . '</a><br />' .
524 $dlink . '</div>';
525 } else {
526 $dlink2 = '';
527 }
528
529 $warning .= '<li>' . wfMsgExt( 'fileexists-thumbnail-yes', 'parsemag', $dlink ) .
530 '</li>' . $dlink2;
531 } else {
532 # Image w/o '180px-' does not exists, but we do not like these filenames
533 $warning .= '<li>' . wfMsgExt( 'file-thumbnail-no', 'parseinline' ,
534 substr( $partname , 0, strpos( $partname , '-' ) +1 ) ) . '</li>';
535 }
536 }
537 if ( $file->wasDeleted() ) {
538 # If the file existed before and was deleted, warn the user of this
539 # Don't bother doing so if the image exists now, however
540 $ltitle = SpecialPage::getTitleFor( 'Log' );
541 $llink = $sk->makeKnownLinkObj( $ltitle, wfMsgHtml( 'deletionlog' ),
542 'type=delete&page=' . $file->getTitle()->getPrefixedUrl() );
543 $warning .= '<li>' . wfMsgWikiHtml( 'filewasdeleted', $llink ) . '</li>';
544 }
545 return $warning;
546 }
547
548 static function ajaxGetExistsWarning( $filename ) {
549 $file = wfFindFile( $filename );
550 $s = '&nbsp;';
551 if ( $file ) {
552 $warning = self::getExistsWarning( $file );
553 if ( $warning !== '' ) {
554 $s = "<ul>$warning</ul>";
555 }
556 }
557 return $s;
558 }
559
560 /**
561 * Stash a file in a temporary directory for later processing
562 * after the user has confirmed it.
563 *
564 * If the user doesn't explicitly cancel or accept, these files
565 * can accumulate in the temp directory.
566 *
567 * @param string $saveName - the destination filename
568 * @param string $tempName - the source temporary file to save
569 * @return string - full path the stashed file, or false on failure
570 * @access private
571 */
572 function saveTempUploadedFile( $saveName, $tempName ) {
573 global $wgOut;
574 $repo = RepoGroup::singleton()->getLocalRepo();
575 $result = $repo->storeTemp( $saveName, $tempName );
576 if ( WikiError::isError( $result ) ) {
577 $this->showError( $result );
578 return false;
579 } else {
580 return $result;
581 }
582 }
583
584 /**
585 * Stash a file in a temporary directory for later processing,
586 * and save the necessary descriptive info into the session.
587 * Returns a key value which will be passed through a form
588 * to pick up the path info on a later invocation.
589 *
590 * @return int
591 * @access private
592 */
593 function stashSession() {
594 $stash = $this->saveTempUploadedFile( $this->mDestName, $this->mTempPath );
595
596 if( !$stash ) {
597 # Couldn't save the file.
598 return false;
599 }
600
601 $key = mt_rand( 0, 0x7fffffff );
602 $_SESSION['wsUploadData'][$key] = array(
603 'mTempPath' => $stash,
604 'mFileSize' => $this->mFileSize,
605 'mSrcName' => $this->mSrcName,
606 'mFileProps' => $this->mFileProps,
607 'version' => self::SESSION_VERSION,
608 );
609 return $key;
610 }
611
612 /**
613 * Remove a temporarily kept file stashed by saveTempUploadedFile().
614 * @access private
615 * @return success
616 */
617 function unsaveUploadedFile() {
618 global $wgOut;
619 $repo = RepoGroup::singleton()->getLocalRepo();
620 $success = $repo->freeTemp( $this->mTempPath );
621 if ( ! $success ) {
622 $wgOut->showFileDeleteError( $this->mTempPath );
623 return false;
624 } else {
625 return true;
626 }
627 }
628
629 /* -------------------------------------------------------------- */
630
631 /**
632 * @param string $error as HTML
633 * @access private
634 */
635 function uploadError( $error ) {
636 global $wgOut;
637 $wgOut->addHTML( "<h2>" . wfMsgHtml( 'uploadwarning' ) . "</h2>\n" );
638 $wgOut->addHTML( "<span class='error'>{$error}</span>\n" );
639 }
640
641 /**
642 * There's something wrong with this file, not enough to reject it
643 * totally but we require manual intervention to save it for real.
644 * Stash it away, then present a form asking to confirm or cancel.
645 *
646 * @param string $warning as HTML
647 * @access private
648 */
649 function uploadWarning( $warning ) {
650 global $wgOut;
651 global $wgUseCopyrightUpload;
652
653 $this->mSessionKey = $this->stashSession();
654 if( !$this->mSessionKey ) {
655 # Couldn't save file; an error has been displayed so let's go.
656 return;
657 }
658
659 $wgOut->addHTML( "<h2>" . wfMsgHtml( 'uploadwarning' ) . "</h2>\n" );
660 $wgOut->addHTML( "<ul class='warning'>{$warning}</ul><br />\n" );
661
662 $save = wfMsgHtml( 'savefile' );
663 $reupload = wfMsgHtml( 'reupload' );
664 $iw = wfMsgWikiHtml( 'ignorewarning' );
665 $reup = wfMsgWikiHtml( 'reuploaddesc' );
666 $titleObj = SpecialPage::getTitleFor( 'Upload' );
667 $action = $titleObj->escapeLocalURL( 'action=submit' );
668
669 if ( $wgUseCopyrightUpload )
670 {
671 $copyright = "
672 <input type='hidden' name='wpUploadCopyStatus' value=\"" . htmlspecialchars( $this->mCopyrightStatus ) . "\" />
673 <input type='hidden' name='wpUploadSource' value=\"" . htmlspecialchars( $this->mCopyrightSource ) . "\" />
674 ";
675 } else {
676 $copyright = "";
677 }
678
679 $wgOut->addHTML( "
680 <form id='uploadwarning' method='post' enctype='multipart/form-data' action='$action'>
681 <input type='hidden' name='wpIgnoreWarning' value='1' />
682 <input type='hidden' name='wpSessionKey' value=\"" . htmlspecialchars( $this->mSessionKey ) . "\" />
683 <input type='hidden' name='wpUploadDescription' value=\"" . htmlspecialchars( $this->mComment ) . "\" />
684 <input type='hidden' name='wpLicense' value=\"" . htmlspecialchars( $this->mLicense ) . "\" />
685 <input type='hidden' name='wpDestFile' value=\"" . htmlspecialchars( $this->mDesiredDestName ) . "\" />
686 <input type='hidden' name='wpWatchthis' value=\"" . htmlspecialchars( intval( $this->mWatchthis ) ) . "\" />
687 {$copyright}
688 <table border='0'>
689 <tr>
690 <tr>
691 <td align='right'>
692 <input tabindex='2' type='submit' name='wpUpload' value=\"$save\" />
693 </td>
694 <td align='left'>$iw</td>
695 </tr>
696 <tr>
697 <td align='right'>
698 <input tabindex='2' type='submit' name='wpReUpload' value=\"{$reupload}\" />
699 </td>
700 <td align='left'>$reup</td>
701 </tr>
702 </tr>
703 </table></form>\n" );
704 }
705
706 /**
707 * Displays the main upload form, optionally with a highlighted
708 * error message up at the top.
709 *
710 * @param string $msg as HTML
711 * @access private
712 */
713 function mainUploadForm( $msg='' ) {
714 global $wgOut, $wgUser;
715 global $wgUseCopyrightUpload, $wgAjaxUploadDestCheck;
716 global $wgRequest, $wgAllowCopyUploads, $wgEnableAPI;
717 global $wgStylePath;
718
719 $wgOut->addScript(
720 "<script type='text/javascript'>wgAjaxUploadDestCheck = " .
721 ($wgAjaxUploadDestCheck ? 'true' : 'false' ) . ";</script>\n" .
722 "<script type='text/javascript' src=\"$wgStylePath/common/upload.js?1\"></script>\n"
723 );
724
725 if( !wfRunHooks( 'UploadForm:initial', array( &$this ) ) )
726 {
727 wfDebug( "Hook 'UploadForm:initial' broke output of the upload form" );
728 return false;
729 }
730
731 $cols = intval($wgUser->getOption( 'cols' ));
732 $ew = $wgUser->getOption( 'editwidth' );
733 if ( $ew ) $ew = " style=\"width:100%\"";
734 else $ew = '';
735
736 if ( '' != $msg ) {
737 $sub = wfMsgHtml( 'uploaderror' );
738 $wgOut->addHTML( "<h2>{$sub}</h2>\n" .
739 "<span class='error'>{$msg}</span>\n" );
740 }
741 $wgOut->addHTML( '<div id="uploadtext">' );
742 $wgOut->addWikiText( wfMsgNoTrans( 'uploadtext', $this->mDesiredDestName ) );
743 $wgOut->addHTML( '</div>' );
744
745 $sourcefilename = wfMsgHtml( 'sourcefilename' );
746 $destfilename = wfMsgHtml( 'destfilename' );
747 $summary = wfMsgWikiHtml( 'fileuploadsummary' );
748
749 $licenses = new Licenses();
750 $license = wfMsgExt( 'license', array( 'parseinline' ) );
751 $nolicense = wfMsgHtml( 'nolicense' );
752 $licenseshtml = $licenses->getHtml();
753
754 $ulb = wfMsgHtml( 'uploadbtn' );
755
756
757 $titleObj = SpecialPage::getTitleFor( 'Upload' );
758 $action = $titleObj->escapeLocalURL();
759
760 $encDestName = htmlspecialchars( $this->mDesiredDestName );
761
762 $watchChecked =
763 ( $wgUser->getOption( 'watchdefault' ) ||
764 ( $wgUser->getOption( 'watchcreations' ) && $this->mDesiredDestName == '' ) )
765 ? 'checked="checked"'
766 : '';
767 $warningChecked = $this->mIgnoreWarning ? 'checked' : '';
768
769 // Prepare form for upload or upload/copy
770 if( $wgAllowCopyUploads && $wgUser->isAllowed( 'upload_by_url' ) ) {
771 $filename_form =
772 "<input type='radio' id='wpSourceTypeFile' name='wpSourceType' value='file' " .
773 "onchange='toggle_element_activation(\"wpUploadFileURL\",\"wpUploadFile\")' checked />" .
774 "<input tabindex='1' type='file' name='wpUploadFile' id='wpUploadFile' " .
775 "onfocus='" .
776 "toggle_element_activation(\"wpUploadFileURL\",\"wpUploadFile\");" .
777 "toggle_element_check(\"wpSourceTypeFile\",\"wpSourceTypeURL\")'" .
778 ($this->mDesiredDestName?"":"onchange='fillDestFilename(\"wpUploadFile\")' ") . "size='40' />" .
779 wfMsgHTML( 'upload_source_file' ) . "<br/>" .
780 "<input type='radio' id='wpSourceTypeURL' name='wpSourceType' value='web' " .
781 "onchange='toggle_element_activation(\"wpUploadFile\",\"wpUploadFileURL\")' />" .
782 "<input tabindex='1' type='text' name='wpUploadFileURL' id='wpUploadFileURL' " .
783 "onfocus='" .
784 "toggle_element_activation(\"wpUploadFile\",\"wpUploadFileURL\");" .
785 "toggle_element_check(\"wpSourceTypeURL\",\"wpSourceTypeFile\")'" .
786 ($this->mDesiredDestName?"":"onchange='fillDestFilename(\"wpUploadFileURL\")' ") . "size='40' DISABLED />" .
787 wfMsgHtml( 'upload_source_url' ) ;
788 } else {
789 $filename_form =
790 "<input tabindex='1' type='file' name='wpUploadFile' id='wpUploadFile' " .
791 ($this->mDesiredDestName?"":"onchange='fillDestFilename(\"wpUploadFile\")' ") .
792 "size='40' />" .
793 "<input type='hidden' name='wpSourceType' value='file' />" ;
794 }
795 if ( $wgAjaxUploadDestCheck ) {
796 $warningRow = "<tr><td colspan='2' id='wpDestFile-warning'>&nbsp</td></tr>";
797 $destOnkeyup = 'onkeyup="wgUploadWarningObj.keypress();"';
798 } else {
799 $warningRow = '';
800 $destOnkeyup = '';
801 }
802
803 $encComment = htmlspecialchars( $this->mComment );
804
805 $wgOut->addHTML( <<<EOT
806 <form id='upload' method='post' enctype='multipart/form-data' action="$action">
807 <table border='0'>
808 <tr>
809 {$this->uploadFormTextTop}
810 <td align='right' valign='top'><label for='wpUploadFile'>{$sourcefilename}:</label></td>
811 <td align='left'>
812 {$filename_form}
813 </td>
814 </tr>
815 <tr>
816 <td align='right'><label for='wpDestFile'>{$destfilename}:</label></td>
817 <td align='left'>
818 <input tabindex='2' type='text' name='wpDestFile' id='wpDestFile' size='40'
819 value="$encDestName" $destOnkeyup />
820 </td>
821 </tr>
822 <tr>
823 <td align='right'><label for='wpUploadDescription'>{$summary}</label></td>
824 <td align='left'>
825 <textarea tabindex='3' name='wpUploadDescription' id='wpUploadDescription' rows='6'
826 cols='{$cols}'{$ew}>$encComment</textarea>
827 {$this->uploadFormTextAfterSummary}
828 </td>
829 </tr>
830 <tr>
831 EOT
832 );
833
834 if ( $licenseshtml != '' ) {
835 global $wgStylePath;
836 $wgOut->addHTML( "
837 <td align='right'><label for='wpLicense'>$license:</label></td>
838 <td align='left'>
839 <select name='wpLicense' id='wpLicense' tabindex='4'
840 onchange='licenseSelectorCheck()'>
841 <option value=''>$nolicense</option>
842 $licenseshtml
843 </select>
844 </td>
845 </tr>
846 <tr>
847 ");
848 }
849
850 if ( $wgUseCopyrightUpload ) {
851 $filestatus = wfMsgHtml ( 'filestatus' );
852 $copystatus = htmlspecialchars( $this->mCopyrightStatus );
853 $filesource = wfMsgHtml ( 'filesource' );
854 $uploadsource = htmlspecialchars( $this->mCopyrightSource );
855
856 $wgOut->addHTML( "
857 <td align='right' nowrap='nowrap'><label for='wpUploadCopyStatus'>$filestatus:</label></td>
858 <td><input tabindex='5' type='text' name='wpUploadCopyStatus' id='wpUploadCopyStatus'
859 value=\"$copystatus\" size='40' /></td>
860 </tr>
861 <tr>
862 <td align='right'><label for='wpUploadCopyStatus'>$filesource:</label></td>
863 <td><input tabindex='6' type='text' name='wpUploadSource' id='wpUploadCopyStatus'
864 value=\"$uploadsource\" size='40' /></td>
865 </tr>
866 <tr>
867 ");
868 }
869
870 $wgOut->addHtml( "
871 <td></td>
872 <td>
873 <input tabindex='7' type='checkbox' name='wpWatchthis' id='wpWatchthis' $watchChecked value='true' />
874 <label for='wpWatchthis'>" . wfMsgHtml( 'watchthisupload' ) . "</label>
875 <input tabindex='8' type='checkbox' name='wpIgnoreWarning' id='wpIgnoreWarning' value='true' $warningChecked/>
876 <label for='wpIgnoreWarning'>" . wfMsgHtml( 'ignorewarnings' ) . "</label>
877 </td>
878 </tr>
879 $warningRow
880 <tr>
881 <td></td>
882 <td align='left'><input tabindex='9' type='submit' name='wpUpload' value=\"{$ulb}\" /></td>
883 </tr>
884 <tr>
885 <td></td>
886 <td align='left'>
887 " );
888 $wgOut->addWikiText( wfMsgForContent( 'edittools' ) );
889 $wgOut->addHTML( "
890 </td>
891 </tr>
892
893 </table>
894 <input type='hidden' name='wpDestFileWarningAck' id='wpDestFileWarningAck' value=''/>
895 </form>" );
896 }
897
898 /* -------------------------------------------------------------- */
899
900 /**
901 * Split a file into a base name and all dot-delimited 'extensions'
902 * on the end. Some web server configurations will fall back to
903 * earlier pseudo-'extensions' to determine type and execute
904 * scripts, so the blacklist needs to check them all.
905 *
906 * @return array
907 */
908 function splitExtensions( $filename ) {
909 $bits = explode( '.', $filename );
910 $basename = array_shift( $bits );
911 return array( $basename, $bits );
912 }
913
914 /**
915 * Perform case-insensitive match against a list of file extensions.
916 * Returns true if the extension is in the list.
917 *
918 * @param string $ext
919 * @param array $list
920 * @return bool
921 */
922 function checkFileExtension( $ext, $list ) {
923 return in_array( strtolower( $ext ), $list );
924 }
925
926 /**
927 * Perform case-insensitive match against a list of file extensions.
928 * Returns true if any of the extensions are in the list.
929 *
930 * @param array $ext
931 * @param array $list
932 * @return bool
933 */
934 function checkFileExtensionList( $ext, $list ) {
935 foreach( $ext as $e ) {
936 if( in_array( strtolower( $e ), $list ) ) {
937 return true;
938 }
939 }
940 return false;
941 }
942
943 /**
944 * Verifies that it's ok to include the uploaded file
945 *
946 * @param string $tmpfile the full path of the temporary file to verify
947 * @param string $extension The filename extension that the file is to be served with
948 * @return mixed true of the file is verified, a WikiError object otherwise.
949 */
950 function verify( $tmpfile, $extension ) {
951 #magically determine mime type
952 $magic=& MimeMagic::singleton();
953 $mime= $magic->guessMimeType($tmpfile,false);
954
955 #check mime type, if desired
956 global $wgVerifyMimeType;
957 if ($wgVerifyMimeType) {
958
959 #check mime type against file extension
960 if( !$this->verifyExtension( $mime, $extension ) ) {
961 return new WikiErrorMsg( 'uploadcorrupt' );
962 }
963
964 #check mime type blacklist
965 global $wgMimeTypeBlacklist;
966 if( isset($wgMimeTypeBlacklist) && !is_null($wgMimeTypeBlacklist)
967 && $this->checkFileExtension( $mime, $wgMimeTypeBlacklist ) ) {
968 return new WikiErrorMsg( 'filetype-badmime', htmlspecialchars( $mime ) );
969 }
970 }
971
972 #check for htmlish code and javascript
973 if( $this->detectScript ( $tmpfile, $mime, $extension ) ) {
974 return new WikiErrorMsg( 'uploadscripted' );
975 }
976
977 /**
978 * Scan the uploaded file for viruses
979 */
980 $virus= $this->detectVirus($tmpfile);
981 if ( $virus ) {
982 return new WikiErrorMsg( 'uploadvirus', htmlspecialchars($virus) );
983 }
984
985 wfDebug( __METHOD__.": all clear; passing.\n" );
986 return true;
987 }
988
989 /**
990 * Checks if the mime type of the uploaded file matches the file extension.
991 *
992 * @param string $mime the mime type of the uploaded file
993 * @param string $extension The filename extension that the file is to be served with
994 * @return bool
995 */
996 function verifyExtension( $mime, $extension ) {
997 $magic =& MimeMagic::singleton();
998
999 if ( ! $mime || $mime == 'unknown' || $mime == 'unknown/unknown' )
1000 if ( ! $magic->isRecognizableExtension( $extension ) ) {
1001 wfDebug( __METHOD__.": passing file with unknown detected mime type; " .
1002 "unrecognized extension '$extension', can't verify\n" );
1003 return true;
1004 } else {
1005 wfDebug( __METHOD__.": rejecting file with unknown detected mime type; ".
1006 "recognized extension '$extension', so probably invalid file\n" );
1007 return false;
1008 }
1009
1010 $match= $magic->isMatchingExtension($extension,$mime);
1011
1012 if ($match===NULL) {
1013 wfDebug( __METHOD__.": no file extension known for mime type $mime, passing file\n" );
1014 return true;
1015 } elseif ($match===true) {
1016 wfDebug( __METHOD__.": mime type $mime matches extension $extension, passing file\n" );
1017
1018 #TODO: if it's a bitmap, make sure PHP or ImageMagic resp. can handle it!
1019 return true;
1020
1021 } else {
1022 wfDebug( __METHOD__.": mime type $mime mismatches file extension $extension, rejecting file\n" );
1023 return false;
1024 }
1025 }
1026
1027 /**
1028 * Heuristic for detecting files that *could* contain JavaScript instructions or
1029 * things that may look like HTML to a browser and are thus
1030 * potentially harmful. The present implementation will produce false positives in some situations.
1031 *
1032 * @param string $file Pathname to the temporary upload file
1033 * @param string $mime The mime type of the file
1034 * @param string $extension The extension of the file
1035 * @return bool true if the file contains something looking like embedded scripts
1036 */
1037 function detectScript($file, $mime, $extension) {
1038 global $wgAllowTitlesInSVG;
1039
1040 #ugly hack: for text files, always look at the entire file.
1041 #For binarie field, just check the first K.
1042
1043 if (strpos($mime,'text/')===0) $chunk = file_get_contents( $file );
1044 else {
1045 $fp = fopen( $file, 'rb' );
1046 $chunk = fread( $fp, 1024 );
1047 fclose( $fp );
1048 }
1049
1050 $chunk= strtolower( $chunk );
1051
1052 if (!$chunk) return false;
1053
1054 #decode from UTF-16 if needed (could be used for obfuscation).
1055 if (substr($chunk,0,2)=="\xfe\xff") $enc= "UTF-16BE";
1056 elseif (substr($chunk,0,2)=="\xff\xfe") $enc= "UTF-16LE";
1057 else $enc= NULL;
1058
1059 if ($enc) $chunk= iconv($enc,"ASCII//IGNORE",$chunk);
1060
1061 $chunk= trim($chunk);
1062
1063 #FIXME: convert from UTF-16 if necessarry!
1064
1065 wfDebug("SpecialUpload::detectScript: checking for embedded scripts and HTML stuff\n");
1066
1067 #check for HTML doctype
1068 if (eregi("<!DOCTYPE *X?HTML",$chunk)) return true;
1069
1070 /**
1071 * Internet Explorer for Windows performs some really stupid file type
1072 * autodetection which can cause it to interpret valid image files as HTML
1073 * and potentially execute JavaScript, creating a cross-site scripting
1074 * attack vectors.
1075 *
1076 * Apple's Safari browser also performs some unsafe file type autodetection
1077 * which can cause legitimate files to be interpreted as HTML if the
1078 * web server is not correctly configured to send the right content-type
1079 * (or if you're really uploading plain text and octet streams!)
1080 *
1081 * Returns true if IE is likely to mistake the given file for HTML.
1082 * Also returns true if Safari would mistake the given file for HTML
1083 * when served with a generic content-type.
1084 */
1085
1086 $tags = array(
1087 '<body',
1088 '<head',
1089 '<html', #also in safari
1090 '<img',
1091 '<pre',
1092 '<script', #also in safari
1093 '<table'
1094 );
1095 if( ! $wgAllowTitlesInSVG && $extension !== 'svg' && $mime !== 'image/svg' ) {
1096 $tags[] = '<title';
1097 }
1098
1099 foreach( $tags as $tag ) {
1100 if( false !== strpos( $chunk, $tag ) ) {
1101 return true;
1102 }
1103 }
1104
1105 /*
1106 * look for javascript
1107 */
1108
1109 #resolve entity-refs to look at attributes. may be harsh on big files... cache result?
1110 $chunk = Sanitizer::decodeCharReferences( $chunk );
1111
1112 #look for script-types
1113 if (preg_match('!type\s*=\s*[\'"]?\s*(?:\w*/)?(?:ecma|java)!sim',$chunk)) return true;
1114
1115 #look for html-style script-urls
1116 if (preg_match('!(?:href|src|data)\s*=\s*[\'"]?\s*(?:ecma|java)script:!sim',$chunk)) return true;
1117
1118 #look for css-style script-urls
1119 if (preg_match('!url\s*\(\s*[\'"]?\s*(?:ecma|java)script:!sim',$chunk)) return true;
1120
1121 wfDebug("SpecialUpload::detectScript: no scripts found\n");
1122 return false;
1123 }
1124
1125 /**
1126 * Generic wrapper function for a virus scanner program.
1127 * This relies on the $wgAntivirus and $wgAntivirusSetup variables.
1128 * $wgAntivirusRequired may be used to deny upload if the scan fails.
1129 *
1130 * @param string $file Pathname to the temporary upload file
1131 * @return mixed false if not virus is found, NULL if the scan fails or is disabled,
1132 * or a string containing feedback from the virus scanner if a virus was found.
1133 * If textual feedback is missing but a virus was found, this function returns true.
1134 */
1135 function detectVirus($file) {
1136 global $wgAntivirus, $wgAntivirusSetup, $wgAntivirusRequired, $wgOut;
1137
1138 if ( !$wgAntivirus ) {
1139 wfDebug( __METHOD__.": virus scanner disabled\n");
1140 return NULL;
1141 }
1142
1143 if ( !$wgAntivirusSetup[$wgAntivirus] ) {
1144 wfDebug( __METHOD__.": unknown virus scanner: $wgAntivirus\n" );
1145 # @TODO: localise
1146 $wgOut->addHTML( "<div class='error'>Bad configuration: unknown virus scanner: <i>$wgAntivirus</i></div>\n" );
1147 return "unknown antivirus: $wgAntivirus";
1148 }
1149
1150 # look up scanner configuration
1151 $command = $wgAntivirusSetup[$wgAntivirus]["command"];
1152 $exitCodeMap = $wgAntivirusSetup[$wgAntivirus]["codemap"];
1153 $msgPattern = isset( $wgAntivirusSetup[$wgAntivirus]["messagepattern"] ) ?
1154 $wgAntivirusSetup[$wgAntivirus]["messagepattern"] : null;
1155
1156 if ( strpos( $command,"%f" ) === false ) {
1157 # simple pattern: append file to scan
1158 $command .= " " . wfEscapeShellArg( $file );
1159 } else {
1160 # complex pattern: replace "%f" with file to scan
1161 $command = str_replace( "%f", wfEscapeShellArg( $file ), $command );
1162 }
1163
1164 wfDebug( __METHOD__.": running virus scan: $command \n" );
1165
1166 # execute virus scanner
1167 $exitCode = false;
1168
1169 #NOTE: there's a 50 line workaround to make stderr redirection work on windows, too.
1170 # that does not seem to be worth the pain.
1171 # Ask me (Duesentrieb) about it if it's ever needed.
1172 $output = array();
1173 if ( wfIsWindows() ) {
1174 exec( "$command", $output, $exitCode );
1175 } else {
1176 exec( "$command 2>&1", $output, $exitCode );
1177 }
1178
1179 # map exit code to AV_xxx constants.
1180 $mappedCode = $exitCode;
1181 if ( $exitCodeMap ) {
1182 if ( isset( $exitCodeMap[$exitCode] ) ) {
1183 $mappedCode = $exitCodeMap[$exitCode];
1184 } elseif ( isset( $exitCodeMap["*"] ) ) {
1185 $mappedCode = $exitCodeMap["*"];
1186 }
1187 }
1188
1189 if ( $mappedCode === AV_SCAN_FAILED ) {
1190 # scan failed (code was mapped to false by $exitCodeMap)
1191 wfDebug( __METHOD__.": failed to scan $file (code $exitCode).\n" );
1192
1193 if ( $wgAntivirusRequired ) {
1194 return "scan failed (code $exitCode)";
1195 } else {
1196 return NULL;
1197 }
1198 } else if ( $mappedCode === AV_SCAN_ABORTED ) {
1199 # scan failed because filetype is unknown (probably imune)
1200 wfDebug( __METHOD__.": unsupported file type $file (code $exitCode).\n" );
1201 return NULL;
1202 } else if ( $mappedCode === AV_NO_VIRUS ) {
1203 # no virus found
1204 wfDebug( __METHOD__.": file passed virus scan.\n" );
1205 return false;
1206 } else {
1207 $output = join( "\n", $output );
1208 $output = trim( $output );
1209
1210 if ( !$output ) {
1211 $output = true; #if there's no output, return true
1212 } elseif ( $msgPattern ) {
1213 $groups = array();
1214 if ( preg_match( $msgPattern, $output, $groups ) ) {
1215 if ( $groups[1] ) {
1216 $output = $groups[1];
1217 }
1218 }
1219 }
1220
1221 wfDebug( __METHOD__.": FOUND VIRUS! scanner feedback: $output" );
1222 return $output;
1223 }
1224 }
1225
1226 /**
1227 * Check if the temporary file is MacBinary-encoded, as some uploads
1228 * from Internet Explorer on Mac OS Classic and Mac OS X will be.
1229 * If so, the data fork will be extracted to a second temporary file,
1230 * which will then be checked for validity and either kept or discarded.
1231 *
1232 * @access private
1233 */
1234 function checkMacBinary() {
1235 $macbin = new MacBinary( $this->mTempPath );
1236 if( $macbin->isValid() ) {
1237 $dataFile = tempnam( wfTempDir(), "WikiMacBinary" );
1238 $dataHandle = fopen( $dataFile, 'wb' );
1239
1240 wfDebug( "SpecialUpload::checkMacBinary: Extracting MacBinary data fork to $dataFile\n" );
1241 $macbin->extractData( $dataHandle );
1242
1243 $this->mTempPath = $dataFile;
1244 $this->mFileSize = $macbin->dataForkLength();
1245
1246 // We'll have to manually remove the new file if it's not kept.
1247 $this->mRemoveTempFile = true;
1248 }
1249 $macbin->close();
1250 }
1251
1252 /**
1253 * If we've modified the upload file we need to manually remove it
1254 * on exit to clean up.
1255 * @access private
1256 */
1257 function cleanupTempFile() {
1258 if ( $this->mRemoveTempFile && file_exists( $this->mTempPath ) ) {
1259 wfDebug( "SpecialUpload::cleanupTempFile: Removing temporary file {$this->mTempPath}\n" );
1260 unlink( $this->mTempPath );
1261 }
1262 }
1263
1264 /**
1265 * Check if there's an overwrite conflict and, if so, if restrictions
1266 * forbid this user from performing the upload.
1267 *
1268 * @return mixed true on success, WikiError on failure
1269 * @access private
1270 */
1271 function checkOverwrite( $name ) {
1272 $img = wfFindFile( $name );
1273
1274 $error = '';
1275 if( $img ) {
1276 global $wgUser, $wgOut;
1277 if( $img->isLocal() ) {
1278 if( !self::userCanReUpload( $wgUser, $img->name ) ) {
1279 $error = 'fileexists-forbidden';
1280 }
1281 } else {
1282 if( !$wgUser->isAllowed( 'reupload' ) ||
1283 !$wgUser->isAllowed( 'reupload-shared' ) ) {
1284 $error = "fileexists-shared-forbidden";
1285 }
1286 }
1287 }
1288
1289 if( $error ) {
1290 $errorText = wfMsg( $error, wfEscapeWikiText( $img->getName() ) );
1291 return new WikiError( $wgOut->parse( $errorText ) );
1292 }
1293
1294 // Rockin', go ahead and upload
1295 return true;
1296 }
1297
1298 /**
1299 * Check if a user is the last uploader
1300 *
1301 * @param User $user
1302 * @param string $img, image name
1303 * @return bool
1304 */
1305 public static function userCanReUpload( User $user, $img ) {
1306 if( $user->isAllowed( 'reupload' ) )
1307 return true; // non-conditional
1308 if( !$user->isAllowed( 'reupload-own' ) )
1309 return false;
1310
1311 $dbr = wfGetDB( DB_SLAVE );
1312 $row = $dbr->selectRow('image',
1313 /* SELECT */ 'img_user',
1314 /* WHERE */ array( 'img_name' => $img )
1315 );
1316 if ( !$row )
1317 return false;
1318
1319 return $user->getID() == $row->img_user;
1320 }
1321
1322 /**
1323 * Display an error from a wikitext-formatted WikiError object
1324 */
1325 function showError( WikiError $error ) {
1326 global $wgOut;
1327 $wgOut->setPageTitle( wfMsg( "internalerror" ) );
1328 $wgOut->setRobotpolicy( "noindex,nofollow" );
1329 $wgOut->setArticleRelated( false );
1330 $wgOut->enableClientCache( false );
1331 $wgOut->addWikiText( $error->getMessage() );
1332 }
1333
1334 /**
1335 * Get the initial image page text based on a comment and optional file status information
1336 */
1337 static function getInitialPageText( $comment, $license, $copyStatus, $source ) {
1338 global $wgUseCopyrightUpload;
1339 if ( $wgUseCopyrightUpload ) {
1340 if ( $license != '' ) {
1341 $licensetxt = '== ' . wfMsgForContent( 'license' ) . " ==\n" . '{{' . $license . '}}' . "\n";
1342 }
1343 $pageText = '== ' . wfMsg ( 'filedesc' ) . " ==\n" . $comment . "\n" .
1344 '== ' . wfMsgForContent ( 'filestatus' ) . " ==\n" . $copyStatus . "\n" .
1345 "$licensetxt" .
1346 '== ' . wfMsgForContent ( 'filesource' ) . " ==\n" . $source ;
1347 } else {
1348 if ( $license != '' ) {
1349 $filedesc = $comment == '' ? '' : '== ' . wfMsg ( 'filedesc' ) . " ==\n" . $comment . "\n";
1350 $pageText = $filedesc .
1351 '== ' . wfMsgForContent ( 'license' ) . " ==\n" . '{{' . $license . '}}' . "\n";
1352 } else {
1353 $pageText = $comment;
1354 }
1355 }
1356 return $pageText;
1357 }
1358 }
1359