Merge "Remove 'prefsnologin' message, don't use 'watchnologin' where inappropriate"
[lhc/web/wiklou.git] / includes / job / jobs / PublishStashedFileJob.php
1 <?php
2 /**
3 * Upload a file from the upload stash into the local file repo.
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 Upload
22 */
23
24 /**
25 * Upload a file from the upload stash into the local file repo.
26 *
27 * @ingroup Upload
28 */
29 class PublishStashedFileJob extends Job {
30 public function __construct( $title, $params, $id = 0 ) {
31 parent::__construct( 'PublishStashedFile', $title, $params, $id );
32 $this->removeDuplicates = true;
33 }
34
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;
43 }
44
45 if ( count( $_SESSION ) === 0 ) {
46 // Empty session probably indicates that we didn't associate
47 // with the session correctly. Note that being able to load
48 // the user does not necessarily mean the session was loaded.
49 // Most likely cause by suhosin.session.encrypt = On.
50 $this->setLastError( "Error associating with user session. Try setting suhosin.session.encrypt = Off" );
51 return false;
52 }
53
54 UploadBase::setSessionStatus(
55 $this->params['filekey'],
56 array( 'result' => 'Poll', 'stage' => 'publish', 'status' => Status::newGood() )
57 );
58
59 $upload = new UploadFromStash( $user );
60 // @todo initialize() causes a GET, ideally we could frontload the antivirus
61 // checks and anything else to the stash stage (which includes concatenation and
62 // the local file is thus already there). That way, instead of GET+PUT, there could
63 // just be a COPY operation from the stash to the public zone.
64 $upload->initialize( $this->params['filekey'], $this->params['filename'] );
65
66 // Check if the local file checks out (this is generally a no-op)
67 $verification = $upload->verifyUpload();
68 if ( $verification['status'] !== UploadBase::OK ) {
69 $status = Status::newFatal( 'verification-error' );
70 $status->value = array( 'verification' => $verification );
71 UploadBase::setSessionStatus(
72 $this->params['filekey'],
73 array( 'result' => 'Failure', 'stage' => 'publish', 'status' => $status )
74 );
75 $this->setLastError( "Could not verify upload." );
76 return false;
77 }
78
79 // Upload the stashed file to a permanent location
80 $status = $upload->performUpload(
81 $this->params['comment'],
82 $this->params['text'],
83 $this->params['watch'],
84 $user
85 );
86 if ( !$status->isGood() ) {
87 UploadBase::setSessionStatus(
88 $this->params['filekey'],
89 array( 'result' => 'Failure', 'stage' => 'publish', 'status' => $status )
90 );
91 $this->setLastError( $status->getWikiText() );
92 return false;
93 }
94
95 // Build the image info array while we have the local reference handy
96 $apiMain = new ApiMain(); // dummy object (XXX)
97 $imageInfo = $upload->getImageInfo( $apiMain->getResult() );
98
99 // Cleanup any temporary local file
100 $upload->cleanupTempFile();
101
102 // Cache the info so the user doesn't have to wait forever to get the final info
103 UploadBase::setSessionStatus(
104 $this->params['filekey'],
105 array(
106 'result' => 'Success',
107 'stage' => 'publish',
108 'filename' => $upload->getLocalFile()->getName(),
109 'imageinfo' => $imageInfo,
110 'status' => Status::newGood()
111 )
112 );
113 } catch ( MWException $e ) {
114 UploadBase::setSessionStatus(
115 $this->params['filekey'],
116 array(
117 'result' => 'Failure',
118 'stage' => 'publish',
119 'status' => Status::newFatal( 'api-error-publishfailed' )
120 )
121 );
122 $this->setLastError( get_class( $e ) . ": " . $e->getText() );
123 return false;
124 }
125 return true;
126 }
127
128 public function getDeduplicationInfo() {
129 $info = parent::getDeduplicationInfo();
130 if ( is_array( $info['params'] ) ) {
131 $info['params'] = array( 'filekey' => $info['params']['filekey'] );
132 }
133 return $info;
134 }
135
136 public function allowRetries() {
137 return false;
138 }
139 }