Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / upload / UploadFromUrl.php
blobfc59ace541917b2b506c22dd67072a76407b4831
1 <?php
2 /**
3 * Backend for uploading files from a HTTP resource.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
21 * @ingroup Upload
24 /**
25 * Implements uploading from a HTTP resource.
27 * @ingroup Upload
28 * @author Bryan Tong Minh
29 * @author Michael Dale
31 class UploadFromUrl extends UploadBase {
32 protected $mAsync, $mUrl;
33 protected $mIgnoreWarnings = true;
35 protected $mTempPath, $mTmpHandle;
37 protected static $allowedUrls = array();
39 /**
40 * Checks if the user is allowed to use the upload-by-URL feature. If the
41 * user is not allowed, return the name of the user right as a string. If
42 * the user is allowed, have the parent do further permissions checking.
44 * @param User $user
46 * @return bool|string
48 public static function isAllowed( $user ) {
49 if ( !$user->isAllowed( 'upload_by_url' ) ) {
50 return 'upload_by_url';
53 return parent::isAllowed( $user );
56 /**
57 * Checks if the upload from URL feature is enabled
58 * @return bool
60 public static function isEnabled() {
61 global $wgAllowCopyUploads;
63 return $wgAllowCopyUploads && parent::isEnabled();
66 /**
67 * Checks whether the URL is for an allowed host
68 * The domains in the whitelist can include wildcard characters (*) in place
69 * of any of the domain levels, e.g. '*.flickr.com' or 'upload.*.gov.uk'.
71 * @param string $url
72 * @return bool
74 public static function isAllowedHost( $url ) {
75 global $wgCopyUploadsDomains;
76 if ( !count( $wgCopyUploadsDomains ) ) {
77 return true;
79 $parsedUrl = wfParseUrl( $url );
80 if ( !$parsedUrl ) {
81 return false;
83 $valid = false;
84 foreach ( $wgCopyUploadsDomains as $domain ) {
85 // See if the domain for the upload matches this whitelisted domain
86 $whitelistedDomainPieces = explode( '.', $domain );
87 $uploadDomainPieces = explode( '.', $parsedUrl['host'] );
88 if ( count( $whitelistedDomainPieces ) === count( $uploadDomainPieces ) ) {
89 $valid = true;
90 // See if all the pieces match or not (excluding wildcards)
91 foreach ( $whitelistedDomainPieces as $index => $piece ) {
92 if ( $piece !== '*' && $piece !== $uploadDomainPieces[$index] ) {
93 $valid = false;
96 if ( $valid ) {
97 // We found a match, so quit comparing against the list
98 break;
101 /* Non-wildcard test
102 if ( $parsedUrl['host'] === $domain ) {
103 $valid = true;
104 break;
109 return $valid;
113 * Checks whether the URL is not allowed.
115 * @param string $url
116 * @return bool
118 public static function isAllowedUrl( $url ) {
119 if ( !isset( self::$allowedUrls[$url] ) ) {
120 $allowed = true;
121 Hooks::run( 'IsUploadAllowedFromUrl', array( $url, &$allowed ) );
122 self::$allowedUrls[$url] = $allowed;
125 return self::$allowedUrls[$url];
129 * Entry point for API upload
131 * @param string $name
132 * @param string $url
133 * @param bool|string $async Whether the download should be performed
134 * asynchronous. False for synchronous, async or async-leavemessage for
135 * asynchronous download.
136 * @throws MWException
138 public function initialize( $name, $url, $async = false ) {
139 global $wgAllowAsyncCopyUploads;
141 $this->mUrl = $url;
142 $this->mAsync = $wgAllowAsyncCopyUploads ? $async : false;
143 if ( $async ) {
144 throw new MWException( 'Asynchronous copy uploads are no longer possible as of r81612.' );
147 $tempPath = $this->mAsync ? null : $this->makeTemporaryFile();
148 # File size and removeTempFile will be filled in later
149 $this->initializePathInfo( $name, $tempPath, 0, false );
153 * Entry point for SpecialUpload
154 * @param WebRequest $request
156 public function initializeFromRequest( &$request ) {
157 $desiredDestName = $request->getText( 'wpDestFile' );
158 if ( !$desiredDestName ) {
159 $desiredDestName = $request->getText( 'wpUploadFileURL' );
161 $this->initialize(
162 $desiredDestName,
163 trim( $request->getVal( 'wpUploadFileURL' ) ),
164 false
169 * @param WebRequest $request
170 * @return bool
172 public static function isValidRequest( $request ) {
173 global $wgUser;
175 $url = $request->getVal( 'wpUploadFileURL' );
177 return !empty( $url )
178 && Http::isValidURI( $url )
179 && $wgUser->isAllowed( 'upload_by_url' );
183 * @return string
185 public function getSourceType() {
186 return 'url';
190 * Download the file (if not async)
192 * @param array $httpOptions Array of options for MWHttpRequest. Ignored if async.
193 * This could be used to override the timeout on the http request.
194 * @return Status
196 public function fetchFile( $httpOptions = array() ) {
197 if ( !Http::isValidURI( $this->mUrl ) ) {
198 return Status::newFatal( 'http-invalid-url' );
201 if ( !self::isAllowedHost( $this->mUrl ) ) {
202 return Status::newFatal( 'upload-copy-upload-invalid-domain' );
204 if ( !self::isAllowedUrl( $this->mUrl ) ) {
205 return Status::newFatal( 'upload-copy-upload-invalid-url' );
207 if ( !$this->mAsync ) {
208 return $this->reallyFetchFile( $httpOptions );
211 return Status::newGood();
215 * Create a new temporary file in the URL subdirectory of wfTempDir().
217 * @return string Path to the file
219 protected function makeTemporaryFile() {
220 $tmpFile = TempFSFile::factory( 'URL' );
221 $tmpFile->bind( $this );
223 return $tmpFile->getPath();
227 * Callback: save a chunk of the result of a HTTP request to the temporary file
229 * @param mixed $req
230 * @param string $buffer
231 * @return int Number of bytes handled
233 public function saveTempFileChunk( $req, $buffer ) {
234 wfDebugLog( 'fileupload', 'Received chunk of ' . strlen( $buffer ) . ' bytes' );
235 $nbytes = fwrite( $this->mTmpHandle, $buffer );
237 if ( $nbytes == strlen( $buffer ) ) {
238 $this->mFileSize += $nbytes;
239 } else {
240 // Well... that's not good!
241 wfDebugLog(
242 'fileupload',
243 'Short write ' . $this->nbytes . '/' . strlen( $buffer ) .
244 ' bytes, aborting with ' . $this->mFileSize . ' uploaded so far'
246 fclose( $this->mTmpHandle );
247 $this->mTmpHandle = false;
250 return $nbytes;
254 * Download the file, save it to the temporary file and update the file
255 * size and set $mRemoveTempFile to true.
257 * @param array $httpOptions Array of options for MWHttpRequest
258 * @return Status
260 protected function reallyFetchFile( $httpOptions = array() ) {
261 global $wgCopyUploadProxy, $wgCopyUploadTimeout;
262 if ( $this->mTempPath === false ) {
263 return Status::newFatal( 'tmp-create-error' );
266 // Note the temporary file should already be created by makeTemporaryFile()
267 $this->mTmpHandle = fopen( $this->mTempPath, 'wb' );
268 if ( !$this->mTmpHandle ) {
269 return Status::newFatal( 'tmp-create-error' );
271 wfDebugLog( 'fileupload', 'Temporary file created "' . $this->mTempPath . '"' );
273 $this->mRemoveTempFile = true;
274 $this->mFileSize = 0;
276 $options = $httpOptions + array( 'followRedirects' => true );
278 if ( $wgCopyUploadProxy !== false ) {
279 $options['proxy'] = $wgCopyUploadProxy;
282 if ( $wgCopyUploadTimeout && !isset( $options['timeout'] ) ) {
283 $options['timeout'] = $wgCopyUploadTimeout;
285 wfDebugLog(
286 'fileupload',
287 'Starting download from "' . $this->mUrl . '" ' .
288 '<' . implode( ',', array_keys( array_filter( $options ) ) ) . '>'
290 $req = MWHttpRequest::factory( $this->mUrl, $options, __METHOD__ );
291 $req->setCallback( array( $this, 'saveTempFileChunk' ) );
292 $status = $req->execute();
294 if ( $this->mTmpHandle ) {
295 // File got written ok...
296 fclose( $this->mTmpHandle );
297 $this->mTmpHandle = null;
298 } else {
299 // We encountered a write error during the download...
300 return Status::newFatal( 'tmp-write-error' );
303 wfDebugLog( 'fileupload', $status );
304 if ( $status->isOk() ) {
305 wfDebugLog( 'fileupload', 'Download by URL completed successfuly.' );
306 } else {
307 wfDebugLog(
308 'fileupload',
309 'Download by URL completed with HTTP status ' . $req->getStatus()
313 return $status;
317 * Wrapper around the parent function in order to defer verifying the
318 * upload until the file really has been fetched.
319 * @return array|mixed
321 public function verifyUpload() {
322 if ( $this->mAsync ) {
323 return array( 'status' => UploadBase::OK );
326 return parent::verifyUpload();
330 * Wrapper around the parent function in order to defer checking warnings
331 * until the file really has been fetched.
332 * @return array
334 public function checkWarnings() {
335 if ( $this->mAsync ) {
336 $this->mIgnoreWarnings = false;
338 return array();
341 return parent::checkWarnings();
345 * Wrapper around the parent function in order to defer checking protection
346 * until we are sure that the file can actually be uploaded
347 * @param User $user
348 * @return bool|mixed
350 public function verifyTitlePermissions( $user ) {
351 if ( $this->mAsync ) {
352 return true;
355 return parent::verifyTitlePermissions( $user );
359 * Wrapper around the parent function in order to defer uploading to the
360 * job queue for asynchronous uploads
361 * @param string $comment
362 * @param string $pageText
363 * @param bool $watch
364 * @param User $user
365 * @return Status
367 public function performUpload( $comment, $pageText, $watch, $user ) {
368 if ( $this->mAsync ) {
369 $sessionKey = $this->insertJob( $comment, $pageText, $watch, $user );
371 return Status::newFatal( 'async', $sessionKey );
374 return parent::performUpload( $comment, $pageText, $watch, $user );
378 * @param string $comment
379 * @param string $pageText
380 * @param bool $watch
381 * @param User $user
382 * @return string
384 protected function insertJob( $comment, $pageText, $watch, $user ) {
385 $sessionKey = $this->stashSession();
386 $job = new UploadFromUrlJob( $this->getTitle(), array(
387 'url' => $this->mUrl,
388 'comment' => $comment,
389 'pageText' => $pageText,
390 'watch' => $watch,
391 'userName' => $user->getName(),
392 'leaveMessage' => $this->mAsync == 'async-leavemessage',
393 'ignoreWarnings' => $this->mIgnoreWarnings,
394 'sessionId' => session_id(),
395 'sessionKey' => $sessionKey,
396 ) );
397 $job->initializeSessionData();
398 JobQueueGroup::singleton()->push( $job );
400 return $sessionKey;