57 $this->repo = MediaWikiServices::getInstance()->getRepoGroup()->getLocalRepo();
61 $this->stash = $stash;
64 wfDebug( __METHOD__ .
" creating new UploadStash instance for " . $user->getId() );
66 wfDebug( __METHOD__ .
" creating new UploadStash instance with no user" );
69 $this->stash =
new UploadStash( $this->repo, $user );
79 return (
bool)preg_match( UploadStash::KEY_FORMAT_REGEX, $key );
90 return self::isValidKey( $request->getText(
'wpFileKey', $request->getText(
'wpSessionKey' ) ) );
98 public function initialize( $key, $name =
'upload_file', $initTempFile =
true ) {
105 $metadata = $this->stash->getMetadata( $key );
107 $initTempFile ? $this->
getRealPath( $metadata[
'us_path'] ) :
false,
108 $metadata[
'us_size'],
112 $this->mFileKey = $key;
113 $this->mVirtualTempPath = $metadata[
'us_path'];
114 $this->mFileProps = $this->stash->getFileProps( $key );
115 $this->mSourceType = $metadata[
'us_source_type'];
123 $fileKey = $request->getText(
'wpFileKey', $request->getText(
'wpSessionKey' ) );
126 $desiredDestName = $request->getText(
128 $request->getText(
'wpUploadFile', $request->getText(
'filename' ) )
131 $this->
initialize( $fileKey, $desiredDestName );
138 return $this->mSourceType;
149 if ( !is_array( $this->mFileProps ) ) {
150 throw new LogicException(
"mFileProps should never be null" );
152 return $this->mFileProps[
'sha1'];
161 return $this->stash->removeFile( $this->mFileKey );
168 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: