MediaWiki  1.34.0
AssembleUploadChunksJob.php
Go to the documentation of this file.
1 <?php
23 use Wikimedia\ScopedCallback;
24 
31  public function __construct( Title $title, array $params ) {
32  parent::__construct( 'AssembleUploadChunks', $title, $params );
33  $this->removeDuplicates = true;
34  }
35 
36  public function run() {
37  $scope = RequestContext::importScopedSession( $this->params['session'] );
38  $this->addTeardownCallback( function () use ( &$scope ) {
39  ScopedCallback::consume( $scope ); // T126450
40  } );
41 
43  $user = $context->getUser();
44  try {
45  if ( !$user->isLoggedIn() ) {
46  $this->setLastError( "Could not load the author user from session." );
47 
48  return false;
49  }
50 
51  UploadBase::setSessionStatus(
52  $user,
53  $this->params['filekey'],
54  [ 'result' => 'Poll', 'stage' => 'assembling', 'status' => Status::newGood() ]
55  );
56 
57  $upload = new UploadFromChunks( $user );
58  $upload->continueChunks(
59  $this->params['filename'],
60  $this->params['filekey'],
61  new WebRequestUpload( $context->getRequest(), 'null' )
62  );
63 
64  // Combine all of the chunks into a local file and upload that to a new stash file
65  $status = $upload->concatenateChunks();
66  if ( !$status->isGood() ) {
67  UploadBase::setSessionStatus(
68  $user,
69  $this->params['filekey'],
70  [ 'result' => 'Failure', 'stage' => 'assembling', 'status' => $status ]
71  );
72  $this->setLastError( $status->getWikiText( false, false, 'en' ) );
73 
74  return false;
75  }
76 
77  // We can only get warnings like 'duplicate' after concatenating the chunks
79  $status->value = [
80  'warnings' => UploadBase::makeWarningsSerializable( $upload->checkWarnings() )
81  ];
82 
83  // We have a new filekey for the fully concatenated file
84  $newFileKey = $upload->getStashFile()->getFileKey();
85 
86  // Remove the old stash file row and first chunk file
87  $upload->stash->removeFileNoAuth( $this->params['filekey'] );
88 
89  // Build the image info array while we have the local reference handy
90  $apiMain = new ApiMain(); // dummy object (XXX)
91  $imageInfo = $upload->getImageInfo( $apiMain->getResult() );
92 
93  // Cleanup any temporary local file
94  $upload->cleanupTempFile();
95 
96  // Cache the info so the user doesn't have to wait forever to get the final info
97  UploadBase::setSessionStatus(
98  $user,
99  $this->params['filekey'],
100  [
101  'result' => 'Success',
102  'stage' => 'assembling',
103  'filekey' => $newFileKey,
104  'imageinfo' => $imageInfo,
105  'status' => $status
106  ]
107  );
108  } catch ( Exception $e ) {
109  UploadBase::setSessionStatus(
110  $user,
111  $this->params['filekey'],
112  [
113  'result' => 'Failure',
114  'stage' => 'assembling',
115  'status' => Status::newFatal( 'api-error-stashfailed' )
116  ]
117  );
118  $this->setLastError( get_class( $e ) . ": " . $e->getMessage() );
119  // To be extra robust.
121 
122  return false;
123  }
124 
125  return true;
126  }
127 
128  public function getDeduplicationInfo() {
129  $info = parent::getDeduplicationInfo();
130  if ( is_array( $info['params'] ) ) {
131  $info['params'] = [ 'filekey' => $info['params']['filekey'] ];
132  }
133 
134  return $info;
135  }
136 
137  public function allowRetries() {
138  return false;
139  }
140 }
ApiMain
This is the main API class, used for both external and internal processing.
Definition: ApiMain.php:41
StatusValue\newFatal
static newFatal( $message,... $parameters)
Factory function for fatal errors.
Definition: StatusValue.php:69
AssembleUploadChunksJob\run
run()
Run the job.
Definition: AssembleUploadChunksJob.php:36
AssembleUploadChunksJob\getDeduplicationInfo
getDeduplicationInfo()
Subclasses may need to override this to make duplication detection work.
Definition: AssembleUploadChunksJob.php:128
Job\$title
Title $title
Definition: Job.php:41
Job\addTeardownCallback
addTeardownCallback( $callback)
Definition: Job.php:352
Job\$params
array $params
Array of job parameters.
Definition: Job.php:35
Job\setLastError
setLastError( $error)
Definition: Job.php:418
Job
Class to both describe a background job and handle jobs.
Definition: Job.php:30
AssembleUploadChunksJob\allowRetries
allowRetries()
Definition: AssembleUploadChunksJob.php:137
MWExceptionHandler\rollbackMasterChangesAndLog
static rollbackMasterChangesAndLog( $e)
Roll back any open database transactions and log the stack trace of the exception.
Definition: MWExceptionHandler.php:139
WebRequestUpload
Object to access the $_FILES array.
Definition: WebRequestUpload.php:30
StatusValue\newGood
static newGood( $value=null)
Factory function for good results.
Definition: StatusValue.php:81
AssembleUploadChunksJob\__construct
__construct(Title $title, array $params)
Definition: AssembleUploadChunksJob.php:31
AssembleUploadChunksJob
Assemble the segments of a chunked upload.
Definition: AssembleUploadChunksJob.php:30
RequestContext\getMain
static getMain()
Get the RequestContext object associated with the main request.
Definition: RequestContext.php:431
RequestContext\importScopedSession
static importScopedSession(array $params)
Import an client IP address, HTTP headers, user ID, and session ID.
Definition: RequestContext.php:503
$context
$context
Definition: load.php:45
Title
Represents a title within MediaWiki.
Definition: Title.php:42
$status
return $status
Definition: SyntaxHighlight.php:347
UploadFromChunks
Implements uploading from chunks.
Definition: UploadFromChunks.php:33