52 if ( !$performer->
isAllowed(
'upload_by_url' )
54 return 'upload_by_url';
57 return parent::isAllowed( $performer );
65 $allowCopyUploads = MediaWikiServices::getInstance()->getMainConfig()->get( MainConfigNames::AllowCopyUploads );
67 return $allowCopyUploads && parent::isEnabled();
79 $domains = self::getAllowedHosts();
80 if ( !count( $domains ) ) {
88 foreach ( $domains as $domain ) {
90 $domainPieces = explode(
'.', $domain );
91 $uploadDomainPieces = explode(
'.', $parsedUrl[
'host'] );
92 if ( count( $domainPieces ) === count( $uploadDomainPieces ) ) {
95 foreach ( $domainPieces as $index => $piece ) {
96 if ( $piece !==
'*' && $piece !== $uploadDomainPieces[$index] ) {
119 private static function getAllowedHosts(): array {
121 $domains = $config->get( MainConfigNames::CopyUploadsDomains );
123 if ( $config->get( MainConfigNames::CopyUploadAllowOnWikiDomainConfig ) ) {
124 $page =
wfMessage(
'copyupload-allowed-domains' )->inContentLanguage()->plain();
126 foreach ( explode(
"\n", $page ) as $line ) {
128 $line = preg_replace(
"/^\\s*([^#]*)\\s*((.*)?)$/",
"\\1", $line );
130 $line = trim( $line );
132 if ( $line !==
'' ) {
148 if ( !isset( self::$allowedUrls[$url] ) ) {
150 Hooks::runner()->onIsUploadAllowedFromUrl( $url, $allowed );
151 self::$allowedUrls[$url] = $allowed;
154 return self::$allowedUrls[$url];
167 $tempPath = $this->makeTemporaryFile();
168 # File size and removeTempFile will be filled in later
169 $this->initializePathInfo( $name, $tempPath, 0,
false );
177 $desiredDestName = $request->getText(
'wpDestFile' );
178 if ( !$desiredDestName ) {
179 $desiredDestName = $request->getText(
'wpUploadFileURL' );
183 trim( $request->getVal(
'wpUploadFileURL' ) )
192 $user = RequestContext::getMain()->getUser();
194 $url = $request->getVal(
'wpUploadFileURL' );
196 return !empty( $url )
197 && MediaWikiServices::getInstance()
198 ->getPermissionManager()
199 ->userHasRight( $user,
'upload_by_url' );
217 if ( !MWHttpRequest::isValidURI( $this->mUrl ) ) {
218 return Status::newFatal(
'http-invalid-url', $this->mUrl );
221 if ( !self::isAllowedHost( $this->mUrl ) ) {
222 return Status::newFatal(
'upload-copy-upload-invalid-domain' );
224 if ( !self::isAllowedUrl( $this->mUrl ) ) {
225 return Status::newFatal(
'upload-copy-upload-invalid-url' );
227 return $this->reallyFetchFile( $httpOptions );
236 $tmpFile = MediaWikiServices::getInstance()->getTempFSFileFactory()
237 ->newTempFSFile(
'URL',
'urlupload_' );
238 $tmpFile->bind( $this );
240 return $tmpFile->getPath();
251 wfDebugLog(
'fileupload',
'Received chunk of ' . strlen( $buffer ) .
' bytes' );
252 $nbytes = fwrite( $this->mTmpHandle, $buffer );
254 if ( $nbytes == strlen( $buffer ) ) {
255 $this->mFileSize += $nbytes;
260 'Short write ' . $nbytes .
'/' . strlen( $buffer ) .
261 ' bytes, aborting with ' . $this->mFileSize .
' uploaded so far'
263 fclose( $this->mTmpHandle );
264 $this->mTmpHandle =
false;
278 $copyUploadProxy = MediaWikiServices::getInstance()->getMainConfig()->get( MainConfigNames::CopyUploadProxy );
279 $copyUploadTimeout = MediaWikiServices::getInstance()->getMainConfig()
280 ->get( MainConfigNames::CopyUploadTimeout );
281 if ( $this->mTempPath ===
false ) {
282 return Status::newFatal(
'tmp-create-error' );
286 $this->mTmpHandle = fopen( $this->mTempPath,
'wb' );
287 if ( !$this->mTmpHandle ) {
288 return Status::newFatal(
'tmp-create-error' );
290 wfDebugLog(
'fileupload',
'Temporary file created "' . $this->mTempPath .
'"' );
292 $this->mRemoveTempFile =
true;
293 $this->mFileSize = 0;
295 $options = $httpOptions + [
'followRedirects' => false ];
297 if ( $copyUploadProxy !==
false ) {
298 $options[
'proxy'] = $copyUploadProxy;
301 if ( $copyUploadTimeout && !isset( $options[
'timeout'] ) ) {
302 $options[
'timeout'] = $copyUploadTimeout;
306 'Starting download from "' . $this->mUrl .
'" ' .
307 '<' . implode(
',', array_keys( array_filter( $options ) ) ) .
'>'
312 $attemptsLeft = $options[
'maxRedirects'] ?? 5;
313 $targetUrl = $this->mUrl;
314 $requestFactory = MediaWikiServices::getInstance()->getHttpRequestFactory();
315 while ( $attemptsLeft > 0 ) {
316 $req = $requestFactory->create( $targetUrl, $options, __METHOD__ );
317 $req->setCallback( [ $this,
'saveTempFileChunk' ] );
318 $status = $req->execute();
319 if ( !$req->isRedirect() ) {
322 $targetUrl = $req->getFinalUrl();
324 ftruncate( $this->mTmpHandle, 0 );
325 rewind( $this->mTmpHandle );
329 if ( $attemptsLeft == 0 ) {
330 return Status::newFatal(
'upload-too-many-redirects' );
333 if ( $this->mTmpHandle ) {
335 fclose( $this->mTmpHandle );
336 $this->mTmpHandle =
null;
339 return Status::newFatal(
'tmp-write-error' );
343 if ( $status->isOK() ) {
344 wfDebugLog(
'fileupload',
'Download by URL completed successfully.' );
347 wfDebugLog(
'fileupload', $status->getWikiText(
false,
false,
'en' ) );
351 'Download by URL completed with HTTP status ' . $req->getStatus()
wfParseUrl( $url)
parse_url() work-alike, but non-broken.
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
wfMessage( $key,... $params)
This is the function for getting translated interface messages.
A class containing constants representing the names of configuration variables.
UploadBase and subclasses are the backend of MediaWiki's file uploads.
Implements uploading from a HTTP resource.
makeTemporaryFile()
Create a new temporary file in the URL subdirectory of wfTempDir().
static isValidRequest( $request)
static isAllowed(Authority $performer)
Checks if the user is allowed to use the upload-by-URL feature.
initializeFromRequest(&$request)
Entry point for SpecialUpload.
reallyFetchFile( $httpOptions=[])
Download the file, save it to the temporary file and update the file size and set $mRemoveTempFile to...
initialize( $name, $url)
Entry point for API upload.
fetchFile( $httpOptions=[])
Download the file.
saveTempFileChunk( $req, $buffer)
Callback: save a chunk of the result of a HTTP request to the temporary file.
static isAllowedHost( $url)
Checks whether the URL is for an allowed host The domains in the allowlist can include wildcard chara...
static isAllowedUrl( $url)
Checks whether the URL is not allowed.
static isEnabled()
Checks if the upload from URL feature is enabled.