[Upload] Async upload code cleanups.
[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 $e = null;
42 wfDebug( "Started assembly for file {$this->getOption( 'filename' )}\n" );
43 wfSetupSession( $this->getOption( 'sessionid' ) );
44 try {
45 $user = User::newFromId( $this->getOption( 'userid' ) );
46 if ( !$user ) {
47 throw new MWException( "No user with ID " . $this->getOption( 'userid' ) . "." );
48 }
49
50 $upload = new UploadFromChunks( $user );
51 $upload->continueChunks(
52 $this->getOption( 'filename' ),
53 $this->getOption( 'filekey' ),
54 // @TODO: set User?
55 RequestContext::getMain()->getRequest() // dummy request
56 );
57
58 // Combine all of the chunks into a local file and upload that to a new stash file
59 $status = $upload->concatenateChunks();
60 if ( !$status->isGood() ) {
61 UploadBase::setSessionStatus(
62 $this->getOption( 'filekey' ),
63 array( 'result' => 'Failure', 'status' => $status )
64 );
65 session_write_close();
66 $this->error( $status->getWikiText() . "\n", 1 ); // die
67 }
68
69 // We have a new filekey for the fully concatenated file
70 $newFileKey = $upload->getLocalFile()->getFileKey();
71
72 // Remove the old stash file row and first chunk file
73 $upload->stash->removeFileNoAuth( $this->getOption( 'filekey' ) );
74
75 // Build the image info array while we have the local reference handy
76 $apiMain = new ApiMain(); // dummy object (XXX)
77 $imageInfo = $upload->getImageInfo( $apiMain->getResult() );
78
79 // Cleanup any temporary local file
80 $upload->cleanupTempFile();
81
82 // Cache the info so the user doesn't have to wait forever to get the final info
83 UploadBase::setSessionStatus(
84 $this->getOption( 'filekey' ),
85 array(
86 'result' => 'Success',
87 'filekey' => $newFileKey,
88 'imageinfo' => $imageInfo,
89 'status' => Status::newGood()
90 )
91 );
92 } catch ( MWException $e ) {
93 UploadBase::setSessionStatus(
94 $this->getOption( 'filekey' ),
95 array(
96 'result' => 'Failure',
97 'status' => Status::newFatal( 'api-error-stashfailed' )
98 )
99 );
100 }
101 session_write_close();
102 if ( $e ) {
103 throw $e;
104 }
105 wfDebug( "Finished assembly for file {$this->getOption( 'filename' )}\n" );
106 }
107 }
108
109 $maintClass = "AssembleUploadChunks";
110 require_once( RUN_MAINTENANCE_IF_MAIN );