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
25 * Implements uploading from a HTTP resource.
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();
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.
48 public static function isAllowed( $user ) {
49 if ( !$user->isAllowed( 'upload_by_url' ) ) {
50 return 'upload_by_url';
52 return parent
::isAllowed( $user );
56 * Checks if the upload from URL feature is enabled
59 public static function isEnabled() {
60 global $wgAllowCopyUploads;
61 return $wgAllowCopyUploads && parent
::isEnabled();
65 * Checks whether the URL is for an allowed host
66 * The domains in the whitelist can include wildcard characters (*) in place
67 * of any of the domain levels, e.g. '*.flickr.com' or 'upload.*.gov.uk'.
72 public static function isAllowedHost( $url ) {
73 global $wgCopyUploadsDomains;
74 if ( !count( $wgCopyUploadsDomains ) ) {
77 $parsedUrl = wfParseUrl( $url );
82 foreach ( $wgCopyUploadsDomains as $domain ) {
83 // See if the domain for the upload matches this whitelisted domain
84 $whitelistedDomainPieces = explode( '.', $domain );
85 $uploadDomainPieces = explode( '.', $parsedUrl['host'] );
86 if ( count( $whitelistedDomainPieces ) === count( $uploadDomainPieces ) ) {
88 // See if all the pieces match or not (excluding wildcards)
89 foreach ( $whitelistedDomainPieces as $index => $piece ) {
90 if ( $piece !== '*' && $piece !== $uploadDomainPieces[$index] ) {
95 // We found a match, so quit comparing against the list
100 if ( $parsedUrl['host'] === $domain ) {
110 * Checks whether the URL is not allowed.
115 public static function isAllowedUrl( $url ) {
116 if ( !isset( self
::$allowedUrls[$url] ) ) {
118 wfRunHooks( 'IsUploadAllowedFromUrl', array( $url, &$allowed ) );
119 self
::$allowedUrls[$url] = $allowed;
121 return self
::$allowedUrls[$url];
125 * Entry point for API upload
127 * @param string $name
129 * @param bool|string $async Whether the download should be performed
130 * asynchronous. False for synchronous, async or async-leavemessage for
131 * asynchronous download.
132 * @throws MWException
134 public function initialize( $name, $url, $async = false ) {
135 global $wgAllowAsyncCopyUploads;
138 $this->mAsync
= $wgAllowAsyncCopyUploads ?
$async : false;
140 throw new MWException( 'Asynchronous copy uploads are no longer possible as of r81612.' );
143 $tempPath = $this->mAsync ?
null : $this->makeTemporaryFile();
144 # File size and removeTempFile will be filled in later
145 $this->initializePathInfo( $name, $tempPath, 0, false );
149 * Entry point for SpecialUpload
150 * @param WebRequest $request
152 public function initializeFromRequest( &$request ) {
153 $desiredDestName = $request->getText( 'wpDestFile' );
154 if ( !$desiredDestName ) {
155 $desiredDestName = $request->getText( 'wpUploadFileURL' );
159 trim( $request->getVal( 'wpUploadFileURL' ) ),
165 * @param WebRequest $request
168 public static function isValidRequest( $request ) {
171 $url = $request->getVal( 'wpUploadFileURL' );
172 return !empty( $url )
173 && Http
::isValidURI( $url )
174 && $wgUser->isAllowed( 'upload_by_url' );
180 public function getSourceType() {
185 * Download the file (if not async)
187 * @param array $httpOptions Array of options for MWHttpRequest. Ignored if async.
188 * This could be used to override the timeout on the http request.
191 public function fetchFile( $httpOptions = array() ) {
192 if ( !Http
::isValidURI( $this->mUrl
) ) {
193 return Status
::newFatal( 'http-invalid-url' );
196 if ( !self
::isAllowedHost( $this->mUrl
) ) {
197 return Status
::newFatal( 'upload-copy-upload-invalid-domain' );
199 if ( !self
::isAllowedUrl( $this->mUrl
) ) {
200 return Status
::newFatal( 'upload-copy-upload-invalid-url' );
202 if ( !$this->mAsync
) {
203 return $this->reallyFetchFile( $httpOptions );
205 return Status
::newGood();
209 * Create a new temporary file in the URL subdirectory of wfTempDir().
211 * @return string Path to the file
213 protected function makeTemporaryFile() {
214 $tmpFile = TempFSFile
::factory( 'URL' );
215 $tmpFile->bind( $this );
216 return $tmpFile->getPath();
220 * Callback: save a chunk of the result of a HTTP request to the temporary file
223 * @param string $buffer
224 * @return int Number of bytes handled
226 public function saveTempFileChunk( $req, $buffer ) {
227 $nbytes = fwrite( $this->mTmpHandle
, $buffer );
229 if ( $nbytes == strlen( $buffer ) ) {
230 $this->mFileSize +
= $nbytes;
232 // Well... that's not good!
233 fclose( $this->mTmpHandle
);
234 $this->mTmpHandle
= false;
241 * Download the file, save it to the temporary file and update the file
242 * size and set $mRemoveTempFile to true.
244 * @param array $httpOptions Array of options for MWHttpRequest
247 protected function reallyFetchFile( $httpOptions = array() ) {
248 global $wgCopyUploadProxy, $wgCopyUploadTimeout;
249 if ( $this->mTempPath
=== false ) {
250 return Status
::newFatal( 'tmp-create-error' );
253 // Note the temporary file should already be created by makeTemporaryFile()
254 $this->mTmpHandle
= fopen( $this->mTempPath
, 'wb' );
255 if ( !$this->mTmpHandle
) {
256 return Status
::newFatal( 'tmp-create-error' );
259 $this->mRemoveTempFile
= true;
260 $this->mFileSize
= 0;
262 $options = $httpOptions +
array(
263 'followRedirects' => true,
265 if ( $wgCopyUploadProxy !== false ) {
266 $options['proxy'] = $wgCopyUploadProxy;
268 if ( $wgCopyUploadTimeout && !isset( $options['timeout'] ) ) {
269 $options['timeout'] = $wgCopyUploadTimeout;
271 $req = MWHttpRequest
::factory( $this->mUrl
, $options );
272 $req->setCallback( array( $this, 'saveTempFileChunk' ) );
273 $status = $req->execute();
275 if ( $this->mTmpHandle
) {
276 // File got written ok...
277 fclose( $this->mTmpHandle
);
278 $this->mTmpHandle
= null;
280 // We encountered a write error during the download...
281 return Status
::newFatal( 'tmp-write-error' );
284 if ( !$status->isOk() ) {
292 * Wrapper around the parent function in order to defer verifying the
293 * upload until the file really has been fetched.
294 * @return array|mixed
296 public function verifyUpload() {
297 if ( $this->mAsync
) {
298 return array( 'status' => UploadBase
::OK
);
300 return parent
::verifyUpload();
304 * Wrapper around the parent function in order to defer checking warnings
305 * until the file really has been fetched.
308 public function checkWarnings() {
309 if ( $this->mAsync
) {
310 $this->mIgnoreWarnings
= false;
313 return parent
::checkWarnings();
317 * Wrapper around the parent function in order to defer checking protection
318 * until we are sure that the file can actually be uploaded
322 public function verifyTitlePermissions( $user ) {
323 if ( $this->mAsync
) {
326 return parent
::verifyTitlePermissions( $user );
330 * Wrapper around the parent function in order to defer uploading to the
331 * job queue for asynchronous uploads
332 * @param string $comment
333 * @param string $pageText
338 public function performUpload( $comment, $pageText, $watch, $user ) {
339 if ( $this->mAsync
) {
340 $sessionKey = $this->insertJob( $comment, $pageText, $watch, $user );
342 return Status
::newFatal( 'async', $sessionKey );
345 return parent
::performUpload( $comment, $pageText, $watch, $user );
349 * @param string $comment
350 * @param string $pageText
355 protected function insertJob( $comment, $pageText, $watch, $user ) {
356 $sessionKey = $this->stashSession();
357 $job = new UploadFromUrlJob( $this->getTitle(), array(
358 'url' => $this->mUrl
,
359 'comment' => $comment,
360 'pageText' => $pageText,
362 'userName' => $user->getName(),
363 'leaveMessage' => $this->mAsync
== 'async-leavemessage',
364 'ignoreWarnings' => $this->mIgnoreWarnings
,
365 'sessionId' => session_id(),
366 'sessionKey' => $sessionKey,
368 $job->initializeSessionData();
369 JobQueueGroup
::singleton()->push( $job );