MediaWiki  1.27.2
AssembleUploadChunksJob.php
Go to the documentation of this file.
1 <?php
30  public function __construct( Title $title, array $params ) {
31  parent::__construct( 'AssembleUploadChunks', $title, $params );
32  $this->removeDuplicates = true;
33  }
34 
35  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 
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() ) {
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 have a new filekey for the fully concatenated file
78  $newFileKey = $upload->getLocalFile()->getFileKey();
79 
80  // Remove the old stash file row and first chunk file
81  $upload->stash->removeFileNoAuth( $this->params['filekey'] );
82 
83  // Build the image info array while we have the local reference handy
84  $apiMain = new ApiMain(); // dummy object (XXX)
85  $imageInfo = $upload->getImageInfo( $apiMain->getResult() );
86 
87  // Cleanup any temporary local file
88  $upload->cleanupTempFile();
89 
90  // Cache the info so the user doesn't have to wait forever to get the final info
92  $user,
93  $this->params['filekey'],
94  [
95  'result' => 'Success',
96  'stage' => 'assembling',
97  'filekey' => $newFileKey,
98  'imageinfo' => $imageInfo,
99  'status' => Status::newGood()
100  ]
101  );
102  } catch ( Exception $e ) {
104  $user,
105  $this->params['filekey'],
106  [
107  'result' => 'Failure',
108  'stage' => 'assembling',
109  'status' => Status::newFatal( 'api-error-stashfailed' )
110  ]
111  );
112  $this->setLastError( get_class( $e ) . ": " . $e->getMessage() );
113  // To be extra robust.
115 
116  return false;
117  }
118 
119  return true;
120  }
121 
122  public function getDeduplicationInfo() {
123  $info = parent::getDeduplicationInfo();
124  if ( is_array( $info['params'] ) ) {
125  $info['params'] = [ 'filekey' => $info['params']['filekey'] ];
126  }
127 
128  return $info;
129  }
130 
131  public function allowRetries() {
132  return false;
133  }
134 }
the array() calling protocol came about after MediaWiki 1.4rc1.
$context
Definition: load.php:44
addTeardownCallback($callback)
Definition: Job.php:307
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException'returning false will NOT prevent logging $e
Definition: hooks.txt:1932
Class to both describe a background job and handle jobs.
Definition: Job.php:31
Represents a title within MediaWiki.
Definition: Title.php:34
static newFatal($message)
Factory function for fatal errors.
Definition: Status.php:89
static importScopedSession(array $params)
Import an client IP address, HTTP headers, user ID, and session ID.
__construct(Title $title, array $params)
static getMain()
Static methods.
Assemble the segments of a chunked upload.
Implements uploading from chunks.
This is the main API class, used for both external and internal processing.
Definition: ApiMain.php:41
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition: hooks.txt:242
static rollbackMasterChangesAndLog($e)
If there are any open database transactions, roll them back and log the stack trace of the exception ...
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
setLastError($error)
Definition: Job.php:391
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition: hooks.txt:1004
getDeduplicationInfo()
Subclasses may need to override this to make duplication detection work.
static consume(ScopedCallback &$sc=null)
Trigger a scoped callback and destroy it.
array $params
Array of job parameters.
Definition: Job.php:36
static setSessionStatus(User $user, $statusKey, $value)
Set the current status of a chunked upload (used for polling)
Title $title
Definition: Job.php:42
Object to access the $_FILES array.
static newGood($value=null)
Factory function for good results.
Definition: Status.php:101