diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2009-06-10 13:00:47 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2009-06-10 13:00:47 +0200 |
commit | 72e90545454c0e014318fa3c81658e035aac58c1 (patch) | |
tree | 9212e3f46868989c4d57ae9a5c8a1a80e4dc0702 /includes/UploadFromUrl.php | |
parent | 565a0ccc371ec1a2a0e9b39487cbac18e6f60e25 (diff) |
applying patch to version 1.15.0
Diffstat (limited to 'includes/UploadFromUrl.php')
-rw-r--r-- | includes/UploadFromUrl.php | 92 |
1 files changed, 0 insertions, 92 deletions
diff --git a/includes/UploadFromUrl.php b/includes/UploadFromUrl.php deleted file mode 100644 index 7e23b8cd..00000000 --- a/includes/UploadFromUrl.php +++ /dev/null @@ -1,92 +0,0 @@ -<?php - - -class UploadFromUrl extends UploadBase { - static function isAllowed( $user ) { - if( !$user->isAllowed( 'upload_by_url' ) ) - return 'upload_by_url'; - return parent::isAllowed( $user ); - } - static function isEnabled() { - global $wgAllowCopyUploads; - return $wgAllowCopyUploads && parent::isEnabled(); - } - - function initialize( $name, $url ) { - global $wgTmpDirectory; - $local_file = tempnam( $wgTmpDirectory, 'WEBUPLOAD' ); - $this-initialize( $name, $local_file, 0, true ); - - $this->mUrl = trim( $url ); - } - - /** - * Do the real fetching stuff - */ - function fetchFile() { - if( stripos($this->mUrl, 'http://') !== 0 && stripos($this->mUrl, 'ftp://') !== 0 ) { - return array( - 'status' => self::BEFORE_PROCESSING, - 'error' => 'upload-proto-error', - ); - } - $res = $this->curlCopy(); - if( $res !== true ) { - return array( - 'status' => self::BEFORE_PROCESSING, - 'error' => $res, - ); - } - return self::OK; - } - - /** - * Safe copy from URL - * Returns true if there was an error, false otherwise - */ - private function curlCopy() { - global $wgUser, $wgOut; - - # Open temporary file - $this->mCurlDestHandle = @fopen( $this->mTempPath, "wb" ); - if( $this->mCurlDestHandle === false ) { - # Could not open temporary file to write in - return 'upload-file-error'; - } - - $ch = curl_init(); - curl_setopt( $ch, CURLOPT_HTTP_VERSION, 1.0); # Probably not needed, but apparently can work around some bug - curl_setopt( $ch, CURLOPT_TIMEOUT, 10); # 10 seconds timeout - curl_setopt( $ch, CURLOPT_LOW_SPEED_LIMIT, 512); # 0.5KB per second minimum transfer speed - curl_setopt( $ch, CURLOPT_URL, $this->mUrl); - curl_setopt( $ch, CURLOPT_WRITEFUNCTION, array( $this, 'uploadCurlCallback' ) ); - curl_exec( $ch ); - $error = curl_errno( $ch ); - curl_close( $ch ); - - fclose( $this->mCurlDestHandle ); - unset( $this->mCurlDestHandle ); - - if( $error ) - return "upload-curl-error$errornum"; - - return true; - } - - /** - * Callback function for CURL-based web transfer - * Write data to file unless we've passed the length limit; - * if so, abort immediately. - * @access private - */ - function uploadCurlCallback( $ch, $data ) { - global $wgMaxUploadSize; - $length = strlen( $data ); - $this->mFileSize += $length; - if( $this->mFileSize > $wgMaxUploadSize ) { - return 0; - } - fwrite( $this->mCurlDestHandle, $data ); - return $length; - } -} |