MediaWiki  1.34.0
UploadFromChunks.php
Go to the documentation of this file.
1 <?php
2 
4 
35  private $repo;
37  public $stash;
39  public $user;
40 
41  protected $mOffset;
42  protected $mChunkIndex;
43  protected $mFileKey;
44  protected $mVirtualTempPath;
45 
55  public function __construct( User $user, $stash = false, $repo = false ) {
56  $this->user = $user;
57 
58  if ( $repo ) {
59  $this->repo = $repo;
60  } else {
61  $this->repo = RepoGroup::singleton()->getLocalRepo();
62  }
63 
64  if ( $stash ) {
65  $this->stash = $stash;
66  } else {
67  wfDebug( __METHOD__ . " creating new UploadFromChunks instance for " . $user->getId() . "\n" );
68  $this->stash = new UploadStash( $this->repo, $this->user );
69  }
70  }
71 
75  public function tryStashFile( User $user, $isPartial = false ) {
76  try {
77  $this->verifyChunk();
78  } catch ( UploadChunkVerificationException $e ) {
79  return Status::newFatal( $e->msg );
80  }
81 
82  return parent::tryStashFile( $user, $isPartial );
83  }
84 
90  public function stashFile( User $user = null ) {
91  wfDeprecated( __METHOD__, '1.28' );
92 
93  $this->verifyChunk();
94  return parent::stashFile( $user );
95  }
96 
103  protected function doStashFile( User $user = null ) {
104  // Stash file is the called on creating a new chunk session:
105  $this->mChunkIndex = 0;
106  $this->mOffset = 0;
107 
108  // Create a local stash target
109  $this->mStashFile = parent::doStashFile( $user );
110  // Update the initial file offset (based on file size)
111  $this->mOffset = $this->mStashFile->getSize();
112  $this->mFileKey = $this->mStashFile->getFileKey();
113 
114  // Output a copy of this first to chunk 0 location:
115  $this->outputChunk( $this->mStashFile->getPath() );
116 
117  // Update db table to reflect initial "chunk" state
118  $this->updateChunkStatus();
119 
120  return $this->mStashFile;
121  }
122 
130  public function continueChunks( $name, $key, $webRequestUpload ) {
131  $this->mFileKey = $key;
132  $this->mUpload = $webRequestUpload;
133  // Get the chunk status form the db:
134  $this->getChunkStatus();
135 
136  $metadata = $this->stash->getMetadata( $key );
137  $this->initializePathInfo( $name,
138  $this->getRealPath( $metadata['us_path'] ),
139  $metadata['us_size'],
140  false
141  );
142  }
143 
148  public function concatenateChunks() {
149  $chunkIndex = $this->getChunkIndex();
150  wfDebug( __METHOD__ . " concatenate {$this->mChunkIndex} chunks:" .
151  $this->getOffset() . ' inx:' . $chunkIndex . "\n" );
152 
153  // Concatenate all the chunks to mVirtualTempPath
154  $fileList = [];
155  // The first chunk is stored at the mVirtualTempPath path so we start on "chunk 1"
156  for ( $i = 0; $i <= $chunkIndex; $i++ ) {
157  $fileList[] = $this->getVirtualChunkLocation( $i );
158  }
159 
160  // Get the file extension from the last chunk
161  $ext = FileBackend::extensionFromPath( $this->mVirtualTempPath );
162  // Get a 0-byte temp file to perform the concatenation at
163  $tmpFile = MediaWikiServices::getInstance()->getTempFSFileFactory()
164  ->newTempFSFile( 'chunkedupload_', $ext );
165  $tmpPath = false; // fail in concatenate()
166  if ( $tmpFile ) {
167  // keep alive with $this
168  $tmpPath = $tmpFile->bind( $this )->getPath();
169  }
170 
171  // Concatenate the chunks at the temp file
172  $tStart = microtime( true );
173  $status = $this->repo->concatenate( $fileList, $tmpPath, FileRepo::DELETE_SOURCE );
174  $tAmount = microtime( true ) - $tStart;
175  if ( !$status->isOK() ) {
176  return $status;
177  }
178 
179  wfDebugLog( 'fileconcatenate', "Combined $i chunks in $tAmount seconds." );
180 
181  // File system path of the actual full temp file
182  $this->setTempFile( $tmpPath );
183 
184  $ret = $this->verifyUpload();
185  if ( $ret['status'] !== UploadBase::OK ) {
186  wfDebugLog( 'fileconcatenate', "Verification failed for chunked upload" );
187  $status->fatal( $this->getVerificationErrorCode( $ret['status'] ) );
188 
189  return $status;
190  }
191 
192  // Update the mTempPath and mStashFile
193  // (for FileUpload or normal Stash to take over)
194  $tStart = microtime( true );
195  // This is a re-implementation of UploadBase::tryStashFile(), we can't call it because we
196  // override doStashFile() with completely different functionality in this class...
197  $error = $this->runUploadStashFileHook( $this->user );
198  if ( $error ) {
199  $status->fatal( ...$error );
200  return $status;
201  }
202  try {
203  $this->mStashFile = parent::doStashFile( $this->user );
204  } catch ( UploadStashException $e ) {
205  $status->fatal( 'uploadstash-exception', get_class( $e ), $e->getMessage() );
206  return $status;
207  }
208 
209  $tAmount = microtime( true ) - $tStart;
210  $this->mStashFile->setLocalReference( $tmpFile ); // reuse (e.g. for getImageInfo())
211  wfDebugLog( 'fileconcatenate', "Stashed combined file ($i chunks) in $tAmount seconds." );
212 
213  return $status;
214  }
215 
221  function getVirtualChunkLocation( $index ) {
222  return $this->repo->getVirtualUrl( 'temp' ) .
223  '/' .
224  $this->repo->getHashPath(
225  $this->getChunkFileKey( $index )
226  ) .
227  $this->getChunkFileKey( $index );
228  }
229 
238  public function addChunk( $chunkPath, $chunkSize, $offset ) {
239  // Get the offset before we add the chunk to the file system
240  $preAppendOffset = $this->getOffset();
241 
242  if ( $preAppendOffset + $chunkSize > $this->getMaxUploadSize() ) {
243  $status = Status::newFatal( 'file-too-large' );
244  } else {
245  // Make sure the client is uploading the correct chunk with a matching offset.
246  if ( $preAppendOffset == $offset ) {
247  // Update local chunk index for the current chunk
248  $this->mChunkIndex++;
249  try {
250  # For some reason mTempPath is set to first part
251  $oldTemp = $this->mTempPath;
252  $this->mTempPath = $chunkPath;
253  $this->verifyChunk();
254  $this->mTempPath = $oldTemp;
255  } catch ( UploadChunkVerificationException $e ) {
256  return Status::newFatal( $e->msg );
257  }
258  $status = $this->outputChunk( $chunkPath );
259  if ( $status->isGood() ) {
260  // Update local offset:
261  $this->mOffset = $preAppendOffset + $chunkSize;
262  // Update chunk table status db
263  $this->updateChunkStatus();
264  }
265  } else {
266  $status = Status::newFatal( 'invalid-chunk-offset' );
267  }
268  }
269 
270  return $status;
271  }
272 
276  private function updateChunkStatus() {
277  wfDebug( __METHOD__ . " update chunk status for {$this->mFileKey} offset:" .
278  $this->getOffset() . ' inx:' . $this->getChunkIndex() . "\n" );
279 
280  $dbw = $this->repo->getMasterDB();
281  $dbw->update(
282  'uploadstash',
283  [
284  'us_status' => 'chunks',
285  'us_chunk_inx' => $this->getChunkIndex(),
286  'us_size' => $this->getOffset()
287  ],
288  [ 'us_key' => $this->mFileKey ],
289  __METHOD__
290  );
291  }
292 
296  private function getChunkStatus() {
297  // get Master db to avoid race conditions.
298  // Otherwise, if chunk upload time < replag there will be spurious errors
299  $dbw = $this->repo->getMasterDB();
300  $row = $dbw->selectRow(
301  'uploadstash',
302  [
303  'us_chunk_inx',
304  'us_size',
305  'us_path',
306  ],
307  [ 'us_key' => $this->mFileKey ],
308  __METHOD__
309  );
310  // Handle result:
311  if ( $row ) {
312  $this->mChunkIndex = $row->us_chunk_inx;
313  $this->mOffset = $row->us_size;
314  $this->mVirtualTempPath = $row->us_path;
315  }
316  }
317 
322  private function getChunkIndex() {
323  if ( $this->mChunkIndex !== null ) {
324  return $this->mChunkIndex;
325  }
326 
327  return 0;
328  }
329 
334  public function getOffset() {
335  if ( $this->mOffset !== null ) {
336  return $this->mOffset;
337  }
338 
339  return 0;
340  }
341 
349  private function outputChunk( $chunkPath ) {
350  // Key is fileKey + chunk index
351  $fileKey = $this->getChunkFileKey();
352 
353  // Store the chunk per its indexed fileKey:
354  $hashPath = $this->repo->getHashPath( $fileKey );
355  $storeStatus = $this->repo->quickImport( $chunkPath,
356  $this->repo->getZonePath( 'temp' ) . "/{$hashPath}{$fileKey}" );
357 
358  // Check for error in stashing the chunk:
359  if ( !$storeStatus->isOK() ) {
360  $error = $storeStatus->getErrorsArray();
361  $error = reset( $error );
362  if ( !count( $error ) ) {
363  $error = $storeStatus->getWarningsArray();
364  $error = reset( $error );
365  if ( !count( $error ) ) {
366  $error = [ 'unknown', 'no error recorded' ];
367  }
368  }
369  throw new UploadChunkFileException( "Error storing file in '$chunkPath': " .
370  implode( '; ', $error ) );
371  }
372 
373  return $storeStatus;
374  }
375 
376  private function getChunkFileKey( $index = null ) {
377  if ( $index === null ) {
378  $index = $this->getChunkIndex();
379  }
380 
381  return $this->mFileKey . '.' . $index;
382  }
383 
389  private function verifyChunk() {
390  // Rest mDesiredDestName here so we verify the name as if it were mFileKey
391  $oldDesiredDestName = $this->mDesiredDestName;
392  $this->mDesiredDestName = $this->mFileKey;
393  $this->mTitle = false;
394  $res = $this->verifyPartialFile();
395  $this->mDesiredDestName = $oldDesiredDestName;
396  $this->mTitle = false;
397  if ( is_array( $res ) ) {
399  }
400  }
401 }
UploadFromChunks\updateChunkStatus
updateChunkStatus()
Update the chunk db table with the current status:
Definition: UploadFromChunks.php:276
RepoGroup\singleton
static singleton()
Definition: RepoGroup.php:60
StatusValue\newFatal
static newFatal( $message,... $parameters)
Factory function for fatal errors.
Definition: StatusValue.php:69
User\getId
getId()
Get the user's ID.
Definition: User.php:2203
UploadFromChunks\getOffset
getOffset()
Get the offset at which the next uploaded chunk will be appended to.
Definition: UploadFromChunks.php:334
UploadFromChunks\getChunkIndex
getChunkIndex()
Get the current Chunk index.
Definition: UploadFromChunks.php:322
UploadFromChunks\outputChunk
outputChunk( $chunkPath)
Output the chunk to disk.
Definition: UploadFromChunks.php:349
MediaWiki\MediaWikiServices
MediaWikiServices is the service locator for the application scope of MediaWiki.
Definition: MediaWikiServices.php:117
UploadFromChunks\$mVirtualTempPath
$mVirtualTempPath
Definition: UploadFromChunks.php:44
UploadStash
UploadStash is intended to accomplish a few things:
Definition: UploadStash.php:53
FileBackend\extensionFromPath
static extensionFromPath( $path, $case='lowercase')
Get the final extension from a storage or FS path.
Definition: FileBackend.php:1579
$res
$res
Definition: testCompression.php:52
UploadFromChunks\__construct
__construct(User $user, $stash=false, $repo=false)
@noinspection PhpMissingParentConstructorInspection
Definition: UploadFromChunks.php:55
wfDebugLog
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
Definition: GlobalFunctions.php:1007
wfDeprecated
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
Definition: GlobalFunctions.php:1044
UploadChunkFileException
Definition: UploadChunkFileException.php:24
UploadFromChunks\addChunk
addChunk( $chunkPath, $chunkSize, $offset)
Add a chunk to the temporary directory.
Definition: UploadFromChunks.php:238
UploadFromChunks\$mChunkIndex
$mChunkIndex
Definition: UploadFromChunks.php:42
wfDebug
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
Definition: GlobalFunctions.php:913
UploadFromChunks\$mOffset
$mOffset
Definition: UploadFromChunks.php:41
UploadFromChunks\concatenateChunks
concatenateChunks()
Append the final chunk and ready file for parent::performUpload()
Definition: UploadFromChunks.php:148
UploadFromChunks\stashFile
stashFile(User $user=null)
Definition: UploadFromChunks.php:90
UploadFromChunks\getChunkStatus
getChunkStatus()
Get the chunk db state and populate update relevant local values.
Definition: UploadFromChunks.php:296
MWException\msg
msg( $key, $fallback,... $params)
Get a message from i18n.
Definition: MWException.php:75
UploadFromChunks\tryStashFile
tryStashFile(User $user, $isPartial=false)
Definition: UploadFromChunks.php:75
UploadFromChunks\$repo
LocalRepo $repo
Definition: UploadFromChunks.php:35
UploadFromChunks\getChunkFileKey
getChunkFileKey( $index=null)
Definition: UploadFromChunks.php:376
UploadFromChunks\$mFileKey
$mFileKey
Definition: UploadFromChunks.php:43
$status
return $status
Definition: SyntaxHighlight.php:347
UploadFromChunks\getVirtualChunkLocation
getVirtualChunkLocation( $index)
Returns the virtual chunk location:
Definition: UploadFromChunks.php:221
UploadFromFile\verifyUpload
verifyUpload()
Definition: UploadFromFile.php:80
UploadFromChunks\doStashFile
doStashFile(User $user=null)
Calls the parent doStashFile and updates the uploadsession table to handle "chunks".
Definition: UploadFromChunks.php:103
UploadFromChunks\continueChunks
continueChunks( $name, $key, $webRequestUpload)
Continue chunk uploading.
Definition: UploadFromChunks.php:130
$ext
if(!is_readable( $file)) $ext
Definition: router.php:48
FileRepo\DELETE_SOURCE
const DELETE_SOURCE
Definition: FileRepo.php:40
UploadFromChunks\$user
User $user
Definition: UploadFromChunks.php:39
UploadFromChunks
Implements uploading from chunks.
Definition: UploadFromChunks.php:33
UploadFromChunks\$stash
UploadStash $stash
Definition: UploadFromChunks.php:37
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:51
UploadFromFile
Implements regular file uploads.
Definition: UploadFromFile.php:30
LocalRepo
A repository that stores files in the local filesystem and registers them in the wiki's own database.
Definition: LocalRepo.php:37
UploadStashException
Definition: UploadStashException.php:26
UploadChunkVerificationException
Definition: UploadChunkVerificationException.php:24
UploadFromChunks\verifyChunk
verifyChunk()
Verify that the chunk isn't really an evil html file.
Definition: UploadFromChunks.php:389