[Upload] Added async upload concatenation support.
[lhc/web/wiklou.git] / includes / upload / AssembleUploadChunks.php
1 <?php
2 /**
3 * Assemble the segments of a chunked upload.
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup Maintenance
22 */
23 require_once( __DIR__ . '/../../maintenance/Maintenance.php' );
24
25 /**
26 * Assemble the segments of a chunked upload.
27 *
28 * @ingroup Maintenance
29 */
30 class AssembleUploadChunks extends Maintenance {
31 public function __construct() {
32 parent::__construct();
33 $this->mDescription = "Re-assemble the segments of a chunked upload into a single file";
34 $this->addOption( 'filename', "Desired file name", true, true );
35 $this->addOption( 'filekey', "Upload stash file key", true, true );
36 $this->addOption( 'userid', "Upload owner user ID", true, true );
37 $this->addOption( 'sessionid', "Upload owner session ID", true, true );
38 }
39
40 public function execute() {
41 wfSetupSession( $this->getOption( 'sessionid' ) );
42 try {
43 $user = User::newFromId( $this->getOption( 'userid' ) );
44 if ( !$user ) {
45 throw new MWException( "No user with ID " . $this->getOption( 'userid' ) . "." );
46 }
47
48 $upload = new UploadFromChunks( $user );
49 $upload->continueChunks(
50 $this->getOption( 'filename' ),
51 $this->getOption( 'filekey' ),
52 RequestContext::getMain()->getRequest() // dummy request
53 );
54
55 // Combine all of the chunks into a local file and upload that to a new stash file
56 $status = $upload->concatenateChunks();
57 if ( !$status->isGood() ) {
58 UploadBase::setSessionStatus(
59 $this->getOption( 'filekey' ),
60 array( 'result' => 'Failure', 'status' => $status )
61 );
62 $this->error( $status->getWikiText() . "\n", 1 ); // die
63 }
64
65 // We have a new filekey for the fully concatenated file
66 $newFileKey = $upload->getLocalFile()->getFileKey();
67
68 // Remove the old stash file row and first chunk file
69 $upload->stash->removeFileNoAuth( $this->getOption( 'filekey' ) );
70
71 // Build the image info array while we have the local reference handy
72 $apiMain = new ApiMain(); // dummy object (XXX)
73 $imageInfo = $upload->getImageInfo( $apiMain->getResult() );
74
75 // Cleanup any temporary local file
76 $upload->cleanupTempFile();
77
78 // Cache the info so the user doesn't have to wait forever to get the final info
79 UploadBase::setSessionStatus(
80 $this->getOption( 'filekey' ),
81 array(
82 'result' => 'Success',
83 'filekey' => $newFileKey,
84 'imageinfo' => $imageInfo,
85 'status' => Status::newGood()
86 )
87 );
88 } catch ( MWException $e ) {
89 UploadBase::setSessionStatus(
90 $this->getOption( 'filekey' ),
91 array(
92 'result' => 'Failure',
93 'status' => Status::newFatal( 'api-error-stashfailed' )
94 )
95 );
96 throw $e;
97 }
98 session_write_close();
99 }
100 }
101
102 $maintClass = "AssembleUploadChunks";
103 require_once( RUN_MAINTENANCE_IF_MAIN );