MediaWiki
REL1_21
|
Implements uploading from a HTTP resource. More...
Public Member Functions | |
checkWarnings () | |
Wrapper around the parent function in order to defer checking warnings until the file really has been fetched. | |
fetchFile () | |
getSourceType () | |
initialize ($name, $url, $async=false) | |
Entry point for API upload. | |
initializeFromRequest (&$request) | |
Entry point for SpecialUpload. | |
performUpload ($comment, $pageText, $watch, $user) | |
Wrapper around the parent function in order to defer uploading to the job queue for asynchronous uploads. | |
saveTempFileChunk ($req, $buffer) | |
Callback: save a chunk of the result of a HTTP request to the temporary file. | |
verifyTitlePermissions ($user) | |
Wrapper around the parent function in order to defer checking protection until we are sure that the file can actually be uploaded. | |
verifyUpload () | |
Wrapper around the parent function in order to defer verifying the upload until the file really has been fetched. | |
Static Public Member Functions | |
static | isAllowed ($user) |
Checks if the user is allowed to use the upload-by-URL feature. | |
static | isAllowedHost ($url) |
Checks whether the URL is for an allowed host The domains in the whitelist can include wildcard characters (*) in place of any of the domain levels, e.g. | |
static | isEnabled () |
Checks if the upload from URL feature is enabled. | |
static | isValidRequest ($request) |
Public Attributes | |
$mTmpHandle | |
$mUrl | |
Protected Member Functions | |
insertJob ($comment, $pageText, $watch, $user) | |
makeTemporaryFile () | |
Create a new temporary file in the URL subdirectory of wfTempDir(). | |
reallyFetchFile () | |
Download the file, save it to the temporary file and update the file size and set $mRemoveTempFile to true. | |
Protected Attributes | |
$mAsync | |
$mIgnoreWarnings = true | |
$mTempPath |
Implements uploading from a HTTP resource.
Definition at line 31 of file UploadFromUrl.php.
Wrapper around the parent function in order to defer checking warnings until the file really has been fetched.
Reimplemented from UploadBase.
Definition at line 274 of file UploadFromUrl.php.
References array().
Reimplemented from UploadBase.
Definition at line 168 of file UploadFromUrl.php.
References Http\isValidURI(), Status\newFatal(), Status\newGood(), and reallyFetchFile().
UploadFromUrl::initialize | ( | $ | name, |
$ | url, | ||
$ | async = false |
||
) |
Entry point for API upload.
$name | string |
$url | string |
$async | mixed Whether the download should be performed asynchronous. False for synchronous, async or async-leavemessage for asynchronous download. |
MWException |
Definition at line 117 of file UploadFromUrl.php.
References $name, $url, global, UploadBase\initializePathInfo(), and makeTemporaryFile().
Referenced by initializeFromRequest().
UploadFromUrl::initializeFromRequest | ( | &$ | request | ) |
Entry point for SpecialUpload.
$request | WebRequest object |
Reimplemented from UploadBase.
Definition at line 135 of file UploadFromUrl.php.
References initialize().
UploadFromUrl::insertJob | ( | $ | comment, |
$ | pageText, | ||
$ | watch, | ||
$ | user | ||
) | [protected] |
$comment | |
$pageText | |
$watch | |
$user | User |
Definition at line 321 of file UploadFromUrl.php.
References $comment, $job, $user, array(), UploadBase\getTitle(), JobQueueGroup\singleton(), and UploadBase\stashSession().
Referenced by performUpload().
static UploadFromUrl::isAllowed | ( | $ | user | ) | [static] |
Checks if the user is allowed to use the upload-by-URL feature.
If the user is not allowed, return the name of the user right as a string. If the user is allowed, have the parent do further permissions checking.
$user | User |
Reimplemented from UploadBase.
Definition at line 46 of file UploadFromUrl.php.
References $user.
static UploadFromUrl::isAllowedHost | ( | $ | url | ) | [static] |
Checks whether the URL is for an allowed host The domains in the whitelist can include wildcard characters (*) in place of any of the domain levels, e.g.
'*.flickr.com' or 'upload.*.gov.uk'.
$url | string |
Definition at line 70 of file UploadFromUrl.php.
References $url, as, global, and wfParseUrl().
static UploadFromUrl::isEnabled | ( | ) | [static] |
Checks if the upload from URL feature is enabled.
Reimplemented from UploadBase.
Definition at line 57 of file UploadFromUrl.php.
References global.
static UploadFromUrl::isValidRequest | ( | $ | request | ) | [static] |
$request | WebRequest object |
Reimplemented from UploadBase.
Definition at line 151 of file UploadFromUrl.php.
References $url, $wgUser, empty, global, and Http\isValidURI().
UploadFromUrl::makeTemporaryFile | ( | ) | [protected] |
Create a new temporary file in the URL subdirectory of wfTempDir().
Definition at line 186 of file UploadFromUrl.php.
References wfTempDir().
Referenced by initialize().
UploadFromUrl::performUpload | ( | $ | comment, |
$ | pageText, | ||
$ | watch, | ||
$ | user | ||
) |
Wrapper around the parent function in order to defer uploading to the job queue for asynchronous uploads.
$comment | string |
$pageText | string |
$watch | bool |
$user | User |
Reimplemented from UploadBase.
Definition at line 304 of file UploadFromUrl.php.
References $comment, $user, insertJob(), and Status\newFatal().
UploadFromUrl::reallyFetchFile | ( | ) | [protected] |
Download the file, save it to the temporary file and update the file size and set $mRemoveTempFile to true.
Definition at line 216 of file UploadFromUrl.php.
References $options, array(), MWHttpRequest\factory(), global, and Status\newFatal().
Referenced by fetchFile().
UploadFromUrl::saveTempFileChunk | ( | $ | req, |
$ | buffer | ||
) |
Callback: save a chunk of the result of a HTTP request to the temporary file.
$req | mixed |
$buffer | string |
Definition at line 197 of file UploadFromUrl.php.
UploadFromUrl::verifyTitlePermissions | ( | $ | user | ) |
Wrapper around the parent function in order to defer checking protection until we are sure that the file can actually be uploaded.
$user | User |
Reimplemented from UploadBase.
Definition at line 288 of file UploadFromUrl.php.
References $user.
Wrapper around the parent function in order to defer verifying the upload until the file really has been fetched.
Reimplemented from UploadBase.
Definition at line 262 of file UploadFromUrl.php.
References array(), and UploadBase\OK.
UploadFromUrl::$mAsync [protected] |
Definition at line 32 of file UploadFromUrl.php.
UploadFromUrl::$mIgnoreWarnings = true [protected] |
Definition at line 33 of file UploadFromUrl.php.
UploadFromUrl::$mTempPath [protected] |
Reimplemented from UploadBase.
Definition at line 35 of file UploadFromUrl.php.
UploadFromUrl::$mTmpHandle |
Definition at line 35 of file UploadFromUrl.php.
UploadFromUrl::$mUrl |
Definition at line 32 of file UploadFromUrl.php.