54 $this->repo = MediaWikiServices::getInstance()->getRepoGroup()->getLocalRepo();
58 $this->stash = $stash;
61 wfDebug( __METHOD__ .
" creating new UploadStash instance for " . $user->getId() );
63 wfDebug( __METHOD__ .
" creating new UploadStash instance with no user" );
66 $this->stash =
new UploadStash( $this->repo, $user );
76 return (
bool)preg_match( UploadStash::KEY_FORMAT_REGEX, $key );
87 return self::isValidKey( $request->getText(
'wpFileKey', $request->getText(
'wpSessionKey' ) ) );
95 public function initialize( $key, $name =
'upload_file', $initTempFile =
true ) {
102 $metadata = $this->stash->getMetadata( $key );
104 $initTempFile ? $this->
getRealPath( $metadata[
'us_path'] ) :
false,
105 $metadata[
'us_size'],
109 $this->mFileKey = $key;
110 $this->mVirtualTempPath = $metadata[
'us_path'];
111 $this->mFileProps = $this->stash->getFileProps( $key );
112 $this->mSourceType = $metadata[
'us_source_type'];
120 $fileKey = $request->getText(
'wpFileKey', $request->getText(
'wpSessionKey' ) );
123 $desiredDestName = $request->getText(
125 $request->getText(
'wpUploadFile', $request->getText(
'filename' ) )
128 $this->
initialize( $fileKey, $desiredDestName );
135 return $this->mSourceType;
146 if ( !is_array( $this->mFileProps ) ) {
147 throw new LogicException(
"mFileProps should never be null" );
149 return $this->mFileProps[
'sha1'];
158 return $this->stash->removeFile( $this->mFileKey );
165 parent::postProcessUpload();
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
Base class for file repositories.
UploadBase and subclasses are the backend of MediaWiki's file uploads.
initializePathInfo( $name, $tempPath, $fileSize, $removeTempFile=false)
Implements uploading from previously stored file.
__construct(UserIdentity $user=null, $stash=false, $repo=false)
getTempFileSha1Base36()
Get the base 36 SHA1 of the file.
static isValidRequest( $request)
initializeFromRequest(&$request)
unsaveUploadedFile()
Remove a temporarily kept file stashed by saveTempUploadedFile().
postProcessUpload()
Remove the database record after a successful upload.
initialize( $key, $name='upload_file', $initTempFile=true)
UploadStash is intended to accomplish a few things: