thumb_handler.php doesn't seem to extract path_info correctly
[mediawiki.git] / includes / job / jobs / AssembleUploadChunksJob.php
blob4fe1753cd41dd88c2826833b6c7ae3f87797f58a
1 <?php
2 /**
3 * Assemble the segments of a chunked upload.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
21 * @ingroup Upload
24 /**
25 * Assemble the segments of a chunked upload.
27 * @ingroup Upload
29 class AssembleUploadChunksJob extends Job {
30 public function __construct( $title, $params, $id = 0 ) {
31 parent::__construct( 'AssembleUploadChunks', $title, $params, $id );
32 $this->removeDuplicates = true;
35 public function run() {
36 $scope = RequestContext::importScopedSession( $this->params['session'] );
37 $context = RequestContext::getMain();
38 try {
39 $user = $context->getUser();
40 if ( !$user->isLoggedIn() ) {
41 $this->setLastError( "Could not load the author user from session." );
42 return false;
45 UploadBase::setSessionStatus(
46 $this->params['filekey'],
47 array( 'result' => 'Poll', 'stage' => 'assembling', 'status' => Status::newGood() )
50 $upload = new UploadFromChunks( $user );
51 $upload->continueChunks(
52 $this->params['filename'],
53 $this->params['filekey'],
54 $context->getRequest()
57 // Combine all of the chunks into a local file and upload that to a new stash file
58 $status = $upload->concatenateChunks();
59 if ( !$status->isGood() ) {
60 UploadBase::setSessionStatus(
61 $this->params['filekey'],
62 array( 'result' => 'Failure', 'stage' => 'assembling', 'status' => $status )
64 $this->setLastError( $status->getWikiText() );
65 return false;
68 // We have a new filekey for the fully concatenated file
69 $newFileKey = $upload->getLocalFile()->getFileKey();
71 // Remove the old stash file row and first chunk file
72 $upload->stash->removeFileNoAuth( $this->params['filekey'] );
74 // Build the image info array while we have the local reference handy
75 $apiMain = new ApiMain(); // dummy object (XXX)
76 $imageInfo = $upload->getImageInfo( $apiMain->getResult() );
78 // Cleanup any temporary local file
79 $upload->cleanupTempFile();
81 // Cache the info so the user doesn't have to wait forever to get the final info
82 UploadBase::setSessionStatus(
83 $this->params['filekey'],
84 array(
85 'result' => 'Success',
86 'stage' => 'assembling',
87 'filekey' => $newFileKey,
88 'imageinfo' => $imageInfo,
89 'status' => Status::newGood()
92 } catch ( MWException $e ) {
93 UploadBase::setSessionStatus(
94 $this->params['filekey'],
95 array(
96 'result' => 'Failure',
97 'stage' => 'assembling',
98 'status' => Status::newFatal( 'api-error-stashfailed' )
101 $this->setLastError( get_class( $e ) . ": " . $e->getText() );
102 return false;
104 return true;
107 public function getDeduplicationInfo() {
108 $info = parent::getDeduplicationInfo();
109 if ( is_array( $info['params'] ) ) {
110 $info['params'] = array( 'filekey' => $info['params']['filekey'] );
112 return $info;
115 public function allowRetries() {
116 return false;